@charset "UTF-8";
/* easing
   (https://easings.net/ja#)
--------------------------------------*/
/*=====================================
    Variables
======================================*/
/* Font Family
--------------------------------------*/
/*
$ff-jp: ;
$ff-en: ;
*/
/* Font Weight
--------------------------------------*/
/* Easing
--------------------------------------*/
/* z-index
--------------------------------------*/
/*======================================
    @mixin
======================================*/
/* Breakpoint
--------------------------------------*/
/* line-height 上下余白調整
--------------------------------------*/
/* iframe レスポンシブ対応
    16:9 -> @include aspect-ratio(16, 9)
--------------------------------------*/
/* Position
--------------------------------------*/
/*=====================================
    Common
======================================*/
html {
  font-size: 100%;
}

body {
  background-color: #151515;
  font-family: "ivymode", "Noto Serif JP", sans-serif;
  font-size: 0.9375rem;
  color: #C88977;
  line-height: 1.86;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overflow-x: hidden;
  overflow-y: scroll;
}

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

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: 300;
  line-height: 1.2;
}

#stalker {
  pointer-events: none;
  position: fixed;
  top: -60px;
  left: -55px;
  width: 87px;
  height: 87px;
  border: 1px solid #C88977;
  border-radius: 50%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.2s ease-out, -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out, opacity 0.2s ease-out;
  transition: transform 0.1s ease-in-out, opacity 0.2s ease-out, -webkit-transform 0.1s ease-in-out;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  z-index: 900;
  opacity: 0;
  -webkit-filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.3));
}

@media screen and (max-width: 999px) {
  #stalker {
    display: none;
  }
}
#stalker p {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

#stalker.active {
  opacity: 1;
}

/*  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;
}

/*  Layout
    Contents Padding/Margin
--------------------------------------*/
.l-container {
  max-width: 1140px;
  width: 100%;
  padding: 0 70px;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  .l-container {
    max-width: calc(100% + 70px);
    padding: 0 35px;
  }
}

.l-sec-inner {
  padding: 90px 0;
}
@media screen and (max-width: 999px) {
  .l-sec-inner {
    padding: 60px 0;
  }
}
@media screen and (max-width: 430px) {
  .l-sec-inner {
    padding: 30px 0;
  }
}
.l-sec-inner .c-sec-title {
  margin-bottom: 28px;
}

/* 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: 1279px) {
  .lg_disp-b {
    display: block;
  }
}

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

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

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

@media screen and (max-width: 430px) {
  .xs_disp-n {
    display: none;
  }
}
.se_disp-b {
  display: none;
}
@media screen and (max-width: 380px) {
  .se_disp-b {
    display: block;
  }
}

@media screen and (max-width: 380px) {
  .se_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: 1279px) {
  .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: 999px) {
  .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: 767px) {
  .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: 430px) {
  .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);
  }
}
@media screen and (max-width: 380px) {
  .card.se--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .card.se--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card.se--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card.se--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .card.se--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: 1279px) {
  .lg_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 999px) {
  .md_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .sm_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 430px) {
  .xs_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 380px) {
  .se_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: 1279px) {
  .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: 999px) {
  .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: 767px) {
  .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: 430px) {
  .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;
  }
}
@media screen and (max-width: 380px) {
  .se_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .se_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .se_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .se_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .se_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: 1279px) {
  .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: 999px) {
  .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: 767px) {
  .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: 430px) {
  .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;
  }
}
@media screen and (max-width: 380px) {
  .se_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .se_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .se_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .se_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .se_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: 1279px) {
  .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: 999px) {
  .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: 767px) {
  .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: 430px) {
  .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;
  }
}
@media screen and (max-width: 380px) {
  .se_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .se_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .se_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: 1279px) {
  .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: 999px) {
  .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: 767px) {
  .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: 430px) {
  .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;
  }
}
@media screen and (max-width: 380px) {
  .se_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .se_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .se_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .se_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: 1279px) {
  .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: 999px) {
  .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: 767px) {
  .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: 430px) {
  .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;
  }
}
@media screen and (max-width: 380px) {
  .se_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .se_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .se_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .se_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .se_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .se_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: 1279px) {
  .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: 999px) {
  .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: 767px) {
  .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: 430px) {
  .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;
  }
}
@media screen and (max-width: 380px) {
  .se_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .se_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .se_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .se_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .se_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .se_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .se_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .se_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .se_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .se_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
/*======================================
    Animation
======================================*/
/* アニメーション表示
   (※.js-viewも一緒に指定)
--------------------------------------*/
.js-scrollUpTrigger,
.js-blurTrigger {
  opacity: 0;
}

.view-fadeIn {
  opacity: 0;
  -webkit-animation: view-fadeIn 1s cubic-bezier(0.65, 0, 0.35, 1) both;
          animation: view-fadeIn 1s cubic-bezier(0.65, 0, 0.35, 1) both;
}

@-webkit-keyframes view-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes view-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.view-slideUp {
  opacity: 0;
  -webkit-animation: view-slideUp 0.8s cubic-bezier(0.65, 0, 0.35, 1) both 0.1s;
          animation: view-slideUp 0.8s cubic-bezier(0.65, 0, 0.35, 1) both 0.1s;
}

@-webkit-keyframes view-slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes view-slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.blur {
  opacity: 0;
  -webkit-animation: view-blur 0.8s cubic-bezier(0.65, 0, 0.35, 1) both;
          animation: view-blur 0.8s cubic-bezier(0.65, 0, 0.35, 1) both;
}

