@charset "UTF-8";
.header {
  position: fixed;
  display: grid;
  grid-template-rows: 149px auto;
  height: 208px;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #ffffff;
}
@media screen and (max-width:767px) {
  .header {
    height: 88px;
  }
}

.header__top-inner {
  width: 100%;
  max-width: 945px;
  margin-inline: auto;
  padding: 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width:767px) {
  .header__top-inner {
    padding: 0 15px;
    height: 88px;
  }
}

.header__inner {
  max-width: 1019px;
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .header__inner {
    padding-inline: 15px;
  }
}

.header__top {
  width: 100%;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width:767px) {
  .header__top {
    gap: 14px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.header__logo {
  width: 198px;
  height: auto;
}
.header__logo img {
  width: 100%;
}
@media screen and (max-width:767px) {
  .header__logo {
    width: 135px;
  }
}

.header__info {
  margin-left: 42px;
  margin-right: 54px;
}
@media screen and (max-width:767px) {
  .header__info {
    display: none;
  }
}

.header__shop {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
}

.header__hours {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
}

.header__access {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
}

.header__button {
  display: inline-block;
  background-color: #54cd43;
  color: #ffffff;
  text-align: center;
  padding: 25px 10px 27px;
  max-width: 259px;
  width: 100%;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  font-size: 22px;
  border-radius: 4px;
}
@media screen and (max-width:767px) {
  .header__button {
    width: 140px;
    padding: 16px 10px 16px;
    font-size: 16px;
  }
}

.header__nav {
  width: 100%;
  height: 60px;
  background-color: #1c2484;
  color: #ffffff;
}
@media screen and (max-width:767px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  max-width: 963px;
  display: grid;
  grid-template-columns: repeat(5, 169px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header__item {
  font-family: "Noto Serif JP", serif;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.header__item a {
  display: block;
  font-size: 17px;
  padding: 18px 10px 17px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-left: 2px solid #ffffff;
}
.header__item:last-child a {
  border-right: 2px solid #ffffff;
}

.fv {
  margin-top: 208px;
  width: 100%;
  height: auto;
  text-align: center;
  overflow: hidden;
  background-image: url("../img/background-fv.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width:767px) {
  .fv {
    margin-top: 88px;
    background-image: url("../img/background-fv.png");
  }
}

.fv__photo {
  max-width: 900px;
  padding: 0 15px;
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .fv__photo {
    padding: 0;
  }
}
.fv__photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.drawer-icon {
  display: none;
}
@media screen and (max-width:767px) {
  .drawer-icon {
    position: fixed;
    z-index: 102;
    top: 41px;
    right: 20px;
    width: 24px;
    height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.drawer-icon__bar {
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer-icon.js-show .drawer-icon__bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.drawer-icon.js-show .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.js-show .drawer-icon__bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 88px;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #ffffff;
  overflow-y: scroll;
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.drawer.js-show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 32px 40px;
  padding-left: 34px;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
}
.drawer__list li a {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.about {
  background: url("../img/background-about.png") no-repeat center center/cover;
  padding: 36px 40px;
}
@media screen and (max-width:767px) {
  .about {
    padding: 40px 15px;
  }
}

.about__inner {
  max-width: 832px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  background-color: rgba(28, 36, 132, 0.75);
  padding: 56px 47px 45px;
}
@media screen and (max-width:767px) {
  .about__inner {
    padding-block: 20px;
    padding: 32px 15px 42px;
  }
}

.about__catch {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width:767px) {
  .about__catch {
    font-size: 18px;
  }
}

.about__lead {
  font-size: 28px;
  font-weight: 700;
  margin-top: 10px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width:767px) {
  .about__lead {
    font-size: 18px;
    margin-top: 4px;
  }
}

.about__title {
  font-family: "Noto Serif JP", serif;
  font-size: 41px;
  font-weight: 700;
  margin-top: 17px;
  border-bottom: 3px solid #ffffff;
  line-height: 1;
  padding: 0 0 23px;
}
@media screen and (max-width:767px) {
  .about__title {
    padding: 0;
    line-height: 1.3;
    font-size: 28px;
    margin-top: 16px;
    padding-bottom: 8px;
  }
}

.about__content {
  margin-top: 36px;
  border-bottom: 3px solid #ffffff;
}
@media screen and (max-width:767px) {
  .about__content {
    margin-top: 10px;
  }
}

.about__text {
  text-align: center;
  font-size: 21px;
  line-height: 1.64;
  padding-bottom: 36px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width:767px) {
  .about__text {
    font-size: 16px;
    padding-bottom: 20px;
    margin-top: 20px;
  }
}

.important {
  margin-top: 67px;
}
@media screen and (max-width:767px) {
  .important {
    margin-top: 35px;
  }
}

.important__inner {
  padding-inline: 15px;
  max-width: 1071px;
  margin: 0 auto;
}

.important__header {
  text-align: center;
}

.important__title {
  font-family: "Noto Serif JP", serif;
  font-size: 42px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .important__title {
    font-size: 24px;
  }
}

.important__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 27px;
  margin-top: 39px;
  line-height: 1.4;
  font-weight: 700;
  color: #4e352b;
}
@media screen and (max-width:767px) {
  .important__subtitle {
    margin-top: 10px;
    font-size: 20px;
  }
}

.important__body {
  background-color: #f4f4f4;
  margin-top: 71px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding: 27px 24px 27px 34px;
}
@media screen and (max-width:767px) {
  .important__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
    padding-block: 20px;
    padding-inline: 15px;
    gap: 24px;
  }
}

.important__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (max-width:767px) {
  .important__text {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.important__text p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width:767px) {
  .important__text p {
    font-size: 14px;
  }
}

.important__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.important__image img {
  width: 100%;
  height: auto;
}

.hidden-pc {
  display: none;
}
@media screen and (max-width:767px) {
  .hidden-pc {
    display: block;
  }
}

.hidden-sp {
  display: block;
}
@media screen and (max-width:767px) {
  .hidden-sp {
    display: none;
  }
}

.feature {
  margin-top: 49px;
}

.feature__inner {
  max-width: 881px;
  margin: 0 auto;
}
@media screen and (max-width:767px) {
  .feature__inner {
    padding-inline: 20px;
  }
}

.feature__title {
  font-size: 26px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #4e352b;
  text-align: center;
}

.feature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 82px;
     -moz-column-gap: 82px;
          column-gap: 82px;
  row-gap: 41px;
  margin-top: 60px;
  margin-left: 75px;
}
@media screen and (max-width:767px) {
  .feature__list {
    grid-template-columns: 1fr;
    margin-top: 35px;
    row-gap: 4px;
    margin-left: 0;
  }
}

.feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 60px;
  position: relative;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .feature__item {
    min-height: 50px;
    padding-left: 45px;
    font-size: 15px;
  }
}
.feature__item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 49px;
  height: 49px;
  background-image: url("../img/icon-checkbox.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width:767px) {
  .feature__item:before {
    width: 30px;
    height: 30px;
  }
}

.feature__images {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width:767px) {
  .feature__images {
    margin-top: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.feature__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 390px;
          flex: 0 0 390px;
}
@media screen and (max-width:767px) {
  .feature__image {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.feature__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature__lead {
  margin-top: 65px;
  font-size: 25px;
  font-weight: 700;
  color: #4e352b;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width:767px) {
  .feature__lead {
    margin-top: 30px;
    font-size: 20px;
  }
}

.feature__cta {
  max-width: 700px;
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 0 #09295c;
          box-shadow: 0 5px 0 #09295c;
  display: block;
  margin-inline: auto;
  margin-top: 46px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  background-color: #1c2484;
  padding-block: 32px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width:767px) {
  .feature__cta {
    margin-top: 30px;
    min-width: 0;
    padding-inline: 10px;
    padding-block: 25px;
  }
}

.feature__discount {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .feature__discount {
    font-size: 16px;
  }
}

.feature__reservation {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .feature__reservation {
    font-size: 16px;
  }
}

.recommend {
  margin-top: 140px;
}
@media screen and (max-width:767px) {
  .recommend {
    margin-top: 40px;
  }
}

.recommend__inner {
  padding-inline: 72px;
  max-width: 882px;
  margin: 0 auto;
}
@media screen and (max-width:767px) {
  .recommend__inner {
    padding-inline: 15px;
  }
}

.recommend__header {
  font-size: 32px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.recommend__lead {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .recommend__lead {
    font-size: 28px;
  }
}

.recommend__title {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .recommend__title {
    font-size: 25px;
  }
}

.recommend__image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 450px;
  max-width: 100vw;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width:767px) {
  .recommend__image {
    width: 100vw;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.recommend__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.recommend__card-wrapper {
  position: relative;
}

.recommend__cards {
  position: relative;
  z-index: 2;
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 91px;
  row-gap: 74px;
}
@media screen and (max-width:767px) {
  .recommend__cards {
    margin-top: 35px;
    grid-template-columns: 1fr;
    row-gap: 30px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.recommend__card {
  max-width: 480px;
  padding: 30px 26px;
  border-radius: 47px;
  border: 1px solid #1c2484;
  background-color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width:767px) {
  .recommend__card {
    padding: 20px;
    margin-inline: auto;
  }
}

.recommend__card-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  color: #4e352b;
}
@media screen and (max-width:767px) {
  .recommend__card-title {
    font-size: 20px;
  }
}

.recommend__card-text {
  margin-top: 48px;
  font-size: 19px;
  color: #000;
}
@media screen and (max-width:767px) {
  .recommend__card-text {
    margin-top: 15px;
    font-size: 16px;
  }
}

.recommend__footer {
  margin-top: 97px;
  padding: 54px 10px 47px;
  width: 100%;
  text-align: center;
  background-color: #1c2484;
}
@media screen and (max-width:767px) {
  .recommend__footer {
    margin-top: 50px;
    padding-block: 30px;
  }
}

.recommend__message {
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  font-weight: 700;
  font-size: 29px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.recommend__message span {
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .recommend__message {
    font-size: 20px;
  }
}
.recommend__message::before {
  content: "＼";
  margin-left: 20px;
  color: #fff;
  font-weight: 700;
}
.recommend__message::after {
  content: "／";
  margin-right: 20px;
  color: #fff;
  font-weight: 700;
}

.reason {
  margin-top: 55px;
}
@media screen and (max-width:767px) {
  .reason {
    margin-top: 30px;
  }
}

.reason__inner {
  padding-inline: 15px;
  max-width: 992px;
  margin: 0 auto;
}
@media screen and (max-width:767px) {
  .reason__inner {
    padding-inline: 15px;
  }
}

.reason__header {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: 700;
}

.reason__lead {
  font-size: 24.5px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .reason__lead {
    font-size: 20px;
  }
}

.reason__title {
  font-size: 35px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .reason__title {
    font-size: 30px;
  }
}

.reason__cards {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 62px;
}
@media screen and (max-width:767px) {
  .reason__cards {
    margin-top: 30px;
    gap: 52px;
  }
}

.reason__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width:767px) {
  .reason__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    margin-inline: auto;
    gap: 16px;
  }
}

.reason__card-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.reason__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #4e352b;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width:767px) {
  .reason__card-title {
    text-align: center;
  }
}

.reason__card-desc {
  margin-top: 18px;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width:767px) {
  .reason__card-desc {
    margin-top: 10px;
  }
}

.menu {
  margin-top: 154px;
}
@media screen and (max-width:767px) {
  .menu {
    margin-top: 60px;
  }
}

.menu__inner {
  max-width: 980px;
  margin: 0 auto;
  padding-inline: 25px;
}

.menu__heading {
  text-align: center;
}

.menu__title {
  font-size: 33px;
  font-weight: 700;
  color: #ffffff;
  background: #1c2484;
  font-family: "Noto Serif JP", serif;
  display: block;
  padding-block: 24px;
  padding-inline: 44px;
  position: relative;
  text-align: left;
}
@media screen and (max-width:767px) {
  .menu__title {
    font-size: 25px;
    padding-block: 15px;
    padding-inline: 25px;
  }
}
.menu__title span {
  font-weight: 700;
}

.menu__desc {
  margin-top: 41px;
  text-align: center;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width:767px) {
  .menu__desc {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    margin-top: 16px;
    text-align: left;
  }
}

.menu__block {
  margin-top: 84px;
}
.menu__block.first {
  margin-top: 0;
}
@media screen and (max-width:767px) {
  .menu__block {
    margin-top: 25px;
  }
}

.menu__subtitle {
  margin-top: 42px;
  font-size: 30px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #0d2a57;
  background: #e6f5ff;
  border-left: 4px solid #1c2484;
  padding: 11px 17px;
}
@media screen and (max-width:767px) {
  .menu__subtitle {
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 30px;
    font-size: 22px;
    padding: 10px;
  }
}

.menu__table {
  width: 100%;
  border: 2px solid #000;
  border-collapse: collapse;
  margin-top: 57px;
}
@media screen and (max-width:767px) {
  .menu__table {
    margin-top: 25px;
  }
}

.menu__row {
  border-top: 2px solid #000;
}
.menu__row:first-child {
  border-top: none;
}

.menu__detail {
  background-color: #fffde7;
  padding: 16px;
  vertical-align: top;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #111;
  border-right: 2px solid #000;
}
@media screen and (max-width:767px) {
  .menu__detail {
    padding: 5px;
  }
}

.menu__name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
@media screen and (max-width:767px) {
  .menu__name {
    font-size: 13px;
    margin-bottom: 0;
  }
}

.menu__note {
  margin-top: 78px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .menu__note {
    margin-top: 10px;
    text-align: left;
    font-size: 14px;
  }
}

.menu__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
}

.menu__time,
.menu__price {
  width: 100px;
  text-align: center;
  vertical-align: middle;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  padding: 12px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

.menu__time {
  font-family: "Noto Sans JP", sans-serif;
  border-right: 2px solid #000;
}
@media screen and (max-width:767px) {
  .menu__time {
    width: 70px;
  }
}

.menu__price {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  width: 220px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
}
@media screen and (max-width:767px) {
  .menu__price {
    display: table-cell;
    width: 100px;
    height: auto;
    text-align: center;
    vertical-align: middle;
  }
}

.menu__price del {
  display: inline-block;
  color: #000;
  vertical-align: middle;
}
@media screen and (max-width:767px) {
  .menu__price del {
    display: block;
  }
}

.menu__price span {
  color: red;
  display: inline-block;
  vertical-align: middle;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}
.menu__price span::before {
  content: "→";
  color: #000;
  font-weight: normal;
  margin-right: 4px;
}
.menu__price span.only-text {
  color: #000;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.menu__price span.only-text::before {
  content: none;
}

.menu__cta {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width:767px) {
  .menu__cta {
    margin-top: 40px;
  }
}

.menu__button {
  font-family: "Noto Serif JP", serif;
  min-width: 700px;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 0 #09295c;
          box-shadow: 0 5px 0 #09295c;
  background-color: #1c2484;
  color: #ffffff;
  padding: 37px 38px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.menu__button:hover {
  background-color: #0d2a57;
}
@media screen and (max-width:767px) {
  .menu__button {
    min-width: 340px;
    font-size: 16px;
    padding: 25px 25px;
  }
}

.products {
  margin-top: 140px;
}
@media screen and (max-width:767px) {
  .products {
    margin-top: 30px;
  }
}

.products__inner {
  max-width: 980px;
  margin: 0 auto;
  padding-inline: 15px;
}

.products__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 58px;
}
@media screen and (max-width:767px) {
  .products__item {
    gap: 24px;
  }
}

.products__title {
  font-size: 30px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4e352b;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width:767px) {
  .products__title {
    font-size: 22px;
  }
}

.products__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width:767px) {
  .products__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.products__img {
  width: 50%;
}
@media screen and (max-width:767px) {
  .products__img {
    width: 100%;
  }
}
.products__img img {
  width: 100%;
}

.products__text {
  font-size: 19px;
  width: 45%;
  margin-block: auto;
}
@media screen and (max-width:767px) {
  .products__text {
    width: 100%;
    font-size: 15px;
    padding: 0 15px;
    line-height: 1.6;
  }
}

.products__item + .products__item {
  margin-top: 107px;
}
@media screen and (max-width:767px) {
  .products__item + .products__item {
    margin-top: 77px;
  }
}

.products__cta {
  text-align: center;
  margin-top: 107px;
}
@media screen and (max-width:767px) {
  .products__cta {
    margin-top: 40px;
  }
}

.products__button {
  display: inline-block;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 0 #09295c;
          box-shadow: 0 5px 0 #09295c;
  background-color: #1c2484;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  padding: 37px 36px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  min-width: 700px;
  max-width: 100%;
}
@media screen and (max-width:767px) {
  .products__button {
    min-width: 340px;
    padding: 24px 24px;
    font-size: 15px;
  }
}
.products__button:hover {
  background-color: #0d2a57;
}

.warning {
  padding-top: 126px;
  background-color: #fff;
}
@media screen and (max-width:767px) {
  .warning {
    padding-top: 60px;
  }
}

.warning__inner {
  max-width: 775px;
  margin: 0 auto;
  padding-inline: 25px;
}

.warning__details {
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.warning__summary {
  display: block;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  padding: 8px 0 44px;
  position: relative;
  list-style: none;
}
@media screen and (max-width:767px) {
  .warning__summary {
    padding: 8px 0 24px;
  }
}
.warning__summary::-webkit-details-marker {
  display: none;
}

.warning__message {
  display: block;
  position: relative;
  padding-right: 30px;
  padding-bottom: 8px;
  border-bottom: 2px solid #000;
  font-size: 28px;
}
@media screen and (max-width:767px) {
  .warning__message {
    padding-right: 20px;
    font-size: 22px;
  }
}
.warning__message::before, .warning__message::after {
  content: "";
  position: absolute;
  background-color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.warning__message::before {
  top: 50%;
  right: 0;
  width: 20px;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.warning__message::after {
  top: 50%;
  right: 9px;
  width: 2px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

details[open] .warning__message::after {
  rotate: 90deg;
  top: 14px;
  right: 19px;
}
@media screen and (max-width:767px) {
  details[open] .warning__message::after {
    top: 10px;
  }
}

.warning__content {
  height: auto;
  opacity: 1;
  overflow: hidden;
  -webkit-transition: height 0.4s ease, opacity 0.4s ease;
  transition: height 0.4s ease, opacity 0.4s ease;
  font-size: 14px;
  line-height: 1.8;
}

.warning__list {
  list-style: disc;
  padding-left: 1.5em;
}

.warning__restriction {
  margin-top: 1em;
}

.warning__item {
  line-height: 1.4;
  font-size: 14px;
}

.review {
  margin-top: 54px;
  padding-top: 55px;
  padding-bottom: 110px;
  background-image: url("../img/review-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width:767px) {
  .review {
    margin-top: 50px;
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

.review__inner {
  max-width: 980px;
  margin: 0 auto;
  padding-inline: 25px;
}
@media screen and (max-width:767px) {
  .review__inner {
    padding-inline: 15px;
  }
}

.review__lead {
  font-size: 35px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
}
@media screen and (max-width:767px) {
  .review__lead {
    font-size: 22px;
  }
}

.review__youtube {
  max-width: 591px;
  margin: 58px auto 0;
  aspect-ratio: 591/333;
}
@media screen and (max-width:767px) {
  .review__youtube {
    margin: 30px auto 0;
  }
}
.review__youtube iframe {
  width: 100%;
  height: 100%;
}

.review__caption {
  margin-top: 86px;
  font-size: 30px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width:767px) {
  .review__caption {
    margin-top: 56px;
    font-size: 23px;
  }
}

.review__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 47px;
  margin-top: 33px;
}
@media screen and (max-width:767px) {
  .review__images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}

.review__image {
  border: 10px solid #ffffff;
  -webkit-box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.8);
          box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.8);
}

.voice {
  padding-top: 36px;
  padding-bottom: 36px;
  background: #f4f4f4;
}

.voice__inner {
  max-width: 980px;
  margin: 0 auto;
  padding-inline: 25px;
}

.voice__title {
  position: relative;
  text-align: center;
  color: #1c2484;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 40px;
}
.voice__title::before {
  content: "";
  display: block;
  height: 112px;
  background-image: url("../img/deco-title.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto 10px;
}
@media screen and (max-width:767px) {
  .voice__title {
    font-size: 24px;
  }
  .voice__title::before {
    width: 90%;
    height: 100%;
    aspect-ratio: 947/112;
  }
}

.voice__slider {
  overflow: hidden;
  padding-bottom: 70px;
  margin-top: 55px;
}
@media screen and (max-width:767px) {
  .voice__slider {
    margin-top: 30px;
  }
}

.voice__card {
  background-color: #fff;
  padding: 12px 27px 27px;
  border: 1px solid #000;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: auto;
}
@media screen and (max-width:767px) {
  .voice__card {
    padding: 12px 15px 24px;
  }
}

.voice__card-title {
  position: relative;
  padding-top: 66px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 22px;
  color: #1c2484;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.voice__card-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 236px;
  height: 70px;
  background-image: url("../img/icon-star.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}
@media screen and (max-width:767px) {
  .voice__card-title::before {
    width: 190px;
  }
}
.voice__card-title::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background-color: #000;
}

.voice__text {
  font-size: 19px;
  line-height: 1.4;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #1c2484;
}
@media screen and (max-width:767px) {
  .voice__text {
    font-size: 16px;
  }
}

.voice__pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
}
@media screen and (max-width:767px) {
  .voice__pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}

.greeting {
  padding-bottom: 50px;
  background-image: url("../img/background-greeting.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.greeting__subheading {
  text-shadow: initial;
  background: #1c2484;
  text-align: center;
  padding-block: 47px;
  font-size: 33px;
  font-weight: 700;
}
.greeting__subheading span {
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width:767px) {
  .greeting__subheading span {
    font-size: 20px;
    padding-block: 15px;
  }
}
.greeting__subheading::before {
  content: "＼";
  margin-left: 20px;
  color: #ffffff;
}
@media screen and (max-width:767px) {
  .greeting__subheading::before {
    content: none;
  }
}
.greeting__subheading::after {
  content: "／";
  margin-right: 20px;
  color: #ffffff;
}
@media screen and (max-width:767px) {
  .greeting__subheading::after {
    content: none;
  }
}
@media screen and (max-width:767px) {
  .greeting__subheading {
    font-size: 20px;
    padding-block: 15px;
  }
}

.greeting__inner {
  max-width: 980px;
  margin: 0 auto;
  padding-inline: 15px;
}

.greeting__title {
  text-align: left;
  font-size: 35px;
  border-bottom: 3px solid #ffffff;
  padding-bottom: 34px;
  margin-bottom: 34px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .greeting__title {
    text-align: center;
    font-size: 22px;
    margin-top: 0;
    padding-bottom: 20px;
    margin-bottom: 24px;
  }
}

.greeting__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 51px;
  margin-top: 87px;
}
@media screen and (max-width:767px) {
  .greeting__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    margin-top: 42px;
  }
}

.greeting__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 466px;
          flex: 0 0 466px;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width:767px) {
  .greeting__text {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    font-size: 15px;
  }
}

.greeting__paragraph {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width:767px) {
  .greeting__paragraph {
    font-size: 16px;
  }
}
.greeting__paragraph.mt1em {
  margin-top: 1em;
}

.greeting__profile {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  margin-top: 90px;
}
@media screen and (max-width:767px) {
  .greeting__profile {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 270px;
    margin: 0 auto;
  }
}

.greeting__image-wrapper {
  margin: 0 0 40px;
}
@media screen and (max-width:767px) {
  .greeting__image-wrapper {
    margin: 0 0 20px;
  }
}

.greeting__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}

.greeting__name {
  font-size: 23px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .greeting__name {
    font-size: 21px;
  }
}

.greeting__post {
  font-size: 23px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .greeting__post {
    font-size: 21px;
  }
}

.greeting__fullname {
  font-size: 23px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .greeting__fullname {
    font-size: 21px;
  }
}

.faq {
  background-color: #1c2484;
  color: #ffffff;
  padding-top: 85px;
  padding-bottom: 138px;
}
@media screen and (max-width:767px) {
  .faq {
    padding-top: 30px;
    padding-bottom: 56px;
  }
}

.faq__inner {
  max-width: 775px;
  margin: 0 auto;
  padding-inline: 15px;
}

.faq__title {
  font-size: 40px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-align: center;
}
@media screen and (max-width:767px) {
  .faq__title {
    font-size: 28px;
  }
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

.faq__items {
  margin-top: 71px;
}
@media screen and (max-width:767px) {
  .faq__items {
    margin-top: 0px;
  }
}

.faq__item {
  border-bottom: 1px solid #ffffff;
  font-size: 22px;
  line-height: normal;
}

.faq__question {
  padding-block: 40px 20px;
  position: relative;
  display: block;
}
.faq__question::before, .faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: #ffffff;
}
.faq__question::before {
  right: 6px;
  width: 20px;
  height: 2px;
}
.faq__question::after {
  right: 15px;
  width: 2px;
  height: 20px;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}
@media screen and (max-width:767px) {
  .faq__question {
    padding-block: 10px;
  }
}
@media (any-hover: hover) {
  .faq__question:hover {
    cursor: pointer;
  }
}

details[open] .faq__question::after {
  rotate: 90deg;
}

.faq__question-text {
  list-style: none;
  position: relative;
  padding-inline: 47px 50px;
}
.faq__question-text::before {
  content: "Q.";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  font-size: 22px;
  line-height: 24px;
}
@media screen and (max-width:767px) {
  .faq__question-text::before {
    font-size: 20px;
  }
}
@media screen and (max-width:767px) {
  .faq__question-text {
    font-size: 15px;
    padding-inline: 27px 30px;
  }
}

.faq__answer {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
.faq__answer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}

.faq__answer-text {
  list-style: none;
  position: relative;
  padding-inline: 47px 20px;
}
@media screen and (max-width:767px) {
  .faq__answer-text {
    font-size: 15px;
    padding-inline: 27px 30px;
  }
}
.faq__answer-text::before {
  content: "A.";
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 32px;
  line-height: 24px;
}
@media screen and (max-width:767px) {
  .faq__answer-text::before {
    font-size: 15px;
    font-size: 20px;
  }
}

.campaign {
  margin-top: 95px;
}
@media screen and (max-width:767px) {
  .campaign {
    margin-top: 50px;
  }
}

.campaign__inner {
  padding-inline: 50px;
  max-width: 882px;
  margin: 0 auto;
}
@media screen and (max-width:767px) {
  .campaign__inner {
    padding-inline: 15px;
  }
}

.campaign__border {
  border: 10px solid #1c2484;
  padding-bottom: 30px;
}

.campaign__lead {
  margin-top: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 34px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width:767px) {
  .campaign__lead {
    margin-top: 20px;
  }
}
.campaign__lead::before {
  content: "＼";
  margin-right: 4px;
  color: #000;
}
.campaign__lead::after {
  content: "／";
  margin-left: 4px;
  color: #000;
}
@media screen and (max-width:767px) {
  .campaign__lead {
    font-size: 14px;
  }
}

.campaign__lead--emphasis {
  color: #189316;
  font-weight: 700;
}

.campaign__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 73px;
  margin-top: 20px;
}
@media screen and (max-width:767px) {
  .campaign__buttons {
    gap: 10px;
    padding-inline: 10px;
  }
}

.campaign__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 20px;
}
@media screen and (max-width:767px) {
  .campaign__button {
    padding: 0;
    gap: 10px;
  }
}

.campaign__note-wrap {
  padding-left: 20px;
}
@media screen and (max-width:767px) {
  .campaign__note-wrap {
    padding-left: 0;
  }
}

.campaign__note {
  font-size: 15px;
  color: #000;
  margin-top: 20px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width:767px) {
  .campaign__note {
    font-size: 14px;
    margin-top: 14px;
    text-align: left;
    padding-inline: 10px;
  }
}

.access {
  margin-top: 98px;
}
@media screen and (max-width:767px) {
  .access {
    margin-top: 50px;
  }
}

.access__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7.6923076923%;
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 15px;
}
@media screen and (max-width:767px) {
  .access__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.access__info {
  margin-block: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #000;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width:767px) {
  .access__info {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    margin-inline: auto;
    text-align: center;
  }
}

.access__title {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width:767px) {
  .access__title {
    font-size: 30px;
  }
}

.access__name {
  margin-top: 76px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .access__name {
    margin-top: 15px;
  }
}

.access__address {
  margin-top: 26px;
  font-size: 16.8px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .access__address {
    margin-top: 10px;
    font-size: 14px;
  }
}

.access__time {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .access__time {
    font-size: 18px;
    margin-top: 10px;
  }
}

.access__station {
  font-size: 20px;
  margin-top: 45px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .access__station {
    margin-top: 10px;
    font-size: 16px;
  }
}

.access__map {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 663px;
          flex: 0 0 663px;
  aspect-ratio: 663/538;
  overflow: hidden;
  position: relative;
}
.access__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width:767px) {
  .access__map {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    aspect-ratio: 663/553;
    margin-top: 24px;
  }
}

.introduce {
  margin-top: 70px;
}
@media screen and (max-width:767px) {
  .introduce {
    margin-top: 64px;
  }
}

.introduce__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 15px;
}
@media screen and (max-width:767px) {
  .introduce__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.introduce__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width:767px) {
  .introduce__content {
    text-align: center;
  }
}

.introduce__title {
  display: inline-block;
  font-size: 27px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width:767px) {
  .introduce__title {
    font-size: 20px;
  }
}
.introduce__title::before, .introduce__title::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 80px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
.introduce__title::before {
  left: -87px;
  background-image: url("../img/deco-flower-left.png");
}
.introduce__title::after {
  right: -81px;
  background-image: url("../img/deco-flower-right.png");
}
@media screen and (max-width:767px) {
  .introduce__title::before, .introduce__title::after {
    width: 60px;
    top: 50%;
    bottom: -40px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .introduce__title::before {
    left: -66px;
  }
  .introduce__title::after {
    right: -66px;
  }
}

.introduce__text {
  text-align: center;
  margin-top: 42px;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width:767px) {
  .introduce__text {
    margin-top: 20px;
  }
}

.introduce__link {
  margin-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding-left: 123px;
}
@media screen and (max-width:767px) {
  .introduce__link {
    margin-top: 20px;
    padding-left: 0;
    gap: 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.introduce__link-download {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
}
.introduce__link-download:hover {
  text-decoration: none;
  opacity: 0.8;
}

.introduce__image {
  width: 47%;
}
.introduce__image img {
  width: 100%;
}
@media screen and (max-width:767px) {
  .introduce__image {
    width: 100%;
  }
}

.anchor-offset {
  display: block;
  height: 88px;
  margin-top: -88px;
  visibility: hidden;
  pointer-events: none;
}

.footer {
  background-color: #e7e2db;
  padding: 54px 15px 66px;
}
@media screen and (max-width:767px) {
  .footer {
    margin-top: 50px;
    padding: 40px 15px 40px;
  }
}

.footer__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width:767px) {
  .footer__inner {
    padding-inline: 0;
  }
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9.2972181552%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width:767px) {
  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 382px;
          flex: 0 0 382px;
}
@media screen and (max-width:767px) {
  .footer__logo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 70%;
    margin-inline: auto;
  }
}
.footer__logo img {
  width: 100%;
}

.footer__sns {
  margin-top: 24px;
  width: 32px;
}

.footer__sns-link {
  display: block;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
  .footer__sns-link:hover {
    opacity: 0.8;
  }
}
.footer__sns-link img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__details {
  font-family: "M PLUS Rounded 1c", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 35px;
  width: 44%;
}
@media screen and (max-width:767px) {
  .footer__details {
    margin-top: 0;
    width: 100%;
  }
}

.footer__time {
  font-size: 22px;
}
@media screen and (max-width:767px) {
  .footer__time {
    margin-top: 20px;
    font-size: 18px;
  }
}

.footer__access {
  margin-top: 2px;
  font-size: 22px;
}
@media screen and (max-width:767px) {
  .footer__access {
    font-size: 18px;
  }
}

.footer__tel {
  margin-top: 10px;
  font-size: 20px;
}
@media screen and (max-width:767px) {
  .footer__tel {
    font-size: 18px;
  }
}

.footer__note {
  margin-top: 20px;
  font-size: 15px;
}
@media screen and (max-width:767px) {
  .footer__note {
    margin-top: 10px;
  }
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 58px;
  margin-top: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width:767px) {
  .footer__bottom {
    margin-top: 0;
    gap: 20px;
  }
}

.footer__first-time {
  font-size: 15px;
  text-align: center;
  width: 38%;
}
@media screen and (max-width:767px) {
  .footer__first-time {
    width: 100%;
  }
}

.footer__first-time-label {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 15px;
}

.footer__first-time-text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 15px;
}
@media screen and (max-width:767px) {
  .footer__first-time-text {
    text-align: left;
  }
}

.footer__buttons {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__button {
  width: 300px;
  height: auto;
  display: block;
}
@media screen and (max-width:767px) {
  .footer__button {
    width: 100%;
  }
}
.footer__button img {
  width: 100%;
}

.to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.4s ease, opacity 0.4s ease;
  transition: visibility 0.4s ease, opacity 0.4s ease;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.to-top__button {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: #54cd43;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width:767px) {
  .to-top__button {
    width: 40px;
    height: 40px;
  }
}
.to-top__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

body {
  color: #000;
  overflow-x: hidden;
}
body.is-fixed {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}/*# sourceMappingURL=style.css.map */