@charset "UTF-8";

*, *::before, *::after {
  box-sizing:border-box;
}

:root {
  --font-serif: "hiragino-mincho-pron", sans-serif;
  --font-en: "inknut-antiqua", sans-serif;
  --font-gothic: "futura-pt", sans-serif;
  --color: #333333;
  --white: #ffffff;
}

html {
  font-size: 16px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 3s;
}
html.is-mv-animation-done {
  overflow: visible;
}
html.wf-active {
  opacity: 1;
}

body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.75;
  color: var(--color);
  font-feature-settings: "palt";
}
@media (min-width: 920px) {
  body {
    font-size: 1.14285714286vw;
  }
}

.icon::before,
.icon::after {
  transition: translate 0.2s ease-out, background-color 0.3s;
}
.icon-blank {
  width: 16px;
  height: 16px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.icon-blank::before,
.icon-blank::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon_blank.svg);
  mask-image: url(../img/icon_blank.svg);
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--color);
  transition: background-color 0.5s cubic-bezier(0.18, 0.06, 0.23, 1),translate 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.icon-blank::after {
  position: absolute;
  top: 0;
  left: 0;
  translate: -200% 200%;
}
.icon-pageTop {
  width: 16px;
  height: 16px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.icon-pageTop::before,
.icon-pageTop::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon_pagetop.svg);
  mask-image: url(../img/icon_pagetop.svg);
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--white);
  transition: background-color 0.5s cubic-bezier(0.18, 0.06, 0.23, 1),translate 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.icon-pageTop::after {
  position: absolute;
  top: 0;
  left: 0;
  translate: -200% 200%;
}

.brSp {
  display: block;
}
@media (min-width: 920px) {
  .brSp {
    display: none;
  }
}