@-webkit-keyframes view-blur {
  0% {
    opacity: 0;
    -webkit-filter: blur(30px);
            filter: blur(30px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@keyframes view-blur {
  0% {
    opacity: 0;
    -webkit-filter: blur(30px);
            filter: blur(30px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
/*
// 左からスライドイン
.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);
    }
}
*/
/*
// 右からスライドイン
.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);
    }
}
*/
/* infinity
--------------------------------------*/
.infinite-arrow {
  -webkit-animation: infinite-arrow 3s linear infinite;
          animation: infinite-arrow 3s linear infinite;
}

@-webkit-keyframes infinite-arrow {
  from {
    background-position: center center;
  }
  to {
    background-position: center 22px;
  }
}

@keyframes infinite-arrow {
  from {
    background-position: center center;
  }
  to {
    background-position: center 22px;
  }
}
/* burger toggle
--------------------------------------*/
@-webkit-keyframes line-rotate01 {
  0% {
    top: -6px;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  30% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  70% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
@keyframes line-rotate01 {
  0% {
    top: -6px;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  30% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  70% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
@-webkit-keyframes line-rotate02 {
  0% {
    top: 6px;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
  30% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
  70% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
  100% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(-20deg) scale(1, 1);
            transform: rotate(-20deg) scale(1, 1);
  }
}
@keyframes line-rotate02 {
  0% {
    top: 6px;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
  30% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
  70% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
  100% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(-20deg) scale(1, 1);
            transform: rotate(-20deg) scale(1, 1);
  }
}
@-webkit-keyframes line-rotate01-close {
  0% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  30% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  70% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: -6px;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes line-rotate01-close {
  0% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  30% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  70% {
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: -6px;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes line-rotate02-close {
  0% {
    top: 0px;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(-20deg) scale(1, 1);
            transform: rotate(-20deg) scale(1, 1);
  }
  30% {
    top: 0;
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
  70% {
    top: 0;
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
  100% {
    top: 6;
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: rotate(0) scale(0.6, 1);
            transform: rotate(0) scale(0.6, 1);
  }
}
@keyframes line-rotate02-close {
  0% {
    top: 0px;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(-20deg) scale(1, 1);
            transform: rotate(-20deg) scale(1, 1);
  }
  30% {
    top: 0;
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
  70% {
    top: 0;
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
  100% {
    top: 6;
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: rotate(0) scale(0.6, 1);
            transform: rotate(0) scale(0.6, 1);
  }
}
/* hover
--------------------------------------*/
.hover-line {
  position: relative;
}
.hover-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #C88977;
  position: absolute;
  left: 0;
  bottom: -2px;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .hover-line:hover::after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

/*======================================
    Program
======================================*/
/* Header
--------------------------------------*/
.js-header {
  display: none;
}

.js-mainNav {
  visibility: hidden;
  opacity: 0;
}

.js-mainNav.active {
  visibility: visible;
  opacity: 1;
}

.js-subMenu {
  visibility: hidden;
  opacity: 0;
}

.js-subMenu.on {
  visibility: visible;
  opacity: 1;
}

.js-burgerToggle.active .line:nth-of-type(1) {
  -webkit-animation: line-rotate01 0.5s forwards ease;
          animation: line-rotate01 0.5s forwards ease;
}
.js-burgerToggle.active .line:nth-of-type(2) {
  -webkit-animation: line-rotate02 0.5s forwards ease;
          animation: line-rotate02 0.5s forwards ease;
}

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

.js-mask {
  display: none;
}

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

/* ブラー切り替え
--------------------------------------*/
.js-blur {
  -webkit-transition: opacity 1s ease 0.2s, -webkit-filter 0.5s ease;
  transition: opacity 1s ease 0.2s, -webkit-filter 0.5s ease;
  transition: filter 0.5s ease, opacity 1s ease 0.2s;
  transition: filter 0.5s ease, opacity 1s ease 0.2s, -webkit-filter 0.5s ease;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.js-blur.on {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
}

/* アニメーション表示
--------------------------------------*/
.js-view.on {
  opacity: 1;
}

.js-modal {
  opacity: 0;
  -webkit-filter: blur(30px);
          filter: blur(30px);
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}

.js-modal.on {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  pointer-events: all;
}

/*======================================
    Component
======================================*/
/* Title
--------------------------------------*/
.c-sec-title {
  font-size: 50px;
}
@media screen and (max-width: 430px) {
  .c-sec-title {
    font-size: 36px;
  }
}
.c-sec-title--lg {
  font-size: 64px;
  letter-spacing: -0.05em;
}
.c-sec-title--xs {
  font-size: 28px;
}
@media screen and (max-width: 430px) {
  .c-sec-title--xs {
    font-size: 22px;
  }
}
.c-sec-title__en::before {
  content: "＿";
}
.c-sec-title__sub {
  min-width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  border-right: 1px solid #C88977;
  border-bottom: 1px solid #C88977;
  padding: 0 12px 0.4em;
  margin: 5px 32px 0 0;
}
.c-sec-title__sub--1row {
  padding-top: 10px;
}
.c-sec-title .en {
  display: block;
  font-size: 0.9375rem;
  padding: 10px 0 28px;
}
@media screen and (max-width: 430px) {
  .c-sec-title .en {
    font-size: 0.8125rem;
  }
}

.c-sec-title__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-sec-title__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 430px) {
  .c-sec-title__gallery {
    -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;
  }
}
.c-sec-title__gallery .c-sec-title__gallery__main {
  font-size: 66px;
  line-height: 1;
  padding-right: 42px;
  margin-right: 42px;
  position: relative;
}
@media screen and (max-width: 999px) {
  .c-sec-title__gallery .c-sec-title__gallery__main {
    font-size: 45px;
    padding-right: 22px;
    margin-right: 22px;
  }
}
@media screen and (max-width: 430px) {
  .c-sec-title__gallery .c-sec-title__gallery__main {
    font-size: 32px;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
.c-sec-title__gallery .c-sec-title__gallery__main--lg {
  font-size: 80px;
  letter-spacing: -0.05em;
}
.c-sec-title__gallery .c-sec-title__gallery__main--xs {
  font-size: 32px;
}
.c-sec-title__gallery .c-sec-title__gallery__main::after {
  content: "";
  width: 1px;
  height: 95%;
  background-color: #C88977;
  position: absolute;
  top: 2.5%;
  right: 0;
}
@media screen and (max-width: 430px) {
  .c-sec-title__gallery .c-sec-title__gallery__main::after {
    width: 100%;
    height: 1px;
    top: inherit;
    left: 0;
    bottom: 0;
  }
}
.c-sec-title__gallery .c-sec-title__gallery_sub {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1;
}
.c-sec-title__gallery .c-sec-title__gallery_sub .ja {
  font-size: 36px;
}
@media screen and (max-width: 999px) {
  .c-sec-title__gallery .c-sec-title__gallery_sub .ja {
    font-size: 22px;
  }
}
@media screen and (max-width: 430px) {
  .c-sec-title__gallery .c-sec-title__gallery_sub .ja {
    line-height: 1.5;
  }
}
.c-sec-title__gallery .c-sec-title__gallery_sub .en {
  font-size: 21px;
  margin-left: 2px;
}
@media screen and (max-width: 999px) {
  .c-sec-title__gallery .c-sec-title__gallery_sub .en {
    font-size: 16px;
  }
}
@media screen and (max-width: 430px) {
  .c-sec-title__gallery .c-sec-title__gallery_sub .en {
    font-size: 13px;
    line-height: 1.25;
  }
}

.c-head-h3 {
  font-size: 38px;
}
@media screen and (max-width: 430px) {
  .c-head-h3 {
    font-size: 28px;
  }
}
.c-head-h3 .en {
  display: block;
  font-size: 0.9375rem;
  padding: 10px 0 28px;
}

.c-page-title {
  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;
}
.c-page-title .main {
  font-size: 100px;
  margin-bottom: 32px;
}
@media screen and (max-width: 430px) {
  .c-page-title .main {
    font-size: 68px;
    text-align: center;
  }
}
.c-page-title .sub {
  font-size: 50px;
  text-transform: uppercase;
}
@media screen and (max-width: 430px) {
  .c-page-title .sub {
    font-size: 30px;
  }
}

.c-page-title__wrap {
  padding: 60px 0;
  margin-top: 100px;
}
@media screen and (max-width: 430px) {
  .c-page-title__wrap {
    padding: 30px 0;
    margin-top: 70px;
  }
}

.c-hero-title {
  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;
}
.c-hero-title .main {
  font-size: 90px;
  margin-bottom: 32px;
  margin-bottom: 10px;
}
@media screen and (max-width: 999px) {
  .c-hero-title .main {
    font-size: 68px;
    text-align: center;
  }
}
@media screen and (max-width: 430px) {
  .c-hero-title .main {
    font-size: 36px;
  }
}
.c-hero-title .sub {
  font-size: 50px;
}
@media screen and (max-width: 430px) {
  .c-hero-title .sub {
    font-size: 18px;
  }
}

/* text
--------------------------------------*/
.c-desc-main {
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .c-desc-main {
    text-align: left;
  }
}
.c-desc-main--center {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .c-desc-main--center {
    margin-top: 50px;
    text-align: left;
  }
}

.c-copyright-fixed {
  font-size: 11px;
  line-height: 1;
  position: fixed;
  height: 100%;
  text-align: center;
  top: 0;
  left: 20px;
  bottom: 0;
  margin: auto 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  pointer-events: none;
  z-index: 1000;
}
@media screen and (max-width: 430px) {
  .c-copyright-fixed {
    left: 10px;
  }
}

.c-credit-caption {
  font-size: 12px;
  line-height: 1.2;
  margin-top: 20px;
}
.c-credit-caption--right {
  font-size: 12px;
  margin-top: 20px;
  text-align: right;
}

/* 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: 1279px) {
  .lg_disp-b {
    display: block;
  }
}

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

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

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

@media screen and (max-width: 430px) {
  .xs_disp-n {
    display: none;
  }
}
.se_disp-b {
  display: none;
}
@media screen and (max-width: 380px) {
  .se_disp-b {
    display: block;
  }
}

@media screen and (max-width: 380px) {
  .se_disp-n {
    display: none;
  }
}
/* Button
--------------------------------------*/
.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;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn-arrow .c-btn-arrow__link:hover .arrow {
    background-position: 38px center;
  }
}
.c-btn-arrow .c-btn-arrow__link .text {
  padding-right: 0.4em;
}
.c-btn-arrow .c-btn-arrow__link .arrow {
  display: block;
  width: 38px;
  height: 18px;
  background: url(./assets/svg/arrow--long.svg) center center/contain;
  overflow: hidden;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

@media screen and (max-width: 430px) {
  .c-btn-main {
    text-align: center;
  }
}
.c-btn-main .c-btn-main__link {
  display: inline-block;
  font-size: 21px;
  line-height: 1;
  border: 1px solid #C88977;
  border-radius: 50vh;
  padding: 10px 42px 11px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  margin-top: 30px;
}
@media screen and (max-width: 430px) {
  .c-btn-main .c-btn-main__link {
    font-size: 18px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn-main .c-btn-main__link:hover {
    color: #151515;
    background-color: #C88977;
  }
}
.c-btn-main--sm .c-btn-main__link {
  font-size: 15px;
  padding: 3px 20px 4px;
  margin: 0;
}

.c-btn-toTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn-toTop .arrow {
  display: block;
  width: 19px;
  height: 22px;
  background: url(./assets/svg/arrow.svg) center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 8px;
}
.c-btn-toTop .text {
  color: #C88977;
  font-size: 18px;
}

.c-btn-translate {
  font-size: 0.8125rem;
}

/*======================================
    Block
======================================*/
/* section
--------------------------------------*/
.b-main-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.b-main-flex .b-main-flex__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 999px) {
  .b-main-flex .b-main-flex__content {
    margin-bottom: 40px;
  }
}
.b-main-flex .b-main-flex__content .c-sec-title__en {
  margin-bottom: 1.2em;
}
.b-main-flex .b-main-flex__head-content .c-sec-title--lg {
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  .b-main-flex .b-main-flex__head-content .c-sec-title--lg {
    margin-bottom: 32px;
  }
}
.b-main-flex .b-main-flex__head-content .en {
  font-size: 30px;
  line-height: 1.33;
}
@media screen and (max-width: 430px) {
  .b-main-flex .b-main-flex__head-content .en {
    font-size: 26px;
  }
}
.b-main-flex .b-main-flex__text-content {
  max-width: 430px;
  width: 100%;
  margin-left: 70px;
}
@media screen and (max-width: 999px) {
  .b-main-flex .b-main-flex__text-content {
    max-width: 100%;
    margin-left: 0;
  }
}
.b-main-flex .b-main-flex__text-content .c-sec-title {
  margin-bottom: 30px;
}
.b-main-flex .b-main-flex__text-content .c-sec-title__flex {
  margin-bottom: 20px;
}
.b-main-flex .b-main-flex__text-content .c-btn-arrow {
  margin-top: 28px;
}
.b-main-flex .b-main-flex__img-content--grid {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.b-main-flex .b-main-flex__img-content--grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.b-main-flex .b-main-flex__img-content--grid img:nth-of-type(1), .b-main-flex .b-main-flex__img-content--grid img:nth-of-type(6) {
  grid-column: span 2;
}
.b-main-flex--mixed .floor--b1 img:nth-of-type(4) {
  grid-column: span 2;
}
.b-main-flex--mixed .floor--b1 img:nth-of-type(5) {
  grid-area: 4/1/6/2;
}
.b-main-flex--mixed .floor--b1 img:nth-of-type(6) {
  grid-area: 4/2/5/3;
}
.b-main-flex--mixed .floor--b1 img:nth-of-type(7) {
  grid-area: 5/2/6/3;
}
.b-main-flex--mixed .floor--1f img:nth-of-type(2) {
  grid-area: 2/1/4/2;
}
.b-main-flex--mixed .floor--1f img:nth-of-type(3) {
  grid-area: 2/2/3/3;
}
.b-main-flex--mixed .floor--1f img:nth-of-type(4) {
  grid-area: 3/2/4/3;
}
.b-main-flex--mixed .floor--1f img:nth-of-type(5) {
  grid-area: 4/1/5/3;
}
.b-main-flex--mixed .floor--1f img:nth-of-type(6) {
  grid-area: 5/1/6/2;
}
.b-main-flex--mixed .floor--1f img:nth-of-type(7) {
  grid-area: 6/1/7/2;
}
.b-main-flex--mixed .floor--1f img:nth-of-type(8) {
  grid-area: 5/2/7/3;
}
.b-main-flex--mixed .floor--2f img:nth-of-type(2),
.b-main-flex--mixed .floor--gaiko img:nth-of-type(2) {
  grid-area: 2/1/4/2;
}
.b-main-flex--mixed .floor--2f img:nth-of-type(3),
.b-main-flex--mixed .floor--gaiko img:nth-of-type(3) {
  grid-area: 2/2/3/3;
}
.b-main-flex--mixed .floor--2f img:nth-of-type(4),
.b-main-flex--mixed .floor--gaiko img:nth-of-type(4) {
  grid-area: 3/2/4/3;
}
.b-main-flex--mixed .floor--2f img:nth-of-type(5),
.b-main-flex--mixed .floor--gaiko img:nth-of-type(5) {
  grid-area: 4/1/5/3;
}
.b-main-flex--mixed .floor--2f img:nth-of-type(6),
.b-main-flex--mixed .floor--gaiko img:nth-of-type(6) {
  grid-area: 5/1/6/3;
}
.b-main-flex--mixed .floor--2f img:nth-of-type(7),
.b-main-flex--mixed .floor--gaiko img:nth-of-type(7) {
  grid-area: 6/1/7/2;
}
.b-main-flex--mixed .floor--2f img:nth-of-type(8),
.b-main-flex--mixed .floor--gaiko img:nth-of-type(8) {
  grid-area: 7/1/8/2;
}
.b-main-flex--mixed .floor--2f img:nth-of-type(9),
.b-main-flex--mixed .floor--gaiko img:nth-of-type(9) {
  grid-area: 6/2/8/3;
}
.b-main-flex--right {
  margin-right: calc(50% - 50vw);
}
.b-main-flex--right .b-main-flex__img-content {
  height: 440px;
}
.b-main-flex--right .b-main-flex__img-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.b-main-flex--left {
  margin-left: calc(50% - 50vw);
}
.b-main-flex--left .b-main-flex__img-content {
  height: 440px;
}
.b-main-flex--left .b-main-flex__img-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.b-main-flex--reverse .b-main-flex__text-content {
  margin-left: 0;
  margin-right: 70px;
}

.b-page-head {
  height: 100vh;
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 430px) {
  .b-page-head {
    height: 70vh;
    margin-bottom: 30px;
  }
}
.b-page-head .b-page-head__bg-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.b-page-head .b-page-head__img-wrap {
  width: 50%;
}
.b-page-head .b-page-head__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.b-page-head .b-page-head__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  inset: 0;
}

/* img block
--------------------------------------*/
.b-bg .b-bg__inner {
  display: grid;
  grid-template-columns: 0.71fr 1fr;
  gap: 16px;
}
.b-bg .img-wrap:nth-of-type(1) {
  grid-row: 1/3;
}
.b-bg .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* slider
--------------------------------------*/
.b-slider-main__container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .b-slider-main__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.b-slider-main {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 999px) {
  .b-slider-main {
    width: 100%;
    height: 50%;
  }
}
.b-slider-main .b-slider-main__slide-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 2s;
  transition: 2s;
}
.b-slider-main .swiper-slide {
  overflow: hidden;
}
.b-slider-main .swiper-slide[class*=-prev] img {
  -webkit-transform: translateY(6vw) scale(1.2);
          transform: translateY(6vw) scale(1.2);
}
.b-slider-main .swiper-slide[class*=-next] img {
  -webkit-transform: translateY(-6vw) scale(1.2);
          transform: translateY(-6vw) scale(1.2);
}
/* Tab - Panel
--------------------------------------*/
/*======================================
    Header
======================================*/
.header {
  width: 100%;
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
.header .header__inner {
  padding: 28px 24px 0;
}
.header .site-title {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  padding-left: 0px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.header .site-title a {
  width: 40px;
  display: block;
  pointer-events: all;
}
@media screen and (max-width: 430px) {
  .header .site-title {
    -webkit-transform: translateY(-10px) translateX(-10px);
            transform: translateY(-10px) translateX(-10px);
  }
}
.header .header__btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 28px;
  right: 28px;
  pointer-events: all;
}
.header .header__btn-container > * + * {
  margin-left: 20px;
}
.header .c-btn-translate {
  text-align: right;
  position: fixed;
  top: 60px;
  right: 28px;
}

/* Main Menu
--------------------------------------*/
.main-nav {
  height: 100vh;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000), color-stop(70%, rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.5) 100%);
  position: fixed;
  inset: 0;
  overflow-y: scroll;
  z-index: -1;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  pointer-events: all;
}
.main-nav .main-nav__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 126px 80px 80px;
}
@media screen and (max-width: 430px) {
  .main-nav .main-nav__inner {
    -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;
    padding: 126px 50px 80px;
  }
}
.main-nav .main-menu {
  height: 55vh;
  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: 430px) {
  .main-nav .main-menu {
    height: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 50px;
  }
}
.main-nav .main-menu > * + * {
  margin-top: 42px;
}
.main-nav .main-menu .item {
  font-size: 40px;
}
@media screen and (max-width: 430px) {
  .main-nav .main-menu .item {
    font-size: 30px;
  }
}
.main-nav .sub-menu {
  position: relative;
  width: 190px;
}
@media screen and (max-width: 430px) {
  .main-nav .sub-menu {
    pointer-events: none;
    display: none;
  }
}
.main-nav .sub-menu .menu-inner {
  position: absolute;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.main-nav .sub-menu .menu-inner > * + * {
  margin-top: 50px;
}
.main-nav .sub-menu .menu-inner .item {
  font-size: 30px;
}
.main-nav .sub-menu .menu-inner .item span {
  font-size: 20px;
  text-transform: uppercase;
  padding-left: 18px;
}
.main-nav .item {
  line-height: 1;
}
.main-nav .item a {
  color: #C88977;
}
.main-nav .main-nav__meta .title {
  font-size: 27px;
  line-height: 1;
  margin-bottom: 75px;
}
.main-nav .main-nav__meta .address {
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.5;
}
.main-nav .main-nav__meta .address:first-of-type {
  margin-bottom: 32px;
}

/* Burger Toggle
--------------------------------------*/
.burger-toggle__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.burger-toggle__wrap .text {
  font-size: 15px;
  line-height: 1;
  margin-right: 6px;
}

.burger-toggle {
  display: inline-block;
  width: 38px;
  height: 24px;
  cursor: pointer;
  position: relative;
  pointer-events: all;
}
.burger-toggle .line {
  width: 100%;
  height: 1px;
  background-color: #C88977;
  margin: auto 0;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.burger-toggle .line:nth-of-type(1) {
  top: -6px;
  -webkit-animation: line-rotate01-close 0.8s forwards ease;
          animation: line-rotate01-close 0.8s forwards ease;
}
.burger-toggle .line:nth-of-type(2) {
  top: 6px;
  -webkit-transform: scale(0.6, 1);
          transform: scale(0.6, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-animation: line-rotate02-close 0.8s forwards ease;
          animation: line-rotate02-close 0.8s forwards ease;
}
.burger-toggle .visually-hidden {
  color: #fff;
}

/*======================================
    Footer
======================================*/
.footer {
  padding-top: 72px;
}
.footer .footer__inner {
  padding: 0 50px 60px;
}
.footer .footer__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 32px;
}
@media screen and (max-width: 999px) {
  .footer .footer__meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .footer__site-title {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 40px;
}
.footer .footer__address {
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.5;
}
.footer .footer__address:first-of-type {
  margin-bottom: 2.8571428571em;
}
.footer .footer__menu-list__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer__menu-list__wrap > * + * {
  margin-left: 160px;
}
@media screen and (max-width: 767px) {
  .footer .footer__menu-list__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer__menu-list__wrap > * + * {
    margin-left: 0;
    margin-top: 0px;
  }
}
.footer .footer__menu-list {
  font-size: 20px;
}
.footer .c-btn-toTop {
  margin-bottom: 51px;
}
.footer .footer__bottom-content .sub {
  font-size: 30px;
  line-height: 1.2;
  word-break: normal;
  overflow-wrap: break-word;
  margin-bottom: 14px;
}
@media screen and (max-width: 430px) {
  .footer .footer__bottom-content .sub {
    font-size: 13px;
  }
}
.footer .footer__bottom-content .logo {
  line-height: 1;
}

/*======================================
    Top
======================================*/
/* fv
--------------------------------------*/
.fv {
  height: 100vh;
}
.fv .fv__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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px;
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 430px) {
  .fv .fv__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.fv .fv__inner .fv__head {
  width: 100%;
}
.fv .fv__inner .fv__title {
  line-height: 0;
  margin-bottom: 18px;
}
.fv .fv__inner .fv-nav .fv-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 430px) {
  .fv .fv__inner .fv-nav .fv-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    right: 30px;
    bottom: 30px;
  }
}
.fv .fv__inner .fv-nav .fv-menu__list > * + * {
  margin-left: 0.8888888889em;
}
.fv .fv__inner .fv-nav .list-item {
  font-size: 1.125rem;
}
@media screen and (max-width: 430px) {
  .fv .fv__inner .fv-nav .list-item {
    font-size: 1.3125rem;
  }
}
.fv .fv__inner .fv__scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fv .fv__inner .fv__scroll .arrow {
  display: inline-block;
  width: 19px;
  height: 22px;
  background: url(./assets/svg/arrow.svg) center center/contain;
  margin-right: 8px;
}
.fv .fv__inner .fv__scroll .text {
  font-size: 20px;
}

/* intro
--------------------------------------*/
.intro {
  padding-top: 135px;
  padding-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .intro {
    padding-top: 80px;
  }
}
.intro .c-sec-title--lg {
  margin-bottom: 80px;
}
@media screen and (max-width: 999px) {
  .intro .c-sec-title--lg {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .intro .c-sec-title--lg {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
.intro .c-sec-title {
  font-size: 46px;
  margin-bottom: 80px;
  line-height: 1.3;
}
@media screen and (max-width: 999px) {
  .intro .c-sec-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 430px) {
  .intro .c-sec-title {
    font-size: 28px;
    margin-bottom: 20px !important;
  }
}
.intro .c-sec-title span {
  display: inline-block;
  margin: 0 -0.5em;
}
.intro .b-main-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 999px) {
  .intro .b-main-flex {
    -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;
  }
}
.intro .b-main-flex .c-sec-title__img {
  display: inline-block;
  height: 100%;
  width: 60px;
  margin: 0 30px 0 10px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
@media screen and (max-width: 430px) {
  .intro .b-main-flex .c-sec-title__img {
    width: 45px;
    margin: 0 10px 12px 5px;
  }
}
@media screen and (max-width: 380px) {
  .intro .b-main-flex .c-sec-title__img {
    width: 40px;
  }
}
.intro .b-main-flex .b-main-flex__img-content {
  max-width: 400px;
}
@media screen and (max-width: 999px) {
  .intro .b-main-flex .b-main-flex__img-content {
    margin: 40px 0 0;
  }
}
@media screen and (max-width: 430px) {
  .intro .b-main-flex .b-main-flex__img-content {
    width: 240px;
  }
}
.intro .b-main-flex .b-main-flex__text-content {
  max-width: 100%;
}
@media screen and (max-width: 430px) {
  .intro .b-main-flex .b-main-flex__head-content {
    width: 100%;
    margin-bottom: 40px;
  }
}
.intro .b-main-flex .b-main-flex__head-content .en {
  display: inline-block;
}
@media screen and (max-width: 430px) {
  .intro .b-main-flex .b-main-flex__head-content .en {
    font-size: 23px;
  }
}
@media screen and (max-width: 380px) {
  .intro .b-main-flex .b-main-flex__head-content .en {
    font-size: 21px;
  }
}
.intro .intro__img-wrap {
  margin-top: 120px;
  padding-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 999px) {
  .intro .intro__img-wrap {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .intro .intro__img-wrap {
    margin-top: 50px;
  }
}
.intro .intro__img-wrap .b-slider-intro .swiper-slide {
  width: 100%;
  height: auto;
  aspect-ratio: 1654/950;
}
.intro .intro__img-wrap .b-slider-intro .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.intro .intro__img-wrap .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.75);
}
.intro .intro__img-wrap .swiper-pagination-bullet-active {
  background-color: #C88977;
}

/* bg link
--------------------------------------*/
.bg-link {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 430px) {
  .bg-link {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
.bg-link .link-wrap {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
.bg-link .link-wrap:nth-of-type(1) {
  grid-column: 1/3;
  grid-row: 1/3;
  background-image: url(./assets/img/top/bg-ishi02.jpg);
}
@media screen and (max-width: 430px) {
  .bg-link .link-wrap:nth-of-type(1) {
    grid-area: 1/1/3/3;
  }
}
.bg-link .link-wrap:nth-of-type(2) {
  grid-column: 3/5;
  grid-row: 1;
  background-image: url(./assets/img/top/bg-chuzo02.jpg);
}
@media screen and (max-width: 430px) {
  .bg-link .link-wrap:nth-of-type(2) {
    grid-area: 3/1/4/3;
  }
}
.bg-link .link-wrap:nth-of-type(3) {
  background-image: url(./assets/img/top/bg-shikkui02.jpg);
}
@media screen and (max-width: 430px) {
  .bg-link .link-wrap:nth-of-type(3) {
    grid-area: 4/1/5/2;
  }
}
.bg-link .link-wrap:nth-of-type(4) {
  background-image: url(./assets/img/top/bg-tou02.jpg);
}
@media screen and (max-width: 430px) {
  .bg-link .link-wrap:nth-of-type(4) {
    grid-area: 4/2/5/3;
  }
}
.bg-link .link {
  display: block;
  position: relative;
}
.bg-link .link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bg-link .text-wrap {
  text-align: center;
  position: absolute;
  right: 50%;
  bottom: 50%;
  -webkit-transform: translate(50%, 58%);
          transform: translate(50%, 58%);
}
.bg-link .link-title {
  font-size: clamp(40px, 4.6875vw, 48px);
  line-height: 1;
  margin-bottom: 6px;
}
.bg-link .link-title--en {
  font-size: 20px;
  text-transform: uppercase;
}

/* mission
--------------------------------------*/
.mission {
  padding: 40px 0;
}
@media screen and (max-width: 430px) {
  .mission {
    padding: 20px 0;
  }
}
.mission .b-main-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 999px) {
  .mission .b-main-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.mission .b-main-flex .b-main-flex__content {
  width: 100%;
}
@media screen and (max-width: 999px) {
  .mission .b-main-flex .b-main-flex__content {
    margin-right: 0;
  }
}
.mission .b-main-flex .b-main-flex__img-content {
  max-width: 500px;
  margin-top: 40px;
}
@media screen and (max-width: 999px) {
  .mission .b-main-flex .b-main-flex__img-content {
    max-width: 400px;
    aspect-ratio: 3/2.5;
    margin-bottom: 20px;
  }
}
.mission .b-main-flex .b-main-flex__img-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* overview
--------------------------------------*/
.overview .b-main-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* architecture
--------------------------------------*/
.architecture .b-main-flex {
  margin-bottom: 164px;
}
@media screen and (max-width: 999px) {
  .architecture .b-main-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 82px;
  }
}
@media screen and (max-width: 999px) {
  .architecture .b-main-flex .b-main-flex__text-content {
    width: calc(100% - 70px);
  }
  .architecture .b-main-flex .b-main-flex__text-content:nth-of-type(even) {
    margin-left: 70px;
  }
}
@media screen and (max-width: 767px) {
  .architecture .b-main-flex .b-main-flex__text-content {
    width: calc(100% - 40px);
  }
  .architecture .b-main-flex .b-main-flex__text-content:nth-of-type(even) {
    margin-left: 40px;
  }
}
@media screen and (max-width: 999px) {
  .architecture .b-main-flex .b-main-flex__img-content {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 430px) {
  .architecture .b-main-flex .b-main-flex__img-content {
    height: auto;
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 999px) {
  .architecture .b-main-flex:nth-of-type(2), .architecture .b-main-flex:nth-of-type(4) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.architecture .b-main-flex .c-sec-title--xs {
  font-size: 29px;
}
@media screen and (max-width: 430px) {
  .architecture .b-main-flex .c-sec-title--xs {
    font-size: 21px;
  }
}
@media screen and (max-width: 430px) {
  .architecture .b-main-flex .c-sec-title--xs br {
    display: none;
  }
}
.architecture .b-main-flex:last-of-type {
  margin-bottom: 0;
}

/* contact
--------------------------------------*/
.contact .contact__title {
  font-size: 60px;
  margin: 16px 0 68px;
}
.contact .c-desc-main {
  font-size: 1rem;
  margin-bottom: 172px;
}

/*======================================
   Material library
======================================*/
/* common
--------------------------------------*/
.b-bg {
  margin-bottom: 84px;
}
@media screen and (max-width: 430px) {
  .b-bg {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 999px) {
  .b-material__wrap .b-main-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .b-material__wrap .b-main-flex .b-main-flex__img-content {
    width: calc(100% - 140px);
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 999px) and (max-width: 430px) {
  .b-material__wrap .b-main-flex .b-main-flex__img-content {
    width: calc(100% - 40px);
    height: auto;
    aspect-ratio: 10/1;
  }
}
@media screen and (max-width: 999px) and (max-width: 430px) {
  .b-material__wrap .b-main-flex .b-main-flex__text-content .c-sec-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 999px) and (max-width: 430px) {
  .b-material__wrap .b-main-flex .b-main-flex__text-content .c-sec-title .en {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 999px) {
  .b-material__wrap .b-main-flex--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

/* ishi
--------------------------------------*/
/*======================================
   oveerview
======================================*/
.p-overview {
  padding: 80px 0;
}
@media screen and (max-width: 430px) {
  .p-overview {
    padding: 30px 0;
  }
}

.p-overview__list {
  display: grid;
  gap: 22px;
  padding-bottom: 20px;
  margin-top: 40px;
}

.p-overview__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #C88977;
  padding-bottom: 22px;
}
@media screen and (max-width: 430px) {
  .p-overview__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-overview__item:nth-of-type(1) {
  border-top: 1px solid #C88977;
  padding-top: 22px;
}

.p-overview__term {
  width: 170px;
}
@media screen and (max-width: 430px) {
  .p-overview__term {
    width: auto;
    margin-bottom: 6px;
  }
}

.p-overview__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 430px) {
  .p-overview__desc {
    line-height: 1.6;
  }
}

/* Utility (u-) */
.u-ta-c {
  text-align: center;
}

.u-mb40 {
  margin-bottom: 40px;
}

/*======================================
   arichitecture
======================================*/
.p-architecture--title__wrap {
  width: 100%;
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 999px) {
  .p-architecture--title__wrap {
    height: auto;
    aspect-ratio: 12/9;
  }
}
.p-architecture--title__wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}
.p-architecture--title__wrap .p-architecture__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.p-architecture--title__wrap .p-architecture__title {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 430px) {
  .p-architecture--title__wrap .p-architecture__title {
    margin-top: 15px;
  }
}

.b-modal-wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}
@media screen and (max-width: 430px) {
  .b-modal-wrapper {
    display: none;
    pointer-events: none;
  }
}
.b-modal-wrapper .b-modal__inner {
  max-width: 1100px;
  width: 80%;
  max-height: 80vh;
  height: 80vh;
  aspect-ratio: 3/2;
  position: relative;
}
@media screen and (max-width: 999px) {
  .b-modal-wrapper .b-modal__inner {
    width: 95%;
  }
}
.b-modal-wrapper .b-modal__inner .b-modal__close {
  position: absolute;
  top: 0px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: no-repeat center center/contain url("./assets/svg/modal-close.svg");
  cursor: pointer;
  z-index: 900;
}
@media screen and (max-width: 430px) {
  .b-modal-wrapper .b-modal__inner .b-modal__close {
    width: 20px;
    height: 20px;
    top: 10px;
    right: 10px;
  }
}
.b-modal-wrapper .b-modal__inner .b-modal__content {
  margin-bottom: 30px;
}
.b-modal-wrapper .b-modal__inner .b-modal__content .b-modal-main__slide-wrap img {
  aspect-ratio: 3/2;
  -o-object-fit: contain;
     object-fit: contain;
}
.b-modal-wrapper .b-modal__inner .b-modal__thumb {
  width: calc(100% - 160px);
}
.b-modal-wrapper .b-modal__inner .b-modal__thumb .b-modal-main__slide-wrap img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.b-modal-wrapper .b-modal-container {
  position: relative;
  padding: 0 80px;
}
.b-modal-wrapper .b-modal-container .swiper-button-next,
.b-modal-wrapper .b-modal-container .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 50%);
  width: 35px;
  height: 100px;
  background: no-repeat center center/contain url("./assets/svg/swiper-arrow.svg");
}
.b-modal-wrapper .b-modal-container .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.b-modal-wrapper .b-modal-container .swiper-button-next:after,
.b-modal-wrapper .b-modal-container .swiper-button-prev:after {
  display: none;
}

.slide-target:hover {
  cursor: pointer;
}

/*======================================
  conocept
======================================*/
.c-page-title__logo {
  display: block;
  width: 100px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 430px) {
  .c-page-title__logo {
    width: 60px;
  }
}

.scheme {
  max-width: 1100px;
  margin: 0 auto;
}
.scheme .scheme__img-wrap {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 430px) {
  .scheme .scheme__img-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.scheme .scheme__img-wrap img {
  width: 800px;
}
@media screen and (max-width: 999px) {
  .scheme .scheme__img-wrap img {
    width: 500px;
  }
}
@media screen and (max-width: 430px) {
  .scheme .scheme__img-wrap img {
    margin-bottom: 30px;
  }
}
.scheme .scheme__img-wrap h3 {
  display: none;
}
@media screen and (max-width: 430px) {
  .scheme .scheme__img-wrap h3 {
    width: 100%;
    display: block;
    font-size: 21px;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: left;
  }
}
.scheme .scheme__img-wrap p {
  font-size: 14px;
  position: absolute;
  width: 260px;
}
@media screen and (max-width: 999px) {
  .scheme .scheme__img-wrap p {
    width: 170px;
  }
}
@media screen and (max-width: 430px) {
  .scheme .scheme__img-wrap p {
    position: relative;
    width: 100%;
  }
}
.scheme .scheme__img-wrap p:nth-of-type(1) {
  top: 5%;
  left: 3%;
}
@media screen and (max-width: 999px) {
  .scheme .scheme__img-wrap p:nth-of-type(1) {
    top: 0;
    left: 0;
  }
}
.scheme .scheme__img-wrap p:nth-of-type(2) {
  top: 14%;
  right: 0;
}
@media screen and (max-width: 999px) {
  .scheme .scheme__img-wrap p:nth-of-type(2) {
    top: 0;
    right: 0;
  }
}
.scheme .scheme__img-wrap p:nth-of-type(3) {
  bottom: 0;
  right: 2%;
}
@media screen and (max-width: 999px) {
  .scheme .scheme__img-wrap p:nth-of-type(3) {
    bottom: -5%;
    right: 0;
  }
}
.scheme .scheme__img-wrap p:nth-of-type(4) {
  bottom: 9%;
  left: 0;
}
@media screen and (max-width: 999px) {
  .scheme .scheme__img-wrap p:nth-of-type(4) {
    bottom: 0;
    left: 0;
  }
}

.b-dento-wrap {
  margin-top: 40px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
@media screen and (max-width: 430px) {
  .b-dento-wrap {
    display: block;
  }
}
.b-dento-wrap::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  background-color: #C88977;
  opacity: 0.75;
}
@media screen and (max-width: 430px) {
  .b-dento-wrap::after {
    display: none;
  }
}
.b-dento-wrap .b-main-flex__content {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.b-dento-wrap .b-main-flex__content .box:nth-of-type(1), .b-dento-wrap .b-main-flex__content .box:nth-of-type(2) {
  grid-column: span 2;
}
.b-dento-wrap .b-main-flex__content .box p {
  font-size: 14px;
}
@media screen and (max-width: 999px) {
  .b-dento-wrap .b-concept-flex:nth-of-type(1) .b-main-flex__content .box:nth-last-of-type(-n + 2) {
    margin-top: 26px;
  }
}
.b-dento-wrap .b-concept-sp .box {
  margin-top: 10px;
}
.b-dento-wrap .b-concept-sp h4 {
  font-size: 24px;
  line-height: 1.2;
}
.b-dento-wrap .b-concept-sp p {
  font-size: 13px;
  margin-top: 5px;
  line-height: 1.25;
}
.b-dento-wrap .b-concept-sp .b-detail-sp {
  margin-top: 40px;
}
.b-dento-wrap .b-concept-sp .b-detail-sp .b-main-flex__content {
  gap: 10px;
}
.b-dento-wrap .b-concept-sp .b-detail-sp .b-main-flex__content .box:nth-of-type(1), .b-dento-wrap .b-concept-sp .b-detail-sp .b-main-flex__content .box:nth-of-type(2) {
  grid-column: span 1;
}

.materials-handiwork .b-main-flex__content {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.locally-materials-wrap .b-main-flex__content {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}
@media screen and (max-width: 999px) {
  .locally-materials-wrap .b-main-flex__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 430px) {
  .locally-materials-wrap .b-main-flex__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
}
.locally-materials-wrap .b-main-flex__content .box h3 {
  font-size: 24px;
  border-bottom: 1px solid rgba(200, 136, 119, 0.4274509804);
  padding-bottom: 5px;
  margin-bottom: 10px;
}
@media screen and (max-width: 430px) {
  .locally-materials-wrap .b-main-flex__content .box h3 {
    font-size: 21px;
    margin-bottom: 5px;
  }
}
.locally-materials-wrap .b-main-flex__content .box p {
  font-size: 13px;
}

.creator-wrap .staf-wrap {
  margin-top: 120px;
}
@media screen and (max-width: 430px) {
  .creator-wrap .staf-wrap {
    margin-top: 60px;
  }
}
.creator-wrap h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
}
.creator-wrap .b-creator-wrap__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .creator-wrap .b-creator-wrap__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
  }
}
.creator-wrap .b-creator-wrap__inner img {
  width: 200px;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .creator-wrap .b-creator-wrap__inner img {
    margin: 0 auto 30px;
  }
}
.creator-wrap .b-creator-wrap__inner .role {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 430px) {
  .creator-wrap .b-creator-wrap__inner .role {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.creator-wrap .b-creator-wrap__inner .role .en {
  display: block;
  font-size: 15px;
  margin-top: 5px;
}
.creator-wrap .b-creator-wrap__inner .name {
  margin-bottom: 40px;
}
@media screen and (max-width: 430px) {
  .creator-wrap .b-creator-wrap__inner .name {
    margin-bottom: 20px;
  }
}
.creator-wrap .b-creator-wrap__inner .name h3 {
  font-size: 32px;
}
@media screen and (max-width: 430px) {
  .creator-wrap .b-creator-wrap__inner .name h3 {
    font-size: 28px;
  }
}
.creator-wrap .b-creator-wrap__inner .name span {
  display: block;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 430px) {
  .creator-wrap .b-creator-wrap__inner .name span {
    font-size: 12px;
  }
}
.creator-wrap .b-main-flex {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .creator-wrap .b-main-flex {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
.creator-wrap .b-main-flex img {
  width: 100%;
  margin-bottom: 20px;
}
.creator-wrap .b-main-flex .role {
  margin-bottom: 20px;
  font-size: 25px;
}
@media screen and (max-width: 999px) {
  .creator-wrap .b-main-flex .role {
    font-size: 21px;
  }
}
@media screen and (max-width: 430px) {
  .creator-wrap .b-main-flex .role {
    font-size: 16px;
  }
}
.creator-wrap .b-main-flex .name {
  margin-bottom: 0;
}
.creator-wrap .b-main-flex .name h3 {
  font-size: 25px;
}
@media screen and (max-width: 999px) {
  .creator-wrap .b-main-flex .name h3 {
    font-size: 21px;
  }
}
@media screen and (max-width: 430px) {
  .creator-wrap .b-main-flex .name h3 {
    font-size: 16px;
  }
}

.b-yt-bnr__inner {
  width: 800px;
  aspect-ratio: 2.9/1;
  margin: 120px auto 0;
  position: relative;
}
@media screen and (max-width: 999px) {
  .b-yt-bnr__inner {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .b-yt-bnr__inner {
    aspect-ratio: inherit;
    margin: 60px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 0;
  }
}
.b-yt-bnr__inner:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.4)), color-stop(65%, rgba(0, 0, 0, 0.65)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.65) 65%);
}
.b-yt-bnr__inner .b-yt-logo {
  position: absolute;
  width: 250px;
  top: 0;
  left: 60px;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  .b-yt-bnr__inner .b-yt-logo {
    width: 35%;
    left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .b-yt-bnr__inner .b-yt-logo {
    position: static;
    width: 130px;
    height: auto;
    margin: 0 0 15px;
    display: none;
  }
}
.b-yt-bnr__inner .b-yt-logo.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .b-yt-bnr__inner .b-yt-logo.sp {
    display: block;
    width: 50px;
    margin: 0 7% 0 3%;
  }
}
.b-yt-bnr__inner .b-yt-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .b-yt-bnr__inner .b-yt-bg {
    -o-object-position: 10% center;
       object-position: 10% center;
  }
}
.b-yt-bnr__inner .b-yt-link-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.b-yt-bnr__inner .info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 52%;
  padding-left: 5%;
  padding: 20px 40px 20px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 999px) {
  .b-yt-bnr__inner .info {
    width: 50%;
    right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .b-yt-bnr__inner .info {
    width: calc(75% - 40px);
    padding: 0;
    margin: 0;
    position: relative;
    left: 0;
  }
}
.b-yt-bnr__inner .info:after {
  content: "";
  width: 1px;
  height: 70%;
  position: absolute;
  top: 15%;
  left: 0;
  margin: 0 auto;
  z-index: 1;
  background-color: #C88977;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .b-yt-bnr__inner .info:after {
    width: 100%;
    height: 1px;
    top: 0;
    display: none;
  }
}
.b-yt-bnr__inner .info h3 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .b-yt-bnr__inner .info h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }
}
.b-yt-bnr__inner .info h3 .en {
  display: block;
  font-size: 15px;
  margin-top: 5px;
  margin-left: 2px;
}
@media screen and (max-width: 767px) {
  .b-yt-bnr__inner .info h3 .en {
    font-size: 12px;
  }
}
@media screen and (max-width: 999px) {
  .b-yt-bnr__inner .info p br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .b-yt-bnr__inner .info p {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */