@charset "UTF-8";
.l-header {
  line-height: 1.6; /* for uoharu */
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  background: rgb(0, 28, 62);
}
.l-header__inner {
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (min-width: 500px) {
  .l-header__inner {
    height: 103px;
  }
}
@media (max-width: 991px) {
  .l-header__inner {
    align-items: flex-start;
    padding-top: 5px;
    padding-right: 31px;
  }
}
.l-header__logo-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-58%, -50%);
  display: flex;
  align-items: center;
  gap: 4vw;
}
@media (min-width: 1000px) {
  .l-header__logo-wrap {
    gap: 95px;
  }
}
.l-header__translate-menu {
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.1px;
}
@media (min-width: 992px) {
  .l-header__translate-menu {
    padding-right: 80px;
  }
}
.l-header__translate-menu li:first-child::after {
  content: "/";
  display: inline-block;
  padding-left: 0.2em;
  padding-right: 0.2em;
}
.l-header__translate-menu a {
  color: #fff;
  text-decoration: none;
}
.l-header__translate-menu a:hover {
  color: #fff;
  text-decoration: underline;
}
.l-header__button {
  position: fixed;
  top: 0px;
  left: 0;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .l-header__button {
    display: none;
  }
}
.l-header__button span,
.l-header__button span:before,
.l-header__button span:after {
  content: "";
  display: block;
  height: 1px;
  width: 25px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s;
}
.l-header__button span:before {
  bottom: 8px;
}
.l-header__button span:after {
  top: 8px;
}
#menu-button-check:checked ~ .l-header__button span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-button-check:checked ~ .l-header__button span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #001c3e;
}
#menu-button-check:checked ~ .l-header__button span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #001c3e;
}
.l-header #menu-button-check {
  display: none;
}
@media (max-width: 991px) {
  .l-header__nav-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 100%;
    z-index: 80;
    transition: all 0.5s;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .l-header__nav-container > div {
    position: absolute;
    top: 0px;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    overflow-y: auto;
    padding-top: 50px;
  }
}
@media (max-width: 991px) {
  .l-header__nav-container-md {
    display: none;
  }
}
.l-header__nav-container-xs {
  display: flex;
  flex-direction: column;
  gap: 10vh;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .l-header__nav-container-xs {
    display: none;
  }
}
.l-header__nav-container-xs a {
  display: block;
  width: 35vw;
  padding-right: 30px;
  margin-inline: auto;
  text-align: center;
}
.l-header__nav-container-xs img {
  width: 100%;
}
.l-header__nav-menu .menu-item {
  list-style: none;
}
@media (min-width: 500px) {
  .l-header__nav-menu {
    display: flex;
    gap: 0px;
    padding-right: 73px;
  }
}
@media (min-width: 500px) and (min-width: 1000px) {
  .l-header__nav-menu {
    gap: 73px;
  }
}
@media (min-width: 500px) {
  .l-header__nav-menu .sub-menu {
    display: none;
  }
  .l-header__nav-menu .menu-item {
    position: relative;
    margin-top: 22px;
  }
  .l-header__nav-menu .menu-item a {
    display: block;
  }
  .l-header__nav-menu .menu-item > a {
    padding: 0 10px;
    text-decoration: none;
    height: 47px;
    line-height: 47px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3.22px;
  }
  .l-header__nav-menu .menu-item > a:hover {
    opacity: 0.8;
  }
  .l-header__nav-menu .menu-item > .sub-menu {
    position: absolute;
    top: 60px;
    left: 0;
  }
  .l-header__nav-menu .menu-item > .sub-menu .menu-item {
    text-align: left;
  }
  .l-header__nav-menu .menu-item > .sub-menu a {
    position: relative;
    padding: 10px 20px 8px;
    width: 150px;
    height: auto;
    line-height: 180%;
    margin: 0 0 -1px 0;
    text-align: left;
    border: 1px solid #ccc;
    background: #fff;
  }
  .l-header__nav-menu .menu-item > .sub-menu a:hover {
    background: #e2e2e2;
  }
  .l-header__nav-menu > .menu-item:hover .sub-menu {
    display: block;
  }
}
@media (max-width: 499px) {
  .l-header__nav-menu {
    padding: 30px 0 0 0;
  }
  .l-header__nav-menu .menu-item {
    border-bottom: solid 1px #001c3e;
  }
  .l-header__nav-menu .menu-item a {
    display: block;
    position: relative;
    width: 100%;
    padding: 12px 25px;
    font-size: 27px;
    box-sizing: border-box;
    color: #001c3e;
    text-decoration: none;
    position: relative;
  }
  .l-header__nav-menu .menu-item a small {
    display: none;
  }
  .l-header__nav-menu .menu-item a a {
    width: 2.5em;
    padding-left: 0;
    padding-right: 0;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    text-align: center;
  }
  .l-header__nav-menu .sub-menu {
    display: none;
  }
  .l-header__nav-menu .sub-menu a {
    font-size: 23px;
    font-weight: normal;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.04);
  }
  .l-header__nav-menu .sub-menu li {
    border-bottom: 0;
  }
  .l-header__nav-menu .sub-menu-more {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  .l-header__nav-menu .sub-menu-active > .sub-menu {
    display: block;
  }
}
#menu-button-check:checked ~ .l-header__nav-container {
  right: 0; /*メニューを画面内へ*/
  background-color: rgba(255, 255, 255, 0.9);
}

