@charset "UTF-8";
/*
Theme Name:テーマの名前 // 必須
Theme URL:テーマのURL
Description:テーマの説明
Author:テーマ制作者の名前
Author URL: テーマの作者のURLを記入します
Version:テーマのバージョン
License:テーマのライセンス
License URL:ライセンスのURL
Tags:テーマに関連するタグを設定できます。タグはカンマ区切りで複数設定できます
Template:親テーマの名前を記入します（※そのテーマが「子テーマ」の場合にのみ必須となります）
*/
/*======================================
	Common
======================================*/
html {
  font-size: 100%;
}

body {
  background-color: #ecded4;
  font-family: "Instrument Sans", "IBM Plex Sans JP", sans-serif;
  font-size: 0.84375rem;
  color: #2f201b;
  letter-spacing: 0.1em;
  line-height: 1.63;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 480px) {
  body {
    letter-spacing: 0.05em;
  }
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.6;
  }
}

button {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

ol, ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1.2;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table tr th, table tr td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

address {
  font-style: normal;
}

/*		Accessibility
--------------------------------------*/
:focus-visible {
  outline: auto !important;
}

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

/*		display
--------------------------------------*/
.xl_disp-b {
  display: none;
}
@media screen and (max-width: 1399px) {
  .xl_disp-b {
    display: block;
  }
}

@media screen and (max-width: 1399px) {
  .xl_disp-n {
    display: none;
  }
}
.lg_disp-b {
  display: none;
}
@media screen and (max-width: 1024px) {
  .lg_disp-b {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .lg_disp-n {
    display: none;
  }
}
.md_disp-b {
  display: none;
}
@media screen and (max-width: 768px) {
  .md_disp-b {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .md_disp-n {
    display: none;
  }
}
.sm_disp-b {
  display: none;
}
@media screen and (max-width: 480px) {
  .sm_disp-b {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .sm_disp-n {
    display: none;
  }
}
.xs_disp-b {
  display: none;
}
@media screen and (max-width: 374px) {
  .xs_disp-b {
    display: block;
  }
}

@media screen and (max-width: 374px) {
  .xs_disp-n {
    display: none;
  }
}
/*		grid
--------------------------------------*/
.card {
  display: grid;
}
.card.--col1 {
  grid-template-columns: repeat(1, 1fr);
}
.card.--col2 {
  grid-template-columns: repeat(2, 1fr);
}
.card.--col3 {
  grid-template-columns: repeat(3, 1fr);
}
.card.--col4 {
  grid-template-columns: repeat(4, 1fr);
}
.card.--col5 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1399px) {
  .card.xl--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .card.xl--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card.xl--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card.xl--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .card.xl--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .card.lg--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .card.lg--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card.lg--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card.lg--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .card.lg--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .card.md--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .card.md--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card.md--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card.md--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .card.md--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .card.sm--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .card.sm--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card.sm--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card.sm--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .card.sm--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 374px) {
  .card.xs--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .card.xs--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card.xs--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card.xs--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .card.xs--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/*		Flex
--------------------------------------*/
.l_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1399px) {
  .xl_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  .lg_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .md_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  .sm_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 374px) {
  .xs_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
._ai-b {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

._ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

._ai-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

._ai-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

._ai-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media screen and (max-width: 1399px) {
  .xl_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .xl_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .xl_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .xl_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .xl_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 1024px) {
  .lg_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .lg_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lg_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .lg_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .lg_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 768px) {
  .md_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .md_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .md_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .md_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .md_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 480px) {
  .sm_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .sm_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sm_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .sm_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sm_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 374px) {
  .xs_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .xs_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .xs_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .xs_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .xs_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
._jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

._jc-fe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

._jc-fs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

._jc-sa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

._jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1399px) {
  .xl_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .xl_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .xl_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .xl_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .xl_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .lg_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .lg_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .lg_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .lg_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .lg_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .md_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .md_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .md_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .md_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .md_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 480px) {
  .sm_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sm_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sm_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sm_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .sm_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 374px) {
  .xs_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .xs_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .xs_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .xs_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .xs_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
._fxw-n {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

._fxw-w {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

._fxw-wr {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

@media screen and (max-width: 1399px) {
  .xl_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .xl_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .xl_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (max-width: 1024px) {
  .lg_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .lg_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lg_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (max-width: 768px) {
  .md_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .md_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .md_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (max-width: 480px) {
  .sm_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .sm_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sm_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (max-width: 374px) {
  .xs_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .xs_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .xs_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
._fxd-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._fxd-cr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

._fxd-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

._fxd-rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 1399px) {
  .xl_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .xl_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .xl_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .xl_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 1024px) {
  .lg_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lg_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .lg_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .lg_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 768px) {
  .md_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .md_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .md_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .md_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 480px) {
  .sm_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sm_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sm_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .sm_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 374px) {
  .xs_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .xs_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .xs_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .xs_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
._ac-c {
  -ms-flex-line-pack: center;
      align-content: center;
}

._ac-fe {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

._ac-fs {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

._ac-s {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

._ac-sa {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

._ac-sb {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

@media screen and (max-width: 1399px) {
  .xl_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .xl_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .xl_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .xl_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .xl_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .xl_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .lg_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .lg_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .lg_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .lg_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .lg_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .lg_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .md_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .md_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .md_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .md_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .md_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .md_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (max-width: 480px) {
  .sm_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .sm_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .sm_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .sm_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .sm_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .sm_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (max-width: 374px) {
  .xs_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .xs_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .xs_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .xs_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .xs_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .xs_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
._ord1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

._ord2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

._ord3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

._ord4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

._ord5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

._ord6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

._ord7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

._ord8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

._ord9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

._ord10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

@media screen and (max-width: 1399px) {
  .xl_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .xl_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .xl_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .xl_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .xl_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .xl_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .xl_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .xl_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .xl_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .xl_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (max-width: 1024px) {
  .lg_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .lg_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .lg_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .lg_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .lg_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .lg_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .lg_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .lg_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .lg_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .lg_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (max-width: 768px) {
  .md_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .md_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .md_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .md_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .md_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .md_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .md_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .md_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .md_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .md_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (max-width: 480px) {
  .sm_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .sm_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sm_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .sm_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .sm_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .sm_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .sm_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .sm_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .sm_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .sm_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (max-width: 374px) {
  .xs_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .xs_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .xs_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .xs_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .xs_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .xs_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .xs_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .xs_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .xs_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .xs_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
/*======================================
	Animation
======================================*/
/*		News board
--------------------------------------*/
/*		display
(※.js-viewも一緒に指定)
--------------------------------------*/
/*
// fade in
.view-fadeIn {
	opacity: 0;
	animation: view-fadeIn 1s ease(in-out-cubic) both;
}
@keyframes view-fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
*/
/*
// slide up
.view-slideUp {
	opacity: 0;
	animation: view-slideUp 1s ease(in-out-cubic) both;
}
@keyframes view-slideUp {
	0% {
		opacity: 0;
		transform: translate(0, 35px);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}
*/
/*
// slide ro right
.view-slideIn-l {
	opacity: 0;
	animation: view-slideIn-l .6s ease(in-out-cubic) both;
}
@keyframes view-slideIn-l {
	0% {
		opacity: 0;
		transform: translate(35px, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}
*/
/*
// slide left
.view-slideIn-r {
	opacity: 0;
	animation: view-slideIn-r .6s ease(in-out-cubic) both;
}
@keyframes view-slideIn-r {
	0% {
		opacity: 0;
		transform: translate(-35px, 0);
	}
	100% {
		opacity: 0;
		transform: translate(0, 0);
	}
}
*/
/*======================================
	Program
======================================*/
/* Header
--------------------------------------*/
.js-headerTopContents,
.js-headerBottomContents {
  opacity: 0;
  -webkit-transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.js-headerTopContents {
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}

.js-headerBottomContents {
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}

.js-headerTopContents.on,
.js-headerBottomContents.on {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l_header__site-title {
  -webkit-transition: 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.l_header__site-title.active {
  width: 56px !important;
}
@media screen and (max-width: 480px) {
  .l_header__site-title.active {
    width: 50px !important;
  }
}

.js-mainNav {
  -webkit-transition: visibility 0s, -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: visibility 0s, -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0s;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0s, -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media screen and (max-width: 768px) {
  .js-mainNav {
    display: none;
  }
}

.js-mainNav.hide {
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  -webkit-transition: visibility 0s 0.4s, -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: visibility 0s 0.4s, -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0s 0.4s;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0s 0.4s, -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  visibility: hidden;
}

.js-burgerMenu {
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
}

.js-burgerMenu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-burgerToggle.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s, visibility 0s, -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.4s, visibility 0s, -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.4s, visibility 0s;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.4s, visibility 0s, -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.js-burgerToggle {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0s 0.4s, -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.4s, visibility 0s 0.4s, -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.4s, visibility 0s 0.4s;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.4s, visibility 0s 0.4s, -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media screen and (max-width: 768px) {
  .js-burgerToggle {
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
}

.js-burgerToggle.active .burger-toggle__line:nth-of-type(1) {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.js-burgerToggle.active .burger-toggle__line:nth-of-type(2) {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
.js-burgerToggle.active .burger-toggle__label {
  opacity: 0;
}

.js-focus-trap {
  visibility: hidden;
}

.js-mask {
  display: none;
}

.js-mask.active {
  display: block;
}

/* sound button
--------------------------------------*/
.js-btnSound.off {
  background-color: #ecded4;
}
.js-btnSound.off::after {
  border-color: #1f1f1f;
}
.js-btnSound.off .c_btn-main__text {
  color: #2f201b;
}

/* accordion
--------------------------------------*/
.js-acoLabel.open .b_aco-main__toggle {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* animation display
--------------------------------------*/
.js-slideUpItem {
  vertical-align: middle;
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
}

.js-slideUp.on .js-slideUpItem {
  -webkit-animation: loading-text 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: loading-text 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@-webkit-keyframes loading-text {
  0% {
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes loading-text {
  0% {
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-maskFadeOut {
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, transparent), color-stop(70%, #000));
  -webkit-mask-image: linear-gradient(to bottom, transparent 10%, #000 70%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, transparent), color-stop(70%, #000));
          mask-image: linear-gradient(to bottom, transparent 10%, #000 70%);
  -webkit-mask-size: 100% 340%;
          mask-size: 100% 340%;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  opacity: 1;
}

.js-maskFadeOut.is-hide {
  -webkit-animation: mask-fade-out 1.5s ease-in-out forwards;
          animation: mask-fade-out 1.5s ease-in-out forwards;
}

@-webkit-keyframes mask-fade-out {
  0% {
    -webkit-mask-position: bottom;
            mask-position: bottom;
    opacity: 1;
  }
  50% {
    -webkit-mask-position: 0;
            mask-position: 0;
  }
  100% {
    -webkit-mask-position: 0;
            mask-position: 0;
    opacity: 0;
  }
}

@keyframes mask-fade-out {
  0% {
    -webkit-mask-position: bottom;
            mask-position: bottom;
    opacity: 1;
  }
  50% {
    -webkit-mask-position: 0;
            mask-position: 0;
  }
  100% {
    -webkit-mask-position: 0;
            mask-position: 0;
    opacity: 0;
  }
}
.js-scrollMaskFade {
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #000), color-stop(50%, transparent));
  -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent 50%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #000), color-stop(50%, transparent));
          mask-image: linear-gradient(to bottom, #000 40%, transparent 50%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  opacity: 1;
}

.js-scrollMaskFade.on {
  -webkit-animation: mask-fade-in 2s ease-in-out forwards;
          animation: mask-fade-in 2s ease-in-out forwards;
}

@-webkit-keyframes mask-fade-in {
  0% {
    -webkit-mask-position: bottom;
            mask-position: bottom;
    opacity: 0;
  }
  50% {
    -webkit-mask-position: top;
            mask-position: top;
  }
  100% {
    -webkit-mask-position: top;
            mask-position: top;
    opacity: 1;
  }
}

@keyframes mask-fade-in {
  0% {
    -webkit-mask-position: bottom;
            mask-position: bottom;
    opacity: 0;
  }
  50% {
    -webkit-mask-position: top;
            mask-position: top;
  }
  100% {
    -webkit-mask-position: top;
            mask-position: top;
    opacity: 1;
  }
}
/*
Theme Name:テーマの名前 // 必須
Theme URL:テーマのURL
Description:テーマの説明
Author:テーマ制作者の名前
Author URL: テーマの作者のURLを記入します
Version:テーマのバージョン
License:テーマのライセンス
License URL:ライセンスのURL
Tags:テーマに関連するタグを設定できます。タグはカンマ区切りで複数設定できます
Template:親テーマの名前を記入します（※そのテーマが「子テーマ」の場合にのみ必須となります）
*/
/*======================================
	Loading
======================================*/
.l_loading {
  width: 100%;
  height: 100vh;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ecded4;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
}
.l_loading .l_loading__text-wrap,
.l_loading .l_loading__logo-wrap {
  position: absolute;
  overflow: hidden;
}
.l_loading .l_loading__text-wrap {
  width: 260px;
  text-align: center;
}
.l_loading .l_loading__logo-wrap {
  width: 69px;
  height: 65px;
}

/*
Theme Name:テーマの名前 // 必須
Theme URL:テーマのURL
Description:テーマの説明
Author:テーマ制作者の名前
Author URL: テーマの作者のURLを記入します
Version:テーマのバージョン
License:テーマのライセンス
License URL:ライセンスのURL
Tags:テーマに関連するタグを設定できます。タグはカンマ区切りで複数設定できます
Template:親テーマの名前を記入します（※そのテーマが「子テーマ」の場合にのみ必須となります）
*/
/*======================================
	Header
======================================*/
.l_header {
  width: 100%;
  height: 100vh;
  color: #ecded4;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  pointer-events: none;
  mix-blend-mode: difference;
}
.l_header .l_header__inner {
  width: 100%;
  height: 100%;
  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;
  padding: 24px;
}
@media screen and (max-width: 480px) {
  .l_header .l_header__inner {
    padding: 20px;
  }
}
.l_header .l_header__top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l_header .l_header__site-title {
  width: 69px;
  line-height: 0;
  margin-bottom: 12px;
}
.l_header .l_header__site-title a {
  display: block;
  pointer-events: all;
}
.l_header .l_header__add {
  width: 178px;
  line-height: 0;
}
@media screen and (max-width: 480px) {
  .l_header .l_header__add {
    display: none;
  }
}
.l_header .main-nav__item-link {
  color: inherit;
  position: relative;
  pointer-events: all;
}
.l_header .main-nav__item-link::before {
  content: "";
  position: absolute;
  top: 12%;
  right: 24%;
  height: 1px;
  width: 0;
  background: currentColor;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l_header .main-nav__item-link:hover::before {
    width: 75%;
  }
}
.l_header .c_btn-reservation {
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .l_header .c_btn-reservation {
    margin-top: 36px;
  }
}
.l_header .l_header__bottom-container {
  width: calc(100% - 48px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: fixed;
  bottom: 24px;
  left: 24px;
}
@media screen and (max-width: 480px) {
  .l_header .l_header__bottom-container {
    width: calc(100% - 40px);
    bottom: 20px;
    left: 20px;
  }
}
@media screen and (max-width: 480px) {
  .l_header .l_header__bottom-container .l_header__left-box {
    width: 42.6666666667vw;
  }
}
.l_header .l_header__bottom-container .l_header__left-box .l_header__taglines {
  margin-bottom: 24px;
}
@media screen and (max-width: 480px) {
  .l_header .l_header__bottom-container .l_header__left-box .l_header__taglines {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}
.l_header .l_header__bottom-container .l_header__left-box .l_header__tagline-jp {
  width: 265px;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .l_header .l_header__bottom-container .l_header__left-box .l_header__tagline-jp {
    width: 245px;
  }
}
@media screen and (max-width: 480px) {
  .l_header .l_header__bottom-container .l_header__left-box .l_header__tagline-jp {
    width: 100%;
  }
}
.l_header .l_header__bottom-container .l_header__left-box .l_header__tagline-en {
  width: 270px;
}
@media screen and (max-width: 768px) {
  .l_header .l_header__bottom-container .l_header__left-box .l_header__tagline-en {
    width: 245px;
  }
}
@media screen and (max-width: 480px) {
  .l_header .l_header__bottom-container .l_header__left-box .l_header__tagline-en {
    width: 100%;
  }
}
.l_header .l_header__bottom-container .l_header__left-box .c_copyright {
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .l_header .l_header__bottom-container .l_header__left-box .c_copyright {
    margin-right: 12px;
  }
}
@media screen and (max-width: 480px) {
  .l_header .l_header__bottom-container .l_header__left-box .c_copyright {
    display: none;
  }
}
.l_header .l_header__bottom-container .l_header__right-box {
  text-align: right;
}
.l_header .l_header__bottom-container .l_header__right-box .c_btn-main {
  margin-bottom: 23px;
  pointer-events: all;
}
@media screen and (max-width: 480px) {
  .l_header .l_header__bottom-container .l_header__right-box .c_btn-main {
    margin-bottom: 8px;
  }
}
.l_header .l_header__bottom-container .l_header__right-box .l_header__scroll-amount {
  letter-spacing: -0.025em;
  margin-right: 42px;
}
@media screen and (max-width: 768px) {
  .l_header .l_header__bottom-container .l_header__right-box .l_header__scroll-amount {
    display: none;
  }
}
.l_header .l_header__bottom-container .l_header__right-box .l_header__clock-text {
  letter-spacing: 0;
  padding-left: 28px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .l_header .l_header__bottom-container .l_header__right-box .l_header__clock-text {
    font-size: 12px;
  }
}
.l_header .l_header__bottom-container .l_header__right-box .l_header__clock-text::before {
  content: "";
  display: block;
  width: 25px;
  height: 11px;
  background: url("./assets/svg/icon-clock_light.svg") no-repeat center center/contain;
  position: absolute;
  left: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media screen and (max-width: 480px) {
  .l_header .l_header__bottom-container .l_header__right-box .l_header__clock-text::before {
    top: 2px;
    bottom: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* Main Menu
--------------------------------------*/
.main-nav {
  margin-bottom: 6px;
}

.main-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ecded4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-nav__list .main-nav__list-item {
  font-size: 0.8125rem;
  letter-spacing: -0.025em;
  margin-left: 1.5384615385em;
}
.main-nav__list .main-nav__item-link {
  display: block;
  padding: 0 0.3076923077em;
}

/* Burger Menu
--------------------------------------*/
.burger-menu {
  max-width: 520px;
  width: 100%;
  height: calc(100vh - 14px);
  color: #ecded4;
  background-color: #1f1f1f;
  border-radius: 35px;
  margin: 7px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media screen and (max-width: 1024px) {
  .burger-menu {
    max-width: 470px;
  }
}
@media screen and (max-width: 480px) {
  .burger-menu {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    margin: 0;
  }
}
.burger-menu .burger-menu__inner {
  height: 100%;
  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;
  padding: 110px 72px 55px;
}
@media screen and (max-width: 480px) {
  .burger-menu .burger-menu__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 24px;
  }
}
.burger-menu .burger-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .burger-menu .burger-menu__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .burger-menu .burger-menu__list-item__box:first-of-type {
    margin-right: 40px;
  }
}
.burger-menu .burger-menu__list-item {
  font-size: 26px;
  letter-spacing: -0.025em;
  margin: 24px 0;
}
@media screen and (max-width: 1024px) {
  .burger-menu .burger-menu__list-item {
    font-size: 20px;
    margin: 12px 0;
  }
}
@media screen and (max-width: 480px) {
  .burger-menu .burger-menu__list-item {
    margin: 22px 0;
  }
}
@media screen and (max-width: 1024px) {
  .burger-menu .c_title-page {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 1024px) {
  .burger-menu .burger-menu__sns {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .burger-menu .burger-menu__bottom-box {
    width: 100%;
    padding: 0 20px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.burger-menu .burger-menu__text {
  margin-bottom: 24px;
}
.burger-menu .b_news-text__wrap {
  width: 250px;
  font-size: 12px;
  margin-right: 20px;
}

/* Burger Toggle
--------------------------------------*/
.burger-toggle__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 24px;
  pointer-events: all;
}
.burger-toggle__wrap .burger-toggle__label {
  letter-spacing: -0.025em;
  padding: 0 0.6666666667em;
  margin-right: 1.6296296296em;
  -webkit-transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media screen and (max-width: 480px) {
  .burger-toggle__wrap .burger-toggle__label {
    margin-right: 1.3333333333em;
  }
}
.burger-toggle__wrap .burger-toggle {
  display: block;
  width: 68px;
  height: 6px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .burger-toggle__wrap .burger-toggle {
    width: 58px;
  }
}
.burger-toggle__wrap .burger-toggle__line {
  width: 100%;
  height: 1px;
  background-color: #ecded4;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.burger-toggle__wrap .burger-toggle__line:nth-of-type(1) {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.burger-toggle__wrap .burger-toggle__line:nth-of-type(2) {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.burger-toggle__wrap .visually-hidden {
  color: #fff;
}

/* Mask
--------------------------------------*/
.mask {
  width: 100%;
  height: 100vh;
  background-color: #000;
  cursor: pointer;
  opacity: 0.5;
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: -2;
  -webkit-transition: inherit;
  transition: inherit;
}

/*
Theme Name:テーマの名前 // 必須
Theme URL:テーマのURL
Description:テーマの説明
Author:テーマ制作者の名前
Author URL: テーマの作者のURLを記入します
Version:テーマのバージョン
License:テーマのライセンス
License URL:ライセンスのURL
Tags:テーマに関連するタグを設定できます。タグはカンマ区切りで複数設定できます
Template:親テーマの名前を記入します（※そのテーマが「子テーマ」の場合にのみ必須となります）
*/
/*======================================
	Contents
======================================*/
.l_container {
  width: 100%;
  max-width: 1438px;
  padding: 0 36px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .l_container {
    padding: 0 20px;
  }
}

/*======================================
	Section
======================================*/
.l_sec {
  padding: 65px 0;
}
@media screen and (max-width: 480px) {
  .l_sec {
    padding: 50px 0;
  }
}
.l_sec .l_sec-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .l_sec .l_sec-head {
    margin-bottom: 30px;
  }
}
.l_sec .l_sec-head__md {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 26px;
}
.l_sec .l_sec-head__md .c_title-main {
  margin-bottom: 0;
}
.l_sec .l_sec-head__md .c_title-jp {
  line-height: 1.2;
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  .l_sec .l_sec-head__md .c_title-jp {
    font-size: 0.625rem;
  }
}
.l_sec .l_sec-head .c_text-link {
  font-size: 0.75rem;
}
.l_sec .c_title-main__xs {
  margin-bottom: 26px;
}

.l_sec-col2 .l_sec-head .c_text-link {
  margin-right: 4.4166666667em;
}
@media screen and (max-width: 480px) {
  .l_sec-col2 .l_sec-head .c_text-link {
    margin-right: 2.3333333333em;
  }
}
.l_sec-col2 .l_sec-body__container > * + * {
  margin-top: 26px;
}
.l_sec-col2 .l_sec-body__wrap > .c_pagination-main {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 8px;
}
.l_sec-col2 .l_sec-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l_sec-col2 .l_sec-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.l_sec-col2 .l_sec-body .l_sec-body__title-sub {
  margin-bottom: 0.3333333333em;
}
.l_sec-col2 .l_sec-body .l_sec-body__title-sub .c_text-link {
  text-decoration: none;
}
.l_sec-col2 .l_sec-body .c_title-main__md {
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .l_sec-col2 .l_sec-body .c_title-main__md {
    margin-bottom: 12px;
  }
}
.l_sec-col2 .l_sec-body .c_text-justify:not(:last-of-type) {
  margin-bottom: 5.1851851852em;
}
@media screen and (max-width: 480px) {
  .l_sec-col2 .l_sec-body .c_text-justify:not(:last-of-type) {
    margin-bottom: 2.962962963em;
  }
}
.l_sec-col2 .l_sec-body .c_text-justify:has(+ .l_sec-body__bar-text) {
  margin-bottom: 0;
}
.l_sec-col2 .l_sec-body .l_sec-body__bar-text {
  border-top: 1px solid #2f201b;
  padding-top: 1.7777777778em;
  margin-top: 1.3333333333em;
}
.l_sec-col2 .l_sec-body .l_sec-body__text-box {
  width: 42.7%;
  padding-right: 72px;
}
@media screen and (max-width: 768px) {
  .l_sec-col2 .l_sec-body .l_sec-body__text-box {
    width: 100%;
    padding-right: 0;
  }
}
.l_sec-col2 .l_sec-body .c_btn-arrow {
  margin-top: 32px;
}
.l_sec-col2 .l_sec-col2__right-box {
  width: 57.3%;
}
@media screen and (max-width: 768px) {
  .l_sec-col2 .l_sec-col2__right-box {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .l_sec-col2 .l_sec-col2__right-box {
    margin-bottom: 20px;
  }
}
.l_sec-col2__reverse .l_sec-body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .l_sec-col2__reverse .l_sec-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.l_sec-col2__reverse .l_sec-body__text-box {
  padding-right: 0;
  padding-left: 72px;
}
@media screen and (max-width: 768px) {
  .l_sec-col2__reverse .l_sec-body__text-box {
    padding-left: 0;
  }
}

.l_sec-bg__bk {
  color: #ecded4;
  background-color: #1f1f1f;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
}
@media screen and (max-width: 480px) {
  .l_sec-bg__bk {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
.l_sec-bg__bk .c_btn-arrow .c_btn-arrow__icon {
  background-image: url("./assets/svg/icon-arrow_w.svg");
}
.l_sec-bg__bk .c_btn-arrow .c_btn-arrow__text::after {
  background-color: #ecded4;
}

.l_sec-page {
  padding: 65px 0;
}

/*======================================
	Page
======================================*/
.l_page {
  padding-top: 234px;
}
@media screen and (max-width: 480px) {
  .l_page {
    padding-top: 294px;
  }
}

.l_page-fv {
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.l_page-intro {
  padding-top: 108px;
}
.l_page-intro .l_page-intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l_page-intro .b_sec-page:first-of-type {
  max-width: 293px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .l_page-intro .b_sec-page:first-of-type {
    display: none;
  }
}
.l_page-intro .b_sec-page:last-of-type {
  max-width: 480px;
}
@media screen and (max-width: 768px) {
  .l_page-intro .b_sec-page:last-of-type {
    max-width: 100%;
  }
}

/*
Theme Name:テーマの名前 // 必須
Theme URL:テーマのURL
Description:テーマの説明
Author:テーマ制作者の名前
Author URL: テーマの作者のURLを記入します
Version:テーマのバージョン
License:テーマのライセンス
License URL:ライセンスのURL
Tags:テーマに関連するタグを設定できます。タグはカンマ区切りで複数設定できます
Template:親テーマの名前を記入します（※そのテーマが「子テーマ」の場合にのみ必須となります）
*/
/*======================================
	Footer
======================================*/
.l_footer {
  font-family: "IBM Plex Sans JP", sans-serif;
  padding-top: 143px;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .l_footer {
    padding-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .l_footer {
    padding: 50px 0;
  }
}
.l_footer .l_footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content {
    letter-spacing: 0;
  }
}
.l_footer .l_footer__content:not(:last-of-type) {
  margin-bottom: 136px;
}
@media screen and (max-width: 480px) {
  .l_footer .l_footer__content:not(:last-of-type) {
    margin-bottom: 76px;
  }
}
.l_footer .l_footer__content .l_footer__body__right-box.__col3 {
  max-width: 415px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content .l_footer__body__right-box.__col3 {
    display: block;
  }
}
.l_footer .l_footer__content .l_footer__body__empty-item {
  width: 3em;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(1) .l_footer__head-box {
    margin-right: 0;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(1) .l_footer__body-box {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .l_footer .l_footer__content:nth-of-type(1) .l_footer__body-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(1) .l_footer__body__right-box {
    width: 100%;
  }
}
.l_footer .l_footer__content:nth-of-type(1) .l_footer__body__left-box {
  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;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(1) .l_footer__body__left-box {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 192px;
    margin-bottom: 40px;
  }
}
.l_footer .l_footer__content:nth-of-type(1) .l_footer__body__right-box .c_text-justify:last-of-type {
  margin-top: 1.6296296296em;
}
@media screen and (max-width: 480px) {
  .l_footer .l_footer__content:nth-of-type(1) .l_footer__body__right-box .c_text-justify:last-of-type {
    margin-top: 1.1851851852em;
  }
}
@media screen and (max-width: 480px) {
  .l_footer .l_footer__content:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(2) .l_footer__head-box {
    margin-right: 40px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .l_footer .l_footer__content:nth-of-type(2) .l_footer__head-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: auto;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.l_footer .l_footer__content:nth-of-type(2) .l_footer__logo-wrap {
  max-width: 132px;
  width: 100%;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(2) .l_footer__logo-wrap {
    max-width: 82px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 480px) {
  .l_footer .l_footer__content:nth-of-type(2) .l_footer__logo-wrap {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
.l_footer .l_footer__content:nth-of-type(2) .l_footer__address-wrap {
  max-width: 190px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .l_footer .l_footer__content:nth-of-type(2) .l_footer__address-wrap {
    display: none;
  }
}
.l_footer .l_footer__content:nth-of-type(2) .l_footer__body-box {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 66px;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(2) .l_footer__body-box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 480px) {
  .l_footer .l_footer__content:nth-of-type(2) .l_footer__body-box {
    width: 100%;
    row-gap: 28px;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(2) .l_footer__body-box > div:nth-of-type(2) {
    display: none;
  }
}
.l_footer .l_footer__content:nth-of-type(2) .l_footer__body__left-box address {
  margin-bottom: 1.7777777778em;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(2) .l_footer__body__left-box:first-of-type {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(2) .l_footer__body__left-box:first-of-type a {
    text-decoration: underline;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(2) .l_footer__body__left-box:nth-of-type(3) {
    width: auto;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(2) .l_footer__body__right-box {
    max-width: none;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(2) .l_footer__body__right-box .c_text-justify {
    font-size: 0.8125rem;
    text-decoration: underline;
  }
}
.l_footer .l_footer__content:nth-of-type(2) .l_footer__menu-item {
  font-size: 1rem;
}
.l_footer .l_footer__content:nth-of-type(2) .c_btn-reservation {
  margin: 27px 0 0;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(2) .c_btn-reservation {
    width: 100px;
  }
}
.l_footer .l_footer__content:nth-of-type(3) {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .l_footer .l_footer__content:nth-of-type(3) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.l_footer .l_footer__content:nth-of-type(3) .l_footer__head-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(3) .l_footer__head-box {
    width: auto;
  }
}
.l_footer .l_footer__content:nth-of-type(3) .l_footer__head-box > * + * {
  margin-left: 2.875em;
}
@media screen and (max-width: 480px) {
  .l_footer .l_footer__content:nth-of-type(3) .l_footer__head-box > * + * {
    margin-left: 1.3846153846em;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(3) .l_footer__body-box {
    width: auto;
    display: inline-block;
    margin-right: 20%;
  }
}
@media screen and (max-width: 374px) {
  .l_footer .l_footer__content:nth-of-type(3) .l_footer__body-box {
    margin-right: 0;
  }
}
.l_footer .l_footer__content:nth-of-type(3) .l_footer__body-box img {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .l_footer .l_footer__content:nth-of-type(3) .l_footer__body__right-box {
    max-width: none;
  }
}
.l_footer .l_footer__head-box {
  width: calc(35% - 40px);
  margin-right: 40px;
}
.l_footer .l_footer__body-box {
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l_footer .l_footer__body__left-box {
  width: calc(47% - 40px);
  margin-right: 40px;
}
.l_footer .l_footer__body__right-box {
  width: 53%;
}

/*
Theme Name:テーマの名前 // 必須
Theme URL:テーマのURL
Description:テーマの説明
Author:テーマ制作者の名前
Author URL: テーマの作者のURLを記入します
Version:テーマのバージョン
License:テーマのライセンス
License URL:ライセンスのURL
Tags:テーマに関連するタグを設定できます。タグはカンマ区切りで複数設定できます
Template:親テーマの名前を記入します（※そのテーマが「子テーマ」の場合にのみ必須となります）
*/
/*======================================
	Component
======================================*/
/*		Button
--------------------------------------*/
.c_btn-main {
  display: inline-block;
  padding: 0 2.5925925926em 0 2em;
  border: 1px solid #2f201b;
  border-radius: 50vh;
  position: relative;
}
.c_btn-main::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border: 1px solid #2f201b;
  border-radius: 50vh;
  position: absolute;
  right: 10px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.c_btn-main .c_btn-main__text {
  font-weight: normal;
  line-height: 1.1;
}
@media (hover: hover) {
  .c_btn-main:hover {
    opacity: 0.4;
  }
}
.c_btn-main__light {
  border: 1px solid #ecded4;
}
.c_btn-main__light::after {
  border: 1px solid #ecded4;
}
.c_btn-main__light .c_btn-main__text {
  color: #ecded4;
}

.c_btn-arrow {
  display: inline-block;
}
.c_btn-arrow .c_btn-arrow__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c_btn-arrow .c_btn-arrow__link:hover .c_btn-arrow__icon {
  background-position: 62px 0;
}
.c_btn-arrow .c_btn-arrow__icon-wrap {
  width: 62px;
  margin-right: 20px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .c_btn-arrow .c_btn-arrow__icon-wrap {
    width: 56px;
    margin-right: 10px;
  }
}
.c_btn-arrow .c_btn-arrow__icon {
  display: block;
  width: 100%;
  height: 14px;
  background-image: url("./assets/svg/icon-arrow.svg");
  background-repeat: repeat-x;
  background-size: contain;
  background-position: 0 0;
  -webkit-transition: background-position 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-position 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c_btn-arrow .c_btn-arrow__text {
  font-size: 0.9375rem;
  letter-spacing: -0.055em;
  position: relative;
}
@media screen and (max-width: 480px) {
  .c_btn-arrow .c_btn-arrow__text {
    font-size: 14px;
  }
}
.c_btn-arrow .c_btn-arrow__text::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #2f201b;
  position: absolute;
  left: 0;
  bottom: 0;
}

.c_btn-reservation {
  display: block;
  width: 138px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .c_btn-reservation {
    width: 128px;
  }
}
@media screen and (max-width: 480px) {
  .c_btn-reservation {
    width: 115px;
  }
}

.c_btn-to-top {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50vh;
  border: 1px solid #ecded4;
  position: fixed;
  right: 24px;
  bottom: 56px;
  z-index: 50;
  mix-blend-mode: difference;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 480px) {
  .c_btn-to-top {
    right: 20px;
    bottom: 50px;
  }
}
.c_btn-to-top::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("./assets/svg/icon-arrow_top.svg") no-repeat center center/contain;
  margin: auto;
  position: absolute;
  inset: 0;
}

/*		Pagination
--------------------------------------*/
.c_pagination-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.0625rem;
}
@media screen and (max-width: 480px) {
  .c_pagination-main {
    font-size: 13px;
  }
}
.c_pagination-main .c_pagination-main__bar {
  display: block;
  width: 45px;
  height: 1px;
  background-color: #2f201b;
  margin: 0 4px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(-14deg);
          transform: rotate(-14deg);
}
@media screen and (max-width: 480px) {
  .c_pagination-main .c_pagination-main__bar {
    width: 30px;
  }
}
.c_pagination-main__light .c_pagination-main__bar {
  background-color: #ecded4;
}

/*		Title
--------------------------------------*/
.c_title-main {
  font-size: 67px;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .c_title-main {
    font-size: 50px;
  }
}
@media screen and (max-width: 480px) {
  .c_title-main {
    font-size: 28px;
  }
}
.c_title-main__light {
  color: #ecded4;
}
.c_title-main__md {
  font-size: 46px;
}
@media screen and (max-width: 1024px) {
  .c_title-main__md {
    font-size: 36px;
  }
}
@media screen and (max-width: 480px) {
  .c_title-main__md {
    font-size: 22px;
  }
}
.c_title-main__sm {
  font-size: 39px;
}
@media screen and (max-width: 1024px) {
  .c_title-main__sm {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .c_title-main__sm {
    font-size: 20px;
  }
}
.c_title-main__xs {
  font-size: 28px;
  letter-spacing: -0.035em;
}
@media screen and (max-width: 1024px) {
  .c_title-main__xs {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .c_title-main__xs {
    font-size: 18px;
  }
}
.c_title-main__uxs {
  font-size: 1.4375rem;
}
@media screen and (max-width: 1024px) {
  .c_title-main__uxs {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .c_title-main__uxs {
    font-size: 1rem;
  }
}
.c_title-main__uxs.c_text-wide {
  font-weight: normal;
  letter-spacing: -0.005em;
}
.c_title-main__small-num {
  font-size: 0.75rem;
  font-weight: normal;
  letter-spacing: -0.025em;
  margin-right: 0.1666666667em;
}
@media screen and (max-width: 480px) {
  .c_title-main__small-num {
    font-size: 0.625rem;
  }
}

.c_title-sub {
  font-weight: normal;
  line-height: 0;
  padding-left: 56px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .c_title-sub {
    padding-left: 44px;
  }
}
.c_title-sub::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #2f201b;
  position: absolute;
  left: 0;
  bottom: 50%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translateY(50%) rotate(-14deg);
          transform: translateY(50%) rotate(-14deg);
}
@media screen and (max-width: 480px) {
  .c_title-sub::before {
    width: 36px;
  }
}
.c_title-sub .c_title-sub__img {
  height: 17px;
}
@media screen and (max-width: 480px) {
  .c_title-sub .c_title-sub__img {
    height: 15px;
  }
}

.c_title-page {
  font-size: 1.125rem;
  letter-spacing: -0.005em;
}
@media screen and (max-width: 480px) {
  .c_title-page {
    font-size: 1rem;
  }
}
.c_title-page__lg {
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.05;
}

/*		Copyright
--------------------------------------*/
.c_copyright {
  width: 53px;
}
@media screen and (max-width: 768px) {
  .c_copyright {
    width: 40px;
  }
}
.c_copyright img {
  vertical-align: middle;
}

/*		Text
--------------------------------------*/
.c_text-link {
  text-decoration: underline;
  letter-spacing: -0.025em;
}

.c_text-wide {
  display: inline-block;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scale(1.3, 1);
          transform: scale(1.3, 1);
}

.c_text-justify {
  text-align: justify;
}
.c_text-justify__lg {
  font-size: 1.125rem;
}
@media screen and (max-width: 1024px) {
  .c_text-justify__lg {
    font-size: 1rem;
  }
}

/*		Image
--------------------------------------*/
.c_img-wrap__rounded {
  border-radius: 25px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .c_img-wrap__rounded {
    border-radius: 20px;
  }
}
.c_img-wrap__rounded img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c_img-wrap__rounded iframe {
  width: 100%;
  height: 100%;
}

/*
Theme Name:テーマの名前 // 必須
Theme URL:テーマのURL
Description:テーマの説明
Author:テーマ制作者の名前
Author URL: テーマの作者のURLを記入します
Version:テーマのバージョン
License:テーマのライセンス
License URL:ライセンスのURL
Tags:テーマに関連するタグを設定できます。タグはカンマ区切りで複数設定できます
Template:親テーマの名前を記入します（※そのテーマが「子テーマ」の場合にのみ必須となります）
*/
/*======================================
	Block
======================================*/
/*		Section
--------------------------------------*/
.b_sec-page .c_title-sub {
  margin-bottom: 43px;
}
@media screen and (max-width: 480px) {
  .b_sec-page .c_title-sub {
    margin-bottom: 32px;
  }
}
.b_sec-page .c_title-page {
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .b_sec-page .c_title-page {
    margin-bottom: 22px;
  }
}
.b_sec-page .c_title-page__lg {
  margin: 20px 0;
}

/*		Slider
--------------------------------------*/
@media screen and (max-width: 768px) {
  .b_slider-main {
    padding: 0 20px;
  }
}
.b_slider-main .swiper-slide {
  width: 495px;
}
.b_slider-main .b_slider-main__slide-title {
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.625em;
}
.b_slider-main .b_slider-main__img-wrap {
  aspect-ratio: 495/350;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .b_slider-main .b_slider-main__img-wrap {
    aspect-ratio: 1/1;
  }
}
.b_slider-main .b_slider-main__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.b_slider-main .b_slider-main__slide-text {
  margin-bottom: 1.2592592593em;
}
@media screen and (max-width: 480px) {
  .b_slider-main .b_slider-main__slide-text {
    margin-bottom: 2.962962963em;
  }
}

.b_slider-loop .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
@media screen and (max-width: 768px) {
  .b_slider-loop .swiper-wrapper {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
.b_slider-loop .swiper-slide {
  width: 662px;
}
@media screen and (max-width: 768px) {
  .b_slider-loop .swiper-slide {
    width: 100% !important;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.b_slider-loop .b_slider-loop__img-wrap {
  aspect-ratio: 662/492;
}
@media screen and (max-width: 480px) {
  .b_slider-loop .b_slider-loop__img-wrap {
    aspect-ratio: 696/882;
  }
}

/*		List
--------------------------------------*/
.b_aco-main .b_aco-main__list-item {
  padding: 21px 0 20px;
}
@media screen and (max-width: 480px) {
  .b_aco-main .b_aco-main__list-item {
    padding: 13px 0 12px;
  }
}
.b_aco-main .b_aco-main__label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2f201b;
  cursor: pointer;
}
.b_aco-main .b_aco-main__toggle {
  display: block;
  width: 22px;
  height: 22px;
  position: relative;
  margin-right: 18px;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media screen and (max-width: 480px) {
  .b_aco-main .b_aco-main__toggle {
    width: 15px;
    height: 15px;
    margin-right: 12px;
  }
}
.b_aco-main .b_aco-main__toggle::before, .b_aco-main .b_aco-main__toggle::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #2f201b;
  position: absolute;
  left: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.b_aco-main .b_aco-main__toggle::after {
  -webkit-transform: translateY(50%) rotate(90deg);
          transform: translateY(50%) rotate(90deg);
}
.b_aco-main .b_aco-main__label-text {
  letter-spacing: 0.05em;
}
.b_aco-main .b_aco-main__panel {
  display: none;
  color: #ecded4;
  background-color: #1f1f1f;
  padding: 25px 42px;
  margin: 16px 40px 0;
}
@media screen and (max-width: 480px) {
  .b_aco-main .b_aco-main__panel {
    padding: 20px 20px 19px;
    margin: 16px 0 0;
  }
}
.b_aco-main__light .b_aco-main__toggle::before, .b_aco-main__light .b_aco-main__toggle::after {
  background-color: #ecded4;
}
.b_aco-main__light .b_aco-main__label-text {
  color: #ecded4;
}
.b_aco-main__light .b_aco-main__panel {
  color: #2f201b;
  background-color: #ecded4;
}

.b_list-dl > * + * {
  margin-top: 7px;
}
@media screen and (max-width: 480px) {
  .b_list-dl > * + * {
    margin-top: 4px;
  }
}
.b_list-dl .b_list-dl__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.b_list-dl .b_list-dl__item dt {
  min-width: 135px;
}

.b_list-main > * + * {
  margin-top: 0.5185185185em;
}

/*		News Board
--------------------------------------*/
.b_news-text__wrap {
  width: 230px;
  height: 1.6em;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .b_news-text__wrap {
    width: 160px;
  }
}
@media screen and (max-width: 480px) {
  .b_news-text__wrap {
    width: 100%;
  }
}

.b_news-text {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  will-change: transform;
  letter-spacing: -0.025em;
}

@-webkit-keyframes tickerMove {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes tickerMove {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/*
Theme Name:テーマの名前 // 必須
Theme URL:テーマのURL
Description:テーマの説明
Author:テーマ制作者の名前
Author URL: テーマの作者のURLを記入します
Version:テーマのバージョン
License:テーマのライセンス
License URL:ライセンスのURL
Tags:テーマに関連するタグを設定できます。タグはカンマ区切りで複数設定できます
Template:親テーマの名前を記入します（※そのテーマが「子テーマ」の場合にのみ必須となります）
*/
/*======================================
	Top
======================================*/
/*		Fv
--------------------------------------*/
.fv {
  width: 100%;
  height: 100vh;
  padding: 0 36px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .fv {
    padding: 0 20px;
  }
}
.fv .fv__inner {
  width: 100%;
  height: calc(100% - 20px);
  background: url("./assets/img/fv.png") no-repeat center center/contain;
  mix-blend-mode: multiply;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .fv .fv__inner {
    background: url("./assets/img/fv_sp.png") no-repeat center center/contain;
  }
}
@media screen and (max-width: 480px) {
  .fv .fv__inner {
    height: 100%;
  }
}
.fv .fv__text {
  width: 100%;
  max-width: 1316px;
  margin: 0 25px;
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: translateY(34%);
          transform: translateY(34%);
}
@media screen and (max-width: 768px) {
  .fv .fv__text {
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
  }
}
@media screen and (max-width: 480px) {
  .fv .fv__text {
    display: none;
  }
}

/*		Message
--------------------------------------*/
.message {
  padding: 141px 0 217px;
}
@media screen and (max-width: 1024px) {
  .message {
    padding: 120px 0 150px;
  }
}
@media screen and (max-width: 480px) {
  .message {
    padding-top: 0;
  }
}
.message .message__inner {
  max-width: 598px;
  margin: 0 auto;
}
.message .message__text {
  font-size: 1.4375rem;
  text-align: justify;
  letter-spacing: 0;
  line-height: 1.82;
  margin-top: -0.347826087em;
  -webkit-transform: scale(1, 0.8);
          transform: scale(1, 0.8);
}
@media screen and (max-width: 1024px) {
  .message .message__text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .message .message__text {
    font-size: 1rem;
  }
}

/*		Rooms
--------------------------------------*/
.rooms {
  padding-bottom: 130px;
}
@media screen and (max-width: 480px) {
  .rooms {
    padding-bottom: 60px;
  }
}
.rooms .l_sec-head {
  padding: 0 36px;
}
@media screen and (max-width: 480px) {
  .rooms .l_sec-head {
    padding: 0 20px;
  }
}

/*		Terrace/Lounge
--------------------------------------*/
.terrace .l_sec-body__wrap:not(:last-of-type) {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .terrace .l_sec-body__wrap:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .terrace .l_sec-body__wrap:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

/*		sounds
--------------------------------------*/
@media screen and (max-width: 480px) {
  .sounds .l_sec-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 480px) {
  .sounds .l_sec-head > .c_title-main {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .sounds .l_sec-head .sp-only {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 480px) {
  .sounds .l_sec-body__text-box .l_sec-body__title-sub,
  .sounds .l_sec-body__text-box .c_title-main__md {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .sounds .b_slider-main__img-wrap {
    aspect-ratio: 1/1;
  }
}

/*		FAQ
--------------------------------------*/
.faq .l_sec-head {
  margin-bottom: 32px;
}
.faq .c_title-main__small-num {
  margin-right: 0.8em;
}
.faq .c_btn-arrow {
  margin-top: 50px;
}

/*		Access
--------------------------------------*/
.access .sp-only {
  display: none;
}
@media screen and (max-width: 480px) {
  .access .sp-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.access .sp-only .access__link {
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.access .access__map-link {
  margin-top: 5.5294117647em;
}
@media screen and (max-width: 768px) {
  .access .access__map-link {
    margin-top: 2.3529411765em;
  }
}
@media screen and (max-width: 480px) {
  .access .access__map-link {
    display: none;
  }
}
.access .l_sec-col2__right-box {
  position: relative;
}
@media screen and (max-width: 768px) {
  .access .l_sec-col2__right-box {
    aspect-ratio: 695/457;
    width: 100%;
  }
}
.access .l_sec-col2__right-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(208, 199, 167);
  mix-blend-mode: color-burn;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.access .l_sec-col2__right-box iframe {
  -webkit-filter: grayscale(1) contrast(0.5) brightness(1.35);
          filter: grayscale(1) contrast(0.5) brightness(1.35);
}
@media screen and (max-width: 480px) {
  .access .l_sec-body__text-box .l_sec-head {
    display: none;
  }
}

/*
Theme Name:テーマの名前 // 必須
Theme URL:テーマのURL
Description:テーマの説明
Author:テーマ制作者の名前
Author URL: テーマの作者のURLを記入します
Version:テーマのバージョン
License:テーマのライセンス
License URL:ライセンスのURL
Tags:テーマに関連するタグを設定できます。タグはカンマ区切りで複数設定できます
Template:親テーマの名前を記入します（※そのテーマが「子テーマ」の場合にのみ必須となります）
*/
/*======================================
	About
======================================*/
.page-about {
  /*		fv
  --------------------------------------*/
  /*		body
  --------------------------------------*/
  /*		footer
  --------------------------------------*/
}
.page-about .l_page-fv {
  background-image: url("./assets/img/fv-about.jpg");
}
@media screen and (max-width: 768px) {
  .page-about .about-body {
    padding-top: 120px;
  }
}
.page-about .about-body .b_sec-page {
  max-width: 570px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .page-about .about-body .b_sec-page {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .page-about .about-body .b_sec-page {
    margin: 0 auto 32px;
  }
}
@media screen and (max-width: 768px) {
  .page-about .about-body .b_slider-loop {
    padding: 0 36px;
  }
  .page-about .about-body .b_slider-loop .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-about .about-body .b_slider-loop .swiper-slide {
    width: 100%;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .page-about .about-body .b_slider-loop .swiper-slide {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .page-about .about-body .b_slider-loop {
    padding: 0 20px;
  }
}
.page-about .about-body .about-body__img-area > * + * {
  margin-top: 36px;
}
@media screen and (max-width: 480px) {
  .page-about .about-body .about-body__img-area > * + * {
    margin-top: 20px;
  }
}
.page-about .about-body .about-body__img-wrap {
  aspect-ratio: 662/492;
}
@media screen and (max-width: 480px) {
  .page-about .about-body .about-body__img-wrap {
    aspect-ratio: 696/882;
  }
}
.page-about .about-footer {
  padding-top: 82px;
}
@media screen and (max-width: 480px) {
  .page-about .about-footer {
    padding-top: 42px;
  }
}
.page-about .about-footer .about-footer__inner {
  max-width: 856px;
  width: 100%;
  margin: 0 auto;
}
.page-about .about-footer .about-footer__title-wrap {
  text-align: center;
  margin-bottom: 123px;
}
@media screen and (max-width: 768px) {
  .page-about .about-footer .about-footer__title-wrap {
    margin-bottom: 62px;
  }
}
@media screen and (max-width: 480px) {
  .page-about .about-footer .about-footer__title-wrap {
    margin-bottom: 18px;
  }
}
.page-about .about-footer .about-footer__img-wrap {
  max-width: 856px;
  margin-bottom: 14px;
}
@media screen and (max-width: 480px) {
  .page-about .about-footer .about-footer__img-wrap {
    aspect-ratio: 696/882;
  }
}

/*
Theme Name:テーマの名前 // 必須
Theme URL:テーマのURL
Description:テーマの説明
Author:テーマ制作者の名前
Author URL: テーマの作者のURLを記入します
Version:テーマのバージョン
License:テーマのライセンス
License URL:ライセンスのURL
Tags:テーマに関連するタグを設定できます。タグはカンマ区切りで複数設定できます
Template:親テーマの名前を記入します（※そのテーマが「子テーマ」の場合にのみ必須となります）
*/
/*======================================
	About
======================================*/
.page-rooms {
  /*		fv
  --------------------------------------*/
  /*		intro
  --------------------------------------*/
  /*		room type
  --------------------------------------*/
  /*		other items
  --------------------------------------*/
  /*		common room
  --------------------------------------*/
}
.page-rooms .l_sec {
  padding: 55px 0;
}
@media screen and (max-width: 480px) {
  .page-rooms .l_sec {
    padding: 40px 0;
  }
}
.page-rooms .l_page-fv {
  background-image: url("./assets/img/fv-rooms.jpg");
}
.page-rooms .l_page-intro {
  padding-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .page-rooms .l_page-intro {
    padding-bottom: 80px;
  }
}
.page-rooms .type .l_sec-head {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .page-rooms .type .l_sec-head {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
  }
}
.page-rooms .type .l_sec-head .c_title-main {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-rooms .type .l_sec-head .c_title-main {
    display: inline-block;
  }
}
.page-rooms .type .l_sec-body__text-box {
  width: calc(50% + 88px);
  padding-right: 88px;
}
@media screen and (max-width: 768px) {
  .page-rooms .type .l_sec-body__text-box {
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-rooms .type .l_sec-body__text-box .c_title-main {
    display: none;
  }
}
.page-rooms .type .l_sec-body__text-box .c_text-justify {
  margin-bottom: 73px;
}
@media screen and (max-width: 768px) {
  .page-rooms .type .l_sec-body__text-box .c_text-justify {
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 480px) {
  .page-rooms .type .l_sec-body__text-box .c_text-justify {
    margin-bottom: 36px;
  }
}
.page-rooms .type .l_sec-col2__right-box {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page-rooms .type .l_sec-col2__right-box {
    width: 100%;
  }
}
.page-rooms .type .l_sec-col2__right-box .b_slider-main__img-wrap {
  aspect-ratio: 646/480;
}
.page-rooms .type.l_sec-col2__reverse .l_sec-head {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .page-rooms .type.l_sec-col2__reverse .l_sec-head {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.page-rooms .type.l_sec-col2__reverse .l_sec-body__text-box {
  padding-right: 0;
}
.page-rooms .other-items {
  margin-top: 20px;
}
.page-rooms .other-items .other-items__inner {
  max-width: 1268px;
  width: 100%;
  padding: 0 36px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .page-rooms .other-items .other-items__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-rooms .other-items .other-items__inner .l_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .page-rooms .other-items .other-items__inner .b_list-main__item {
    display: inline;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .page-rooms .other-items .other-items__inner .b_list-main__item {
    font-size: 0.6875rem;
  }
  .page-rooms .other-items .other-items__inner .b_list-main__item:first-of-type::before {
    content: "";
  }
  .page-rooms .other-items .other-items__inner .b_list-main__item::before {
    content: "/";
    padding-right: 0.2222222222em;
  }
}
.page-rooms .other-items .other-items__box {
  width: calc(33.3333333333% - 64px);
  margin-right: 32px;
}
@media screen and (max-width: 768px) {
  .page-rooms .other-items .other-items__box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.page-rooms .other-items .other-items__box:last-of-type {
  margin-right: 0;
}
.page-rooms .other-items .other-items__head {
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  .page-rooms .other-items .other-items__head {
    margin-bottom: 16px;
  }
}
.page-rooms .other-items .other-items__title {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.85;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .page-rooms .other-items .other-items__title {
    font-size: 22px;
  }
}
.page-rooms .common-room .c_title-page {
  margin-bottom: 12px;
}
.page-rooms .common-room .l_sec-body__box {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page-rooms .common-room .l_sec-body__box {
    width: 100%;
  }
}
.page-rooms .common-room .l_sec-body__box:first-of-type {
  width: calc(50% + 20px);
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .page-rooms .common-room .l_sec-body__box:first-of-type {
    width: 100%;
    padding-right: 0;
    margin-top: 20px;
  }
}

/*
Theme Name:テーマの名前 // 必須
Theme URL:テーマのURL
Description:テーマの説明
Author:テーマ制作者の名前
Author URL: テーマの作者のURLを記入します
Version:テーマのバージョン
License:テーマのライセンス
License URL:ライセンスのURL
Tags:テーマに関連するタグを設定できます。タグはカンマ区切りで複数設定できます
Template:親テーマの名前を記入します（※そのテーマが「子テーマ」の場合にのみ必須となります）
*/
/*======================================
	Faq
======================================*/
.page-faq .l_sec-head {
  margin-bottom: 44px;
}
@media screen and (max-width: 480px) {
  .page-faq .l_sec-head {
    margin-bottom: 20px;
  }
}
.page-faq .l_sec-body {
  border-bottom: 1px solid #beb4ad;
  padding: 70px 0 50px;
}
@media screen and (max-width: 480px) {
  .page-faq .l_sec-body {
    padding: 40px 0 35px;
  }
}
.page-faq .l_sec-body:last-of-type {
  border-bottom: none;
}
.page-faq .l_sec-head__md {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .page-faq .l_sec-head__md {
    margin-bottom: 28px;
  }
}
.page-faq .l_sec-head__md .c_title-main {
  margin-right: 16px;
}
@media screen and (max-width: 480px) {
  .page-faq .l_sec-head__md .c_title-jp {
    font-size: 0.6875rem;
  }
}
.page-faq .b_aco-main__label-text {
  text-align: left;
}

/*
Theme Name:テーマの名前 // 必須
Theme URL:テーマのURL
Description:テーマの説明
Author:テーマ制作者の名前
Author URL: テーマの作者のURLを記入します
Version:テーマのバージョン
License:テーマのライセンス
License URL:ライセンスのURL
Tags:テーマに関連するタグを設定できます。タグはカンマ区切りで複数設定できます
Template:親テーマの名前を記入します（※そのテーマが「子テーマ」の場合にのみ必須となります）
*/
/*======================================
	Feature
======================================*/
.page-feature .l_page-intro {
  padding-top: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .page-feature .l_page-intro {
    margin-bottom: 0;
  }
}
.page-feature .l_sec-body .c_img-wrap {
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .page-feature .l_sec-body .c_img-wrap {
    aspect-ratio: 694/456;
    margin-bottom: 24px;
  }
}
.page-feature .l_sec-body .c_img-wrap__rounded {
  border-radius: 45px;
}
@media screen and (max-width: 768px) {
  .page-feature .l_sec-body .c_img-wrap__rounded {
    border-radius: 25px;
  }
}
@media screen and (max-width: 480px) {
  .page-feature .l_sec-body .c_img-wrap__rounded {
    border-radius: 20px;
  }
}
.page-feature .l_sec {
  padding: 50px 0;
}
@media screen and (max-width: 480px) {
  .page-feature .l_sec {
    padding: 30px 0;
  }
}
.page-feature .page-feature__title {
  font-size: 47px;
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.05;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .page-feature .page-feature__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 480px) {
  .page-feature .page-feature__title {
    font-size: 22px;
    margin-bottom: 4px;
  }
}
.page-feature .page-feature__head {
  margin-bottom: 28px;
}
@media screen and (max-width: 480px) {
  .page-feature .page-feature__head {
    margin-bottom: 18px;
  }
  .page-feature .page-feature__head p {
    font-size: 0.6875rem;
  }
}
.page-feature .page-feature__box {
  width: calc(50% - 35px);
  margin-right: 70px;
}
@media screen and (max-width: 768px) {
  .page-feature .page-feature__box {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-feature .page-feature__box:nth-of-type(2) {
    display: none;
  }
}
.page-feature .page-feature__box:last-of-type {
  margin-right: 0;
}
.page-feature .page-feature__text-area {
  margin-bottom: 62px;
}
.page-feature .page-feature__text-area:last-child {
  margin-bottom: 0;
}

/*
Theme Name:テーマの名前 // 必須
Theme URL:テーマのURL
Description:テーマの説明
Author:テーマ制作者の名前
Author URL: テーマの作者のURLを記入します
Version:テーマのバージョン
License:テーマのライセンス
License URL:ライセンスのURL
Tags:テーマに関連するタグを設定できます。タグはカンマ区切りで複数設定できます
Template:親テーマの名前を記入します（※そのテーマが「子テーマ」の場合にのみ必須となります）
*/
/*======================================
	Helper
======================================*/
/*		display
--------------------------------------*/
.hp_disp-ib {
  display: inline-block;
}

/*		font size
--------------------------------------*/
.hp_fs-10rem {
  font-size: 0.625rem !important;
}
.hp_fs-10rem.c_text-wide {
  letter-spacing: -0.025em;
}

.hp_fs-12rem {
  font-size: 0.75rem !important;
}
.hp_fs-12rem.c_text-wide {
  letter-spacing: -0.025em;
}

.hp_fs-15rem {
  font-size: 0.9375rem !important;
}
@media screen and (max-width: 768px) {
  .hp_fs-15rem {
    font-size: 0.8125rem !important;
  }
}
.hp_fs-15rem.c_text-wide {
  letter-spacing: -0.055em;
}

.hp_fs-17rem {
  font-size: 1.0625rem !important;
}
@media screen and (max-width: 480px) {
  .hp_fs-17rem {
    font-size: 0.9375rem !important;
  }
}
.hp_fs-17rem.c_text-wide {
  letter-spacing: -0.055em;
}

/*		font weight
--------------------------------------*/
.hp_fw-normal {
  font-weight: normal !important;
}

/*		margin
--------------------------------------*/
.hp_mt2e {
  margin-top: 2em !important;
}

.hp_mt2_5e {
  margin-top: 2.5em !important;
}

.hp_MT2e {
  margin-top: -2em !important;
}/*# sourceMappingURL=style.css.map */