/* ========================================

common

======================================== */
.is-fade > *:not(.is-not) {
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade > .is-not {
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade.fadeIn > * {
  opacity: 1;
}

.is-fade > *:nth-child(0) {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}

.is-fade > *:nth-child(1) {
  -webkit-transition-delay: 220ms;
          transition-delay: 220ms;
}

.is-fade > *:nth-child(2) {
  -webkit-transition-delay: 340ms;
          transition-delay: 340ms;
}

.is-fade > *:nth-child(3) {
  -webkit-transition-delay: 460ms;
          transition-delay: 460ms;
}

.is-fade > *:nth-child(4) {
  -webkit-transition-delay: 580ms;
          transition-delay: 580ms;
}

.is-fade > *:nth-child(5) {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}

.is-fade > *:nth-child(6) {
  -webkit-transition-delay: 820ms;
          transition-delay: 820ms;
}

.is-fade > *:nth-child(7) {
  -webkit-transition-delay: 940ms;
          transition-delay: 940ms;
}

.is-fade > *:nth-child(8) {
  -webkit-transition-delay: 1060ms;
          transition-delay: 1060ms;
}

.is-fade > *:nth-child(9) {
  -webkit-transition-delay: 1180ms;
          transition-delay: 1180ms;
}

.is-fade > *:nth-child(10) {
  -webkit-transition-delay: 1300ms;
          transition-delay: 1300ms;
}

.is-fade > *:nth-child(11) {
  -webkit-transition-delay: 1420ms;
          transition-delay: 1420ms;
}

.is-fade > *:nth-child(12) {
  -webkit-transition-delay: 1540ms;
          transition-delay: 1540ms;
}

.is-fade > *:nth-child(13) {
  -webkit-transition-delay: 1660ms;
          transition-delay: 1660ms;
}

.is-fade > *:nth-child(14) {
  -webkit-transition-delay: 1780ms;
          transition-delay: 1780ms;
}

.is-fade > *:nth-child(15) {
  -webkit-transition-delay: 1900ms;
          transition-delay: 1900ms;
}

.box-fade {
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.box-fade.fadeIn {
  opacity: 1;
}

.p_hover a:hover {
  opacity: 0.7;
}

.svg.c_white svg {
  fill: #fff;
}
.svg.c_black svg {
  fill: #000;
}

.img-fit {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.img-fit::before {
  width: 100%;
  height: 0;
  content: "";
  display: block;
  padding-top: 100%;
  position: relative;
}
.img-fit img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.replace_img {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

.l_tel {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .l_tel {
    pointer-events: auto;
  }
}
/* ========================================

xxxxxx

======================================== */
header {
  width: auto;
}
header h1 {
  display: none;
}

h2 em {
  font-family: "Baskervville", serif;
  font-weight: 400;
}

.link a {
  font-family: "Baskervville", serif;
  font-weight: 400;
}

@-webkit-keyframes link_bar {
  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;
  }
  51% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  to {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
/* ========================================

kv

======================================== */
.kv {
  position: relative;
  margin-bottom: 60px;
}
.kv::before {
  width: 1px;
  height: 80px;
  content: "";
  display: block;
  position: absolute;
  right: 50%;
  bottom: -40px;
  background-color: #fff;
  z-index: 11;
  mix-blend-mode: difference;
  -webkit-animation: scroll_bar 2.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
          animation: scroll_bar 2.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.kv h1 {
  width: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}
.kv .img {
  height: 100vh;
  height: 100dvh;
  position: relative;
  z-index: 1;
}
.kv .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) {
  .kv .img {
    max-height: 640px;
  }
}

@-webkit-keyframes scroll_bar {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
/* ========================================

concept

======================================== */
.concept_top {
  position: relative;
  margin-bottom: 60px;
  padding-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.concept_top_tit {
  width: 52%;
}
.concept h2 {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  margin-bottom: 104px;
  margin-left: 20.5129%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.concept h2 em {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.concept h2 small {
  font-size: 12px;
}
.concept h3 {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.5em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.concept h3 span:first-of-type {
  margin-left: 25px;
}
.concept .img._01 {
  width: 48%;
  margin-left: auto;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.concept .txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.875;
  width: 77.3334%;
  margin: 0 auto 40px;
}
.concept .txt_en {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.015em;
  width: 77.3334%;
  margin: 0 auto 120px;
}
.concept .txt_en em {
  font-size: 13px;
  font-weight: 700;
}

/* ========================================

products

======================================== */
.products {
  color: #fff;
  padding: 120px 0;
  background-color: #232323;
}
.products_inner {
  width: 89.3334%;
  margin: 0 auto;
}
.products h2 {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  margin-bottom: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.products h2 em {
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-right: 0.5em;
}
.products h2 small {
  font-size: 13px;
  margin-bottom: 2px;
}
.products .desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.73;
  margin-bottom: 60px;
}
.products .item:not(:last-of-type) {
  margin-bottom: 60px;
}
.products .img {
  margin-bottom: 37px;
}
.products h3 {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.4em;
  margin-bottom: 15px;
}
.products .en {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 30px;
}
.products .txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.73;
  margin-bottom: 55px;
}
.products .txt_en {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.57;
  margin-bottom: 30px;
}
.products .link a {
  font-size: 14px;
  width: 100%;
  height: 40px;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 769px) {
  .products .link a:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
}

/* ========================================

life

======================================== */
.life {
  text-align: center;
  padding: 120px 0;
}
.life h2 {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.life .sub {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: 13px;
  margin-bottom: 40px;
}
.life .desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: min(4vw, 13px);
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}

/* ========================================

episode

======================================== */
.episode {
  padding-bottom: 102px;
}
.episode h2 {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  width: 89.3334%;
  margin: 0 auto 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.episode h2 em {
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-right: 0.5em;
}
.episode h2 small {
  font-size: 13px;
  margin-bottom: 2px;
}
.episode_list {
  overflow: scroll;
}
.episode_list_inner {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.episode_list_inner:has(> :nth-child(1):last-child) {
  width: 100%;
}
.episode_list_inner:has(> :nth-child(2):last-child) {
  width: calc((min(74.1334vw, 278px) + 10px) * 2 + 30px);
}
.episode_list_inner:has(> :nth-child(3):last-child) {
  width: calc((min(74.1334vw, 278px) + 10px) * 3 + 30px);
}
.episode_list_inner:has(> :nth-child(4):last-child) {
  width: calc((min(74.1334vw, 278px) + 10px) * 4 + 30px);
}
.episode_list_inner:has(> :nth-child(5):last-child) {
  width: calc((min(74.1334vw, 278px) + 10px) * 5 + 30px);
}
.episode_list_item {
  width: 82.9851%;
  max-width: 278px;
  padding-bottom: 20px;
}
.episode_list_item:not(:last-child) {
  margin-right: 10px;
}
@media screen and (min-width: 769px) {
  .episode_list_item a:hover {
    opacity: 0.6;
  }
}
.episode_list_item .img {
  margin-bottom: 8px;
  aspect-ratio: 278/370;
}
.episode_list_item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.episode_list_item .name {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 30px;
}
.episode_list_item h3 {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.44;
  margin-bottom: 10px;
}
.episode_list_item .txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.85;
}

/* ========================================

story

======================================== */
.story {
  padding-bottom: 123px;
}
.story .img {
  margin-bottom: 40px;
}
.story_inner {
  width: 89.3334%;
  margin: 0 auto;
}
.story h2 {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  margin-bottom: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.story h2 em {
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.story h2 small {
  font-size: 13px;
}
.story .desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.73;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.story .link a {
  font-size: 14px;
  width: 100%;
  height: 40px;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 769px) {
  .story .link a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
}

/* ========================================

information

======================================== */
.information {
  width: 89.3334%;
  margin: 0 auto;
  padding-bottom: 120px;
}
.information h2 {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  margin-bottom: 63px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.information h2 em {
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.information h2 small {
  font-size: 13px;
}
.information ul {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.information ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.information ul li a {
  position: relative;
  padding: 17px 0 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .information ul li a:hover {
    opacity: 0.5;
  }
}
.information ul li a .date {
  font-size: 13px;
  margin-right: 0.8em;
}
.information ul li a .cat {
  font-size: 12px;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1px dotted #000;
}
.information ul li a h3 {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.43;
  width: 100%;
  margin-top: 12px;
}