#lead {
  padding-top: 60px;
  margin-top: -60px;
}

.l-footer__top {
  font-size: 33px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 5.28px;
  font-family: "リュウミン M-KL";
  text-align: center;
}

.l-footer {
  position: relative;
  padding-top: 64px;
  padding-bottom: 55px;
  padding-right: 36px;
  color: #fff;
  background: #001c3e;
}
.l-footer__inner {
  max-width: 873px;
  margin-inline: auto;
  margin-top: 47px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}
@media (min-width: 700px) {
  .l-footer__inner {
    flex-direction: row;
    gap: 10px;
  }
}
.l-footer__item-title-top {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.98px;
  text-align: center;
}
.l-footer__item-title-top span {
  position: relative;
}
.l-footer__item-title-top span::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: -21px;
  top: 50%;
}
.l-footer__item-title-top span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: -21px;
  top: 50%;
}
.l-footer__item-title {
  margin-top: 9px;
  font-size: 29px;
  letter-spacing: 13.92px;
  line-height: 1;
  text-align: center;
}
.l-footer__item-title span {
  display: inline-block;
  overflow: hidden;
  margin-right: -13.92px;
  vertical-align: bottom;
}
.l-footer__item-title small {
  font-size: 19px;
  letter-spacing: 0;
  vertical-align: bottom;
}
.l-footer__item-address {
  width: 250px;
  margin-inline: auto;
  margin-top: 23px;
  font-size: 14px;
  line-height: 1.7;
}
.l-footer__item-hours {
  width: 250px;
  margin-inline: auto;
  margin-top: 8px;
  padding-top: 4px;
  border-top: 1px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 13px;
}
@media (min-width: 500px) {
  .l-footer__item-hours {
    flex-direction: row;
  }
}
.l-footer__item:first-child dl {
  display: flex;
  justify-content: space-between;
  gap: 13px;
}
.l-footer__item:last-child dl {
  display: flex;
  gap: 2px;
}
.l-footer__item:last-child dt {
  width: 8em;
}
.l-footer__item-more {
  width: 272px;
  margin-top: 20px;
  margin-inline: auto;
}
.l-footer__item-more a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid #fff;
  text-decoration: none;
}
.l-footer__item-more a:hover, .l-footer__item-more a:focus, .l-footer__item-more a:active {
  text-decoration: none;
}
.l-footer__item-more a span {
  position: relative;
  padding-right: 23px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.33px;
}
.l-footer__item-more a span::after {
  content: "";
  display: block;
  width: 8px;
  height: 16px;
  background: url(../img/icon_btn_more_white.svg) no-repeat center;
  background-size: auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.l-footer__line {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #fff;
  font-size: 14px;
  line-height: 150%; /* 16.5px */
}
.l-footer__line a {
  color: #fff;
  display: inline-block;
}
.l-footer__sns > div {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.l-footer__sns > div div {
  color: #fff;
  font-size: 14px;
}
.l-footer__sns > div img {
  vertical-align: middle;
}
@media (min-width: 992px) {
  .l-footer__sns > div {
    position: absolute;
    top: 76px;
    right: 51px;
    margin-top: 0;
  }
}

.p-cta-side {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 36px;
  display: flex;
  align-items: center;
  z-index: 11;
  background: #d9c298;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.p-cta-side:hover {
  background: #fff8e2;
}
.p-cta-side a {
  width: 100%;
  height: 100%;
  padding: 14px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3f2800;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  writing-mode: vertical-rl;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  letter-spacing: 2px;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  line-height: inherit;
}

nav ul {
  list-style: none;
}

/* html5
---------------------*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  transition: opacity 3s ease;
  color: #231815;
  font-size: 17px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-family: serif;
}
@media (min-width: 500px) {
  body {
    min-width: 1170px;
  }
}

.l-main {
  padding-right: 36px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a {
  color: #000;
}

a:hover,
a:active,
a:focus {
  color: #000;
}

img,
img[src*=".svg"] {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

video {
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
}

@media (max-width: 499px) {
  .hidden-xs {
    display: none;
  }
}

.visible-xs {
  display: none;
}
@media (max-width: 499px) {
  .visible-xs {
    display: block;
  }
}

/* Content
---------------------*/
.content-container > * {
  margin-left: auto;
  margin-right: auto;
}

.content-container > *:not(.alignfull) {
  margin-left: 15px;
  margin-right: 15px;
}
@media (min-width: 1200px) {
  .content-container > *:not(.alignfull) {
    width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
}

.content-content {
  line-height: 1.8;
}

/* Footer
---------------------*/
#totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.visibleToTop #totop {
  opacity: 1;
}

#featured {
  position: relative;
}
#featured > img {
  width: 100%;
  height: auto;
}
#featured .copy {
  position: absolute;
  top: 160px;
  right: 10vw;
  height: 100%;
  max-width: 200px;
}
@media (min-width: 500px) {
  #featured .copy {
    top: 320px;
    max-width: 700px;
  }
}
@media (max-width: 499px) {
  #featured .copy {
    top: 0;
    max-width: auto;
    max-height: 100%;
  }
  #featured .copy img {
    height: 100%;
    width: auto;
  }
}
#featured .lang {
  position: absolute;
}
@media (min-width: 500px) {
  #featured .lang {
    right: 0;
    top: 0;
  }
}
@media (max-width: 499px) {
  #featured .lang {
    left: 0;
    bottom: 0;
  }
}
#featured .lang a {
  position: relative;
  display: block;
  padding: 6px 1em;
  color: #633c00;
  text-decoration: none;
  line-height: 1;
}
@media (min-width: 500px) {
  #featured .lang a {
    background: #fff;
  }
}
#featured .lang a:before {
  display: inline-block;
  content: "";
  margin-right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #633b00;
}

