@charset "UTF-8";

:root {
  --font-yumincho: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}

/* noto-sans-jp-regular - japanese */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/noto-sans-jp-v55-japanese-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-jp-700 - japanese */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-sans-jp-v55-japanese-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100%;
  font-size: 10px;
}

body {
  color: #4E4E4E;
  background-color: #fff;
  /* font-size: 1.6rem; */
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2em;
}

section {
  padding-top: 90px;
  padding-bottom: 90px;
}

h2 {
  margin-bottom: 60px;
}

.hide {
  display: none !important;
}

.no-scroll {
  overflow-y: hidden;
}

.container-inner {
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1200px;
}

.flex-container {
  display: flex;
}

.grid-container {
  display: grid;
}

.fixed-container {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute-img {
  position: absolute;
}

.nowrap {
  white-space: nowrap;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

p {
  text-align: justify;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

ol li,
ul li {
  margin-left: 1.5em;
}

ul.no-margin {
  margin: 0;
}

ul.list-unstyled {
  list-style-type: none;
}

ul.list-unstyled li {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 601px) {}

@media screen and (max-width: 600px) {}

/* =======================================================
#opening
======================================================= */
.site-main.loading-section {
  opacity: 0;
  visibility: hidden;
}

.site-main.is-ready {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease;
}

.opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background: #EFEFEF;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.opening__inner {
  position: relative;
  aspect-ratio: 1 / 1;
}

@media screen and (min-width: 601px) {
  .opening__inner {
    width: 215px;
  }
}

@media screen and (max-width: 600px) {
  .opening__inner {
    width: 130px;
  }
}

.opening__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}

.opening.is-active {
  animation: openingHide 3s ease forwards;
}

.opening.is-active .opening__image--01 {
  animation: openingImage01 3s ease forwards;
}

.opening.is-active .opening__image--02 {
  animation: openingImage02 3s ease forwards;
}

.opening.is-active .opening__image--03 {
  animation: openingImage03 3s ease forwards;
}

.opening.is-hidden {
  display: none;
}

/* .lazy-media {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lazy-media.is-loaded {
  opacity: 1;
} */

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 0.6s ease;
}

@keyframes openingImage01 {
  0% {
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  55% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes openingImage02 {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  55% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  85% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes openingImage03 {
  0% {
    opacity: 0;
  }

  60% {
    opacity: 0;
  }

  85% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes openingHide {
  0% {
    opacity: 1;
    visibility: visible;
  }

  92% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* Header */
/* =======================================================
.page-template-teaser-page
======================================================= */
@media screen and (min-width: 601px) {
  .page-template-teaser-page header#masthead {
    padding-top: 55px;
    padding-bottom: 30px;
    z-index: 30;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
  }

  .page-template-teaser-page header#masthead .container-inner>.flex-container {
    align-self: end;
    font-size: 1.3rem;
    font-family: var(--font-yumincho);
    color: #fff;
    font-weight: 500;
    column-gap: 10px;
    align-items: center;
  }

  .page-template-teaser-page header#masthead span.logo-icon {
    display: inline-block;
    width: 126px;
    height: 50px;
    background-color: #fff;
    mask: url(../image/logo-word.svg) center / contain no-repeat;
    -webkit-mask: url(../image/logo-word.svg) center / contain no-repeat;
  }

  .page-template-teaser-page header#masthead .container-inner>.flex-container span {
    padding-right: 1.3em;
  }

  .page-template-teaser-page header#masthead.section-out {
    background-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
  }

  .page-template-teaser-page header#masthead.section-out .container-inner>.flex-container {
    color: #4E4E4E !important;
  }

  .page-template-teaser-page header#masthead.section-out span.logo-icon {
    background-color: #4E4E4E !important;
  }

  .page-template-teaser-page header#masthead.section-out .container-inner>.flex-container a {
    border: 1px solid #4E4E4E !important;
  }
}

@media screen and (max-width: 600px) {
  .page-template-teaser-page header#masthead {
    padding-top: 25px;
    padding-bottom: 30px;
    z-index: 30;
    width: 100%;
  }

  .page-template-teaser-page header#masthead.fixed-container {
    position: absolute;
  }

  .page-template-teaser-page header#masthead .container-inner>.flex-container {
    align-self: end;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    font-family: var(--font-yumincho);
    color: #fff;
    font-weight: 500;
    column-gap: 10px;
    align-items: center;
  }

  .page-template-teaser-page header#masthead span.logo-icon {
    display: none;
  }

  .page-template-teaser-page header#masthead .container-inner>.flex-container span {
    padding-right: 18px;
  }
}

.page-template-teaser-page header#masthead .container-inner {
  max-width: 1680px;
  width: 100%;
  justify-content: space-between;
}

