@charset "UTF-8";

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  font-family: "Kozuka Gothic Pr6N", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #231815;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 768px) {
  .inner {
    padding: 0 20px; /* Simplify padding for mobile */
  }
}

.header {
  padding-bottom: 90px;
  background-color: #9fa0a0;
}

@media (max-width: 768px) {
  .header {
    padding-bottom: 45px;
  }
}

.header-inner {
  display: flex;
  padding-top: 40px;
  max-width: 1000px;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.logo-top img {
  max-width: 100px;
}

.mv-padding {
  padding-bottom: 600px;
}

.f_b {
  font-weight: bold;
}

/*------------------------
mv
--------------------------*/

.is-pc {
  display: block;
}
.is-sp {
  display: none;
}

.mv {
  position: relative;
  z-index: 2;
  background-color: #9fa0a0;
}

.mv_wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  /* 通常は1000px、1500px～1800pxの間でなめらかに1300pxまで広がる */
  max-width: clamp(
    1000px,
    calc(1000px + (300 * ((100vw - 1500px) / (1800 - 1500)))),
    1300px
  );
}

.mv_left,
.mv_right {
  position: relative;
  min-width: 0;
}

.mv_left {
  flex: 1 1 70%;
  padding-right: 20px;
}

.mv_right {
  flex: 1 1 30%;
}

.mv_left .title img,
.mv_left .text img,
.mv_right .img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.title {
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .title {
    padding-bottom: 0;
  }
}

.mv_logo {
  max-width: min(500px, 30%);
  margin: 0 auto;
  text-align: center;
  padding-top: 60px;
  position: relative;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-delay: 1.7s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.mv_logo img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: inline-block;
}

.mv_bg {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

@media (max-width: 2000px) {
  .pc-contact {
    position: fixed;
    bottom: 80px;
    right: 0px;
    z-index: 10;
  }
}
@media only screen and (max-width: 768px) {
  .pc-contact {
    display: none;
  }
}
@media only screen and (min-width: 500px) {
  .for-sp {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  nav.gnav ul li a img {
    height: 8vw;
  }

  nav.gnav {
    padding: 15vw 10vw 40vw 10vw;
  }

  /*メニューをページ下部に固定*/
  #sp-fixed-menu {
    position: fixed;
    width: 100%;
    bottom: 0px;
    font-size: 0;
    opacity: 0.9;
    z-index: 1;
  }

  /*メニューを横並びにする*/
  #sp-fixed-menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  #sp-fixed-menu li {
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 0;
    margin: 0;
    font-size: 14px;
    border-right: 1px solid #fff;
  }

  /*左側メニューを緑色に*/
  #sp-fixed-menu li:first-child {
    background: #000;
  }

  /*左側メニューをオレンジ色に*/
  #sp-fixed-menu li:last-child {
    background: #000;
  }

  /*ボタンを調整*/
  #sp-fixed-menu li a {
    color: #fff;
    text-align: center;
    display: block;
    width: 100%;
    padding: 20px;
  }
}

@media (max-width: 1100px) {
  .mv_bg {
    top: 150px;
  }
}

@media (min-width: 1800px) and (max-width: 2000px) {
  .mv_bg {
    top: -80px;
  }
}

@media (min-width: 2000px) and (max-width: 2700px) {
  .mv_bg {
    top: -160px;
  }
}

@media (min-width: 2700px) and (max-width: 3000px) {
  .mv_bg {
    top: -300px;
  }
}

.mv_bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*------------------------
animation
--------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-item {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1.2s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.logo-top {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.mv_left .title {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-delay: 0.7s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.mv_left .text {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.mv_right .img {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-delay: 0.7s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.fade-in-item-seq {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

/*------------------------
responsive（SP用）
--------------------------*/
@media (max-width: 768px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
    position: relative;
  }

  .mv_wrapper_sp {
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mv_wrapper_sp .title {
    margin-bottom: 20px;
  }
  .mv_wrapper_sp img {
    width: 100%;
    height: auto;
  }

  .mv_logo {
    max-width: 300px;
    width: 80%;
    margin-top: 40px;
    padding-top: 0;
  }

  .mv_bg {
    position: absolute;
    top: 300px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
  }

  .mv_bg img {
    width: 100%;
    height: auto;
  }

  .mv_bg {
    animation-delay: 0s;
  }
  .logo-top {
    animation-delay: 0.3s;
  }
  .mv_logo {
    animation-delay: 1s;
  }

  .is-sp .title,
  .is-sp .text_img {
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    position: relative;
    z-index: 10;
  }

  .is-sp .title {
    animation-delay: 0.6s;
  }
  .is-sp .text_img {
    animation-delay: 1s;
  }
}

@media (max-width: 550px) {
  .mv_bg {
    top: 250px;
  }
}

@media (max-width: 480px) {
  .mv_wrapper_sp {
    padding: 0 30px;
  }

  .inner {
    padding: 40px 30px 0;
  }

  .mv_bg {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 320px) {
  .mv_bg {
    top: 150px;
  }
}

/*---h3---*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.is-sp .mv_bg {
  will-change: transform, opacity;
}

.is-sp .mv_bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  backface-visibility: hidden;
}

/*------------------------
reason
--------------------------*/
.reason {
  background-color: #fff;
  position: relative;
  clip-path: polygon(0 0%, 100% 0, 100% 100%, 0% 100%);
  padding-bottom: 45px;
  padding-top: 1000px;
}

.reason {
  padding-top: clamp(
    300px,
    calc(300px + (800 - 300) * ((100vw - 900px) / (1800 - 900))),
    800px
  );
}

@media (min-width: 1800px) and (max-width: 1900px) {
  .reason {
    padding-top: clamp(
      800px,
      calc(800px + (850 - 800) * ((100vw - 1800px) / (1900 - 1800))),
      850px
    );
  }
}

@media (min-width: 1601px) and (max-width: 1800px) {
  .reason {
    padding-top: clamp(
      800px,
      calc(800px + (900 - 800) * ((100vw - 1601px) / (1800 - 1601))),
      900px
    );
  }
}

@media (min-width: 1301px) and (max-width: 1600px) {
  .reason {
    padding-top: clamp(
      620px,
      calc(620px + (800 - 620) * ((100vw - 1301px) / (1600 - 1301))),
      800px
    );
  }
}

@media (min-width: 1001px) and (max-width: 1300px) {
  .reason {
    padding-top: clamp(
      500px,
      calc(500px + (600 - 500) * ((100vw - 1001px) / (1300 - 1001))),
      600px
    );
  }
}

@media (min-width: 861px) and (max-width: 1000px) {
  .reason {
    padding-top: clamp(
      400px,
      calc(400px + (450 - 400) * ((100vw - 861px) / (1000 - 861))),
      450px
    );
  }
}

@media (min-width: 769px) and (max-width: 860px) {
  .reason {
    padding-top: clamp(
      400px,
      calc(400px + (420 - 400) * ((100vw - 769px) / (860 - 769))),
      420px
    );
  }
}

@media (max-width: 768px) {
  .reason {
    padding-top: clamp(
      350px,
      calc(350px + (600 - 350) * ((100vw - 320px) / (768 - 320))),
      600px
    );
    padding-bottom: 100px;
  }
}

@media (max-width: 480px) {
  .reason {
    padding-bottom: 60px;
    padding-top: clamp(
      250px,
      calc(250px + (300 - 250) * ((100vw - 320px) / (480 - 320))),
      300px
    );
  }
}

@media (min-width: 1800px) and (max-width: 2000px) {
  .reason {
    padding-top: clamp(
      750px,
      calc(750px + (900 - 750) * ((100vw - 1800px) / (2000 - 1800))),
      900px
    );
  }
}

@media (min-width: 2000px) and (max-width: 2300px) {
  .reason {
    padding-top: clamp(
      750px,
      calc(750px + (960 - 750) * ((100vw - 2000px) / (2300 - 2000))),
      960px
    );
  }
}

@media (min-width: 2300px) and (max-width: 2500px) {
  .reason {
    padding-top: clamp(
      1000px,
      calc(1000px + (1100 - 1000) * ((100vw - 2300px) / (2500 - 2300))),
      1100px
    );
  }
}

@media (min-width: 2500px) and (max-width: 3000px) {
  .reason {
    padding-top: clamp(
      1100px,
      calc(1100px + (1400 - 1100) * ((100vw - 2500px) / (3000 - 2500))),
      1400px
    );
  }
}

@media (max-width: 320px) {
  .reason {
    padding-bottom: 60px;
    padding-top: 200px;
  }
}

.reason-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 100px);
  align-items: start;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .reason-wrap {
    grid-template-columns: 1fr; /* ← 1列にする */
    gap: 40px; /* 必要に応じて隙間を少し狭く */
  }
}

.reason-title {
  font-size: clamp(18px, 3vw + 6px, 24px);
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 2rem;
}

.reason-text p {
  font-size: clamp(1rem, 3.33vw, 1.08rem);
  line-height: 1.8;
  text-align: justify;
}

.reason-bottom-text {
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .reason-bottom-text {
    width: 100%;
  }
}

.r_text {
  margin-top: 1rem;
}

.reason-img {
  display: flex;
  justify-content: space-between; /* 均等配置 */
  align-items: center; /* 中央揃え */
  flex-direction: row; /* 横並びに変更 */
  gap: 16px;
  margin-top: 2rem;
}

.reason-img img {
  width: 100%; /* 親要素(picture)に合わせて最大化 */
  height: auto;
}

@media screen and (max-width: 768px) {
  .reason-img {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .reason-img img {
    width: 100%;
    height: auto;
  }
}
.reason-arrow {
  width: 50px;
  margin-top: 2rem; /* 4remから調整 */
}

.reason-wrap .reason-item:nth-child(2) {
  margin-top: -8em;
}

@media screen and (max-width: 768px) {
  .reason-wrap .reason-item:nth-child(2) {
    margin-top: 0;
  }
}

/*------------------------
point
--------------------------*/
.point {
  position: relative;
  background-color: #005b9a;
  padding: 30px 0;
}

.section-title {
  position: relative;
  z-index: 2;
}

.section-logo {
  max-width: 190px;
}

.point-img {
  position: absolute;
  top: 0;
  right: 0;
}

/* 2000px 以上は固定 */
@media screen and (min-width: 1700px) {
  .point-img {
    max-width: 100%;
  }
}

@media screen and (min-width: 1300px) and (max-width: 1600px) {
  .point-img {
    max-width: 80%;
    top: 0;
  }
}

@media screen and (max-width: 1300px) {
  .point-img {
    max-width: 50%;
    top: 0;
  }
}

@media (max-width: 768px) {
  .point-img {
    position: absolute;
    margin: 0 auto;
    max-width: 100%;
  }
}

.point-img-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .section-title,
  .section-logo,
  .point-img {
    display: none;
  }

  .point-img-sp {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .point > .inner {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .point {
    padding: 0;
  }
}

.color-white {
  background-color: #fff;
}

.color-bule {
  background-color: #005b9a;
}

.color-gray {
  background-color: #9fa0a0;
}

.text-white {
  color: #fff;
}

.point-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, auto);
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .point-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.point-bottom-flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
}

.point-title img {
  padding-bottom: 30px;
}

.point-text.point-shift h5 {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.point-left .point-text h5,
.point-right .point-text h5 {
  font-size: clamp(
    20px,
    calc(20px + (24 - 20) * ((100vw - 420px) / (1000 - 420))),
    24px
  );
}

.point-text-bottom {
  max-width: 350px;
  line-height: 1.8;
  font-size: 0.916rem;
  letter-spacing: 0.05em;
  text-align: justify;
}

.point-text-bottom2 {
  max-width: 500px;
}

@media screen and (max-width: 768px) {
  .point-text-bottom,
  .point-text-bottom2 {
    max-width: none;
    padding-right: 3.4375rem;
    text-align: justify;
  }
}

@media screen and (max-width: 420px) {
  .point-text-bottom,
  .point-text-bottom2 {
    padding-right: 0;
  }
}

.point-small-img {
  flex-shrink: 0;
  max-width: 18%;
}

@media screen and (max-width: 768px) {
  .point-small-img {
    display: none;
  }
}

.point-small-img-sp-only {
  max-width: 22%;
}

.point-title2 {
  position: relative;
}

@media screen and (max-width: 768px) {
  .point-title,
  .point-title2 {
    max-width: none;
    width: 100%;
    display: block;
  }
}

.point-text h5 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 1rem;
}

.point-text-6 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.point-text-6 img {
  padding-right: 1rem;
}

.point-text-6 .point_text_flex {
  flex: 0 0 240px;
}

@media screen and (max-width: 768px) {
  .point-text-6 .point_text_flex {
    flex: none;
    width: 100%;
  }

  .point-text-6 img {
    padding-right: 0;
  }
}

.point-left {
  min-height: 550px;
  max-width: 600px;
  padding: 20px 20px 20px 60px;
  margin-left: auto;
  margin-right: 0;
}

.point-right {
  max-width: 600px;
  min-height: 550px;
  padding: 20px 50px 60px 20px;
  margin-right: auto;
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .point-left,
  .point-right {
    max-width: none;
    min-height: auto;
    width: 100%;
    padding: 40px 60px 60px 60px;
  }
}

@media screen and (max-width: 480px) {
  .point-left,
  .point-right {
    padding: 40px 30px 50px 30px;
  }
}

.point-right-7 {
  max-width: 100%;
}

.point-shift {
  position: absolute;
  top: 100%;
  left: clamp(50px, calc(40px + (100 - 50) * ((100vw - 768px) / 232)), 100px);
}

@media screen and (max-width: 768px) {
  .point-item.color-white {
    display: flex;
    justify-content: flex-end;
  }

  .point-shift {
    position: static;
    top: 100%;
    left: 0;
  }
}

.point-item5 {
  background-image: url("../images/pc/point-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .point-item5 {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
  }
}

.point-title-text-flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.point-title-7,
.point-text-7 {
  flex: 1;
  box-sizing: border-box;
}

.point-title-7 {
  max-width: 280px;
  min-width: 160px;
  margin-right: auto;
  margin-left: 0;
}

.point-text-7 {
  margin-top: 90px;
}

.point-text-bottom-7 {
  max-width: 250px;
}

@media screen and (max-width: 768px) {
  .point-title-text-flex {
    flex-direction: column;
    align-items: center;
  }

  .point-title-7,
  .point-text-7 {
    max-width: none;
    min-width: auto;
    width: 100%;
    margin: 0;
    align-self: flex-end;
  }

  .point-text-7 {
    margin-top: 20px;
  }

  .point-text-bottom-7 {
    max-width: 100%;
  }
}

.point-img-flex {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .point-img-flex {
    gap: 20px;
  }
}

@media screen and (max-width: 420px) {
  .point-img-flex {
    gap: 8px;
  }
}

.point-smal-top-img {
  max-width: 21%;
  height: auto;
  display: none;
}

.point-img-flex h5 {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .point-smal-top-img {
    display: block;
  }
}

.tab-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .tab-br {
    display: block;
    width: 100%;
    height: 0;
  }
}

@media screen and (max-width: 335px) {
  .tab-br {
    display: none;
  }
  .point-img-flex h5 {
    padding-bottom: 0;
  }
}

.sp-point-flex {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 480px) {
  .sp-point-flex {
    gap: 8px;
  }
}

.sp-point-flex-img {
  display: block;
  max-width: 20%;
  padding-bottom: 0.8rem;
}

@media screen and (min-width: 769px) {
  .sp-point-flex-img {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .point-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "item1 item2"
      "item3 item4"
      "left5 bg5"
      "item6 item7"
      "item8 item9";
  }

  #item1 {
    grid-area: item1;
  }
  #item2 {
    grid-area: item2;
  }
  #item3 {
    grid-area: item3;
  }
  #item4 {
    grid-area: item4;
  }
  .flex-5 > .point-item {
    grid-area: left5;
  }
  .point-item5 {
    grid-area: bg5;
  }
  #item6 {
    grid-area: item6;
  }
  #item7 {
    grid-area: item7;
  }
  #item8 {
    grid-area: item8;
  }
  #item9 {
    grid-area: item9;
  }
}