#mvb {
  background: #faf7ec url(../img/mvb_bg.png) no-repeat center bottom;
  background-size: 100% auto;
  padding-bottom: 3vw;
}
#mvb .wrapper {
  max-width: 1345px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (min-width: 500px) {
  #mvb .wrapper {
    display: flex;
    justify-content: flex-end;
  }
}
@media (min-width: 500px) {
  #mvb .logo {
    position: absolute;
    left: 0;
    top: -30px;
    width: 42%;
  }
}
@media (max-width: 499px) {
  #mvb .logo {
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
  }
}
#mvb .body {
  display: flex;
  padding-top: 20px;
}
@media (min-width: 500px) {
  #mvb .body {
    width: 60%;
  }
}
@media (max-width: 499px) {
  #mvb .body {
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: row-reverse;
  }
}
#mvb .content {
  padding-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  padding-right: 10px;
  color: #633c27;
}
@media (min-width: 500px) {
  #mvb .content {
    padding-left: 40px;
    padding-right: 20px;
    font-size: 20px;
    line-height: 1.8;
  }
}
@media (min-width: 500px) {
  #mvb .col-1 {
    width: 465px;
  }
}
@media (max-width: 499px) {
  #mvb .col-1 {
    width: 60%;
    padding-bottom: 60px;
  }
}
@media (max-width: 499px) {
  #mvb .col-2 {
    width: 40%;
  }
}

#about-1 {
  padding-bottom: 60px;
  background: #f6f1dd;
}
@media (min-width: 500px) {
  #about-1 {
    padding-bottom: 155px;
  }
}
#about-1 h2 {
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 500px) {
  #about-1 h2 {
    margin-bottom: 50px;
  }
}
#about-1 h2 figure {
  max-width: 1038px;
  padding-bottom: 20px;
  background: url(../img/heading_dot.png) repeat-x center bottom;
}
@media (min-width: 500px) {
  #about-1 h2 figure {
    padding-left: 135px;
    padding-right: 135px;
  }
}
#about-1 .wrap {
  margin-bottom: 30px;
}
#about-1 .wrap p {
  color: #633c27;
  font-size: 20px;
}
@media (min-width: 500px) {
  #about-1 .wrap p {
    width: 46%;
    font-size: 20px;
    line-height: 1.8;
  }
}
@media (min-width: 500px) {
  #about-1 .wrap figure {
    width: 52%;
  }
}
@media (min-width: 500px) {
  #about-1 .wrap .inner {
    display: flex;
    align-items: center;
    max-width: 1038px;
    margin-left: auto;
    margin-right: auto;
  }
}
#about-1 .bottom {
  text-align: center;
}
#about-1 .bottom figure {
  max-width: 1038px;
  margin-left: auto;
  margin-right: auto;
}

