@charset "UTF-8";
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  margin: 0;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
  margin: 0;
  padding: 0;
  border: 0;
}

div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2 {
  line-height: 1.2;
}

h3,
h4 {
  line-height: 1.5;
}

h5,
h6 {
  line-height: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

b,
strong {
  font-weight: bolder;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

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

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

[role=button] {
  cursor: pointer;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

[hidden] {
  display: none !important;
}

*:focus {
  outline: none;
}

.clearfix::after {
  content: "";
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  clear: both;
}

* html .clearfix {
  zoom: 1;
}

*:first-child + html .clearfix {
  zoom: 1;
}

.pc-hidden {
  display: none;
}
@media screen and (max-width: 960px) {
  .pc-hidden {
    display: block;
  }
}

.sp-hidden {
  display: block;
}
@media screen and (max-width: 960px) {
  .sp-hidden {
    display: none;
  }
}

.is-scroll-lock {
  overflow: hidden;
  height: 100svh;
}

img.w100 {
  max-width: 100%;
  height: auto;
}

a {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

a:hover {
  opacity: 50%;
} /* ===============================
   loading中：他要素を非表示
=============================== */
body.is-loading header,
body.is-loading footer,
body.is-loading aside {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* loading だけは表示 */
body.is-loading #loading {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.w1920 {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.sec-inner {
  margin: 0 8%;
}
@media screen and (max-width: 960px) {
  .sec-inner {
    width: 90%;
    margin: 0 auto;
  }
}

@-webkit-keyframes reveal {
  0% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  100% {
    -webkit-mask-size: 300% 300%;
    mask-size: 300% 300%;
  }
}

@keyframes reveal {
  0% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  100% {
    -webkit-mask-size: 300% 300%;
    mask-size: 300% 300%;
  }
}
@media screen and (max-width: 960px) {
  @-webkit-keyframes reveal {
    0% {
      -webkit-mask-size: 80% 80%;
      mask-size: 80% 80%;
    }
    100% {
      -webkit-mask-size: 300% 300%;
      mask-size: 300% 300%;
    }
  }
  @keyframes reveal {
    0% {
      -webkit-mask-size: 80% 80%;
      mask-size: 80% 80%;
    }
    100% {
      -webkit-mask-size: 300% 300%;
      mask-size: 300% 300%;
    }
  }
}
.loading {
  height: 100svh;
  position: fixed;
  inset: 0;
  z-index: 999;
  overflow: hidden;
  /* フェード用（既にあるならそのまま） */
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.loading.is-visible {
  opacity: 1;
}
.loading.is-end {
  opacity: 0;
}
.loading .loading-logo {
  position: absolute;
  max-width: 140px;
  top: 55px;
  left: 78px;
}
@media screen and (max-width: 960px) {
  .loading .loading-logo {
    max-width: 72px;
    top: 40px;
    left: 24px;
  }
}
.loading {
  /* センター基準（絶対に動かさない） */
}
.loading .loading-main {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.loading {
  /* センター幅の枠（完成形幅） */
}
.loading .loading-frame {
  width: 500px;
  text-align: center;
  pointer-events: none;
}
.loading {
  /* 実際に動かす要素 */
}
.loading .loading-move {
  display: inline-block;
  white-space: nowrap;
  -webkit-transform: translateX(166px);
          transform: translateX(166px);
  -webkit-transition: 1.2s ease;
  transition: 1.2s ease;
}
.loading .loading-move .text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 62px;
  font-size: clamp(30px, 30px + (62 - 30) * (100vw - 960px) / (1920 - 960), 62px);
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.45);
  display: inline-block;
  vertical-align: bottom;
}
.loading .loading-move .text-plus {
  margin: 0 43px;
}
@media screen and (max-width: 960px) {
  .loading .loading-move .text-plus img {
    width: 40px;
    height: auto;
  }
}
.loading .loading-move .text-plus,
.loading .loading-move .text-right {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1.2s ease;
  transition: 1.2s ease;
}
.loading .bg-accent {
  opacity: 0;
  position: absolute;
  inset: 0;
  background: url(../../assets/img/loading-bg.png) no-repeat center/cover;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.loading {
  /* ===== 1回目に左へ ===== */
}
.loading.step-2 .loading-move {
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
  -webkit-transition: 1.2s ease;
  transition: 1.2s ease;
}
.loading.step-2 .text-plus {
  opacity: 1;
  visibility: visible;
}
.loading {
  /* ===== 2回目にさらに左へ ===== */
}
.loading.step-3 .loading-move {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 1.2s ease;
  transition: 1.2s ease;
}
.loading.step-3 .text-right {
  opacity: 1;
  visibility: visible;
}
.loading.step-3 .bg-accent {
  opacity: 1;
}

/* ===============================
  右固定 MENU ボタン
=============================== */
.site-header {
  position: fixed;
  max-width: 168px;
  width: 90%;
  height: 100%;
  right: 0;
  top: 0;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .site-header {
    gap: 10px;
    max-width: 109px;
    height: 100svh;
  }
}
.site-header.is-show {
  opacity: 1;
}

.menu-btn,
.menu-close,
.contactbtn {
  pointer-events: all;
  max-width: 120px;
  width: 80%;
  aspect-ratio: 1/1;
  margin: 0 auto;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  -webkit-box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 960px) {
  .menu-btn,
  .menu-close,
  .contactbtn {
    max-width: 86px;
    width: 100%;
  }
}

.menu-btn {
  background: url(../../assets/img/menu-close.png) no-repeat center/cover;
}
.menu-btn:hover {
  background: url(../../assets/img/contactbtn.png) no-repeat center/cover;
}
.menu-btn:hover .menu-label {
  background: linear-gradient(145.75deg, #17c1b4 15.52%, #1fbd93 52.96%, #8ff69a 87.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.menu-btn:hover .menu-icon span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15.52%, #17c1b4), color-stop(52.96%, #1fbd93), color-stop(87.63%, #8ff69a));
  background: linear-gradient(to bottom, #17c1b4 15.52%, #1fbd93 52.96%, #8ff69a 87.63%);
}

.menu-label {
  font-weight: 900;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 960px) / (1920 - 960), 20px);
  line-height: 110%;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffffff;
}

/* 三本線 */
.menu-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 39px;
  height: 22px;
  gap: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.menu-icon span {
  display: block;
  width: 100%;
  height: 4px;
  background: #fff;
}

/* × */
.close-icon {
  position: relative;
  width: 28px;
  height: 28px;
}

.close-icon::before,
.close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.close-icon::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.close-icon::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.contactbtn {
  background: url(../../assets/img/contactbtn.png) no-repeat center/cover;
}
.contactbtn .label {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: linear-gradient(145.75deg, #17c1b4 15.52%, #1fbd93 52.96%, #8ff69a 87.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 900;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 960px) / (1920 - 960), 20px);
  line-height: 110%;
}
.contactbtn:hover {
  background: url(../../assets/img/menu-close.png) no-repeat center/cover;
}
.contactbtn:hover .label {
  background: none;
  color: #fff;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  text-fill-color: initial;
}

/* ===============================
  メニューパネル
=============================== */
.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  overflow-y: scroll;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  z-index: 1005;
  background: url(../../assets/img/menu-bg.png) no-repeat left/auto 100%, #fff;
}
@media screen and (max-width: 960px) {
  .menu-panel {
    width: 100%;
    height: 100svh;
    background: url(../../assets/img/menu-bg.png) no-repeat left center/301px auto, #fff;
  }
  .menu-panel .menu-image {
    max-width: 220px;
  }
}

.menu-panel.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* CLOSE ボタン */
.menu-close {
  background: linear-gradient(145.75deg, #17c1b4 15.52%, #1fbd93 52.96%, #8ff69a 87.63%);
  border: 2.225px solid #ffffff;
  position: absolute;
  top: 30px;
  right: 50px;
}
@media screen and (max-width: 960px) {
  .menu-close {
    right: 10px;
  }
}

/* ===============================
  中身
=============================== */
.menu-inner {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: auto;
  padding-top: 240px;
  padding-right: 50px;
  padding-bottom: 40px;
  gap: 60px;
}
@media screen and (max-width: 960px) {
  .menu-inner {
    padding-top: 168px;
    padding-right: 10px;
    gap: 50px;
  }
}

.menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.menu-nav li {
  text-align: right;
}

.menu-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.fv {
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: relative;
}
.fv .fv-bg {
  position: absolute;
  inset: 0;
  background: url("../../assets/img/fv.jpg") no-repeat center/cover;
  opacity: 0;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-transition: opacity 0.4s ease, -webkit-filter 1s ease;
  transition: opacity 0.4s ease, -webkit-filter 1s ease;
  transition: opacity 0.4s ease, filter 1s ease;
  transition: opacity 0.4s ease, filter 1s ease, -webkit-filter 1s ease;
}
.fv.is-show-bg .fv-bg {
  opacity: 1;
  -webkit-animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.fv {
  /* ===============================
     word-wrap（全体の表示制御）
  =============================== */
}
.fv .word-wrap {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content 1fr;
  grid-template-columns: 1fr max-content 1fr;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1000px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
@media screen and (max-width: 960px) {
  .fv .word-wrap {
    grid-template-columns: 1fr;
  }
}
.fv.is-show-word .word-wrap {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.fv.is-show-word {
  /* ★ word-wrapと同時にテキストも可視化 */
}
.fv.is-show-word .word {
  opacity: 1;
}
.fv {
  /* ===============================
     左右の配置（列ラッパー）
  =============================== */
}
.fv .word-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.fv .word-col-left {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .fv .word-col-left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.fv .word-col-right {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .fv .word-col-right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.fv {
  /* ===============================
     実際に文字が動く要素
  =============================== */
}
.fv .word {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 62px;
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  position: relative;
  min-width: 4em;
  opacity: 0; /* ★ 初期は非表示 */
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.fv {
  /* ===============================
     ＋
  =============================== */
}
.fv .word-plus {
  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;
}
.fv .word-plus img {
  display: block;
}
.fv {
  /* ===============================
     1文字アニメーション（上 → 下）
     ※ JS制御そのまま
  =============================== */
}
.fv .letter {
  display: inline-block;
  opacity: 1; /* ★ 最初から見せる */
  -webkit-transform: translateY(0);
          transform: translateY(0); /* ★ 位置固定 */
}
.fv {
  /* アニメ開始後だけ使う */
}
.fv .letter.behind {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.fv .letter.in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}
.fv .letter.out {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}

.h_logo {
  position: absolute;
  top: 20px;
  left: 40px;
  max-width: 140px;
  z-index: 999;
}
@media screen and (max-width: 960px) {
  .h_logo {
    max-width: 72px;
    top: 40px;
    left: 24px;
  }
}
.h_logo.is-fixed {
  position: fixed;
  top: 20px;
  left: 40px;
}
@media screen and (max-width: 960px) {
  .h_logo.is-fixed {
    top: 40px;
    left: 24px;
  }
}
.h_logo a {
  display: block;
}

.sec01 {
  overflow: hidden;
  position: relative;
}
.sec01 .w1920 {
  position: relative;
}
.sec01 .w1920 .sec-inner {
  padding-top: 100px;
}
@media screen and (max-width: 960px) {
  .sec01 .w1920 .sec-inner {
    padding-top: 200px;
  }
}
.sec01 .catchcopy {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: clamp(60px, 60px + (132 - 60) * (100vw - 960px) / (1920 - 960), 132px);
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #000000;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 124px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-bottom: 200px;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .sec01 .catchcopy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 27px;
    text-align: right;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.sec01 .catchcopy::before {
  content: "";
  background: url(../../assets/img/plus.png) no-repeat center/contain;
  width: clamp(131px, 131px + (227 - 131) * (100vw - 960px) / (1920 - 960), 227px);
  height: clamp(131px, 131px + (227 - 131) * (100vw - 960px) / (1920 - 960), 227px);
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .sec01 .catchcopy::before {
    top: 39px;
    bottom: auto;
    left: -8px;
    right: auto;
  }
}
.sec01 .has-bg {
  position: relative;
  z-index: 10;
}
.sec01 .has-bg::before {
  content: "";
  background: url(../../assets/img/sec01-plus.png) no-repeat top right/100% auto;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .sec01 .has-bg::before {
    background: url(../../assets/img/sec01-plus_sp.png) no-repeat top right/100% auto;
    top: 300px;
  }
}
.sec01 .has-bg::after {
  content: "";
  background: url(../../assets/img/sec01-bg.png) no-repeat center/contain;
  max-width: 1027px;
  width: 90%;
  height: auto;
  aspect-ratio: 1027/883;
  position: absolute;
  top: 26px;
  left: 80px;
  mix-blend-mode: multiply;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  -webkit-mask-image: var(--mask-url);
  mask-image: var(--mask-url);
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 80% 80%;
  mask-size: 80% 80%;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .sec01 .has-bg::after {
    background: url(../../assets/img/sec01-bg_sp.png) no-repeat center/cover;
    aspect-ratio: initial;
    max-width: none;
    width: 100%;
    height: 620px;
    top: 375px;
    bottom: auto;
    margin: auto;
    left: 0;
  }
}
.sec01 .has-bg .bg {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 50;
}
.sec01 .has-bg .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(48.26%, rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(#ffffff), color-stop(47.21%, rgba(255, 255, 255, 0))), url(../../assets/img/note.png);
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 48.26%), linear-gradient(360deg, #ffffff 0%, rgba(255, 255, 255, 0) 47.21%), url(../../assets/img/note.png);
  background-position: top bottom top;
  background-size: 100% auto, 100% auto, 100% auto;
  background-repeat: no-repeat, no-repeat, repeat;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .sec01 .has-bg .bg::after {
    background-size: 100% auto, 100% auto, cover;
  }
}
.sec01 .has-bg .sec-inner {
  position: relative;
  padding-top: 0;
}
.sec01 .desc {
  margin-bottom: 39px;
}
@media screen and (max-width: 960px) {
  .sec01 .desc {
    margin-bottom: 80px;
  }
}
.sec01 .desc p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 960px) / (1920 - 960), 24px);
  line-height: 300%;
  color: #000000;
}
@media screen and (max-width: 960px) {
  .sec01 .desc p {
    line-height: 250%;
  }
}
.sec01 .tate {
  margin-left: auto;
  margin-bottom: 282px;
}
@media screen and (max-width: 960px) {
  .sec01 .tate {
    margin-bottom: 660px;
    width: 200px;
    height: 265px;
  }
}
.sec01 .tate p {
  margin-left: auto;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.sec01 .tate p span {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: clamp(30px, 30px + (40 - 30) * (100vw - 960px) / (1920 - 960), 40px);
  line-height: 153%;
  color: #000000;
}
.sec01 .note {
  position: absolute;
  left: -4%;
  bottom: 17%;
  width: auto;
  background-image: linear-gradient(rgba(128, 128, 128, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(128, 128, 128, 0.1) 1px, transparent 1px);
  background-color: #fff;
  background-size: 24px 24px;
  -webkit-box-shadow: -3px 3px 14px rgba(0, 0, 0, 0.25);
          box-shadow: -3px 3px 14px rgba(0, 0, 0, 0.25);
  -webkit-transform: rotate(-8.73deg);
          transform: rotate(-8.73deg);
  z-index: 50;
}
@media screen and (max-width: 1100px) {
  .sec01 .note {
    left: -12%;
  }
}
@media screen and (max-width: 960px) {
  .sec01 .note {
    left: 0;
    right: 0;
    bottom: 22%;
    margin: auto;
  }
}
.sec01 .note .inner {
  padding: clamp(32px, 32px + (50 - 32) * (100vw - 960px) / (1920 - 960), 50px);
}
.sec01 .note .inner .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 27px;
}
.sec01 .note .inner .title img {
  max-width: clamp(164px, 164px + (285 - 164) * (100vw - 960px) / (1920 - 960), 285px);
  height: auto;
}
.sec01 .note .inner .title p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 18px + (30 - 18) * (100vw - 960px) / (1920 - 960), 30px);
  line-height: 200%;
  letter-spacing: 0.18em;
  color: #000000;
}
.sec01 .note .inner .text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 960px) / (1920 - 960), 20px);
  line-height: 250%;
  color: #000000;
  text-align: center;
}
.sec01 .note .inner .text p .color span {
  font-weight: 900;
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 960px) / (1920 - 960), 24px);
  line-height: 220%;
  background: linear-gradient(145.75deg, #17c1b4 15.52%, #1fbd93 52.96%, #8ff69a 87.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.sec01 .catch {
  margin-right: 4%;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sec01 .catch p {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: clamp(24px, 24px + (40 - 24) * (100vw - 960px) / (1920 - 960), 40px);
  line-height: 300%;
  color: #000000;
}
.sec01 .catch p .color span {
  font-size: clamp(24px, 24px + (60 - 24) * (100vw - 960px) / (1920 - 960), 60px);
  line-height: 211%;
  background: linear-gradient(145.75deg, #17c1b4 15.52%, #1fbd93 52.96%, #8ff69a 87.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.sec01 .catchcopy::before,
.sec01 .catchcopy .first,
.sec01 .catchcopy .second,
.sec01 .has-bg::before,
.sec01 .has-bg::after,
.sec01 .bg::after,
.sec01 .desc,
.sec01 .tate,
.sec01 .catch,
.sec01 .note {
  opacity: 0;
}
.sec01 .catchcopy.is-show::before,
.sec01 .has-bg.is-after::after,
.sec01 .bg.is-after::after,
.sec01 .has-bg.is-before::before {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.sec01 .is-show {
  opacity: 1 !important;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.sec01 {
  /* アニメーション対象の親要素（中身のspanを制御） */
}
.sec01 .reveal-text,
.sec01 .desc,
.sec01 .tate,
.sec01 .catch,
.sec01 .note .text {
  overflow: hidden;
  position: relative;
  z-index: 60;
}
.sec01 {
  /* すべてのアニメーション対象の文字に適用 */
}
.sec01 .reveal-text span,
.sec01 .desc p span,
.sec01 .tate p span,
.sec01 .catch p span,
.sec01 .note .text p span {
  /* JS側でインラインスタイルとして初期状態を付与していますが、CSSでも担保します */
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
.sec01 {
  /* 親に is-show がついたら、配下にある全 span を出現させる */
}
.sec01 .is-show span,
.sec01 .is-show .color span {
  opacity: 1 !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}
.sec01 {
  /* 背景や他の演出（既存のスタイルを維持） */
}
.sec01 .has-bg,
.sec01 .bg,
.sec01 .tate,
.sec01 .note {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease; /* 必要に応じて調整 */
}

.sec01 .has-bg.is-after {
  -webkit-animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.sec02 {
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.sec02 .bg-mask-target {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url(../img/concept-bg.png) top/cover;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.sec02 .bg-mask-target.is-show {
  opacity: 1;
  -webkit-animation: reveal 4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: reveal 4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.sec02 .w1920 {
  padding: 600px 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .sec02 .w1920 {
    padding: 0;
  }
}
.sec02 .w1920 .sec-inner {
  position: relative;
  margin: 0 4%;
}
@media screen and (max-width: 960px) {
  .sec02 .w1920 .sec-inner {
    padding: 200px 0;
  }
}
.sec02 .w1920 .sec-inner .concept-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.sec02 .w1920 .sec-inner .concept-text img {
  width: 100%;
  height: auto;
}
.sec02 .w1920 .sec-inner .concept-text .concept01 {
  position: absolute;
  width: clamp(204px, 204px + (560 - 204) * (100vw - 960px) / (1920 - 960), 560px);
  height: auto;
  left: 0;
  top: -311px;
}
@media screen and (max-width: 960px) {
  .sec02 .w1920 .sec-inner .concept-text .concept01 {
    top: 59px;
  }
}
.sec02 .w1920 .sec-inner .concept-text .concept02 {
  position: absolute;
  width: clamp(150px, 150px + (501 - 150) * (100vw - 960px) / (1920 - 960), 501px);
  height: auto;
  right: 0;
  top: -333px;
}
@media screen and (max-width: 960px) {
  .sec02 .w1920 .sec-inner .concept-text .concept02 {
    top: 643px;
    right: auto;
    left: 0;
  }
}
.sec02 .w1920 .sec-inner .concept-text .concept03 {
  position: absolute;
  width: clamp(218px, 218px + (856 - 218) * (100vw - 960px) / (1920 - 960), 856px);
  height: auto;
  right: 0;
  top: 535px;
}
@media screen and (max-width: 960px) {
  .sec02 .w1920 .sec-inner .concept-text .concept03 {
    top: 923px;
    right: -18px;
  }
}
.sec02 .w1920 .sec-inner .concept-text .concept04 {
  position: absolute;
  width: clamp(81px, 81px + (223 - 81) * (100vw - 960px) / (1920 - 960), 223px);
  height: auto;
  left: 50px;
  top: 536px;
}
@media screen and (max-width: 960px) {
  .sec02 .w1920 .sec-inner .concept-text .concept04 {
    top: 78px;
    left: auto;
    right: 0;
  }
}
.sec02 .w1920 .sec-inner .concept-text .concept05 {
  position: absolute;
  width: clamp(76px, 76px + (211 - 76) * (100vw - 960px) / (1920 - 960), 211px);
  height: auto;
  right: 0;
  bottom: 167px;
}
@media screen and (max-width: 960px) {
  .sec02 .w1920 .sec-inner .concept-text .concept05 {
    bottom: 148px;
    right: 38px;
  }
}
.sec02 .w1920 .sec-inner .concept-text .concept06 {
  position: absolute;
  width: clamp(343px, 343px + (999 - 343) * (100vw - 960px) / (1920 - 960), 999px);
  height: auto;
  bottom: -366px;
  right: 0;
}
@media screen and (max-width: 960px) {
  .sec02 .w1920 .sec-inner .concept-text .concept06 {
    bottom: 33px;
    left: 0;
    margin: auto;
  }
}
.sec02 .w1920 .sec-inner .title {
  position: relative;
  text-align: center;
}
.sec02 .w1920 .sec-inner .title span {
  font-family: "Metal", serif;
  font-weight: 400;
  font-size: clamp(60px, 60px + (122 - 60) * (100vw - 960px) / (1920 - 960), 122px);
  color: #000000;
  text-align: center;
  letter-spacing: -0.01em;
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
.sec02 .w1920 .sec-inner .title {
  margin-bottom: 210px;
}
@media screen and (max-width: 960px) {
  .sec02 .w1920 .sec-inner .title {
    margin-bottom: 110px;
  }
}
.sec02 .w1920 .sec-inner .title::before {
  content: "";
  background: url(../../assets/img/plus.png) no-repeat center/contain;
  width: clamp(131px, 131px + (227 - 131) * (100vw - 960px) / (1920 - 960), 227px);
  height: clamp(131px, 131px + (227 - 131) * (100vw - 960px) / (1920 - 960), 227px);
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: -1;
}
.sec02 .w1920 .sec-inner .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 33px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.sec02 .w1920 .sec-inner .text .item p span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 960px) / (1920 - 960), 24px);
  line-height: 350%;
  color: #000000;
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
@media screen and (max-width: 960px) {
  .sec02 .w1920 .sec-inner .text .item p span {
    line-height: 240%;
  }
}
.sec02 .w1920 .sec-inner .text .item p .color {
  background: linear-gradient(145.75deg, #17c1b4 15.52%, #1fbd93 52.96%, #8ff69a 87.63%);
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  position: relative;
}
.sec02 .w1920 .sec-inner .text .item p .color span {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: clamp(32px, 32px + (54 - 32) * (100vw - 960px) / (1920 - 960), 54px);
  line-height: 140%;
  display: inline-block;
  /* 2. 親のグラデーション設定を丸ごと引き継ぐ */
  background: inherit;
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  text-fill-color: inherit;
  /* アニメーション */
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
.sec02 .w1920 .sec-inner .text .item.is-show p span,
.sec02 .w1920 .sec-inner .text .item.is-show .color span {
  opacity: 1 !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}
.sec02 .w1920 .sec-inner .text .item.is-show .color::before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}
.sec02 .w1920 .title,
.sec02 .w1920 .concept-text img,
.sec02 .w1920 .item {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out;
  transition: opacity 0.8s ease-out;
}
.sec02 .w1920 .title.is-show,
.sec02 .w1920 .concept-text img.is-show,
.sec02 .w1920 .item.is-show {
  opacity: 1;
}

/* 画像やタイトルのフェードイン用（必要であれば） */
.sec02 .title span,
.sec02 .concept-text img {
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

.sec02 .title.is-show span,
.sec02 .concept-text img.is-show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.sec03 .w1920 .sec-inner {
  padding: 160px 0;
}
@media screen and (max-width: 960px) {
  .sec03 .w1920 .sec-inner {
    padding: 82px 0;
  }
}
.sec03 .w1920 .sec-inner .movie-link {
  opacity: 0;
  display: block;
  width: 90%;
  margin: 0 auto;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
@media screen and (max-width: 960px) {
  .sec03 .w1920 .sec-inner .movie-link {
    width: 100%;
  }
}
.sec03 .w1920 .sec-inner .movie-link img {
  width: 100%;
  height: auto;
}
.sec03 .w1920 .sec-inner .movie-link.is-show {
  opacity: 1;
  -webkit-animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.sec04 {
  position: relative;
  width: 100%;
  /* セクション全体の高さをしっかり確保 */
  height: 1200px;
  padding-top: 200px;
}
@media screen and (max-width: 960px) {
  .sec04 {
    height: 900px;
  }
}
.sec04 .bg-wrap {
  position: relative;
  width: 100%;
  height: 800px; /* 画像エリアの高さ */
  z-index: 1;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  margin-top: 100px; /* 上に余白が必要な場合 */
}
@media screen and (max-width: 960px) {
  .sec04 .bg-wrap {
    height: 561px;
  }
}
.sec04 .bg-wrap.run-reveal-animation {
  -webkit-animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.sec04 .bg-wrap .bg-inner {
  /* fixedを解除 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), color-stop(51.43%, rgba(255, 255, 255, 0))), -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(64%, rgba(255, 255, 255, 0))), -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(105.16%, rgba(255, 255, 255, 0))), url(../../assets/img/sec04-bg.png);
  background: linear-gradient(360deg, #ffffff 0%, rgba(255, 255, 255, 0) 51.43%), linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 64%), linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 105.16%), url(../../assets/img/sec04-bg.png);
  background-blend-mode: normal, normal, normal, multiply;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sec04 .sec-inner {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%; /* 親要素(sec04)いっぱいに広げる */
  z-index: 10;
  pointer-events: none; /* 下の要素のクリックを邪魔しない */
}
.sec04 .sec-inner .sec-title {
  /* 画面の中央付近に固定 */
  position: -webkit-sticky;
  position: sticky;
  top: 10vh;
  opacity: 0;
  max-width: 140px;
  height: 451px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 0 auto;
  background: linear-gradient(145.75deg, #17c1b4 15.52%, #1fbd93 52.96%, #8ff69a 87.63%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 960px) {
  .sec04 .sec-inner .sec-title {
    height: 336px;
  }
}
.sec04 .sec-inner .sec-title span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: clamp(40px, 40px + (54 - 40) * (100vw - 960px) / (1920 - 960), 54px);
  line-height: 110%;
  background: inherit;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
}
.sec04.is-active .sec-title {
  opacity: 1;
}
.sec04.is-active .sec-title span {
  opacity: 1 !important;
  -webkit-transform: translate3d(0px, 0, 0px) !important;
          transform: translate3d(0px, 0, 0px) !important;
}

.sec05 {
  padding-bottom: 200px;
  overflow: hidden;
}
.sec05 .sec-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .sec05 .sec-title {
    gap: 20px;
    margin-bottom: 50px;
  }
}
.sec05 .sec-title .ttl-en span,
.sec05 .sec-title .ttl-ja span {
  display: inline-block;
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
}
.sec05 .sec-title .ttl-en span {
  font-family: "Metal", serif;
  font-weight: 400;
  font-size: clamp(60px, 60px + (122 - 60) * (100vw - 960px) / (1920 - 960), 122px);
  line-height: 105px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #000000;
}
@media screen and (max-width: 960px) {
  .sec05 .sec-title .ttl-en span {
    line-height: 1;
  }
}
.sec05 .sec-title .ttl-ja span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 20px + (40 - 20) * (100vw - 960px) / (1920 - 960), 40px);
  line-height: 150%;
  color: #000000;
}
.sec05 .sec-title.is-active .ttl-en span,
.sec05 .sec-title.is-active .ttl-ja span {
  opacity: 1 !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}
.sec05 .custom-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.sec05 .custom-layout .tab-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 660px;
  overflow-x: auto;
  margin: 0 4%;
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sec05 .custom-layout .tab-navigation.is-hovering .tab-item.active {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 151px;
          flex: 0 0 151px;
}
.sec05 .custom-layout .tab-navigation.is-hovering .tab-item.active .tab-thumb {
  width: 121px;
  height: 142px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .tab-navigation.is-hovering .tab-item.active .tab-thumb {
    width: 70px;
    height: 140px;
  }
}
.sec05 .custom-layout .tab-navigation.is-hovering .tab-item.active .tab-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.sec05 .custom-layout .tab-navigation.is-hovering .tab-item.active:hover {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 259px;
          flex: 0 0 259px;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .tab-navigation.is-hovering .tab-item.active:hover {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
.sec05 .custom-layout .tab-navigation.is-hovering .tab-item.active:hover {
  cursor: pointer;
}
.sec05 .custom-layout .tab-navigation.is-hovering .tab-item.active:hover .tab-thumb {
  width: 219px;
  height: 297px;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .tab-navigation.is-hovering .tab-item.active:hover .tab-thumb {
    width: 140px;
    height: 240px;
  }
}
.sec05 .custom-layout .tab-navigation.is-hovering .tab-item.active:hover .tab-thumb img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .tab-navigation {
    cursor: -webkit-grab;
    cursor: grab;
    min-height: 500px;
    gap: 28px;
  }
  .sec05 .custom-layout .tab-navigation:active {
    -webkit-scroll-snap-type: none;
        -ms-scroll-snap-type: none;
            scroll-snap-type: none;
  }
  .sec05 .custom-layout .tab-navigation:active img {
    pointer-events: none;
  }
}
.sec05 .custom-layout .tab-navigation::-webkit-scrollbar {
  display: none;
}
.sec05 .custom-layout .tab-navigation .tab-item {
  scroll-snap-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 151px;
          flex: 0 0 151px;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .tab-navigation .tab-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
}
.sec05 .custom-layout .tab-navigation .tab-item {
  /* PCのみ：アコーディオン挙動を強化 */
}
@media (hover: hover) {
  .sec05 .custom-layout .tab-navigation .tab-item:hover {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 259px;
            flex: 0 0 259px;
    cursor: pointer;
  }
}
@media screen and (hover: hover) and (max-width: 960px) {
  .sec05 .custom-layout .tab-navigation .tab-item:hover {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
@media (hover: hover) {
  .sec05 .custom-layout .tab-navigation .tab-item:hover .tab-thumb {
    width: 219px;
    height: 297px;
  }
}
@media screen and (hover: hover) and (max-width: 960px) {
  .sec05 .custom-layout .tab-navigation .tab-item:hover .tab-thumb {
    width: 140px;
    height: 240px;
  }
}
@media (hover: hover) {
  .sec05 .custom-layout .tab-navigation .tab-item:hover .tab-thumb img {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
}
.sec05 .custom-layout .tab-navigation .tab-item.active {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 259px;
          flex: 0 0 259px;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .tab-navigation .tab-item.active {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
.sec05 .custom-layout .tab-navigation .tab-item.active .tab-thumb {
  width: 219px;
  height: 297px;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .tab-navigation .tab-item.active .tab-thumb {
    width: 140px;
    height: 240px;
  }
}
.sec05 .custom-layout .tab-navigation .tab-item.active .tab-thumb img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.sec05 .custom-layout .tab-navigation .tab-item.active {
  /* PCでアクティブを維持 */
}
@media (hover: hover) {
  .sec05 .custom-layout .tab-navigation .tab-item.active {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 259px;
            flex: 0 0 259px;
  }
}
@media screen and (hover: hover) and (max-width: 960px) {
  .sec05 .custom-layout .tab-navigation .tab-item.active {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
.sec05 .custom-layout .tab-navigation .tab-item .tab-title-vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 10px 0;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 960px) / (1920 - 960), 24px);
  line-height: 150%;
  text-align: end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec05 .custom-layout .tab-navigation .tab-item .tab-title-vertical .number {
  -webkit-writing-mode: initial;
      -ms-writing-mode: initial;
          writing-mode: initial;
}
.sec05 .custom-layout .tab-navigation .tab-item .tab-thumb {
  width: 121px;
  height: 142px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .tab-navigation .tab-item .tab-thumb {
    width: 70px;
    height: 140px;
  }
}
.sec05 .custom-layout .tab-navigation .tab-item .tab-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.sec05 .custom-layout {
  /* 下部エリアのレスポンシブ対応 */
}
.sec05 .custom-layout .content-display {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.sec05 .custom-layout .content-display .bg {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.sec05 .custom-layout .content-display .bg::after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(48.26%, rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(#ffffff), color-stop(47.21%, rgba(255, 255, 255, 0))), url(../../assets/img/note.png);
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 48.26%), linear-gradient(360deg, #ffffff 0%, rgba(255, 255, 255, 0) 47.21%), url(../../assets/img/note.png);
  background-position: top bottom top;
  background-size: 100% auto, 100% auto, 100% auto;
  background-repeat: no-repeat, no-repeat, repeat;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .content-display .bg::after {
    /* background-size: 100% auto, 100% auto, cover; */
    background-size: 100% auto, 100% auto, 400%;
    
    /* 縦方向に繰り返す設定を明示（もし親要素で設定されていなければ追加） */
    background-repeat: repeat;
  }
}
.sec05 .custom-layout .content-display .bg.is-show {
  opacity: 1;
}
.sec05 .custom-layout .content-display .bg.is-show::after {
  opacity: 1;
}
.sec05 .custom-layout .content-display .content-item {
  position: relative;
  display: none;
  z-index: 10;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .content-display .content-item {
    padding: 100px 0;
    width: auto;
    margin: 0 auto;
  }
}
.sec05 .custom-layout .content-display .content-item.is-active {
  margin: 0 8%;
  padding: 200px 0;
  opacity: 1;
  display: block;
  height: auto;
  -webkit-animation: fadeIn 0.8s ease;
          animation: fadeIn 0.8s ease;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .content-display .content-item.is-active {
    margin: 0 4%;
  }
}
.sec05 .custom-layout .content-display .content-item .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 168px;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .content-display .content-item .content-wrapper {
    gap: 100px;
  }
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .top {
  display: grid;
  grid-template-columns: 63% -webkit-max-content;
  grid-template-columns: 63% max-content;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .content-display .content-item .content-wrapper .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .top .main-title-vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  opacity: 0;
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .top .main-title-vertical .number {
  -webkit-writing-mode: initial;
      -ms-writing-mode: initial;
          writing-mode: initial;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .content-display .content-item .content-wrapper .top .main-title-vertical {
    margin-right: 24px;
  }
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .top .main-title-vertical span {
  display: inline-block;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: clamp(70px, 70px + (132 - 70) * (100vw - 960px) / (1920 - 960), 132px);
  line-height: 1.2;
  color: #000000;
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: opacity 1.5s cubic-bezier(0.08, 0.82, 0.17, 1), -webkit-transform 1.5s cubic-bezier(0.08, 0.82, 0.17, 1) !important;
  transition: opacity 1.5s cubic-bezier(0.08, 0.82, 0.17, 1), -webkit-transform 1.5s cubic-bezier(0.08, 0.82, 0.17, 1) !important;
  transition: opacity 1.5s cubic-bezier(0.08, 0.82, 0.17, 1), transform 1.5s cubic-bezier(0.08, 0.82, 0.17, 1) !important;
  transition: opacity 1.5s cubic-bezier(0.08, 0.82, 0.17, 1), transform 1.5s cubic-bezier(0.08, 0.82, 0.17, 1), -webkit-transform 1.5s cubic-bezier(0.08, 0.82, 0.17, 1) !important;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .top .main-title-vertical .has-border span {
  text-decoration: underline;
  text-decoration-thickness: 8px;
  text-underline-offset: 11px;
  display: inline-block;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .top .main-visual {
  max-width: 975px;
  width: 100%;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .top .main-visual img {
  width: 100%;
  height: auto;
  opacity: 0;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-transition: opacity 0.4s ease, -webkit-filter 1s ease;
  transition: opacity 0.4s ease, -webkit-filter 1s ease;
  transition: opacity 0.4s ease, filter 1s ease;
  transition: opacity 0.4s ease, filter 1s ease, -webkit-filter 1s ease;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .top .main-visual .desc{
  margin-top: 20px;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .top .main-visual .desc span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 960px) / (1920 - 960), 24px);
  line-height: 200%;
  color: #000000;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1) !important;
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1) !important;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .content-display .content-item .content-wrapper .top .main-visual .desc span {
    line-height: 250%;
  }
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .top .main-visual a {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom {
  display: grid;
  grid-template-columns: 40% 50%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .content-display .content-item .content-wrapper .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .sub-textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .sub-textarea .item {
  padding-bottom: 50px;
  border-bottom: 1px solid #000000;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .sub-textarea .item span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .sub-textarea .item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .sub-textarea .item .subttl span {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: clamp(30px, 30px + (60 - 30) * (100vw - 960px) / (1920 - 960), 60px);
  line-height: 150%;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .sub-textarea .item .subttl {
  margin-bottom: 15px;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .sub-textarea .item .desc span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 960px) / (1920 - 960), 24px);
  line-height: 200%;
  color: #000000;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .sub-visual {
  max-width: 726px;
  width: 100%;
  position: relative;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .sub-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-transition: opacity 0.4s ease, -webkit-filter 1s ease;
  transition: opacity 0.4s ease, -webkit-filter 1s ease;
  transition: opacity 0.4s ease, filter 1s ease;
  transition: opacity 0.4s ease, filter 1s ease, -webkit-filter 1s ease;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column {
  grid-template-columns: minmax(0, 1fr);;
  gap: 178px;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-visual {
  max-width: 100%;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-visual .note {
  right: -4%;
  bottom: auto;
  top: -2%;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-textarea {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-textarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-textarea .item {
  padding-bottom: 0;
  border-bottom: 0;
  border-right: 1px solid #000;
  padding-right: 4%;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-textarea .item {
    padding-bottom: 50px;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #000;
  }
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-textarea .item:last-child {
  padding-right: 0;
  border-right: 0;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-textarea.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-textarea.column .item {
  border-bottom: 1px solid #000;
  padding-bottom: 50px;
  padding-right: 0;
  border-right: 0;
}
/* 対象のテキスト要素 */


/* テキストコンテナの基本設定 */
/* 1文字ずつの初期状態（透明で少し下に配置） */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(5px);
  transition: none; /* JSでクラスが付与されるまでアニメーションさせない */
}

/* アニメーション実行時のスタイル */
.char.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* テキストコンテナの高さ制限 */
.desc-container .desc.open-desc {
  line-height: 1.8;
  max-height: calc(1.8rem * 4.7); /* 正確に3行分 */
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  position: relative;
}

/* 開いた時の高さ */
.desc-container.is-open .desc.open-desc {
  max-height: 2000px; /* 十分な高さに広げる */
}

/* ボタンのスタイル（位置固定とクリック阻害防止） */
.toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0 auto;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: 14px;
  padding: 8px 0;
  position: relative;
  z-index: 10;
}

/* 矢印アイコン */
.toggle-btn .arrow {
  width: 7px;
  height: 7px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

/* 開いている時の矢印の向き */
.is-open .toggle-btn .arrow {
  transform: rotate(-135deg);
}

/* 3行目末尾の三点リーダー（閉じている時のみ表示） */
/* .desc-container:not(.is-open) .desc.open-desc::after {
  content: "...";
  position: absolute;
  bottom: 3px;
  right: 0;
  background: #fff; 
  padding-left: 10px;
} */



.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-textarea.column .item .img-flex{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-textarea.column .item .img-flex .img-item{
  width: 48%;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-textarea.column .item .img-flex .img-item img{
  width: 100%;
  opacity: 1 !important;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note {
  opacity: 0 !important;
  -webkit-transition: opacity 1.5s cubic-bezier(0.08, 0.82, 0.17, 1) !important;
  transition: opacity 1.5s cubic-bezier(0.08, 0.82, 0.17, 1) !important;
  position: absolute;
  right: -4%;
  bottom: -4%;
  max-width: 620px;
  width: 90%;
  background-image: linear-gradient(rgba(128, 128, 128, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(128, 128, 128, 0.1) 1px, transparent 1px);
  background-color: #fff;
  background-size: 24px 24px;
  -webkit-box-shadow: -3px 3px 14px rgba(0, 0, 0, 0.25);
          box-shadow: -3px 3px 14px rgba(0, 0, 0, 0.25);
  -webkit-transform: rotate(-8.73deg);
          transform: rotate(-8.73deg);
  z-index: 50;
}
@media screen and (max-width: 1400px) {
  .desc-container .desc.open-desc {
  max-height: calc(1.8em * 4.4); /* 正確に3行分 */
  
}

}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note {
    position: relative;
    bottom: auto;
    top: 100%;
  }

  .sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-textarea.column .item .img-flex{
  flex-direction: column;
  gap: 20px;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom.column .sub-textarea.column .item .img-flex .img-item{
  width: 100%;
}
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note .inner {
  padding: clamp(32px, 32px + (50 - 32) * (100vw - 960px) / (1920 - 960), 50px);
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note .inner .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 27px;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note .inner .title img {
  max-width: 285px;
  height: auto;
  opacity: 1 !important;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note .inner .title img {
    max-width: 175px;
  }
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note .inner .title p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 24px + (30 - 24) * (100vw - 960px) / (1920 - 960), 30px);
  line-height: 200%;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note .inner .text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 960px) / (1920 - 960), 20px);
  line-height: 250%;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note .inner .text.column {
  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;
  gap: 42px;
}
@media screen and (max-width: 960px) {
  .sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note .inner .text.column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note .inner .text.column .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19px;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note .inner .text.column .ttl {
  min-width: 122px;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note .inner .text.column .red {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ff9191;
  border-radius: 10px;
}
.sec05 .custom-layout .content-display .content-item .content-wrapper .bottom .note .inner .text.column .blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #91c1ff;
  border-radius: 10px;
}
.sec05 .custom-layout .content-display .content-item.is-show-step1 .top .main-visual img {
  opacity: 1;
  -webkit-animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.sec05 .custom-layout .content-display .content-item.is-show-step2 .content-wrapper .top .main-title-vertical {
  opacity: 1;
}
.sec05 .custom-layout .content-display .content-item.is-show-step2 .content-wrapper .top .main-title-vertical span {
  opacity: 1 !important;
  -webkit-transform: translate3d(0px, 0, 0px) !important;
          transform: translate3d(0px, 0, 0px) !important;
}
.sec05 .custom-layout .content-display .content-item.is-show-step3 .content-wrapper .top .main-visual .desc span {
  opacity: 1 !important;
  -webkit-transform: translate3d(0px, 0, 0px) !important;
          transform: translate3d(0px, 0, 0px) !important;
}
.sec05 .custom-layout .content-display .content-item.is-show-step4 .content-wrapper .bottom .sub-textarea .item span {
  opacity: 1 !important;
  -webkit-transform: translate3d(0px, 0, 0px) !important;
          transform: translate3d(0px, 0, 0px) !important;
}
.sec05 .custom-layout .content-display .content-item.is-show-step4 .sub-visual img {
  opacity: 1;
  -webkit-animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.sec05 .custom-layout .content-display .content-item.is-show-step5 .content-wrapper .bottom .note {
  opacity: 1 !important;
}
.sec06 {
  opacity: 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .sec06 {
    height: 700px;
  }
}
.sec06 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../../assets/img/sec06.png) no-repeat left/cover;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-transition: opacity 0.4s ease, -webkit-filter 1s ease;
  transition: opacity 0.4s ease, -webkit-filter 1s ease;
  transition: opacity 0.4s ease, filter 1s ease;
  transition: opacity 0.4s ease, filter 1s ease, -webkit-filter 1s ease;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .sec06 .bg {
    background: url(../../assets/img/sec06_sp.png) no-repeat top/cover;
  }
}
.sec06 .sec-title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.sec06 .sec-title span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: 54px;
  line-height: 110%;
  background: linear-gradient(145.75deg, #17c1b4 15.52%, #1fbd93 52.96%, #8ff69a 87.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.sec06 .sec-title.is-active span {
  opacity: 1 !important;
  -webkit-transform: translate3d(0px, 0, 0px) !important;
          transform: translate3d(0px, 0, 0px) !important;
}
.sec06.is-show {
  opacity: 1;
}
.sec06.is-show .bg {
  opacity: 1;
  -webkit-animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.sec07 {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(21.49%, #ffffff), color-stop(61.22%, rgba(255, 255, 255, 0))), url(../../assets/img/sec07.png);
  background-image: linear-gradient(180deg, #ffffff 21.49%, rgba(255, 255, 255, 0) 61.22%), url(../../assets/img/sec07.png);
  background-size: 100% auto, cover;
  background-position: top, top;
  background-repeat: no-repeat;
}
.sec07 .sec-inner {
  padding: 200px 0;
  max-width: 853px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .sec07 .sec-inner {
    padding-top: 50px;
  }
}
.sec07 .sec-inner .img {
  position: relative;
  margin-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .sec07 .sec-inner .img {
    height: 538px;
    width: 100%;
  }
}
.sec07 .sec-inner .img img {
  opacity: 0;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-transition: opacity 0.4s ease, -webkit-filter 1s ease;
  transition: opacity 0.4s ease, -webkit-filter 1s ease;
  transition: opacity 0.4s ease, filter 1s ease;
  transition: opacity 0.4s ease, filter 1s ease, -webkit-filter 1s ease;
}
@media screen and (max-width: 960px) {
  .sec07 .sec-inner .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.sec07 .sec-inner .img::before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/img/sec07-people.png) no-repeat center/contain;
  z-index: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 960px) {
  .sec07 .sec-inner .img::before {
    background-size: cover;
  }
}
.sec07 .sec-inner .img .img-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sec07 .sec-inner .img .img-text h2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.sec07 .sec-inner .img .img-text h2 span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: clamp(120px, 120px + (150 - 120) * (100vw - 960px) / (1920 - 960), 150px);
  line-height: 90%;
  background: linear-gradient(145.75deg, #18f9e7 15.52%, #55f5ad 87.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.sec07 .sec-inner .img .img-text h2.top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .sec07 .sec-inner .img .img-text h2.top {
    right: 44px;
  }
}
.sec07 .sec-inner .img .img-text h2.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .sec07 .sec-inner .img .img-text h2.bottom {
    left: 53px;
  }
}
.sec07 .sec-inner .text {
  width: 90%;
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
.sec07 .sec-inner .copy {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(24px, 24px + (30 - 24) * (100vw - 960px) / (1920 - 960), 30px);
  line-height: 250%;
  background: linear-gradient(145.75deg, #17c1b4 15.52%, #1fbd93 52.96%, #8ff69a 87.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 20px;
}
.sec07 .sec-inner .desc p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 960px) / (1920 - 960), 20px);
  line-height: 350%;
}
@media screen and (max-width: 960px) {
  .sec07 .sec-inner .desc p {
    line-height: 250%;
  }
}
.sec07.show-img .sec-inner .img img {
  opacity: 1;
  -webkit-animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.sec07.show-before .sec-inner .img::before {
  opacity: 1;
}
.sec07.show-img-text .sec-inner .img .img-text span {
  opacity: 1 !important;
  -webkit-transform: translate3d(0px, 0, 0px) !important;
          transform: translate3d(0px, 0, 0px) !important;
}
.sec07.show-desc .sec-inner .text {
  opacity: 1;
  -webkit-transform: translate3d(0px, 0, 0px);
          transform: translate3d(0px, 0, 0px);
}

.sec08 {
  position: relative;
  width: 100%;
  padding: 620px 0 100px;
  overflow: visible;
}
@media screen and (max-width: 960px) {
  .sec08 {
    padding-top: 240px;
  }
}
.sec08::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(21.49%, #ffffff), color-stop(61.22%, rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #ffffff 21.49%, rgba(255, 255, 255, 0) 61.22%);
  position: absolute;
  width: 100%;
  height: 1080px;
  top: 0;
  left: 0;
  z-index: 5;
}
.sec08 .bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* clip-pathでセクションの範囲だけを切り抜く（窓を作る） */
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.sec08 .bg-wrap.run-reveal-animation {
  -webkit-animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.sec08 .bg-wrap .bg-inner {
  position: fixed; /* ブラウザ全体に対して固定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 1080px;
  background: linear-gradient(359.88deg, #ffffff 0.38%, rgba(255, 255, 255, 0) 24.96%), url(../../assets/img/sec08-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom, top;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .sec08 .bg-wrap .bg-inner {
    height: 700px;
    background-size: cover;
  }
}
.sec08 .w1920 {
  position: relative;
  z-index: 7;
}
.sec08 .sec-title {
  opacity: 0;
  position: relative;
  margin-bottom: 300px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .sec08 .sec-title {
    margin: 0 auto 230px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    height: 355px;
  }
  .sec08 .sec-title .number {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    width: 57px;
    text-align: center;
    display: inline-block;
  }
}
.sec08 .sec-title span {
  display: inline-block;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: clamp(60px, 60px + (132 - 60) * (100vw - 960px) / (1920 - 960), 132px);
  line-height: 90%;
  background: linear-gradient(145.75deg, #17c1b4 15.52%, #1fbd93 52.96%, #8ff69a 87.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.sec08 .sec-title::before {
  content: "";
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  width: 45%;
  position: absolute;
  bottom: 25%;
  right: 20%;
  margin: auto;
  height: 4px;
  background: linear-gradient(145.75deg, #17c1b4 15.52%, #1fbd93 52.96%, #8ff69a 87.63%);
}
@media screen and (max-width: 960px) {
  .sec08 .sec-title::before {
    width: 4px;
    bottom: 2%;
    right: auto;
    left: 20%;
    height: 25%;
  }
}
.sec08 .sec-title::after {
  content: "。";
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  position: absolute;
  bottom: 0;
  right: 0;
  font-weight: 400;
  font-size: clamp(60px, 60px + (132 - 60) * (100vw - 960px) / (1920 - 960), 132px);
  font-family: "Hina Mincho", serif;
  background: linear-gradient(145.75deg, #17c1b4 15.52%, #1fbd93 52.96%, #8ff69a 87.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (max-width: 960px) {
  .sec08 .sec-title::after {
    left: -10px;
    right: auto;
    bottom: auto;
    top: 94%;
  }
}
.sec08 .desc {
  opacity: 0;
}
.sec08 .desc p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 960px) / (1920 - 960), 20px);
  line-height: 350%;
}
@media screen and (max-width: 960px) {
  .sec08 .desc p {
    line-height: 250%;
  }
}
.sec08.is-active .sec-title:before, .sec08.is-active .sec-title:after,
.sec08.is-active .sec-title span {
  opacity: 1 !important;
  -webkit-transform: translate3d(0px, 0, 0px) !important;
          transform: translate3d(0px, 0, 0px) !important;
}
.sec08.is-active .desc {
  opacity: 1;
}

.t_contact {
  background: linear-gradient(145.75deg, #13cbbc 15.52%, #3dbd84 87.63%);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.t_contact.run-reveal-animation {
  -webkit-animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: reveal 6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.t_contact .w1920 .sec-inner {
  padding: 200px 0;
}
@media screen and (max-width: 960px) {
  .t_contact .w1920 .sec-inner {
    padding: 100px 0;
  }
}
.t_contact .w1920 .sec-inner .sec-title {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .t_contact .w1920 .sec-inner .sec-title {
    margin-bottom: 50px;
  }
}
.t_contact .w1920 .sec-inner .sec-title span {
  opacity: 0;
  display: inline-block;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  transition: 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
.t_contact .w1920 .sec-inner .sec-title .ttl-en span {
  font-family: "Metal", serif;
  font-weight: 400;
  font-size: clamp(60px, 60px + (262 - 60) * (100vw - 960px) / (1920 - 960), 262px);
  text-align: center;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.t_contact .w1920 .sec-inner .sec-title .ttl-ja span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 24px + (40 - 24) * (100vw - 960px) / (1920 - 960), 40px);
  line-height: 48px;
  text-align: center;
  color: #ffffff;
}
.t_contact .w1920 .sec-inner .column-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
@media screen and (max-width: 960px) {
  .t_contact .w1920 .sec-inner .column-3 {
    grid-template-columns: 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.t_contact .w1920 .sec-inner .column-3 .item {
  position: relative;
  border-radius: 10px;
  aspect-ratio: 1/1;
  -webkit-box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 960px) {
  .t_contact .w1920 .sec-inner .column-3 .item {
    max-width: 352px;
    width: 100%;
    margin: 0 auto;
  }
}
.t_contact .w1920 .sec-inner .column-3 .item:hover .img > img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.t_contact .w1920 .sec-inner .column-3 .item .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.t_contact .w1920 .sec-inner .column-3 .item .img .link-text {
  position: absolute;
  height: 322px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 17px + (20 - 17) * (100vw - 960px) / (1920 - 960), 20px);
  line-height: 100%;
  z-index: 10;
}
.t_contact .w1920 .sec-inner .column-3 .item .img > img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.t_contact .w1920 .sec-inner .column-3 .item .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.t_contact .w1920 .sec-inner .column-3 .item .text .bnr {
  max-width: 130px;
  width: 60%;
}
@media screen and (max-width: 960px) {
  .t_contact .w1920 .sec-inner .column-3 .item .text .bnr {
    max-width: 113px;
    width: 100%;
  }
}
.t_contact .w1920 .sec-inner .column-3 .item .text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(15px, 15px + (18 - 15) * (100vw - 960px) / (1920 - 960), 18px);
  line-height: 110%;
  text-align: center;
  color: #000000;
}
.t_contact.is-active .w1920 .sec-inner .sec-title span {
  opacity: 1 !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}

.footer {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(48.26%, rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(#ffffff), color-stop(47.21%, rgba(255, 255, 255, 0))), url(../../assets/img/note.png);
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 48.26%), linear-gradient(360deg, #ffffff 0%, rgba(255, 255, 255, 0) 47.21%), url(../../assets/img/note.png);
  background-position: top bottom top;
  background-size: 100% auto, 100% auto, 100% auto;
  background-repeat: no-repeat, no-repeat, repeat;
  z-index: -1;
}
.footer .sec-inner {
  padding: 200px 0 100px;
}
.footer .sec-inner .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 300px;
}
@media screen and (max-width: 960px) {
  .footer .sec-inner .logo {
    margin-bottom: 150px;
  }
}
.footer .sec-inner .logo p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #000000;
}
.footer .sec-inner .f-nav {
  margin-bottom: 50px;
}
.footer .sec-inner .f-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2%;
}
@media screen and (max-width: 960px) {
  .footer .sec-inner .f-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 34px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.footer .sec-inner .f-nav ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 960px) / (1920 - 960), 24px);
  line-height: 100%;
}
@media screen and (max-width: 960px) {
  .footer .sec-inner .f-nav ul li {
    font-size: 24px;
  }
}
.footer .sec-inner .copy {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: right;
  color: #000000;
}/*# sourceMappingURL=style.css.map */