@media screen and (max-width: 767px) {
  .point-wrap {
    display: flex;
    flex-direction: column;
  }
}

/*-------------------------------------------
textarea
-------------------------------------------*/

.text-area {
  background-color: #fff;
  padding: 70px 0 200px 0;
  position: relative;
}

.text-img1 img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto 90px;
}

.text-area-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.text-img2 img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 0 120px;
  box-sizing: border-box;
}

@media screen and (max-width: 420px) {
  .text-img2 img {
    padding: 0 30px;
  }
}

@media screen and (max-width: 768px) {
  .text-img1 img {
    width: 100%;
  }
  .text-img2 img {
    width: 100%;
    max-width: none;
  }
}

/*-------------------------------------------
interview
-------------------------------------------*/
.interview {
  background-color: #9fa0a0;
  padding: 80px 20px;
}

@media screen and (max-width: 420px) {
  .interview {
    padding: 0 20px;
  }
}

.interview-top {
  padding-bottom: 1.2rem;
}

.interview-top p {
  font-size: 1.5rem;
  font-weight: bold;
}

.interview-inner {
  background-color: #fff;
  max-width: 1200px;
  padding: 60px 90px 90px;
  margin: 0 auto;
  position: relative;
  top: 0;
  z-index: 1;
}

.interview-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.i-left {
  flex: 1 1 38%;
}