#about-2 {
  padding-bottom: 10px;
  background: #f6f1dd;
}
@media (min-width: 500px) {
  #about-2 {
    padding-bottom: 120px;
  }
}
#about-2 h2 {
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 500px) {
  #about-2 h2 {
    margin-bottom: 50px;
  }
}
#about-2 h2 figure {
  max-width: 1038px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  background: url(../img/heading_dot.png) repeat-x center bottom;
}
@media (min-width: 500px) {
  #about-2 h2 figure {
    padding-left: 245px;
    padding-right: 245px;
  }
}
#about-2 .wrap {
  margin-bottom: 30px;
}
#about-2 .wrap p {
  margin-bottom: 15px;
  color: #633c27;
  font-size: 20px;
}
@media (min-width: 500px) {
  #about-2 .wrap p {
    width: 45%;
    font-size: 20px;
    line-height: 1.6;
  }
}
@media (min-width: 500px) {
  #about-2 .wrap figure {
    width: 53%;
  }
}
@media (min-width: 500px) {
  #about-2 .wrap .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1038px;
    margin-left: auto;
    margin-right: auto;
  }
}
#about-2 .bottom {
  text-align: center;
}
#about-2 .bottom figure {
  max-width: 1038px;
  margin-left: auto;
  margin-right: auto;
}

#menu-wrap {
  background: url(../img/menu_bg.jpg) no-repeat center top;
  background-size: cover;
}

#menu-top {
  padding-top: 90px;
}
#menu-top h2 {
  padding-bottom: 60px;
}
#menu-top h2 figure {
  max-width: 1045px;
  margin-left: auto;
  margin-right: auto;
}

#breakfast {
  padding-bottom: 30px;
  text-align: center;
  background: url(../img/breakfast_bg.png) no-repeat center center;
  background-size: 100% auto;
}
@media (min-width: 500px) {
  #breakfast {
    background: url(../img/breakfast_bg.png) no-repeat center top;
  }
}
#breakfast h2 {
  padding-bottom: 45px;
}
#breakfast h2 figure {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 500px) {
  #breakfast h2 figure {
    max-width: 362px;
  }
}
#breakfast .menu-name {
  margin-top: -10px;
  padding-left: 15px;
  color: #fff;
  font-size: 4vw;
  text-align: left;
}
#breakfast .menu-name small {
  font-size: 0.8em;
}
@media (min-width: 500px) {
  #breakfast .menu-name {
    display: none;
  }
}

.menu .picture-wrap {
  position: relative;
}
.menu .picture-wrap .menu-description {
  color: #fff;
}
@media (min-width: 500px) {
  .menu .picture-wrap .menu-description {
    position: absolute;
    bottom: 0;
    text-align: left;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    text-align: left;
  }
}
@media (max-width: 499px) {
  .menu .picture-wrap .menu-description {
    margin-top: -10px;
    font-size: 3.5vw;
  }
  .menu .picture-wrap .menu-description br {
    display: none;
  }
}

#lunch1 {
  padding-bottom: 30px;
  text-align: center;
  background: url(../img/lunch1_bg.png) no-repeat center top;
  background-size: 100% auto;
}
#lunch1 h2 {
  padding-bottom: 45px;
}
#lunch1 h2 figure {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 500px) {
  #lunch1 h2 figure {
    max-width: 362px;
  }
}
#lunch1 .menu-name {
  transform: rotate(-4deg);
  position: absolute;
  left: 0;
  bottom: 60px;
  padding: 8px 10px 6px;
  color: #5c2614;
  font-weight: normal;
  background: url(../img/menu_name.png) no-repeat;
  background-size: 100% 100%;
  line-height: 1;
}
@media (min-width: 500px) {
  #lunch1 .menu-name {
    display: none;
  }
}
@media (min-width: 500px) {
  #lunch1 .menu-description {
    bottom: 47px;
    left: 5px;
  }
}

