/*======================================
	Common
======================================*/
html {
  font-size: 100%;
}

body {
  background-color: #F9F9F5;
  font-family: "eb-garamond", "Noto Serif JP", serif;
  font-size: 0.9375rem;
  color: #000;
  line-height: 2;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overflow-x: hidden;
  overflow-y: scroll;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

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

ol, ul {
  list-style: none;
}

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

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

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

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

/*		display
--------------------------------------*/
.xs_disp-b {
  display: none;
}
@media screen and (min-width: 375px) {
  .xs_disp-b {
    display: block;
  }
}

@media screen and (min-width: 375px) {
  .xs_disp-n {
    display: none;
  }
}
.sm_disp-b {
  display: none;
}
@media screen and (min-width: 744px) {
  .sm_disp-b {
    display: block;
  }
}

@media screen and (min-width: 744px) {
  .sm_disp-n {
    display: none;
  }
}
.md_disp-b {
  display: none;
}
@media screen and (min-width: 960px) {
  .md_disp-b {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  .md_disp-n {
    display: none;
  }
}
.lg_disp-b {
  display: none;
}
@media screen and (min-width: 1000px) {
  .lg_disp-b {
    display: block;
  }
}

@media screen and (min-width: 1000px) {
  .lg_disp-n {
    display: none;
  }
}
.xl_disp-b {
  display: none;
}
@media screen and (min-width: 1400px) {
  .xl_disp-b {
    display: block;
  }
}

@media screen and (min-width: 1400px) {
  .xl_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 (min-width: 375px) {
  .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 (min-width: 744px) {
  .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 (min-width: 960px) {
  .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 (min-width: 1000px) {
  .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 (min-width: 1400px) {
  .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);
  }
}

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

@media screen and (min-width: 375px) {
  .xs_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 744px) {
  .sm_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 960px) {
  .md_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1000px) {
  .lg_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1400px) {
  .xl_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 (min-width: 375px) {
  .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 (min-width: 744px) {
  .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 (min-width: 960px) {
  .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 (min-width: 1000px) {
  .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 (min-width: 1400px) {
  .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;
  }
}
._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 (min-width: 375px) {
  .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 (min-width: 744px) {
  .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 (min-width: 960px) {
  .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 (min-width: 1000px) {
  .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 (min-width: 1400px) {
  .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;
  }
}
._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 (min-width: 375px) {
  .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 (min-width: 744px) {
  .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 (min-width: 960px) {
  .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 (min-width: 1000px) {
  .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 (min-width: 1400px) {
  .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;
  }
}
._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 (min-width: 375px) {
  .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 (min-width: 744px) {
  .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 (min-width: 960px) {
  .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 (min-width: 1000px) {
  .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 (min-width: 1400px) {
  .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;
  }
}
._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 (min-width: 375px) {
  .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 (min-width: 744px) {
  .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 (min-width: 960px) {
  .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 (min-width: 1000px) {
  .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 (min-width: 1400px) {
  .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;
  }
}
._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 (min-width: 375px) {
  .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 (min-width: 744px) {
  .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 (min-width: 960px) {
  .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 (min-width: 1000px) {
  .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 (min-width: 1400px) {
  .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;
  }
}
/*======================================
	Animation
======================================*/
/*		scroll bar - fv
--------------------------------------*/
.fv__scroll::after {
  -webkit-animation: scrollLine 3s cubic-bezier(0.65, 0, 0.35, 1) infinite;
          animation: scrollLine 3s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.1% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

@keyframes scrollLine {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.1% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
/*======================================
	Program
======================================*/
/* Header
--------------------------------------*/
.js-header.active {
  mix-blend-mode: normal;
}

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

.js-burgerToggle.active .line {
  background-color: #000;
}
.js-burgerToggle.active .line:nth-of-type(1) {
  -webkit-transform: rotate(14deg);
          transform: rotate(14deg);
  top: 3px;
}
@media screen and (min-width: 960px) {
  .js-burgerToggle.active .line:nth-of-type(1) {
    top: 12px;
  }
}
.js-burgerToggle.active .line:nth-of-type(2) {
  width: 100%;
  top: 3px;
  -webkit-transform: rotate(-14deg);
          transform: rotate(-14deg);
}
@media screen and (min-width: 960px) {
  .js-burgerToggle.active .line:nth-of-type(2) {
    top: 12px;
  }
}
.js-burgerToggle.active .text {
  color: #000;
}
@media screen and (min-width: 960px) {
  .js-burgerToggle.active .text {
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
  }
}

.js-focus-trap {
  opacity: 0;
  position: absolute;
}

/* display animation
--------------------------------------*/
.js-fadeIn {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.js-fadeIn.on {
  opacity: 1;
}

/*======================================
	Header
======================================*/
.l_header {
  width: 100%;
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 100;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  mix-blend-mode: difference;
  pointer-events: none;
}
.l_header .l_header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 20px 0;
  margin: auto;
}
@media screen and (min-width: 960px) {
  .l_header .l_header__inner {
    padding: 32px 74px 0 63px;
  }
}
.l_header .site-title {
  width: 82px;
  z-index: 100;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media screen and (min-width: 960px) {
  .l_header .site-title {
    width: 153px;
  }
}
.l_header .site-title a {
  display: block;
  pointer-events: all;
}
@media screen and (min-width: 960px) {
  .l_header .site-title a:hover {
    opacity: 0.7;
  }
}
.l_header .l_header__icon-sns {
  width: 22px;
  line-height: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 960px) {
  .l_header .l_header__icon-sns {
    width: 36px;
  }
  .l_header .l_header__icon-sns:hover {
    opacity: 0.7;
  }
}
.l_header .l_header__icon-sns .l_header__icon-link {
  display: block;
  pointer-events: all;
}

/* Main Menu
--------------------------------------*/
.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #F9F9F5;
  padding: 26px 26px 46px;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: scroll;
  z-index: 99;
  pointer-events: all;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media screen and (min-width: 960px) {
  .main-nav {
    padding: 26px 136px 95px;
  }
}
.main-nav .site-title {
  position: fixed;
  top: 30px;
  left: 20px;
}
.main-nav .main-menu > * + * {
  margin-top: 0.75em;
}
@media screen and (min-width: 960px) {
  .main-nav .main-menu > * + * {
    margin-top: 0.4em;
  }
}
.main-nav .main-menu .item {
  letter-spacing: 0.2em;
}
.main-nav .main-menu .item a {
  color: #000;
}
@media screen and (min-width: 960px) {
  .main-nav .main-menu .item a:hover {
    opacity: 0.5;
  }
}
.main-nav .main-menu .main {
  font-size: 1.25rem;
}
@media screen and (min-width: 960px) {
  .main-nav .main-menu .main {
    font-size: 1.5625rem;
  }
}
.main-nav .main-menu .sub {
  margin-top: 1.4666666667em;
}
.main-nav .main-menu .hidden {
  pointer-events: none;
  opacity: 0.3;
}

/* Burger Toggle
--------------------------------------*/
.burger-toggle {
  display: inline-block;
  width: 32px;
  color: #fff;
  padding-top: 5px;
  margin-left: 20px;
  cursor: pointer;
  position: relative;
  z-index: 100;
  pointer-events: all;
}
@media screen and (min-width: 960px) {
  .burger-toggle {
    width: 63px;
    padding-top: 14px;
    margin-left: 34px;
  }
}
.burger-toggle .line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.burger-toggle .line:nth-of-type(1) {
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.burger-toggle .line:nth-of-type(2) {
  width: 22px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  top: 6px;
}
@media screen and (min-width: 960px) {
  .burger-toggle .line:nth-of-type(2) {
    width: 44px;
    top: 12px;
  }
}
.burger-toggle .text {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: left;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media screen and (min-width: 960px) {
  .burger-toggle .text {
    margin-top: 6px;
  }
}
.burger-toggle .visually-hidden {
  color: #fff;
}

/*======================================
	Loading
======================================*/
.l_loading {
  width: 100%;
  height: 100vh;
  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;
  background-color: #F9F9F5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
}
.l_loading .l_loading__logo {
  width: 120px;
}
@media screen and (min-width: 744px) {
  .l_loading .l_loading__logo {
    width: 140px;
  }
}

/*======================================
	Contents
======================================*/
/* Container
--------------------------------------*/
.l_container {
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .l_container {
    max-width: 1080px;
    padding: 0 40px;
  }
}
.l_container--lg {
  max-width: 1076px;
  padding: 0 38px;
}
@media screen and (min-width: 960px) {
  .l_container--lg {
    max-width: 1080px;
    padding: 0 40px;
  }
}

/* Section
--------------------------------------*/
.l_section {
  padding: 87px 0;
}
@media screen and (min-width: 960px) {
  .l_section {
    padding: 111px 0;
  }
}

/*======================================
	Footer
======================================*/
.l_footer {
  padding: 17px 0 24px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l_footer {
    padding: 7px 0 36px;
  }
}
@media screen and (min-width: 960px) {
  .l_footer .l_footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l_footer .l_footer__logo-wrap {
  max-width: 90px;
  width: 100%;
  text-align: center;
  margin: 0 auto 95px;
}
@media screen and (min-width: 960px) {
  .l_footer .l_footer__logo-wrap {
    max-width: 132px;
    margin: 0;
  }
}
.l_footer .c_sec-title {
  letter-spacing: 0.4em;
  margin-left: -0.5em;
}
@media screen and (min-width: 960px) {
  .l_footer .c_sec-title {
    padding-bottom: 12px;
  }
}
.l_footer .l_footer__icon-kujira {
  margin-bottom: 60px;
}
@media screen and (min-width: 960px) {
  .l_footer .l_footer__icon-kujira {
    max-width: 126px;
    margin-left: 20px;
    margin-bottom: 0;
  }
}
.l_footer .l_footer__bottom-container {
  display: grid;
  grid-template-columns: 45px 1fr 45px;
  margin-top: 127px;
}
@media screen and (min-width: 960px) {
  .l_footer .l_footer__bottom-container {
    margin-top: 170px;
  }
}
.l_footer .l_footer__logo-kujira {
  width: 45px;
}
@media screen and (min-width: 960px) {
  .l_footer .l_footer__logo-kujira {
    width: 63px;
  }
}
.l_footer .l_footer__logo-kujira a {
  display: block;
}
@media screen and (min-width: 960px) {
  .l_footer .l_footer__logo-kujira a:hover {
    opacity: 0.7;
  }
}
.l_footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.625rem;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .l_footer .copyright {
    font-size: 0.75rem;
  }
}

/*======================================
	Component
======================================*/
/*		Section Title
--------------------------------------*/
.c_sec-title {
  font-size: 1.25rem;
}
@media screen and (min-width: 960px) {
  .c_sec-title {
    font-size: 1.5625rem;
    letter-spacing: 0.1em;
  }
}
.c_sec-title--sm {
  display: block;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 960px) {
  .c_sec-title--sm {
    font-size: 1.5625rem;
    line-height: 1.2;
  }
}
.c_sec-title--lg {
  font-size: 1.5625rem;
}
@media screen and (min-width: 960px) {
  .c_sec-title--lg {
    font-size: 2.1875rem;
  }
}
.c_sec-title--vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  padding-right: 0.3333333333em;
}
@-moz-document url-prefix() {
  .c_sec-title--vertical {
    padding-right: 0;
  }
}

/*		Button
--------------------------------------*/
.c_btn-main {
  text-align: center;
}
.c_btn-main .c_btn-main__link {
  display: inline-block;
  min-width: 180px;
  font-size: 0.75rem;
  border-bottom: 1px solid #000;
  padding: 0.25em 1.3333333333em;
  position: relative;
}
@media screen and (min-width: 960px) {
  .c_btn-main .c_btn-main__link {
    font-size: 0.9375rem;
  }
  .c_btn-main .c_btn-main__link:hover {
    opacity: 0.7;
  }
  .c_btn-main .c_btn-main__link:hover::after {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
}
.c_btn-main .c_btn-main__link::after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  background: url(./assets/svg/icon-arrow.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  bottom: calc(50% - 5px);
  -webkit-transition: inherit;
  transition: inherit;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
@media screen and (min-width: 960px) {
  .c_btn-main .c_btn-main__link::after {
    width: 6px;
    height: 11px;
  }
}
.c_btn-main__fit .c_btn-main__link {
  min-width: auto;
  padding: 0.25em 2em 0.25em 0;
}
@media screen and (min-width: 960px) {
  .c_btn-main__fit .c_btn-main__link:hover::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.c_btn-main__fit .c_btn-main__link::after {
  width: 15px;
  height: 12px;
  background: url(./assets/svg/icon-window.svg) no-repeat center center/contain;
  bottom: calc(50% - 6px);
}
@media screen and (min-width: 960px) {
  .c_btn-main__fit .c_btn-main__link::after {
    width: 17px;
    height: 14px;
  }
}

/*		Text
--------------------------------------*/
.c_text-main {
  text-align: justify;
}

/*======================================
	Block
======================================*/
/*		Section Title Main
--------------------------------------*/
.b_sec-title__wrap {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 960px) {
  .b_sec-title__wrap {
    margin-bottom: 155px;
  }
}
.b_sec-title__wrap .c_sec-title {
  display: inline-block;
  text-align: left;
}
.b_sec-title__wrap .c_sec-title--vertical {
  letter-spacing: 0.41em;
  line-height: 2.7;
}
@media screen and (min-width: 960px) {
  .b_sec-title__wrap .c_sec-title--vertical {
    letter-spacing: 0.59em;
    line-height: 3.6;
  }
}
.b_sec-title__wrap .bar {
  display: block;
  width: 1px;
  height: 26px;
  background-color: #000;
  margin: 6px auto 17px;
}
.b_sec-title__wrap .c_sec-title--sm {
  width: 100%;
  display: block;
  border-bottom: solid 1px #000;
  padding-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .b_sec-title__wrap .c_sec-title--sm {
    padding-bottom: 50px;
  }
}

.b_sec-title__wrap--horizon {
  border-bottom: 1px solid #000;
}
.b_sec-title__wrap--horizon .sub {
  font-size: 0.75rem;
  line-height: 1.3;
}
@media screen and (min-width: 960px) {
  .b_sec-title__wrap--horizon .sub {
    font-size: 0.9375rem;
  }
}
.b_sec-title__wrap--horizon .c_sec-title--lg {
  margin-bottom: 0.44em;
}

/*		Page head
--------------------------------------*/
.b_page-head {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: clamp(100px, 30.9677419355vh, 192px);
}
@media screen and (min-width: 960px) {
  .b_page-head {
    margin-top: clamp(100px, 30.9677419355vh, 153px);
  }
}
.b_page-head .c_sec-title--vertical {
  letter-spacing: 0.5em;
  line-height: 2;
}
@media screen and (min-width: 960px) {
  .b_page-head .c_sec-title--vertical {
    letter-spacing: 0.6em;
  }
}
.b_page-head .b_sec-title__wrap {
  min-height: 260px;
  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;
}
@media screen and (min-width: 960px) {
  .b_page-head .b_sec-title__wrap {
    min-height: 426px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 150px;
  }
}
.b_page-head .b_sec-title__wrap .bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  margin: 14px auto 22px;
}
@media screen and (min-width: 960px) {
  .b_page-head .b_sec-title__wrap .bar {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    height: 25px;
    margin: 18px auto;
  }
}
@media screen and (min-width: 960px) {
  .b_page-head .b_sec-title__wrap .c_sec-title--sm {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-bottom: 134px;
  }
}

/*		Slider
--------------------------------------*/
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  width: auto;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 1px;
  border-radius: 0;
  background-color: #fff;
  opacity: 1;
  margin: 0;
}

.swiper-pagination-bullet-active {
  opacity: 0.4;
}

.b_slider .b_slider__pagination {
  position: absolute;
  left: 20px;
  bottom: 10px;
  z-index: 5;
  pointer-events: all;
}
@media screen and (min-width: 960px) {
  .b_slider .b_slider__pagination {
    left: 33px;
    bottom: 22px;
  }
}
.b_slider--full .b_slider__slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}

/*======================================
	Top
======================================*/
/*		fv
--------------------------------------*/
.fv {
  position: relative;
}
.fv .fv__scroll {
  display: block;
  width: 200px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #fff;
  position: absolute;
  right: 45px;
  bottom: 0;
  z-index: 5;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 960px) {
  .fv .fv__scroll {
    width: 181px;
    font-size: 15px;
    line-height: 1.9;
    right: 140px;
  }
}
.fv .fv__scroll::before, .fv .fv__scroll::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.fv .fv__scroll::before {
  opacity: 0.3;
}

/*		Intro
--------------------------------------*/
@media screen and (min-width: 960px) {
  .intro {
    padding-bottom: 96px;
  }
}
.intro .b_sec-title__wrap {
  margin-top: 22px;
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .intro .b_sec-title__wrap {
    margin-top: 200px;
  }
}
.intro .intro__img-wrap {
  aspect-ratio: 1/1;
  margin-top: 92px;
}
@media screen and (min-width: 375px) {
  .intro .intro__img-wrap {
    aspect-ratio: auto;
    height: 335px;
  }
}
@media screen and (min-width: 744px) {
  .intro .intro__img-wrap {
    aspect-ratio: 2/1;
    height: auto;
  }
}
@media screen and (min-width: 960px) {
  .intro .intro__img-wrap {
    margin-top: 275px;
  }
}
.intro .intro__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro .intro__text {
  text-align: center;
  margin-top: 3.1333333333em;
}
@media screen and (min-width: 960px) {
  .intro .intro__text {
    font-size: 1.125rem;
    margin-top: 3.2222222222em;
  }
}

/*		Eat
--------------------------------------*/
.eat .eat__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 75px;
}
@media screen and (min-width: 960px) {
  .eat .eat__section {
    margin-bottom: 152px;
  }
}
.eat .eat__section:last-of-type {
  margin-bottom: 62px;
}
@media screen and (min-width: 960px) {
  .eat .eat__section:last-of-type {
    margin-bottom: 96px;
  }
}
.eat .eat__section .c_sec-title--sm {
  width: 45px;
  letter-spacing: 0.4em;
  line-height: 1;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media screen and (min-width: 960px) {
  .eat .eat__section .c_sec-title--sm {
    letter-spacing: 0.6em;
    margin-right: 3.4em;
  }
}
.eat .eat__section-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.eat .eat__section-img-wrap {
  margin-right: calc(50% + 22.5px - 50vw);
  margin-bottom: 35px;
}
@media screen and (min-width: 960px) {
  .eat .eat__section-img-wrap {
    margin-right: calc(50% + 65px - 50vw);
    margin-bottom: 52px;
  }
}
.eat .eat__section-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
}
.eat .eat__section-text {
  font-size: 0.75rem;
  line-height: 2.08;
  margin-top: 1.1666666667em;
}
@media screen and (min-width: 960px) {
  .eat .eat__section-text {
    font-size: 0.9375rem;
    line-height: 1.66;
    padding-right: 0;
    margin-top: 1.6em;
  }
}

/*		Stay
--------------------------------------*/
.stay .stay__img-wrap {
  aspect-ratio: 1/1;
  background: url(./assets/img/stay.jpg) no-repeat center center/cover;
  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 (min-width: 375px) {
  .stay .stay__img-wrap {
    aspect-ratio: auto;
    height: 335px;
  }
}
@media screen and (min-width: 744px) {
  .stay .stay__img-wrap {
    aspect-ratio: 1000/440;
    height: auto;
    background: url(./assets/img/stay_lg.jpg) no-repeat center center/cover;
  }
}
.stay .stay__text {
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 960px) {
  .stay .stay__text {
    font-size: 1.5625rem;
  }
}

/*		Access
--------------------------------------*/
.access {
  padding-top: 16px;
}
@media screen and (min-width: 960px) {
  .access {
    padding-top: 119px;
  }
}
@media screen and (min-width: 960px) {
  .access .b_sec-title__wrap {
    margin-bottom: 88px;
  }
}
.access .c_sec-title {
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (min-width: 960px) {
  .access .c_sec-title {
    letter-spacing: 0.1em;
    margin-bottom: 0.72em;
  }
}
.access .c_sec-title--sm {
  line-height: 1;
  border-bottom: none;
  padding-bottom: 0;
}
.access .access__map-wrap {
  aspect-ratio: 1/1;
  height: 100%;
  line-height: 0;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  overflow: hidden;
}
@media screen and (min-width: 375px) {
  .access .access__map-wrap {
    aspect-ratio: auto;
  }
}
@media screen and (min-width: 744px) {
  .access .access__map-wrap {
    aspect-ratio: 1000/400;
  }
}
.access .access__map-wrap iframe {
  width: 100%;
  height: 100%;
  height: calc(100% + 60px);
  margin-top: -60px;
}
@media screen and (min-width: 375px) {
  .access .access__map-wrap iframe {
    height: 335px;
  }
}
@media screen and (min-width: 744px) {
  .access .access__map-wrap iframe {
    height: calc(100% + 60px);
  }
}
.access .access__list {
  margin-top: 37px;
  margin-bottom: 18px;
}
@media screen and (min-width: 960px) {
  .access .access__list {
    max-width: 602px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 64px auto 7px;
  }
}
@media screen and (min-width: 960px) {
  .access .access__list > * + * {
    margin-left: 40px;
  }
}
.access .access__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.75rem;
  line-height: 1.7;
  margin-bottom: 13px;
}
@media screen and (min-width: 960px) {
  .access .access__list-item {
    font-size: 0.9375rem;
  }
}
.access .access__list-item address {
  font-style: normal;
}
.access .access__item-head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 52px;
}
@media screen and (min-width: 960px) {
  .access .access__item-head {
    min-width: auto;
    margin-right: 1.2em;
  }
}
.access .access__item-body .number {
  pointer-events: none;
}
.access .access__note {
  font-size: 0.75rem;
  line-height: 1.8;
  margin-bottom: 0.4166666667em;
}
@media screen and (min-width: 960px) {
  .access .access__note {
    max-width: 602px;
    font-size: 0.9375rem;
    margin: 0 auto 0.3333333333em;
  }
}
.access .access__note.last {
  margin: 1.5em 0 4.1666666667em;
}
@media screen and (min-width: 960px) {
  .access .access__note.last {
    margin: 2.1333333333em auto 2.4em;
  }
}

/*======================================
	About
======================================*/
/*		page common
--------------------------------------*/
.about-section {
  padding: 44px 0;
}
@media screen and (min-width: 960px) {
  .about-section {
    padding: 97px 0;
  }
}
.about-section .about-section__img-container > * + * {
  margin-top: 6px;
}
.about-section .c_sec-title {
  margin: 1.5em 0 1.3em;
}
@media screen and (min-width: 960px) {
  .about-section .c_sec-title {
    letter-spacing: 0.2em;
    margin: 2.24em 0 1.32em;
  }
}
@media screen and (min-width: 960px) {
  .about-section .c_text-main {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

/*		about intro
--------------------------------------*/
.about-intro {
  padding-top: 0.6666666667em;
}
.about-intro .b_slider--full {
  aspect-ratio: 1/1;
}
@media screen and (min-width: 375px) {
  .about-intro .b_slider--full {
    aspect-ratio: auto;
    height: 335px;
  }
}
@media screen and (min-width: 744px) {
  .about-intro .b_slider--full {
    aspect-ratio: 1000/500;
    height: auto;
  }
}
.about-intro .b_slider--full .b_slider__slide img {
  height: 100%;
}

/*		about produce
--------------------------------------*/
.about-produce {
  padding-bottom: 94px;
}
@media screen and (min-width: 960px) {
  .about-produce {
    padding-bottom: 210px;
  }
}
.about-produce .about-produce__inner {
  border-top: 1px solid #000;
  padding-top: 50px;
}
@media screen and (min-width: 960px) {
  .about-produce .about-produce__inner {
    padding-top: 90px;
  }
}
.about-produce .about-produce__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 744px) {
  .about-produce .about-produce__head {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.about-produce .about-produce__profile {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 20px;
}
@media screen and (min-width: 744px) {
  .about-produce .about-produce__profile {
    margin-right: 70px;
  }
}
.about-produce .about-produce__profile .name {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 1.15em;
}
@media screen and (min-width: 960px) {
  .about-produce .about-produce__profile .name {
    font-size: 1.5625rem;
    letter-spacing: 0.12em;
    margin-top: 0.32em;
    margin-right: 0.44em;
  }
}
@media screen and (min-width: 960px) {
  .about-produce .about-produce__profile .en {
    letter-spacing: 0.12em;
  }
}
@media screen and (min-width: 960px) {
  .about-produce .about-produce__name-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.about-produce .about-produce__img-wrap {
  width: 40.2985074627%;
  max-width: 280px;
}
.about-produce .c_text-main {
  font-size: 0.75rem;
  line-height: 2.1;
  margin-top: 2em;
}
@media screen and (min-width: 960px) {
  .about-produce .c_text-main {
    font-size: 0.9375rem;
    line-height: 2;
    margin-top: 1.4em;
  }
}

/*======================================
	Eat
======================================*/
/*		page common
--------------------------------------*/
.eat-section {
  padding: 32px 0;
}
@media screen and (min-width: 960px) {
  .eat-section {
    padding: 9px 0 120px;
  }
}
@media screen and (min-width: 744px) {
  .eat-section .eat-section__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.eat-section .eat-section__img-wrap {
  margin-bottom: 20px;
}
@media screen and (min-width: 744px) {
  .eat-section .eat-section__img-wrap {
    width: 40%;
  }
}
.eat-section .eat-section__text-container {
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 744px) {
  .eat-section .eat-section__text-container {
    width: 60%;
    text-align: left;
    padding-left: 20px;
  }
}
@media screen and (min-width: 960px) {
  .eat-section .eat-section__text-container {
    letter-spacing: 0.05em;
    padding-left: 56px;
  }
}
.eat-section .eat-section__date {
  margin-bottom: 2em;
}
@media screen and (min-width: 744px) {
  .eat-section .eat-section__date {
    -webkit-transform: translateX(-0.6666666667em);
            transform: translateX(-0.6666666667em);
  }
}
@media screen and (min-width: 960px) {
  .eat-section .eat-section__date {
    margin-bottom: 1.4em;
  }
}
.eat-section .b_sec-title__wrap--horizon {
  margin-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .eat-section .b_sec-title__wrap--horizon {
    border-bottom: none;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 960px) {
  .eat-section .b_sec-title__wrap--horizon .c_sec-title--lg {
    letter-spacing: 0.2em;
  }
}
.eat-section .eat-section__price {
  margin-bottom: 2.3333333333em;
}
@media screen and (min-width: 960px) {
  .eat-section .eat-section__price {
    border-bottom: 1px solid #000;
    padding-bottom: 1.1333333333em;
    margin-bottom: 2.6666666667em;
  }
}
.eat-section .eat-section__list {
  font-size: 0.75rem;
  letter-spacing: 0;
  margin-bottom: 2.5em;
}
@media screen and (min-width: 960px) {
  .eat-section .eat-section__list {
    font-size: 0.9375rem;
    margin-bottom: 3.4666666667em;
  }
}
.eat-section .eat-section__list > * + * {
  margin-top: 1.25em;
}
@media screen and (min-width: 960px) {
  .eat-section .eat-section__list > * + * {
    margin-top: 1.0666666667em;
  }
}
.eat-section .eat-section__list .list-item {
  line-height: 1.25;
}

/*		eat intro
--------------------------------------*/
.eat-intro {
  margin-bottom: 28px;
}
@media screen and (min-width: 744px) {
  .eat-intro {
    padding: 87px 0;
  }
}
@media screen and (min-width: 960px) {
  .eat-intro {
    padding: 0 0 110px;
  }
}
.eat-intro .c_text-main {
  font-size: 0.875rem;
  line-height: 2.14;
  margin-bottom: 2.2857142857em;
}
@media screen and (min-width: 744px) {
  .eat-intro .c_text-main {
    font-size: 0.9375rem;
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 2.1333333333em;
  }
}

/*		meron
--------------------------------------*/
.eat-meron {
  padding-bottom: 125px;
}

/*======================================
	Helper
======================================*/
/*		display
--------------------------------------*/
.hp_disp-ib {
  display: inline-block;
}

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

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

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