.i-right {
  flex: 1 1 62%;
}

.name-top {
  padding: 10px 0;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.name-bottom {
  font-weight: bold;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.interview-title {
  font-size: clamp(18px, 2vw + 12px, 30px);
  font-feature-settings: "palt";
  font-weight: bold;
  padding-bottom: 30px;
}

.message {
  font-size: 0.875rem;
  line-height: 2;
  text-align: justify;
}

.title1 {
  position: relative;
  display: inline-block;
  line-height: 1.5;
  padding-bottom: 5px;
}

.title1::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #231815;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
  .interview-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .i-left,
  .i-right {
    flex: unset;
    width: 100%;
  }

  .interview-inner {
    padding: 40px 40px 70px;
  }

  .message {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.movie-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media screen and (max-width: 420px) {
  .interview-inner {
    padding: 40px 20px 70px;
  }

  .movie-inner {
    padding: 50px 30px;
  }
}

.movie-youtube,
.local-movie {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.movie-youtube iframe,
.local-movie video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/*-------------------------------------------
spec
-------------------------------------------*/
.main-bottom {
  background-color: #9fa0a0;
}

.spec {
  margin: 40px 0 60px;
}

@media screen and (max-width: 768px) {
  .spec .inner {
    width: 70%;
    max-width: none;
    padding: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 420px) {
  .spec .inner {
    width: 100%;
    padding: 0 20px;
  }
}

.spec-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  padding-bottom: 30px;
}

.spec-flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 50px;
}

@media (max-width: 768px) {
  .spec-flex {
    flex-direction: column;
    gap: 40px;
  }
}

.spec-block {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.spec-top {
  padding-bottom: 1rem;
  font-weight: 700;
}

.spec-wraper {
  border-top: solid 1.5px #231815;
  border-bottom: solid 1.5px #231815;
  padding: 20px 0;
  flex: 1;
}

.spec-size {
  font-weight: 500;
  padding-bottom: 1rem;
  font-size: 1rem;
}

.spec-list li {
  font-weight: 400;
  line-height: 2.4;
  font-size: 0.9rem;
}

@media screen and (max-width: 425px) {
  .spec-list li {
    line-height: 1.8;
  }
}

.list-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1rem;
}

.spec-list-right {
  display: grid;
  grid-template-columns: 1fr auto;
  font-size: 0.9rem;
  column-gap: 16px;
  width: 100%;
}

.spec-list-right dt {
  position: relative;
  padding: 10px 0;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}

.spec-list-right dd {
  position: relative;
  padding: 10px 0;
  line-height: 1.6;
  font-weight: 400;
  text-align: right;
}

.spec-list-right dt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px dashed #231815;
}

.spec-list-right dd::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -15px;
  width: calc(100% + 17px);
  border-bottom: 1px dashed #231815;
  z-index: -1;
}

.spec-list-right dt:last-of-type::after,
.spec-list-right dd:last-of-type::before {
  border-bottom: none;
}

.main-bottom-logo {
  width: 100px;
  height: auto;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.main-bottom-logo img {
  display: inline-block;
}

.btn-area-inner {
  max-width: 1200px;
  padding: 80px 60px 120px;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .btn-area-inner {
    padding: 100px 30px 80px;
  }
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

@media screen and (max-width: 768px) {
  .cta-flex {
    flex-direction: column;
    gap: 2rem;
  }
}

/*-------------------------------------------
footer
-------------------------------------------*/
.footer {
  background-color: #fff;
  text-align: center;
  padding: 40px 30px 150px 30px;
  z-index: 5000;
}

.footer-top-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.company-name {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: bold;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 60px;
}

.company-date,
.footer-bottom {
  line-height: 1.7;
  font-size: clamp(14px, 1vw + 0.5rem, 16px);
}

.btn-area-inner a:not(.cta-button) {
  display: inline-block;
  background: transparent;
  text-decoration: none;
}

.btn-area-inner a img {
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border-radius: 40px;
}

.btn-area-inner a:hover img {
  transform: translateY(-2px);
  opacity: 0.9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/*-------------------------------------------
br
-------------------------------------------*/

.tab_br,
.tab_makes-br,
.tab_sp_br,
.sp_br {
  display: none;
}

/* タブレット：426px〜768px */
@media screen and (max-width: 768px) {
  .tab_br,
  .tab_sp_br,
  .tab_makes-br {
    display: block;
  }

  .footer-none {
    display: none;
  }
}

/* スマホ：〜425px */
@media screen and (max-width: 425px) {
  .sp_br {
    display: block;
  }
}

.makes {
  display: inline-block;
  font-feature-settings: "palt";
}

@media screen and (max-width: 303px) {
  .tab_sp_br {
    display: none;
  }
}

/*------------------------
Main CTA Button Styles
--------------------------*/
.cta-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 490px;
  min-height: 60px;
  text-align: center;
}

.cta-button--primary {
  background: linear-gradient(135deg, #edca34 0%, #d4b52e 100%);
  color: #231815;
  box-shadow: 0 4px 15px rgba(237, 202, 52, 0.3);
  border: 3px solid #fff;
}

.cta-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(237, 202, 52, 0.4);
}

.cta-button--secondary {
  background: #fff;
  color: #231815;
  border: 3px solid #edca34;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button--secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: #fffef5;
}

.cta-button__small {
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 500;
  margin-bottom: 4px;
  opacity: 0.9;
}

.cta-button__main {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .cta-button {
    padding: 16px 24px;
    max-width: 100%;
  }

  .cta-button__main {
    font-size: 16px;
  }

  .cta-button__small {
    font-size: 12px;
  }
}

/*-------------------------------------------
 HTML化 Features & Campaign
-------------------------------------------*/
.features-wrapper,
.campaign-wrapper {
  margin-bottom: 80px;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background-color: #005b9a;
  color: #fff;
  padding: 50px 30px;
  flex: 1;
  text-align: center;
  border-radius: 4px; /* Slightly rounded corners if needed */
}

.feature-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.icon-circle {
/* Removed CSS icon style */
  display: none; 
}


/* Image Icon Style */
.feature-icon img {
  width: 140px;
  max-width: 100%;
  height: 140px;
  object-fit: contain;
}

/* Fine-tune position for FULL ORDER icon */
.features-grid .feature-card:first-child .feature-icon img {
  transform: translateY(-20px);
}


.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 20px;
  display: inline-block;
  width: 100%;
}

.feature-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: left;
}

.feature-desc .note {
  font-size: 0.8rem;
  display: block;
  margin-top: 0.5em;
  opacity: 0.9;
}


/* Campaign Section */
.campaign-wrapper {
  max-width: 1000px;
  margin: 0 auto 100px;
  position: relative;
}

.campaign-header {
  position: relative;
  margin-bottom: 50px;
}

/* Badge Style for 'Station Spot 東京フェア出展記念' */

/* Badge Style (Image version) */
.campaign-badge-img {
  width: 250px; /* Adjust based on actual image ratio if necessary */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
}

.campaign-badge-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* PC Layout: Badge is absolute or float? 
   The design suggests it's on the left. Let's use Flex or Grid.
*/
.campaign-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-left: 220px; /* Space for the badge on the left */
}

/* Re-adjusting layout structure for badge position */
.campaign-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}




.campaign-item {
  flex: 1;
}

.campaign-title {
  color: #005b9a;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #005b9a;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.campaign-num {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #333;
}

.campaign-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #333;
}


/* Responsive */
@media screen and (max-width: 900px) {
  .features-grid {
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto; /* Center alignment */
  }
  
  .campaign-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .campaign-grid {
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin: 0 auto; /* Center alignment */
  }
  
  .campaign-badge-img {
    width: 300px; /* Enlarge map image */
    max-width: 100%; /* Ensure it doesn't overflow */
    margin-bottom: 30px;
  }
}