.page-template-teaser-page .reservation-bar-button {
  width: 80px;
  height: 40px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFFFFF;
  text-decoration: none;
  box-sizing: border-box;
}

/* =======================================================
.page-template-company-terms
======================================================= */

@media screen and (min-width: 601px) {
  .page-template-company-terms #masthead .container-inner {
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 95px;
  }

  .page-template-company-terms #masthead .site-logo {
    max-width: 155px;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .page-template-company-terms #masthead .reservation-info {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-content: flex-end;
  }

  .page-template-company-terms #masthead .bar_topback {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    align-self: end;
    text-align: end;
    font-size: 1.4rem;
  }

  .page-template-company-terms header#masthead .container-inner>.flex-container {
    font-size: 1.4rem;
    font-family: var(--font-yumincho);
    font-weight: 500;
    column-gap: 10px;
  }

  .page-template-company-terms header#masthead .reservation-info p {
    height: 40px;
    display: flex;
    align-items: center;
  }

  .page-template-company-terms header#masthead .container-inner>.flex-container span {
    padding-right: 1.3em;
  }

  .page-template-company-terms .reservation-bar-button {
    width: 80px;
    height: 40px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    text-decoration: none;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 600px) {
  .page-template-company-terms #masthead .container-inner {
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 55px;
    text-align: center;
    row-gap: 70px;
  }

  .page-template-company-terms #masthead .site-logo {
    max-width: 80px;
    margin: 0 auto;
  }

  .page-template-company-terms #masthead .reservation-info {
    display: none !important;
  }

  .page-template-company-terms #masthead .bar_topback {
    font-size: 1.4rem;
    line-height: 2.2em;
  }
}





/* Footer */
footer {
  padding: 40px 20px 10px;
  background: #212121;
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  z-index: 20;
}

/* =======================================================
.page-template-teaser-page
======================================================= */
.sp-fixed-bar {
  font-family: var(--font-yumincho);
}

@media screen and (min-width: 601px) {
  .page-template-teaser-page .sp-fixed-bar {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .page-template-teaser-page .sp-fixed-bar.fixed-container {
    bottom: 0;
    width: 100%;
    z-index: 10;
    color: #FFFFFF;
    background-color: #212121;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 1.4rem;

    opacity: 0;
    transform: translateY(100%);
    transition:
      opacity 0.5s ease,
      transform 0.5s ease;
    pointer-events: none;
  }

  .page-template-teaser-page .sp-fixed-bar.show-display {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-template-teaser-page .sp-fixed-bar .flex-container {
    max-width: 393px;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
  }

  .page-template-teaser-page .sp-fixed-bar .img-block {
    width: 46px;
  }

  .page-template-teaser-page .info-time-table {
    line-height: 1em;
    letter-spacing: 0.1em;
    margin-left: auto;
    padding-right: 10px;
  }

  .page-template-teaser-page .info-time-table p {
    text-align: right;
  }

  .page-template-teaser-page .info-time-table p:first-of-type span {
    margin-right: 20px;
  }

  .page-template-teaser-page .info-time-table p+p {
    padding-top: 10px;
  }

  .page-template-teaser-page .info-time-table p:nth-of-type(2) span {
    margin-right: 10px;
  }
}

footer .th {
  line-height: 2em;
}

footer .social-button-area {
  display: flex;
  column-gap: 10px;
}

footer .sns-button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
}

footer .sns-placeholder {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
}

@media screen and (min-width: 1191px) {
  footer#colophon {
    padding-top: 215px;
    padding-bottom: 50px;
    padding-left: 140px;
    padding-right: 140px;
    white-space: nowrap;
  }

  footer .info-table {
    column-gap: 190px;
    row-gap: 60px;
    font-size: 1.6rem;
    line-height: 1.6em;
    font-family: var(--font-yumincho);
    font-weight: 500;
  }

  footer .address-block::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 400px;
    height: 1px;
    background-color: #454545;
  }

  footer .grid-container.tel-time-block::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -35px;
    width: 400px;
    height: 1px;
    background-color: #454545;
  }
}

@media screen and (min-width: 865px) {
  footer#colophon>.flex-container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    /* padding-left: 155px; */
    /* padding-right: 140px; */
    padding-bottom: 60px;
    column-gap: 80px;
  }

  footer .site-logo {
    max-width: 91px;
    width: 100%;
  }

  footer .info-table a {
    width: 260px;
    height: 65px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    text-decoration: none;
    box-sizing: border-box;
  }

  footer .company-info {
    justify-content: space-between;
  }

  footer .company-info-social {
    justify-content: flex-end;
    padding-top: 20px;
  }

  footer .info-table .button-area {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    margin-top: auto;
  }
}

@media screen and (max-width: 1190px) and (min-width: 865px) {
  footer#colophon {
    padding-top: 215px;
    padding-bottom: 50px;
    padding-left: clamp(40px, -226.15px + 30.77vw, 140px);
    padding-right: clamp(40px, -226.15px + 30.77vw, 140px);
    white-space: nowrap;
  }

  footer .info-table {
    column-gap: 50px;
    row-gap: 60px;
    font-size: 1.6rem;
    line-height: 1.6em;
    font-family: var(--font-yumincho);
    font-weight: 500;
  }

  footer .address-block::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 315px;
    height: 1px;
    background-color: #454545;
  }

  footer .grid-container.tel-time-block::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -35px;
    width: 315px;
    height: 1px;
    background-color: #454545;
  }
}

@media screen and (max-width: 864px) and (min-width: 601px) {
  footer#colophon {
    padding-top: 100px;
    padding-bottom: 50px;
    padding-left: 40px;
    padding-right: 40px;
    white-space: nowrap;
  }

  footer#colophon>.flex-container {
    max-width: 295px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 10px;
    column-gap: 80px;
  }

  footer .site-logo {
    max-width: 91px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 40px;
  }

  footer .info-table {
    column-gap: 50px;
    row-gap: 60px;
    font-size: 1.6rem;
    line-height: 1.6em;
    font-family: var(--font-yumincho);
    font-weight: 500;
  }

  footer .address-block p {
    text-align: center;
  }

  footer .address-block::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 293px;
    height: 1px;
    background-color: #454545;
  }

  footer .grid-container.tel-time-block::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -35px;
    width: 293px;
    height: 1px;
    background-color: #454545;
  }

  footer .info-table .button-area {
    text-align: center;
  }

  footer .info-table a {
    width: 293px;
    height: 65px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    text-decoration: none;
    box-sizing: border-box;
  }

  footer .company-info {
    justify-content: center;
    flex-direction: column;
  }

  footer .company-info-social {
    justify-content: space-between;
    padding-top: 40px;
  }

  footer .info-table .button-area {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    margin-top: auto;
    text-align: center;
  }
}

@media screen and (min-width: 601px) {
  footer .address-block {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    position: relative;
  }

  footer .grid-container.tel-time-block {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    grid-template-columns: 65fr 190fr;
    column-gap: 35px;
    position: relative;
    margin-bottom: 35px;
  }

  footer .th.th-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  footer .td.td-1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    font-size: 2.6rem;
    line-height: 1.2em;
    letter-spacing: 0.1em;
  }

  footer .th.th-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  footer .td.td-2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    font-size: 1.4rem;
    line-height: 2.3em;
  }

  footer .button-area .button-block+.button-block {
    padding-top: 25px;
  }
}

@media screen and (max-width: 600px) {
  footer#colophon {
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 0;
    padding-right: 0;
    white-space: nowrap;
  }

  footer#colophon>.flex-container {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 10px;
    column-gap: 35px;
  }

  footer .site-logo {
    max-width: 91px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 35px;
  }

  footer .info-table {
    font-size: 1.6rem;
    line-height: 1.6em;
    font-family: var(--font-yumincho);
    font-weight: 500;
  }

  footer .address-block {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding-bottom: 25px;
  }

  footer .grid-container.tel-time-block {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    padding-top: 50px;
    padding-bottom: 70px;
    background-color: #242424;
  }

  footer .th.th-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: right;
  }

  footer .th.th-1::after {
    content: "/";
    margin: 0 5px;
  }

  footer .td.td-1 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    font-size: 2.6rem;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    text-align: center;
    padding-top: 15px;
  }

  footer .th.th-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    text-align: left;
  }

  footer .td.td-2 {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    font-size: 1.4rem;
    line-height: 2.3em;
    text-align: center;
  }

  footer .address-block p {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.8em;
  }

  footer .info-table .button-area {
    text-align: center;
  }

  footer .info-table a {
    width: 260px;
    height: 65px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    text-decoration: none;
    box-sizing: border-box;
  }

  footer .button-area .button-block+.button-block {
    padding-top: 20px;
  }

  footer .company-info {
    justify-content: center;
    flex-direction: column;
  }

  footer .company-info-social {
    max-width: 253px;
    justify-content: space-between;
    padding-top: 40px;
  }

  footer .info-table .button-area {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    margin-top: auto;
    text-align: center;
    padding-top: 40px;
  }
}

/* =======================================================
.page-template-company-terms
======================================================= */

@media screen and (min-width: 601px) {
  .footer-upper {
    max-width: 1620px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 180px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: right;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 600px) {
  .footer-upper {
    max-width: 1620px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
    padding-top: 120px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    font-size: 1.4rem;
    line-height: 2em;
  }
}