@charset "UTF-8";
/*======================================
    Font / Color
======================================*/
/*======================================
    common
======================================*/
html {
  font-size: 62.5%;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #030001;
}

body {
  background-color: #fff;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.is-nowrap {
  white-space: nowrap;
}

/*======================================
    section
======================================*/
.inner {
  width: 1600px;
  max-width: 95%;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .inner {
    max-width: 90%;
  }
}

.section-block {
  margin-top: 160px;
}

@media screen and (max-width: 599px) {
  .section-block {
    margin-top: min(52 / 375 * 100vw, 52px);
  }
}

.section__title {
  font-size: 6rem;
  font-weight: 700;
  font-family: angie-sans, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", sans-serif;
  line-height: 1.31667;
  color: #8C2E56;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .section__title {
    text-align: left;
  }
}

@media screen and (max-width: 599px) {
  .section__title {
    font-size: 2rem;
    line-height: 1.35;
  }
}

.section__text {
  font-size: 2.4rem;
  line-height: 1.70833;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

@media screen and (max-width: 1024px) {
  .section__text {
    font-size: 2rem;
  }
}

@media screen and (max-width: 599px) {
  .section__text {
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

/*======================================
    header
======================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.7);
  padding-left: 31px;
  padding-right: 44px;
}

@media screen and (max-width: 1024px) {
  .header__inner {
    height: 60px;
  }
}

@media screen and (max-width: 599px) {
  .header__inner {
    height: 37px;
    padding-left: 11px;
  }
}

.header__logo {
  width: 237px;
}

@media screen and (max-width: 1024px) {
  .header__logo {
    width: 180px;
  }
}

@media screen and (max-width: 599px) {
  .header__logo {
    width: 93px;
  }
}

.header__logo--link {
  display: block;
}

.header__links--container {
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .header__links--container {
    display: none;
  }
}

.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(60 / 1440 * 100vw);
}

@media screen and (min-width: 1440px) {
  .header__links {
    gap: 60px;
  }
}

.header__link a {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: angie-sans, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", sans-serif;
  line-height: 1.35;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

.header__link a:hover {
  color: #823555;
}

.drawer-icon {
  position: fixed;
  top: 20px;
  right: 27px;
  z-index: 400;
  display: none;
}

@media screen and (max-width: 1024px) {
  .drawer-icon {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .drawer-icon {
    top: 11px;
    right: 23px;
  }
}

.drawer-icon.is-active .drawer-icon-bar1,
.drawer-icon.is-active .drawer-icon-bar2,
.drawer-icon.is-active .drawer-icon-bar3 {
  background-color: #fff;
}

.drawer-icon.is-active .drawer-icon-bar1 {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.drawer-icon.is-active .drawer-icon-bar2 {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.drawer-icon.is-active .drawer-icon-bar3 {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.drawer-icon-bars {
  position: relative;
  width: 40px;
  height: 20px;
}

@media screen and (max-width: 599px) {
  .drawer-icon-bars {
    width: 17px;
    height: 12px;
  }
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  left: 0;
  width: 40px;
  height: 4px;
  background-color: #707070;
  border-radius: 10px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

@media screen and (max-width: 599px) {
  .drawer-icon-bar1,
  .drawer-icon-bar2,
  .drawer-icon-bar3 {
    width: 17px;
    height: 2px;
  }
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 50%;
}

.drawer-icon-bar3 {
  top: 100%;
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-color: rgba(119, 2, 52, 0.8);
  z-index: 350;
  visibility: hidden;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  opacity: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.drawer-content.is-active {
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.drawer-content-items {
  color: #fff;
  font-size: 2rem;
  font-family: angie-sans, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", sans-serif;
  padding-left: 14.8936%;
  padding-top: 5.5625em;
}

@media screen and (max-width: 599px) {
  .drawer-content-items {
    font-size: 1.6rem;
  }
}

.drawer-content-item a {
  display: block;
  font-weight: 700;
  padding: 1.34375em 0;
}

/*======================================
    MV
======================================*/
.mv {
  margin-top: 80px;
  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;
  height: min(1000 / 1920 * 100vw, 1000px);
  background: url(../img/mv.jpg) no-repeat center top 65%/cover;
}

@media screen and (max-width: 1024px) {
  .mv {
    margin-top: 0;
    height: 667px;
  }
}

@media screen and (max-width: 599px) {
  .mv {
    background: url(../img/mv.jpg) no-repeat left 57% top/cover;
  }
}

.mv__logo {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  width: min(792 / 1920 * 100vw, 792px);
}

@media screen and (max-width: 1024px) {
  .mv__logo {
    width: min(255 / 375 * 100vw, 400px);
  }
}

@media screen and (max-width: 599px) {
  .mv__logo {
    width: min(255 / 375 * 100vw, 300px);
    -webkit-transform: translateY(-12%);
            transform: translateY(-12%);
  }
}

/*======================================
    footer
======================================*/
.footer {
  position: relative;
}

.f-sns__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  width: 218px;
  margin: 200px auto 0;
  -webkit-transform: translateX(12%);
          transform: translateX(12%);
}

@media screen and (max-width: 599px) {
  .f-sns__links {
    margin-top: max(75 / 375 * 100vw, 75px);
    width: 170px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.f-sns__link a {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.f-sns__link a:hover {
  opacity: 0.7;
}

.copyright {
  margin-top: 62px;
  background-color: #8C2E56;
  color: #fff;
  font-family: angie-sans, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", sans-serif;
  font-size: 2.4rem;
  line-height: 1.33333;
  padding: 0.54em 2.2em 0.8em;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 599px) {
  .copyright {
    margin-top: max(23 / 375 * 100vw, 23px);
    font-size: 1.2rem;
    padding: 0.9em 1.58em 0.92em;
    letter-spacing: 0.1em;
  }
}

.icon__top {
  position: absolute;
  top: 0;
  right: 29px;
  width: 49px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

@media screen and (max-width: 599px) {
  .icon__top {
    width: 18px;
    top: 20%;
    right: 20px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

/*======================================
    about
======================================*/
.about {
  margin-top: 90px;
}

@media screen and (max-width: 599px) {
  .about {
    margin-top: max(16 / 375 * 100vw, 16px);
  }
}

.about__lead {
  width: 1116px;
  max-width: 100%;
  margin: 0.5556em auto 0;
  text-align: center;
  font-family: "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.69444;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .about__lead {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 599px) {
  .about__lead {
    font-size: 1.6rem;
    margin-top: 0.8em;
  }
}

.about__lead::before, .about__lead::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
  color: #8C2E56;
  font-size: 4.1667em;
  font-family: angie-sans, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", sans-serif;
}

@media screen and (max-width: 1024px) {
  .about__lead::before, .about__lead::after {
    display: none;
  }
}

.about__lead::before {
  content: "{";
  left: 0;
}

.about__lead::after {
  content: "}";
  right: 0;
}

.about__text {
  width: 695px;
  max-width: 100%;
  margin: 1.9em auto 0;
}

@media screen and (max-width: 599px) {
  .about__text {
    margin-top: 0.9em;
  }
}

/*======================================
    menu
======================================*/
.menu__lists {
  margin-top: 58px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-column-gap: 25px;
  grid-row-gap: 22px;
}

@media screen and (max-width: 1024px) {
  .menu__lists {
    -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media screen and (max-width: 599px) {
  .menu__lists {
    -ms-grid-columns: (minmax(150px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-column-gap: 5.5%;
    margin: max(18 / 375 * 100vw, 18px) -1.5% 0;
    grid-row-gap: 19px;
  }
}

.menu__list {
  font-size: 1.4rem;
  font-family: "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.42857;
}

@media screen and (max-width: 599px) {
  .menu__list {
    font-size: 1.6rem;
  }
}

.menu__list--img {
  position: relative;
}

.menu__list--img::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.menu__list--img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu__list--img.-modal {
  margin-top: 32px;
}

@media screen and (max-width: 1024px) {
  .menu__list--img.-modal {
    margin-top: 14px;
  }
}

.menu__list--name {
  font-weight: 700;
  font-size: 1.2857em;
  line-height: 1.11111;
  margin-top: 0.4em;
}

.menu__list--name.-short {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .menu__list--name {
    font-size: 1.125em;
  }
}

@media screen and (max-width: 599px) {
  .menu__list--name {
    letter-spacing: -0.15em;
    font-size: 1em;
    margin-top: 0.25em;
  }
  .menu__list--name.-en {
    letter-spacing: normal;
  }
}

.menu__list--name.-modal {
  font-size: 1.458em;
}

@media screen and (max-width: 1024px) {
  .menu__list--name.-modal {
    font-size: 1.25em;
  }
}

@media screen and (max-width: 599px) {
  .menu__list--name.-modal {
    font-size: 1em;
    letter-spacing: normal;
  }
}

.menu__list--price {
  font-weight: 700;
  margin-top: 0.5em;
}

@media screen and (max-width: 599px) {
  .menu__list--price {
    font-size: 0.75em;
    margin-top: 0.2em;
    letter-spacing: -0.05em;
  }
}

.menu__list--price.-modal {
  font-size: 1.458em;
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .menu__list--price.-modal {
    font-size: 1.25em;
  }
}

@media screen and (max-width: 599px) {
  .menu__list--price.-modal {
    font-size: 0.875em;
  }
}

.menu__list--description {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  margin-top: 1.125em;
  line-height: 1.70833;
}

@media screen and (max-width: 1024px) {
  .menu__list--description {
    font-size: 1.8rem;
    margin-top: 0.5em;
  }
}

@media screen and (max-width: 599px) {
  .menu__list--description {
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.modal-base {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  padding-top: 40px;
  overflow: scroll;
}

.modal__container {
  width: 841px;
  max-width: 80%;
  background-color: #000;
  margin: 0 auto;
  padding: 33px 53px;
  color: #fff;
  position: relative;
  font-family: angie-sans, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", sans-serif;
  font-size: 2.4rem;
}

@media screen and (max-width: 1024px) {
  .modal__container {
    width: 90%;
    padding: 11px calc(23 / 375 * 100vw);
  }
}

@media screen and (max-width: 599px) {
  .modal__container {
    width: 100%;
    max-width: 90%;
  }
}

.modal-bars--container {
  position: absolute;
  top: 33px;
  right: 61px;
  width: 25px;
  height: 25px;
}

@media screen and (max-width: 1024px) {
  .modal-bars--container {
    width: 11px;
    height: 11px;
    top: 20px;
    right: 27px;
  }
}

@media screen and (max-width: 599px) {
  .modal-bars--container {
    top: 14px;
  }
}

.modal-bars {
  position: relative;
}

.modal-bar1,
.modal-bar2 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 35px;
  height: 4px;
  border-radius: 10px;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .modal-bar1,
  .modal-bar2 {
    width: 16px;
    height: 2px;
  }
}

.modal-bar1 {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.modal-bar2 {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.modal__logo {
  width: 80px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .modal__logo {
    width: 36px;
  }
}

/*======================================
    Special
======================================*/
.special {
  margin-top: 165px;
}

@media screen and (max-width: 599px) {
  .special {
    margin-top: max(92 / 375 * 100vw, 92px);
  }
}

.special__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% auto;
      grid-template-columns: 50% auto;
  grid-column-gap: 5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 62px;
}

@media screen and (max-width: 1439px) {
  .special__container {
    grid-column-gap: 4%;
  }
}

@media screen and (max-width: 1024px) {
  .special__container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 599px) {
  .special__container {
    margin-top: max(18 / 375 * 100vw, 18px);
    grid-row-gap: 13px;
  }
}

.special__img {
  position: relative;
}

.special__tag {
  position: absolute;
  bottom: 40px;
  right: 27px;
  background-color: #000;
  width: 4.25em;
  height: 4.25em;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 0.75em;
  padding-left: 0.5em;
  font-family: pacifico, sans-serif;
  font-size: 5.2rem;
  color: #fff;
}

@media screen and (max-width: 1439px) {
  .special__tag {
    font-size: calc(52 / 1920 * 100vw);
  }
}

@media screen and (max-width: 1024px) {
  .special__tag {
    bottom: 0;
    right: 11px;
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
    font-size: calc(20 / 375 * 100vw);
  }
}

.special__tag span {
  display: block;
  -webkit-transform: translateX(15%);
          transform: translateX(15%);
  margin-bottom: 0.2em;
}

.special__contents {
  padding-top: 60px;
}

@media screen and (max-width: 599px) {
  .special__contents {
    padding-top: 0;
  }
}

.special__lead {
  font-size: 3.8rem;
  font-weight: 700;
  font-family: angie-sans, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", sans-serif;
}

@media screen and (max-width: 599px) {
  .special__lead {
    font-size: 1.6rem;
  }
}

.special__text {
  margin-top: 1.5em;
}

@media screen and (max-width: 599px) {
  .special__text {
    margin-top: 0.4em;
  }
}

.special__instagram {
  margin-top: 3em;
  font-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1439px) {
  .special__instagram {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1024px) {
  .special__instagram {
    margin-top: 2em;
  }
}

@media screen and (max-width: 599px) {
  .special__instagram {
    margin-top: 1em;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1024px) {
  .special__instagram span {
    display: none;
  }
}

.special__instagram--link {
  display: inline-block;
  width: 2.083em;
  margin-right: 0.3em;
  margin-left: 0.7em;
  -webkit-transform: translateY(12%);
          transform: translateY(12%);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media screen and (max-width: 1439px) {
  .special__instagram--link {
    margin-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .special__instagram--link {
    margin: 0 auto;
    width: 4em;
  }
}

@media screen and (max-width: 599px) {
  .special__instagram--link {
    width: 2.25em;
  }
}

.special__instagram--link:hover {
  opacity: 0.7;
}

/*======================================
    access
======================================*/
.access {
  margin-top: 164px;
}

@media screen and (max-width: 599px) {
  .access {
    margin-top: max(78 / 375 * 100vw, 78px);
  }
}

.access__container {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% auto;
      grid-template-columns: 50% auto;
  grid-column-gap: 5%;
}

@media screen and (max-width: 1439px) {
  .access__container {
    grid-column-gap: 4%;
  }
}

@media screen and (max-width: 1024px) {
  .access__container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
}

@media screen and (max-width: 599px) {
  .access__container {
    grid-row-gap: 20px;
    margin-top: 0;
  }
}

.access__map {
  position: relative;
}

.access__map::before {
  content: "";
  display: block;
  padding-top: calc(613 / 801 * 100%);
}

@media screen and (max-width: 599px) {
  .access__map::before {
    padding-top: calc(260 / 339 * 100%);
  }
}

.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.access__contents {
  font-size: clamp(2rem, 1.25vw, 2.4rem);
}

@media screen and (max-width: 1024px) {
  .access__contents {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media screen and (max-width: 599px) {
  .access__contents {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1024px) {
  .access__operation--container {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 599px) {
  .access__operation--container {
    width: 274px;
  }
}

.access__operation {
  font-size: 1.4583em;
  font-weight: 700;
  font-family: "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.88571;
  margin-top: 0.4em;
}

@media screen and (max-width: 599px) {
  .access__operation {
    font-size: 1.1429em;
  }
}

.access__operation--row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6.15em auto;
      grid-template-columns: 6.15em auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 599px) {
  .access__operation--row {
    -ms-grid-columns: 4.6em auto;
        grid-template-columns: 4.6em auto;
  }
}

.access__operation--row dt {
  font-size: 1.25em;
  font-weight: 700;
  font-family: "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 2.2;
}

@media screen and (max-width: 599px) {
  .access__operation--row dt {
    font-size: 1.1429em;
    line-height: 1.875;
  }
}

.access__operation--row dd {
  color: #555;
}

@media screen and (max-width: 599px) {
  .access__operation--row dd {
    font-size: 1em;
  }
}

.access__tel--container {
  margin-top: 3.2em;
  padding-left: 3.9583em;
}

@media screen and (max-width: 1024px) {
  .access__tel--container {
    text-align: center;
    padding-left: 0;
  }
}

@media screen and (max-width: 599px) {
  .access__tel--container {
    margin-top: 2.1875em;
  }
}

.access__tel {
  display: inline-block;
  font-family: "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.875em;
  font-weight: 700;
  padding-top: 1.867em;
  letter-spacing: 0.025em;
  position: relative;
}

.access__tel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.44em;
  height: 1.44em;
  background: url(../img/icon_tel.png) no-repeat center center/contain;
}

@media screen and (max-width: 599px) {
  .access__tel::before {
    width: 1.72em;
    height: 1.72em;
  }
}

@media screen and (max-width: 599px) {
  .access__tel {
    padding-top: 2.4em;
    font-size: 1.7857em;
  }
}

.access__address {
  margin-top: 1em;
}

@media screen and (max-width: 1024px) {
  .access__address {
    text-align: center;
  }
}

.info__container {
  margin-top: 74px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 49.625% auto;
      grid-template-columns: 49.625% auto;
  grid-column-gap: 2.3125%;
}

@media screen and (max-width: 1024px) {
  .info__container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
}

@media screen and (max-width: 599px) {
  .info__container {
    grid-row-gap: 13px;
    margin-top: 57px;
  }
}

@media screen and (max-width: 1024px) {
  .info__contents {
    width: 70%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 599px) {
  .info__contents {
    width: 80%;
  }
}

.info__lead {
  font-size: 3rem;
  font-family: "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 599px) {
  .info__lead {
    font-size: 1.6rem;
  }
}

.info__text {
  margin-top: 0.5em;
}

@media screen and (max-width: 599px) {
  .info__text {
    color: #555;
    margin-top: 0.6em;
  }
}

.info__details {
  background-color: rgba(193, 189, 189, 0.25);
  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;
  color: #9B9797;
  font-size: 2.1rem;
  height: 100%;
}