/*-------------------- setting --------------------*/
/*-------------------- header --------------------*/
.site-header {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background-color: var(--white);
  position: fixed;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.site-header_logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header_logo_img {
  width: 80px;
  display: flex;
}
.site-header_logo_img img {
  width: 100%;
  height: 100%;
}
.site-header_logo_txt {
  display: block;
  width: fit-content;
  padding: 1px 0 1px 8px;
  border-left: 1px solid var(--color);
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 10px;
  line-height: 1;
}
.site-header_nav {
  display: none;
}
.site-header_link {
  line-height: 1;
  letter-spacing: 0.04em;
}

.openbtn {
  width: 28px;
  height: 28px;
  flex: 0 1 28px;
  position: relative;
}
.openbtn span {
  display: inline-block;
  transition: all .5s;/*アニメーションの設定*/
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: var(--color);
}
.openbtn span:nth-of-type(1) {
  top: 11px;
}
.openbtn span:nth-of-type(2) {
  bottom: 9px;
}
.openbtn.is-active span {
  translate: 0 -50%;
}
.openbtn.is-active span:nth-of-type(1) {
  top: 50%;
  rotate: -30deg;
}
.openbtn.is-active span:nth-of-type(2) {
  bottom: auto;
  top: 50%;
  rotate: 30deg;
}

.site-header_menu {
  width: fit-content;
  height: auto;
  padding: 28px 24px 28px 20px;
  background: var(--white);
  border-radius: 12px;
  position: fixed;
  top: 75px;
  right: 15px;
  z-index: 11;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.site-header_menu_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-header_menu_list li {
  line-height: 1;
}
.site-header_menu_list li .site-header_link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-header_menu.is-active {
  opacity: 1;
  pointer-events: all;
}
html.is-mv-animation-done .site-header {
  opacity: 1;
}
.site-header.is-hidden {
  opacity: 0 !important;
}
@media (min-width: 920px) {
  .site-header {
    height: auto;
    justify-content: center;
    padding: min(1.35714285714vw, 19px) min(4.28571428571vw, 60px) min(1.07142857143vw, 15px) min(2.28571428571vw, 32px);
  }
  .site-header_logo {
    gap: min(1.71428571429vw, 24px);
  }
  .site-header_logo_img {
    width: min(8.78571428571vw, 123px);
  }
  .site-header_logo_txt {
    padding: min(0.57142857142vw, 8px) 0 min(0.57142857142vw, 8px) min(1.14285714286vw, 16px);
    font-size: min(0.85714285714vw, 12px);
  }
  .site-header_nav {
    display: none;
    align-items: center;
    gap: min(1.71428571429vw, 24px);
  }
  .site-header_link {
    font-size: min(1.14285714286vw, 16px);
  }
  .openbtn {
    display: none;
  }

  .site-header.is-scrolled {
    justify-content: space-between;
    padding: min(1.21428571429vw, 17px) min(4.28571428571vw, 60px) min(1.21428571429vw, 17px) min(2.28571428571vw, 32px);
  }
  .site-header.is-scrolled .site-header_nav {
    display: flex;
    justify-content: space-between;
    animation: fadeIn 0.5s forwards;
  }
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
}

/*-------------------- main --------------------*/

/*main {*/
/*  padding: 60px 0 0;*/
/*}*/
/*@media (min-width: 920px) {*/
/*  main {*/
/*    padding: min(5.71428571429vw, 80px) 0 0;*/
/*  }*/
/*}*/

.mv {
  width: 100%;
  height: calc(100dvh - 60px);
  height: 100dvh;
  position: relative;
}
.mv_video {
  width: 100%;
  height: 100%;
  contain: paint;
}
.mv_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv_message {
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  top: 30.7180851064%;
  left: 50%;
  translate: -50% 0;
}
.mv_message_ttl {
  display: flex;
  width: 38px;
  height: 136px;
}
.mv_message_ttl img {
  width: 100%;
  height: 100%;
}
.mv_message_txtArea {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}
.mv_message_txt {
  display: flex;
}
.mv_message_txt img {
  width: 100%;
  height: 100%;
}
.mv_message_txt-01 {
  width: 28.71px;
  height: 97.39px;
}
.mv_message_txt-02 {
  width: 26.89px;
  height: 189.32px;
  margin: 40.67px 20.04px 0 0;
}
.mv_message_txt-03 {
  width: 29.02px;
  height: 100.92px;
  margin: 75.87px 29.87px 0 0;
}
.mv_message_txt-04 {
  width: 31.95px;
  height: 128.51px;
  margin: 18.91px 22.64px 0 0;
}
.mv_message_txt-05 {
  width: 34.34px;
  height: 149.92px;
  margin: 42.77px 26.56px 0 0;
}

.mv_message_txt-01.is-hidden,
.mv_message_txt-02.is-hidden,
.mv_message_txt-04.is-hidden,
.mv_message_txt-05.is-hidden {
  opacity: 0 !important;
}

.mv_menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 19px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.mv_menu_play {}
.mv_menu_btn {
  display: flex;
  align-items: center;
  background-color: rgba(51, 51, 51, 0.8);
  padding: 8px;
  border-radius: 4px;
}
.mv_menu_btn_text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
  color: var(--white);
}
.mv_menu_btn .mv_menu_btn_text-stop {
  display: none;
}

.mv_menu_btn.is-playing .mv_menu_btn_text-play {
  display: none;
}
.mv_menu_btn.is-playing .mv_menu_btn_text-stop {
  display: flex;
}

.mv_menu_list {
  display: none;
}
.copyright {
  font-family: var(--font-gothic);
  font-weight: 450;
  font-size: 12px;
  line-height: 1;
  color: var(--white);
  display: block;
}

html.is-mv-animation-done .mv_menu {
  opacity: 1;
}
@media (min-width: 920px) {
  .mv {
    height: calc(100vh - min(5.71428571429vw, 80px));
    height: 100vh;
  }
  .mv_video {
    position: relative;
  }
  .mv_video video {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-position: center;
  }
  .mv_message {
    gap: 18.3571428571vw;
    top: 24.6540880503%;
  }
  .mv_message_ttl {
    width: 3.92857142857vw;
    height: 13.8571428571vw;
  }
  .mv_message_txt-01 {
    width: 2.87857142857vw;
    height: 9.76928571429vw;
  }
  .mv_message_txt-02 {
    width: 2.69642857142vw;
    height: 18.99142857142vw;
    margin: 4.07928571428vw 2.01vw 0 0;
  }
  .mv_message_txt-03 {
    width: 2.91vw;
    height: 10.12357142857vw;
    margin: 7.61071428571vw 2.995vw 0 0;
  }
  .mv_message_txt-04 {
    width: 3.20428571428vw;
    height: 12.89071428571vw;
    margin: 1.89642857142vw 2.27vw 0 0;
  }
  .mv_message_txt-05 {
    width: 3.44428571428vw;
    height: 15.03857142857vw;
    margin: 4.28928571428vw 2.66357142857vw 0 0;
  }

  .mv_menu {
    justify-content: flex-start;
    padding: 0 2.85714285714vw 1.78571428571vw;
  }
  .mv_menu_play {
    margin: 0 13.6428571429vw 0 0;
  }
  .mv_menu_btn {
    gap: 0.28571428571vw;
    padding: 0.57142857142vw;
  }
  .mv_menu_btn_text {
    font-size: min(1vw, 14px);
  }
  .mv_menu_btn_text img {
    width: min(3.21428571429vw, 45px);
  }
  .mv_menu_list {
    display: flex;
    align-items: center;
    gap: 4.95214285714vw;
  }
  .mv_menu_list li {
    line-height: 1;
  }
  .mv_menu_link {
    font-size: min(1.14285714286vw, 16px);
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--white);
  }
  .copyright {
    font-size: min(0.85714285714vw, 12px);
    margin: 0 0 0 auto;
  }
}
@media (min-width: 1440px) {
  .mv_menu {
    justify-content: space-between;
  }
  .mv_menu_play {
    margin: 0;
  }
  .copyright {
    margin: 0;
  }
}

.message_section {}
.message_section_heading {
  width: 100%;
  height: 71.7948717949vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.message_section_heading::after {
  content: "";
  position: absolute;
  background: url(../img/pattern.png) center center;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.21;
  mix-blend-mode: overlay;
}
.message_section_heading_bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.message_section_heading_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.message_section_ttl {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--white);
  text-align: center;
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
}

.message_section_message {
  background-color: #ddd8c9;
}
.message_section_gallery {
  width: 100%;
}
.message_section_gallery .swiper {
  height: 520px;
}
.message_section_gallery .swiper-slide {
  height: 100%;
}
.message_section_gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.message_section_inner {
  width: 100%;
  padding: 40px 24px 49px;
  position: relative;
}
.message_section_inner::after {
  content: "";
  position: absolute;
  background: url(../img/pattern.png) center center;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.message_section_txtArea {
  width: 100%;
  height: 100%;
  position: relative;
}
.message_section_txt {
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
  margin: 0 0 0 auto;
}
.message_section_txt p {
  font-size: 16px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.message_section_txt-small {
  flex-direction: row;
  margin: 60px 0 0;
}
.message_section_txt-small p {
  font-size: 12px;
  -ms-writing-mode: tb;
  writing-mode: horizontal-tb;
}
@media (min-width: 600px) {
  .message_section_heading {
    height: 400px;
  }
}
@media (min-width: 768px) {
  .message_section_message {
    width: 100%;
    display: flex;
  }
  .message_section_gallery {
    flex: 0 1 42.8571428571vw;
  }
  .message_section_gallery .swiper {
    height: min(62.5vw, 875px);
  }
  .message_section_inner {
    flex: 1 1 0;
    padding: min(5.71428571429vw, 80px) min(4.28571428571vw, 60px) min(4.07142857143vw, 57px) min(3.78571428571vw, 53px);
    margin: 0 auto 0 0;
  }
  .message_section_txtArea {
    display: flex;
    flex-direction: column;
    justify-content: space-between
  }
  .message_section_txt {
    gap: min(2.57142857143vw, 36px);
  }
  .message_section_txt-small {
    margin: 0;
  }
}
@media (min-width: 920px) {
  .message_section_heading {
    height: 28.5714285714vw;
  }
  .message_section_ttl {
    font-size: min(2vw, 28px);
  }
  .message_section_txt p {
    font-size: min(1.42857142857vw, 20px);
  }
  .message_section_txt-small p {
    font-size: min(1.14285714286vw, 16px);
  }
}

.copy_section {
  padding: 40px 0;
  background-color: #ECE9DC;
  position: relative;
}
.copy_section::after {
  content: "";
  position: absolute;
  background: url(../img/pattern.png) center center;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.copy_section_container {
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.copy_section_item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  border: 1px solid transparent;
  position: relative;
}
.copy_section_item .circle-line {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* 時計の12時の位置からスタートさせる */
  pointer-events: none;      /* クリックなどの邪魔をしない */
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50%-50%;
}
.copy_section_item .circle-line circle {
  fill: none;
  stroke: #D4D1C5;          /* 元のデザインの線の色 */
  stroke-width: 0.3px;      /* 繊細な1px（viewBox100に対しての太さ） */
  stroke-dasharray: 312;    /* 円周の長さ（2 * π * r） */
  stroke-dashoffset: 312;   /* 線をどれだけ後ろに引っ込めるか（最初は312で全隠し） */
  transition: stroke-dashoffset 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.copy_section_item-jp {
  margin: -91px 0 0;
}
.copy_section_item p {
  opacity: 0;
  transform: translateY(12px); /* 少し下から浮き上がらせる */
  transition: opacity 0.8s cubic-bezier(0.18, 0.06, 0.23, 1), transform 0.8s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.copy_section_item-en p {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
.copy_section_item-jp p {
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}

.copy_section.is-active .copy_section_item-en .circle-line circle {
  stroke-dashoffset: 0;
}
/* 【英語の文字】 */
.copy_section.is-active .copy_section_item-en p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s; /* 線が引き終わる手前でふわっと出す */
}

/* 【日本語の円】英語から0.3秒遅れて線が伸び始める */
.copy_section.is-active .copy_section_item-jp .circle-line circle {
  stroke-dashoffset: 0;
  transition-delay: 0.3s;
}
/* 【日本語の文字】 */
.copy_section.is-active .copy_section_item-jp p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s; /* 日本語の線が引き終わる手前でふわっと出す */
}
@media (min-width: 768px) {
  .copy_section_container {
    width: 100%;
    display: flex;
  }
  .copy_section_item-en {
    margin: 0 -4.42857142857vw 0 0;
  }
  .copy_section_item-jp {
    margin: 0 0 0 -4.42857142857vw;
  }
}
@media (min-width: 920px) {
  .copy_section {
    padding: min(6.78571428571vw, 95px) 0 min(6.28571428571vw, 88px);
  }
  .copy_section_container {
    padding: 0 min(5vw, 70px);
  }
  .copy_section_item-en p {
    font-size: min(2.85714285714vw, 40px);
  }
  .copy_section_item-jp p {
    font-size: min(1.14285714286vw, 16px);
  }
}
@media (min-width: 1401px) {
  .copy_section_item-en {
    margin: 0 -62px 0 0;
  }
  .copy_section_item-jp {
    margin: 0 0 0 -62px;
  }
}

.tanka_section {}
.tanka_section_heading {
  width: 100%;
  height: 71.7948717949vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tanka_section_heading::after {
  content: "";
  position: absolute;
  background: url(../img/pattern.png) center center;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.21;
  mix-blend-mode: overlay;
}
.tanka_section_heading_bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.tanka_section_heading_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tanka_section_ttl {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--white);
  text-align: center;
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
}

.tanka_section_content {
  width: 100%;
  height: auto; /* 画面いっぱいの高さ */
  position: relative;
}
.tanka_section_content_bg {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1; /* 一番奥 */
}
.tanka_section_content_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tanka_section_content_area {
  width: 100%;
  padding: 0 24px 220px;
  max-width: 1400px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 3; /* 一番手前に持ってくる */
}
.tanka_section_content_panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 32px;
  background-color: var(--white);
  border-radius: 12px;
}
.tanka_section_content_tanka {
  width: calc(100% - 10px);
  max-width: 268px;
  padding: 30.15px 20.77px 29.48px 21.44px;
  margin: 0 auto;
}
.tanka_section_content_tanka_img,
.tanka_section_content_tanka_img img {
  width: 100%;
  height: 100%;
}
.tanka_section_content_txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tanka_section_content_txt p {
  text-align: justify;
}
@media (min-width: 600px) {
  .tanka_section_heading {
    height: 400px;
  }
}
@media (min-width: 920px) {
  .tanka_section_heading {
    height: 28.5714285714vw;
  }
  .tanka_section_ttl {
    font-size: min(2vw, 28px);
  }

  .tanka_section_content_area {
    padding: 0 min(7.28571428571vw, 102px) min(92.5714285714vw, 108px) min(7.35714285714vw, 103px);
  }
  .tanka_section_content_panel {
    flex-direction: row;
    justify-content: space-between;
    padding: min(5.71428571429vw, 80px) min(8.07142857143vw, 113px);
  }
  .tanka_section_content_tanka {
    width: 100%;
    max-width: 100%;
    flex: 0 1 min(28.5714285714vw, 400px);
    padding: min(3.21428571429vw, 45px) min(2.21428571429vw, 31px) min(3.14285714286vw, 44px) min(2.28571428571vw, 32px);
    margin: 0;
  }
  .tanka_section_content_txt {
    flex: 0 1 min(28.5714285714vw, 400px);
    gap: min(0.85714285714vw, 12px);
  }
  .tanka_section_content_txt p {
    font-size: min(1.14285714286vw, 16px);
    line-height: 2;
    letter-spacing: 0.04em;
  }
}

.thought_section {}
.thought_section_container {
  width: 100%;
  background-color: var(--color);
  padding: 0 24px;
  position: relative;
}
.thought_section_container::after {
  content: "";
  position: absolute;
  background: url(../img/pattern.png) center center;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.thought_section_accent {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
}
.thought_section_accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.thought_section_inner {
  padding: 122px 0 200px;
}
.thought_section_ttl {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  display: block;
  width: 100%;
  color: var(--white);
  margin: 0 auto 100px;
}
.thought_section_panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 32px;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.thought_section_fade {
  width: calc(100% - 10px);
  height: 68.7179487179vw;
  border: 1px solid #cccccc;
  border-radius: 8px;
  margin: 0 auto;
}
.thought_section_fade .swiper,
.thought_section_fade .swiper-slide,
.thought_section_card {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.thought_section_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.thought_section_txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.thought_section_txt p {
  text-align: justify;
  color: var(--white);
}
@media (min-width: 768px) {
  .thought_section_panel {
    flex-direction: row;
    justify-content: space-between;
  }
  .thought_section_fade {
    width: 100%;
    height: 320px;
    flex: 0 1 320px;
    margin: 0;
  }
  .thought_section_txt {
    flex: 0 1 min(43.9285714286vw, 615px);
    gap: min(0.85714285714vw, 12px);
  }
}
@media (min-width: 920px) {
  .thought_section_container {
    padding: 0 min(7.28571428571vw, 102px) 0 min(7.35714285714vw, 103px);
  }
  .thought_section_inner {
    max-width: 1195px;
    padding: min(15.2857142857vw, 214px) 0 min(12.8571428571vw, 180px);
    margin: 0 auto;
  }
  .thought_section_ttl {
    font-size: min(2vw, 28px);
    line-height: 1.16;
    margin: 0 auto min(9.57142857143vw, 134px);
  }
  .thought_section_panel {
    flex-direction: row;
    justify-content: space-between;
    padding: min(4.28571428571vw, 60px);
  }
  .thought_section_fade {
    height: min(28.5714285714vw, 400px);
    flex: 0 1 min(28.5714285714vw, 400px);
  }
  .thought_section_txt p {
    font-size: min(1.14285714286vw, 16px);
    line-height: 2;
    letter-spacing: 0.04em;
  }
}

.express_section {
  padding: 122px 0 119px;
  background-color: #F2F2F2;
  position: relative;
}
.express_section::after {
  content: "";
  position: absolute;
  background: url(../img/pattern.png) center center;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.33;
  mix-blend-mode: darken;
  pointer-events: none;
}
.express_section_container {
  width: 100%;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.express_section_ttl {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  display: block;
  margin: 0 auto 100px;
}
.express_section_item:not(:last-child) {
  margin: 0 0 80px;
}
.express_section_catch {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  display: block;
  margin: 0 0 24px;
}
.express_section_row,
.express_section_column {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.express_section_grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.express_section_bnr {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.express_section_bnr_thumb {
  width: 100%;
  position: relative;
}
.express_section_bnr_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.express_section_bnr_thumb .icon_video {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.express_section_bnr_thumb .icon_poster {
  width: 28px;
  height: 28px;
  position: absolute;
  bottom: 12px;
  right: 12px;
  pointer-events: none;
}
.express_section_bnr_copy {
  line-height: 1.5;
  text-align: center;
  display: block;
}

.express_section_audio {
  position: relative;
  width: 100%;
  height: 60px;
  background-color: #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}
.express_section_audio_progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #E50012;
  transition: width 0.25s linear;
  will-change: width;
  z-index: 1;
}
.express_section_audio_content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px 0 14px;
}
.express_section_audio_btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: none;
  background-color: #E50012; /* 通常時は赤ボタン */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.1s ease;
  padding: 0;
}
.express_section_audio_btn:active {
  transform: scale(0.96);
}
.express_section_audio_btn .icon {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 4px;
  transition: all 0.2s ease;
}
.express_section_audio_copy {
  margin: 0 0 0 8px;
  flex-grow: 1;
  transition: color 0.2s ease;
  mix-blend-mode: difference;
}
.express_section_audio_time {
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.express_section_audio_time .divider {
  color: var(--color);
}

/* ----------------------------------
   再生中の状態（JSでクラスを付与）
---------------------------------- */
.express_section_audio.is-playing .express_section_audio_btn {
  background-color: #ffffff;
}
.express_section_audio.is-playing .icon {
  width: 12px;
  height: 16px;
  border-style: double;
  border-width: 0px 0px 0px 12px;
  border-color: #E50012;
  margin-left: 0;
}
.express_section_audio.is-text-white .express_section_audio_copy,
.express_section_audio.is-text-white .express_section_audio_time {
  color: #ffffff !important;
}
.express_section_audio.is-text-white .express_section_audio_time .divider {
  color: rgba(255, 255, 255, 0.6) !important;
}

.express_section_audio.is-completed .express_section_audio_btn {
  background-color: var(--white);
}
.express_section_audio.is-completed .express_section_audio_btn .icon {
  border-color: transparent transparent transparent #E50012;
}
.express_section_item-poster {
  margin: 0 0 80px;
}
.plyr__captions,
.plyr__caption {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.plyr iframe {
  pointer-events: auto;
}

.pg_panel {
  width: 100%;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
}
.pg_panel_head {
  padding: 0 0 12px;
  border-bottom: 1px solid var(--color);
  margin: 0 0 28px;
}
.pg_panel_head h3 {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2;
}
.pg_panel_row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pg_panel_job {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: justify;
  display: block;
  margin: 0 0 16px;
}
.pg_panel_name {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: justify;
  display: block;
  margin: 0 0 12px;
}
.pg_panel_kana {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 10px;
  line-height: 1;
}
.pg_panel_txt p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}
@media (min-width: 920px) {
  .express_section {
    padding: min(15.2857142857vw, 214px) 0 min(14.2857142857vw, 200px);
  }
  .express_section_container {
    padding: 0 min(7.28571428571vw, 102px);
    max-width: 1400px;
    margin: 0 auto;
  }
  .express_section_ttl {
    font-size: min(2vw, 28px);
    line-height: 1.16;
    margin: 0 auto min(9.57142857143vw, 134px);
  }
  .express_section_catch {
    font-size: min(1.71428571429vw, 24px);
    line-height: 1.15;
    margin: 0 0 min(2.85714285714vw, 40px);
  }
  .express_section_row {
    flex-direction: row;
    gap: min(2.78571428571vw, 39px);
  }
  .express_section_column {
    gap: min(1.42857142857vw, 20px);
  }
  .express_section_grid {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: min(2.78571428571vw, 39px);
  }
  .express_section_bnr {
    width: calc((100% - min(2.78571428571vw, 39px)) / 2);
    gap: min(1.71428571429vw, 24px);
  }
  .express_section_bnr_thumb .icon_video {
    width: min(4.57142857143vw, 64px);
    height: min(4.57142857143vw, 64px);
  }
  .express_section_bnr_thumb .icon_poster {
    width: min(2.85714285714vw, 40px);
    height: min(2.85714285714vw, 40px);
    bottom: min(0.85714285714vw, 12px);
    right: min(0.85714285714vw, 12px);
  }
  .express_section_bnr_copy {
    font-size: min(1.14285714286vw, 16px);
  }

  .express_section_audio {
    height: min(5.71428571429vw, 80px);
  }
  .express_section_audio_content {
    padding: 0 min(2.85714285714vw, 40px) 0 min(1.71428571429vw, 24px);
  }
  .express_section_audio_btn {
    width: min(3.42857142857vw, 48px);
    height: min(3.42857142857vw, 48px);
  }
  .express_section_audio_btn .icon {
    border-width: min(0.57142857142vw, 8px) 0 min(0.57142857142vw, 8px) min(1vw, 14px);
    margin-left: min(0.28571428571vw, 4px);
  }
  .express_section_audio_copy {
    font-size: min(1.14285714286vw, 16px);
    margin: 0 0 0 min(1.71428571429vw, 24px);
  }
  .express_section_audio_time {
    font-size: min(1.14285714286vw, 16px);
    gap: min(0.85714285714vw, 12px);
  }

  .express_section_audio.is-playing .icon {
    width: min(0.85714285714vw, 12px);
    height: min(1.14285714286vw, 16px);
    border-width: 0px 0px 0px min(0.85714285714vw, 12px);
  }

  .express_section_item-poster {
    margin: 0 0 min(8.57142857143vw, 120px);
  }

  .pg_panel {
    padding: min(2.85714285714vw, 40px);
  }
  .pg_panel_head {
    padding: 0 0 min(0.85714285714vw, 12px);
    margin: 0 0 min(2.85714285714vw, 40px);
  }
  .pg_panel_head h3 {
    font-size: min(1.71428571429vw, 24px);
  }
  .pg_panel_row {
    flex-direction: row;
    justify-content: space-between;
  }
  .pg_panel_status {
    flex: 0 1 min(16.9285714286vw, 237px);
  }
  .pg_panel_job {
    font-size: min(1.14285714286vw, 16px);
    margin: 0 0 min(1.42857142857vw, 20px);
  }
  .pg_panel_name {
    font-size: min(1.71428571429vw, 24px);
    margin: 0 0 min(1.14285714286vw, 16px);
  }
  .pg_panel_kana {
    font-size: min(0.85714285714vw, 12px);
  }
  .pg_panel_txt {
    flex: 0 1 min(57.0714285714vw, 799px);
  }
  .pg_panel_txt p {
    font-size: min(1.14285714286vw, 16px);
    line-height: 1.75;
  }
}

/*-------------------- footer --------------------*/
.site-footer_link {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-footer_visual {
  width: 100%;
  height: 732px;
  height: calc(100dvh - 80.17px);
  position: relative;
}
.site-footer_visual_img {
  width: 100%;
  height: 100%;
}
.site-footer_visual_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-footer_visual_message {
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  top: 100px;
  left: 50%;
  translate: -50% 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.site-footer_visual_message.is-fadein {
  opacity: 1;
}
.site-footer_visual_txtArea {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}
.site-footer_visual_txt {
  display: flex;
}
.site-footer_visual_txt img {
  width: 100%;
  height: 100%;
  -webkit-filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.5));
}
.site-footer_visual_txt-01 {
  width: 28.71px;
  height: 97.39px;
}
.site-footer_visual_txt-02 {
  width: 26.89px;
  height: 189.32px;
  margin: 40.67px 20.04px 0 0;
}
.site-footer_visual_txt-03 {
  width: 29.02px;
  height: 100.92px;
  margin: 75.87px 29.87px 0 0;
}
.site-footer_visual_txt-04 {
  width: 31.95px;
  height: 128.51px;
  margin: 18.91px 22.64px 0 0;
}
.site-footer_visual_txt-05 {
  width: 34.34px;
  height: 149.92px;
  margin: 42.77px 26.56px 0 0;
}

.site-footer_visual_nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: absolute;
  bottom: 24px;
  left: 50%;
  translate: -50% 0;
}
.site-footer_visual_nav .site-footer_link {
  color: var(--white);
}
.site-footer_visual_nav .site-footer_link .icon-blank::before,
.site-footer_visual_nav .site-footer_link .icon-blank::after,
.site-footer_visual_nav .site-footer_link .icon-pageTop:before,
.site-footer_visual_nav .site-footer_link .icon-pageTop::after {
  background-color: var(--white);
}

.site-footer_area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  padding: 20px;
}
.site-footer_logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer_logo_img {
  width: 108px;
  display: flex;
}
.site-footer_logo_img img {
  width: 100%;
  height: 100%;
}
.site-footer_logo_txt {
  display: block;
  width: fit-content;
  padding: 0 0 0 12px;
  border-left: 1px solid var(--color);
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.35;
}

.site-footer_area .site-footer_link {
  display: none;
}
@media (min-width: 768px) {
  .site-footer_visual_nav {
    justify-content: space-between;
    padding: 0 38px;
  }
}
@media (min-width: 920px) {
  .site-footer {
    position: relative;
  }

  .site-footer_visual {
    height: 62.5vw;
    height: 100vh;
  }
  .site-footer_visual_message {
    top: 6.42857142857vw;
  }
  .site-footer_visual_txt-01 {
    width: 2.87857142857vw;
    height: 9.76928571429vw;
  }
  .site-footer_visual_txt-02 {
    width: 2.69642857142vw;
    height: 18.99142857142vw;
    margin: 4.07928571428vw 2.01vw 0 0;
  }
  .site-footer_visual_txt-03 {
    width: 2.91vw;
    height: 10.12357142857vw;
    margin: 7.61071428571vw 2.995vw 0 0;
  }
  .site-footer_visual_txt-04 {
    width: 3.20428571428vw;
    height: 12.89071428571vw;
    margin: 1.89642857142vw 2.27vw 0 0;
  }
  .site-footer_visual_txt-05 {
    width: 3.44428571428vw;
    height: 15.03857142857vw;
    margin: 4.28928571428vw 2.66357142857vw 0 0;
  }
  .site-footer_visual_nav {
    display: none;
  }

  .site-footer_area {
    justify-content: space-between;
    padding: min(1.92857142857vw, 27px) min(2.85714285714vw, 40px);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .site-footer_area_head {
    display: flex;
    align-items: center;
    gap: min(1.71428571429vw, 24px);
  }
  .site-footer_logo {
    gap: min(1.71428571429vw, 24px);
  }
  .site-footer_logo_img {
    width: min(9.57142857143vw, 134px);
  }
  .site-footer_logo_txt {
    font-size: min(0.85714285714vw, 12px);
    padding: min(0.57142857142vw, 8px) min(1.14285714286vw, 16px);
    border-right: 1px solid var(--color);
  }
  .site-footer_area .site-footer_link {
    display: flex;
    font-size: min(1.14285714286vw, 16px);
    line-height: 2;
    gap: min(0.57142857142vw, 8px);
  }
  .site-footer_link .icon-blank,
  .site-footer_link .icon-pageTop {
    width: min(1.71428571429vw, 24px);
    height: min(1.71428571429vw, 24px);
  }
  .site-footer_link .icon-blank:before,
  .site-footer_link .icon-blank::after,
  .site-footer_link .icon-pageTop:before,
  .site-footer_link .icon-pageTop::after {
    width: min(1.71428571429vw, 24px);
    height: min(1.71428571429vw, 24px);
    background-color: var(--color);
  }
}

.fade-text {
  display: block;
  opacity: 0; /* 最初は非表示 */
    /*transform: translate(12px, 0); !* 20px 右にずらしておく *!*/
  transition:
          opacity var(--duration, 2s) var(--ease, ease-out),
          transform var(--duration, 1s) var(--ease, ease-out);
  will-change: opacity, transform; /* スマホでも滑らかに動かすおまじない */
}
.fade-text.to__left {
  opacity: 1;
  /*transform: translate(0, 0);*/
  transition-delay: var(--delay, 0s);
}
.fade-text.is-hidden {
  opacity: 0 !important;
  /*transform: translate(12px, 0) !important;*/
  transition-duration: 0.3s !important;
  transition-delay: 0s !important;
}

.animation {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  line-height: 1.2;
}
.text-split {
  overflow: hidden;
}
.text-split span {
  display: inline-block;
  min-width: .15em;
}
.animation--1 .text-split span {
  transform: translateY(100%);
}
.animation--1 .is-active .text-split span {
  transform: translateY(0);
  transition: transform cubic-bezier(0.7, 0.2, 0.1, 1) 0.8s;
}
.animation--1 .is-active .text-split span:nth-child(1) { transition-delay: 0s; }
.animation--1 .is-active .text-split span:nth-child(2) { transition-delay: 0.04s; }
.animation--1 .is-active .text-split span:nth-child(3) { transition-delay: 0.08s; }
.animation--1 .is-active .text-split span:nth-child(4) { transition-delay: 0.12s; }
.animation--1 .is-active .text-split span:nth-child(5) { transition-delay: 0.16s; }
.animation--1 .is-active .text-split span:nth-child(6) { transition-delay: 0.2s; }
.animation--1 .is-active .text-split span:nth-child(7) { transition-delay: 0.24s; }
.animation--1 .is-active .text-split span:nth-child(8) { transition-delay: 0.28s; }
.animation--1 .is-active .text-split span:nth-child(9) { transition-delay: 0.32s; }
.animation--1 .is-active .text-split span:nth-child(10) { transition-delay: 0.36s; }
.animation--1 .is-active .text-split span:nth-child(11) { transition-delay: 0.4s; }
.animation--1 .is-active .text-split span:nth-child(12) { transition-delay: 0.44s; }
.animation--1 .is-active .text-split span:nth-child(13) { transition-delay: 0.48s; }

.plyr__control--overlaid {
  background: #E50012; !important; /* お好みのカラーコード（例: ピンク） */

  &:hover {
    background: #E50012; !important;
  }
}
.plyr--video .plyr__control:hover {
  background: #E50012; !important;
}