@charset "UTF-8";

/* CSS Document */
/*------------------------------

  標準レイアウト・基本カラー

------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=M+PLUS+1p:wght@400;900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=M+PLUS+1p:wght@400;900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&family=Antonio:wght@100..700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&family=Antonio:wght@100..700&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New&display=swap");
@font-face {
  font-family: "DSEG7";
  src:
    url("../fonts/DSEG7Classic-Bold.woff2") format("woff2"),
    url("../fonts/DSEG7Classic-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

.home {
  --main_color: #ff6b00;
}

figure img {
  width: 100%;
  vertical-align: bottom;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

h2,
h3,
h4,
p,
a {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/*---------------------------------

  キービジュアル

---------------------------------*/

/* ==========================
  Key Visual
========================== */

.key_visual {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.kvSwiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.kvSwiper .swiper-wrapper,
.kvSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.kvSwiper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.kvSwiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.kvSwiper img {
  object-fit: cover;
  object-position: center top;
}

/* 黒オーバーレイ */

.key_visual::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.4);

  opacity: 0;

  animation: overlayFade 1s ease forwards;
  animation-delay: 0.2s;

  z-index: 2;

  pointer-events: none;
}

/* ==========================
  Player Image
========================== */

.key_visual figure {
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 23%;

  z-index: 2;

  opacity: 0;
  transform: translateY(80px);
  animation: playerIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.4s;
}

.key_visual figure img {
  width: 100%;
  display: block;
}

/* ==========================
  Name Area
========================== */

.key_name {
  position: absolute;
  left: 38%;
  right: 0;
  bottom: 10%;

  z-index: 3;
  letter-spacing: 0px;

  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.key_name p,
.key_name h1 {
  margin: 0;
}

/* ==========================
  Category
========================== */

.key_name .category {
  color: #fff;
  font-size: 60px;
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.05em;

  opacity: 0;
  transform: translateX(-40px);
  animation: fadeLeft 0.8s ease forwards;
  animation-delay: 1.1s;
}

/* ==========================
  Japanese Name
========================== */

.key_name h1 {
  color: #fff;
  font-size: 150px;
  font-weight: 900;
  transform: scaleY(1.1);

  overflow: hidden;
  line-height: 1.1;
  white-space: nowrap;
}

.key_name h1 span {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  animation: nameUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 1.4s;
}

/* ==========================
  English Name
========================== */

.key_name .name_en {
  color: #fff;
  font-size: 70px;
  font-family: "Antonio", sans-serif;
  font-weight: 100;
  font-style: italic;

  opacity: 0;
  letter-spacing: clamp(0.15em, 0.8vw, 0.8em);
  animation: enName 0.8s ease forwards;
  animation-delay: 1.8s;
}

/* ==========================
  Animations
========================== */

@keyframes bgZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@keyframes overlayFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes playerIn {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes nameUp {
  from {
    opacity: 0;
    transform: translateY(120%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enName {
  from {
    opacity: 0;
    letter-spacing: 0.8em;
  }

  to {
    opacity: 1;
    letter-spacing: 0.25em;
  }
}

/* ==========================
  ②: タブレット幅 → 写真が大きくなり、テキストが少し重なる
========================== */

@media (max-width: 1528px) {
  .key_visual figure {
    width: 350px;
  }
}

/* ==========================
  ③: スマホ幅 → 写真中央大きめ、テキストは下部中央に完全に重なる
========================== */

@media (max-width: 840px) {
  .key_visual figure {
    left: 5%;
  }

  .key_name {
    left: 20%;
  }

  .key_name h1 {
    font-size: 100px;
  }

  .key_name .category {
    font-size: 40px;
  }

  .key_name .name_en {
    font-size: 50px;
  }
}

@media (max-width: 440px) {
  .key_visual figure {
    left: 0%;
    width: 230px;
  }

  .key_name {
    left: 30%;
  }

  .key_name h1 {
    font-size: 72px;
  }

  .key_name .category {
    font-size: 28px;
  }

  .key_name .name_en {
    font-size: 36px;
  }
}
/*---------------------------------

  特設お知らせ

---------------------------------*/
.announcement_block {
  position: relative;
  background: #fff8f3;
  border-bottom: 2px solid #c79f62;
  padding: clamp(30px, 8vw, 70px) 20px clamp(40px, 8vw, 70px);
  margin-top: clamp(60px, 10vw, 100px);

  opacity: 0;
  transform: translateY(60px);

  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.announcement_block.show {
  opacity: 1;
  transform: translateY(0);
}

.announcement_wrap {
  max-width: 900px;
  margin: 0 auto;
  /* position: relative; ← 削除。基準をblock側に譲る */
}

/* ==========================
  Congratulations(線一体型)
========================== */

.announcement_title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; /* 900px制限をやめ、画面端まで伸ばす */

  transform: translateY(
    -50%
  ); /* 縦方向の調整だけ残す(横中央寄せのtranslateXは不要に) */

  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  margin: 0;
}

.announcement_title::before,
.announcement_title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #c79f62;
}

.announcement_title p {
  margin: 0;
  white-space: nowrap;

  font-size: clamp(26px, 5vw, 50px);
  font-style: italic;
  color: #c79f62;
  font-weight: 700;
}

.announcement_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 3vw, 20px);
  margin-top: clamp(24px, 4vw, 36px);
}

.announcement_laurel {
  width: clamp(40px, 10vw, 100px);
  flex-shrink: 0;
}

.announcement_box {
  text-align: center;
}

.announcement_box p {
  font-size: clamp(16px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: clamp(8px, 2vw, 15px);
}

.announcement_box h2 {
  font-size: clamp(28px, 7vw, 70px);
  color: #c1272d;
  font-weight: 800;
  line-height: 1.2;
}

/*---------------------------------

  プロフィール

---------------------------------*/
.profile_block {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.title {
  margin: clamp(70px, 12vw, 150px) 0 clamp(50px, 8vw, 100px);
  overflow: hidden;
}

.title h2 {
  font-size: clamp(70px, 20vw, 220px); /* 固定220px→可変に */
  color: var(--main_color);
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: italic;
  font-variation-settings: "wdth" 100;
  line-height: 1;

  clip-path: inset(0 0 100% 0);
  transform: translateY(40px);
  transition:
    clip-path 1s cubic-bezier(0.65, 0, 0.35, 1),
    transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.title p.sub_title {
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 600;

  opacity: 0;
  letter-spacing: 0.3em;
  transition:
    opacity 0.8s ease,
    letter-spacing 0.8s ease;
  transition-delay: 0.4s;
}

.title.show h2 {
  clip-path: inset(0 0 0% 0);
  transform: translateY(0);
}

.title.show p.sub_title {
  opacity: 1;
  letter-spacing: 0.05em;
}

/* ==========================
  Profile Box(PC: 横並び)
========================== */

.profile_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 4vw, 60px); /* 写真とテキストの間隔も可変に */
  overflow: hidden;
}

.profile_box:last-child {
  margin-top: clamp(60px, 10vw, 150px);
}

.profile_box:last-child {
  flex-direction: row-reverse;
}

.profile_box figure {
  width: 45%;
  flex-shrink: 0; /* テキスト側に押しつぶされないように */
  overflow: hidden;
}

.profile_image {
  opacity: 0;
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.profile_box:first-child .profile_image {
  transform: translateX(-80px);
}

.profile_box:last-child .profile_image {
  transform: translateX(80px);
}

.profile_box.show .profile_image {
  opacity: 1;
  transform: translateX(0);
}

.profile_info h2 {
  font-size: clamp(28px, 5vw, 50px);
  padding-bottom: clamp(20px, 4vw, 40px);

  opacity: 0;
  transform: translateY(50px);

  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.4s;
}

.profile_box.show .profile_info h2 {
  opacity: 1;
  transform: translateY(0);
}

.profile_info_item {
  display: grid;
  grid-template-columns: clamp(90px, 16vw, 150px) 1fr; /* 固定150px→可変に */
  padding: clamp(12px, 2vw, 20px) clamp(8px, 1.5vw, 16px);
  border-bottom: 1px solid #333;
  font-weight: 500;

  opacity: 0;
  transform: translateY(25px);

  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.profile_info_item:first-child {
  border-top: 1px solid #333;
}

.profile_info_item dt {
  font-size: clamp(14px, 1.8vw, 17px);
}

.profile_info_item dd {
  font-size: clamp(15px, 1.9vw, 18px);
}

.profile_info_item.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
  スマホ幅: 写真とテキストを縦積みに
========================== */

@media (max-width: 767px) {
  .profile_box,
  .profile_box:last-child {
    flex-direction: column; /* 縦積みに統一(reverseも解除) */
    align-items: stretch;
  }

  .profile_box figure {
    width: 100%; /* 縦積み時は横幅いっぱいに */
  }

  .profile_info_item {
    grid-template-columns: 100px 1fr; /* dt列をさらにコンパクトに */
  }
}

/*---------------------------------

  自己ベスト

---------------------------------*/
.best_block {
  position: relative;
  z-index: 0;
  overflow: clip;
}

.best_bg {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-bottom: -100vh; /* スペースを専有せず、下のコンテンツと重ねる */
  margin-top: 200px;
  background: url(../images/best_bg.jpg) center top/cover;
  z-index: -1;
}

.best_wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.best_wrap .title {
  margin: 50px 0 100px;
}

.best_wrap .title h2 {
  font-size: clamp(50px, 16vw, 220px);
  padding-top: 80px;
  color: #ffffff;
}

.best_wrap p.sub_title {
  color: var(--main_color);
}

.title p.lead_text {
  color: #ffffff;
  font-size: 18px;
  padding: 50px 0px;
}

.best_inner {
  width: 75%;
  min-width: 1070px;
  margin: auto;
  position: relative;
  align-items: center;
  padding-bottom: 300px;
}

.timeline {
  position: absolute;
  left: 50%;
  top: 5%;
  bottom: 240px;
  width: 6px;
  background: #ffffff;
  transform: translateX(-50%) scaleY(0); /* 初期状態：高さ0 */
  transform-origin: top; /* 上端を基準に伸びる */
  transition: transform 1.2s ease;
}

.timeline.is-visible {
  transform: translateX(-50%) scaleY(1);
}

.best_box {
  position: relative;
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.best_box.right {
  margin-left: 50%;
  transform: translateX(80px);
}

.best_box.left {
  margin-right: 50%;
  transform: translateX(-80px);
}

.best_box.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.best_box.right::before,
.best_box.left::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
}

.best_box.right.new::before,
.best_box.left.new::before {
  background: var(--main_color);
}

.best_box.right::before {
  top: 40px;
  left: -19px;
}

.best_box.left::before {
  top: 40px;
  right: -19px;
}

.best_time {
  font-family: "DSEG7", monospace;
  font-size: clamp(40px, 8vw, 107px);
  color: var(--main_color);
  display: inline-block;
  padding: 0px 50px 20px 0px;
  border-bottom: 4px solid #fff;
  margin: 0 50px;
}

.date {
  display: block;
  padding-left: 80px;
  margin-top: 12px;
  color: var(--main_color);
  font-size: 18px;
  font-weight: bold;
}

.best_competition {
  padding: 0 0 0 80px;
  margin-top: 6px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

.best_time_wrap {
  position: relative;
  display: inline-block;
}

.best_label {
  position: absolute;
  right: 100px;
  top: -30px;

  transform: translate(30%, -80%);

  background: #fff;
  color: var(--main_color);
  padding: 3px 20px;
  font-size: 25px;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .best_inner {
    width: 90%;
    min-width: auto;
  }

  .best_time {
    font-size: 8vw;
  }

  /* .best_label {
  right: 80px;
} */
}

@media screen and (max-width: 768px) {
  .best_wrap .title {
    margin: 30px 0 60px;
  }

  .best_wrap .title h2 {
    padding-top: 40px;
  }

  .title p.lead_text {
    font-size: 16px;
    padding-top: 30px;
    line-height: 1.8;
  }

  .best_inner {
    width: 100%;
    min-width: auto;
    padding-bottom: 120px;
  }

  .best_time {
    font-size: 15vw;
    margin: 0 0 0 0;
    padding: 0 50px 20px 0;
  }

  .timeline {
    left: 20px;
    top: 3%;
  }

  .best_box {
    width: calc(100% - 60px);
    margin: 0 0 100px 60px !important;
  }

  .best_box.right,
  .best_box.left {
    margin-left: 60px;
    margin-right: 0;
  }

  .best_box.right::before,
  .best_box.left::before {
    left: -51px;
    right: auto;
    top: 35px;
    width: 24px;
    height: 24px;
  }

  .date,
  .best_competition {
    padding: 0 30px 0 20px;
  }

  .date {
    font-size: 16px;
  }

  .best_competition {
    font-size: 18px;
  }

  .best_box.right,
  .best_box.left {
    transform: translateX(50px);
  }

  .best_box.is-visible {
    transform: translateX(0);
  }
}

@media screen and (max-width: 500px) {
  .best_label {
    right: 50px;
    font-size: 18px;
  }

  .best_bg {
    margin-top: 100px;
  }
}

/*---------------------------------

  主な戦績

---------------------------------*/
.record_block {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.record_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.record_inner figure {
  width: 45%;
  flex-shrink: 0;

  opacity: 0;
  transform: translateX(-80px);

  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.record_inner figure.show {
  opacity: 1;
  transform: translateX(0);
}

.record_list {
  min-width: 0; /* flex子要素が縮まずはみ出すのを防ぐ */
}

.record_item {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 50px); /* margin-right固定→gapで管理 */
  padding: clamp(14px, 2.5vw, 25px) clamp(8px, 1.5vw, 16px);
  font-weight: 400;

  opacity: 0;
  transform: translateY(35px);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.record_item.show {
  opacity: 1;
  transform: translateY(0);
}

.record_item dt {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--main_color);
  color: #fff;
  font-size: clamp(15px, 2vw, 20px);
  padding: 0 clamp(10px, 2vw, 20px);
  height: clamp(44px, 6vw, 50px);
  flex-shrink: 0; /* dd側に押しつぶされないよう固定 */

  transform: scale(0.8);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.record_item.show dt {
  transform: scale(1);
}

.record_item dd {
  font-size: clamp(14px, 1.8vw, 18px);
}

span.winner {
  color: #c1272d;
  font-size: clamp(20px, 2.8vw, 20px);
  font-weight: 700;
}

.record_item span {
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.record_item.show .winner {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
  スマホ幅: 写真とリストを縦積みに
========================== */

@media (max-width: 767px) {
  .record_inner {
    flex-direction: column;
    align-items: stretch;
  }

  .record_inner figure {
    width: 100%;
  }

  .record_item {
    gap: clamp(16px, 5vw, 24px); /* 縦積み用に再定義 */
    padding: clamp(16px, 4vw, 20px) clamp(8px, 2vw, 12px);
  }

  .record_item dt {
    font-size: clamp(16px, 4.2vw, 20px); /* 767px時にしっかり見えるサイズへ */
    height: clamp(48px, 11vw, 56px);
    padding: 0 clamp(12px, 3vw, 16px);
  }

  .record_item dd {
    font-size: clamp(13px, 3vw, 18px);
  }

  .record_item dd span {
    font-size: clamp(22px, 6vw, 26px);
  }
}

/*---------------------------------

  一問一答

---------------------------------*/
.interview_block {
  background: #ff8039;
}

.interview_wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 150px;
}

.interview_wrap .title h2 {
  padding-top: 80px;
  color: #ffffff;
}

.interview_wrap p.sub_title {
  color: #ffffff;
}

.interview_inner {
  margin: 0 15px;
  display: flex;
  flex-direction: column;

  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.interview_slider {
  position: relative;
  padding-bottom: 70px;
}

.interview_slider.show .slick-slide:nth-child(1) .interview_inner {
  transition-delay: 0.1s;
}
.interview_slider.show .slick-slide:nth-child(2) .interview_inner {
  transition-delay: 0.25s;
}
.interview_slider.show .slick-slide:nth-child(3) .interview_inner {
  transition-delay: 0.4s;
}
.interview_slider.show .slick-slide:nth-child(4) .interview_inner {
  transition-delay: 0.55s;
}

.interview_slider.show .interview_inner {
  opacity: 1;
  transform: translateY(0);
}
.question {
  font-size: 18px;
  color: #fff;
  background: #333;
  padding: 15px 20px;
  font-weight: 400;
}

.answer {
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding: 30px;
  flex: 1;
  min-height: 220px;
}

.answer span {
  color: var(--main_color);
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
}

.answer p {
  width: 80%;
  font-size: 16px;
}

.slick-list {
  margin: 0 -15px;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto;
}

.slick-slide > div {
  height: 100%;
}

.slick-slide .interview_inner {
  height: 100%;
}

.slide-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);

  width: 50px;
  height: 50px;

  background: #333;
  border: none;
  border-radius: 50%;

  cursor: pointer;
  z-index: 10;

  transition: 0.3s;
}

.slide-arrow:hover {
  opacity: 0.8;
  transform: translateY(-50%) scale(1.08);
}

.prev-arrow {
  left: -30px;
}

.next-arrow {
  right: -30px;
}

.slide-arrow::before {
  content: "▲";

  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;

  color: #fff;
  font-size: 15px;
}

.prev-arrow::before {
  transform: rotate(-90deg);
}

.next-arrow::before {
  transform: rotate(90deg);
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li button:before {
  color: #fff;
  opacity: 0.4;
  font-size: 12px;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
}

/* -----------------------------
   Tablet
----------------------------- */
@media screen and (max-width: 1024px) {
  .interview_wrap {
    width: 92%;
    padding-bottom: 100px;
  }

  .prev-arrow {
    left: -30px;
  }

  .next-arrow {
    right: -30px;
  }
}

/* -----------------------------
   Smartphone
----------------------------- */
@media screen and (max-width: 768px) {
  .interview_wrap {
    width: 90%;
    padding-bottom: 80px;
  }

  .interview_wrap .title h2 {
    padding-top: 60px;
  }

  .interview_inner {
    margin: 0 8px;
  }

  .slick-list {
    margin: 0 -8px;
  }

  .question {
    font-size: 16px;
    padding: 14px 18px;
    line-height: 1.6;
  }

  .answer {
    padding: 20px;
    min-height: auto;
    gap: 15px;
  }

  .answer span {
    font-size: 30px;
    flex-shrink: 0;
  }

  .answer p {
    width: 100%;
    font-size: 15px;
    line-height: 1.8;
  }

  .slide-arrow {
    width: 40px;
    height: 40px;
  }

  .slide-arrow::before {
    font-size: 24px;
  }

  .prev-arrow {
    left: -5px;
  }

  .next-arrow {
    right: -5px;
  }
}

/* -----------------------------
   Small Smartphone
----------------------------- */
@media screen and (max-width: 480px) {
  .interview_wrap {
    width: 92%;
    padding-bottom: 60px;
  }

  .interview_wrap .title h2 {
    padding-top: 50px;
  }

  .question {
    font-size: 15px;
    padding: 12px 15px;
  }

  .answer {
    padding: 18px;
    gap: 12px;
  }

  .answer span {
    font-size: 24px;
  }

  .answer p {
    font-size: 14px;
    line-height: 1.7;
  }

  .slide-arrow {
    width: 34px;
    height: 34px;
  }

  .slide-arrow::before {
    font-size: 20px;
  }

  .prev-arrow {
    left: -2px;
  }

  .next-arrow {
    right: -2px;
  }
}

/*---------------------------------

  Instagram

---------------------------------*/

.instagram_block {
  position: relative;
}

.instagram_bg {
  position: absolute;
  inset: 0;
  background: url(../images/instagram_bg.jpg) center/cover;
  z-index: -1;
}

.instagram_wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 150px;
}

.instagram_wrap .title {
  margin: 0px 0px;
}

.instagram_wrap .title h2 {
  font-size: 150px;
  padding-top: 80px;
  color: #ffffff;
  line-height: 1.5;
}

.instagram_wrap p.sub_title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
}

.instagram_inner {
  display: flex;
  align-items: center;
  width: 70%;
  margin: auto;
  justify-content: space-between;
}

.instagram_username {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 45%;

  opacity: 0;
  transform: translateX(-60px);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.instagram_inner.show .instagram_username {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.7s;
}

.instagram_username img {
  width: 70px;
}

.instagram_username a {
  font-size: 30px;
  color: #fff;
}

.instagram_inner figure {
  width: 200px;

  opacity: 0;
  transform: scale(0.8);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.instagram_inner.show figure {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1s;
}

/* -----------------------------
   Tablet
----------------------------- */
@media screen and (max-width: 1024px) {
  .instagram_wrap {
    width: 92%;
    padding-bottom: 100px;
  }

  .instagram_wrap .title h2 {
    font-size: 110px;
    padding-top: 60px;
  }

  .instagram_wrap p.sub_title {
    font-size: 18px;
  }

  .instagram_inner {
    width: 90%;
    gap: 50px;
  }

  .instagram_username {
    width: auto;
    gap: 20px;
    justify-content: flex-start;
  }
}

/* -----------------------------
   Smartphone
----------------------------- */
@media screen and (max-width: 768px) {
  .instagram_wrap {
    width: 90%;
    padding-bottom: 80px;
  }

  .instagram_wrap .title h2 {
    font-size: 70px;
    padding-top: 50px;
  }

  .instagram_wrap p.sub_title {
    font-size: 16px;
    line-height: 1.8;
  }

  .instagram_inner {
    flex-direction: column;
    width: 100%;
    gap: 40px;
    margin-top: 50px;
  }

  .instagram_username {
    width: auto;
    justify-content: center;
    gap: 15px;
  }

  .instagram_username img {
    width: 55px;
  }

  .instagram_username a {
    font-size: 24px;
  }

  .instagram_inner figure {
    width: 180px;
  }
}

/* -----------------------------
   Small Smartphone
----------------------------- */
@media screen and (max-width: 480px) {
  .instagram_wrap {
    width: 92%;
    padding-bottom: 60px;
  }

  .instagram_wrap .title h2 {
    font-size: 52px;
  }

  .instagram_wrap p.sub_title {
    font-size: 14px;
    line-height: 1.7;
  }

  .instagram_username img {
    width: 45px;
  }

  .instagram_username a {
    font-size: 20px;
  }

  .instagram_inner figure {
    width: 150px;
  }
}

/*------------------------------

	pagetop

------------------------------*/
.page_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 30;
}

.page_top a {
  background: var(--main_color);
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 14px;
  position: relative;
  text-decoration: none;
  height: 3rem;
  line-height: 3rem;
  padding: 0 0.7rem;
}

/* キャラクターをボタンの上に配置 */
.page_top a::before {
  content: "";
  background-image: url("../images/HITOUCH-C_01.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: -20%;
  left: 0%;
  width: 150px;
  height: 230px;
  pointer-events: none; /* クリック判定をボタン本体に残す */
}

.page_top a .arrow {
  display: inline-block;
  margin-right: 5px;
  transform: rotate(90deg);
}

.page_top a .arrow::before {
  content: "";
  background: url("../images/arrow_pagetop.svg") no-repeat center / contain;
  display: block;
  width: 15px;
  height: 10px;
}

.page_top a:hover {
  opacity: 0.8;
  text-decoration: none;
}