#lunch2 {
  padding-bottom: 30px;
  text-align: center;
  background: url(../img/lunch2_bg.png) no-repeat center top;
  background-size: auto 100%;
}
@media (min-width: 500px) {
  #lunch2 {
    padding-bottom: 30px;
  }
}
#lunch2 .menu-name {
  transform: rotate(-4deg);
  position: absolute;
  left: 0;
  bottom: 60px;
  padding: 8px 10px 6px;
  color: #5c2614;
  font-weight: normal;
  background: url(../img/menu_name.png) no-repeat;
  background-size: 100% 100%;
  line-height: 1;
}
@media (min-width: 500px) {
  #lunch2 .menu-name {
    display: none;
  }
}
@media (min-width: 500px) {
  #lunch2 .menu-description {
    bottom: 50px;
    right: 15px;
  }
}

#lunch3 {
  padding-bottom: 30px;
  text-align: center;
  background: no-repeat;
  background-image: url(../img/lunch3_bg_1.png), url(../img/lunch3_bg_2.png);
  background-size: auto 100%, 100% auto;
  background-position: center top, center bottom;
}
@media (min-width: 500px) {
  #lunch3 {
    padding-bottom: 100px;
  }
}
#lunch3 .menu-name {
  transform: rotate(-4deg);
  position: absolute;
  left: 0;
  bottom: 60px;
  padding: 8px 10px 6px;
  color: #5c2614;
  font-weight: normal;
  background: url(../img/menu_name.png) no-repeat;
  background-size: 100% 100%;
  line-height: 1;
}
@media (min-width: 500px) {
  #lunch3 .menu-name {
    display: none;
  }
}
@media (min-width: 500px) {
  #lunch3 .menu-description {
    bottom: 45px;
    left: 5px;
  }
}

#souzai-heading {
  padding-top: 90px;
  padding-bottom: 0;
  text-align: center;
  background: url(../img/souzai1_bg.png) no-repeat center top;
  background-size: 100% auto;
}
@media (min-width: 500px) {
  #souzai-heading {
    padding-top: 400px;
    padding-bottom: 70px;
  }
}
#souzai-heading h2 {
  padding-bottom: 45px;
}
#souzai-heading h2 figure {
  max-width: 1047px;
  margin-left: auto;
  margin-right: auto;
}

#souzai {
  padding-bottom: 20px;
  background: url(../img/souzai2_bg.png) no-repeat center bottom;
  background-size: 100% auto;
}
@media (min-width: 500px) {
  #souzai {
    padding-bottom: 150px;
  }
}
#souzai .wrap p {
  margin-bottom: 15px;
  color: #fff;
  font-size: 20px;
}
@media (min-width: 500px) {
  #souzai .wrap p {
    width: 47%;
    font-size: 21px;
    line-height: 1.6;
  }
}
#souzai .wrap p .fish {
  display: block;
  margin-top: 35px;
  text-align: right;
}
@media (max-width: 499px) {
  #souzai .wrap p .fish {
    max-width: 60px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
#souzai .wrap figure {
  margin-bottom: 15px;
}
@media (min-width: 500px) {
  #souzai .wrap figure {
    width: 49%;
  }
}
@media (min-width: 500px) {
  #souzai .wrap .inner {
    display: flex;
    justify-content: space-between;
    max-width: 1038px;
    margin-left: auto;
    margin-right: auto;
  }
}
#souzai .bottom {
  text-align: center;
}
#souzai .bottom figure {
  max-width: 1038px;
  margin-left: auto;
  margin-right: auto;
}

#map {
  position: relative;
}
#map figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#map figure img {
  vertical-align: top;
}
#map iframe {
  width: 100%;
  height: 600px;
  vertical-align: bottom;
}
#map img {
  width: 100%;
  height: auto;
}

#footer {
  padding: 35px 0;
  color: #633c27;
  background: url(../img/bg.jpg) no-repeat center;
  background-size: cover;
}
@media (min-width: 500px) {
  #footer .footer-inner {
    display: flex;
    justify-content: space-between;
  }
}
#footer .col-1 {
  display: flex;
  align-items: center;
}
#footer .logo-mark {
  max-width: 190px;
  margin-right: 20px;
}
#footer .logo-wrap figure {
  max-width: 500px;
  margin-bottom: 20px;
}
#footer .logo-wrap .address {
  font-size: 16px;
}
#footer .logo-wrap .instagram img {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#footer .logo-wrap .instagram a {
  text-decoration: none;
  color: #633c27;
}
#footer .logo-wrap .instagram a:hover {
  text-decoration: underline;
}
#footer dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 1.8;
}
#footer dl dt {
  width: 10em;
}
#footer .border-top {
  margin-bottom: 40px;
}
#footer .border-bottom {
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */