/*
Theme Name: Achievement LP Theme
Author: 
Version: 1.0
*/
:root{
  --main-color:#D61518;
  --main-color:#d80c18;
  --text-color:#241714;
  --gray-color:#f9f7f5;
}

/*html {
    scroll-behavior: smooth;
}*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size:clamp(16px, 16 / 767 * 100vw ,18px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size:clamp(14px, 14 / 500 * 100vw ,16px);
  }
}
*{
  box-sizing: border-box;
}
::selection {
  background-color: #e1e1e1; 
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
p{
  margin: 0;
}
hr {
    height: 1px !important;
    background-color: #d5d5d5;
    border: none;
}

main.lp{
  overflow-x: hidden;
}
.container{
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .container{
    padding: 0 20px;
  }
}
@media screen and (max-width: 370px) {
  .container{
    padding: 0 15px;
  }
}

/*---------------------*/
/* 共通設定             */
/*---------------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  margin: 0;
  padding: 0;
  text-align: center;
}

img{
  vertical-align: bottom;
}
a{
  text-decoration: none;
  color: var(--text-color);
}

.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  color: #fff;
  background-color: var(--main-color);
  transition: 0.3s;
}
.btn:hover{
  opacity: 0.7;
}

.btn-border{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: solid 1px #241714;
  color: var(--text-color);
  background-color: #fff;
  font-size: 16px;  
  font-weight: 500;
  width: 210px;
  height: 46px;
  margin: 30px auto 0;
  transition: 0.3s;
    cursor: pointer;
}
.btn-border:hover{
  background-color: #000;
  color: #fff;
}
@media screen and (max-width: 580px) {
  .btn-border{
    font-size:clamp(13px, 3.4vw ,16px);
    max-width: 210px;
    width: 48vw;
    min-width: 180px;
    height: auto;
    aspect-ratio: 180/40;
  }
}
.break{
  display: inline-block;
}
.sp-only{
  display: none;
}

/*見出し*/
.heading-large{
  font-size:clamp(38px, 54 / 1920 * 100vw ,54px);
  font-weight: bold;
  line-height: 1.33;
  margin-bottom: 62px;
}
.heading-middle{
  font-size:clamp(28px, 28 / 767 * 100vw ,40px);
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 63px;
}
.heading-lead{
  font-size:clamp(20px, 24 / 1920 * 100vw ,24px);
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .heading-large{
    font-size:clamp(23px, 42 / 767 * 100vw ,42px);
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .heading-middle{
    font-size:clamp(20px, 20 / 450 * 100vw ,28px);
    margin-bottom: 26px;
  }
  .heading-lead{
    font-size:clamp(16px, 16 / 450 * 100vw ,20px);
  }
}
/*フォントサイズ*/
.fs40{
  font-size: 40px;
}
.fs36{
  font-size:clamp(20px, 20 / 767 * 100vw ,36px);
}
.fs28{
  font-size:clamp(18px, 18 / 500 * 100vw ,28px);
}
.fs24{
   font-size:clamp(16px, 16 / 600 * 100vw ,24px);
}

.ls-0{
  letter-spacing: 0;
}

.red{
  color: var(--main-color);
}
.white{
  color: #fff;
}
.center{
  text-align: center;
}

.oswald{
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

/*---------------------*/
/* 共通ヘッダーナビ設定   */
/*---------------------*/
.header-nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  max-width: 2000px;
  width: 96%;
  height: 55px;
  box-shadow: -1px 1px 15px 0 rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  margin: 15px auto 0;
  position: fixed;
  z-index: 10;
  background-color: #ffffff;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}
.header-nav.is-hidden {
  transform: translateY(-100px) translateX(-50%);
}
.header-nav-list{
  display: flex;
  gap: 37px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav-list li a{
  font-size:clamp(13px, 13 / 1200 * 100vw ,16px);
}
.header-nav-list li a:hover{
  color: #d80c18;
}
.btn-contact{
  width: 140px;
  height: 35px;
}
.header-nav-list li a.btn-contact:hover{
  color: #fff ;
}
.fv-logo{
  max-width: 346px;
  width: 18vw;
}
.hamburger{
  display: none;
}
.header-nav-sp{
  display: none;
}


@media screen and (max-width: 1440px) {
  .header-nav {
    padding: 10px 18px;
  }
  .header-nav-list{
    display: flex;
    gap: 1.5em;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width: 1280px) {
  .header-nav{
    width: 99%;
  }
  .header-nav-list{
    gap: 16px;
  }
  .btn-contact {
      width: 110px;
  }
}

/*SPメニュー*/
@media screen and (max-width: 999px) {
  .header-nav{
    width: 92%;
    height: 55px;
    margin: 8px auto 0;
  }
  .fv-logo {
    max-width: 346px;
    width: 60vw;
  }
  .header-nav-list{
    display: none;
  }
}


/********/
/* SPのみ表示 */
@media (max-width: 999px) {

  .header-nav-sp {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: right 0.3s ease;
    z-index: 999;
    padding: 20px 20px;
  }
  .header-nav-sp.is-open {
    right: 0;
  }
  .sp-nav-wrapper{
        width: 92%;
        margin: auto;
  }
  .hamburger {
    display: block;
    position: fixed;
    top: 23px;
    right: 70px;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1000;
  }

  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--main-color);
    transition: 0.3s;
  }

  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: 10px; }
  .hamburger span:nth-child(3) { top: 20px; }

  /* ×アニメーション */
  .hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }

  /* 背景スクロール停止 */
  body.is-fixed {
    overflow: hidden;
  }

  .sp-nav-list{
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 50px 0 0;
    padding: 0;
    font-size:clamp(14px, 14 / 420 * 100vw ,20px);
    border-top: solid 1px #d5d5d5;
  }
  .sp-nav-list li{
    border-bottom: solid 1px #d5d5d5;
  }
  .sp-nav-list a{
    padding: 1.5em 0;
    width: 100%;
    display: block;
  }
  .btn-contact {
    max-width: 400px;
    width: 60vw;
    height: auto;
    aspect-ratio: 265/55;
    font-size: clamp(14px, 14 / 420 * 100vw ,22px);
    margin: 40px auto 0;
      box-shadow: 3px 2px 4px 0 rgba(0, 0, 0, 0.3);

  }
}

@media screen and (max-width: 767px) {
  .hamburger {
      right: 58px;
  }
}

@media screen and (max-width: 600px) {
  .header-nav{
    height: 50px;
  }
  .hamburger {
      width: 28px;
      top: 22px;
      right: 45px;
  }
  .hamburger span{
    height: 2px;
  }
  
  .hamburger span:nth-child(1) { top: 2px; }
  .hamburger span:nth-child(2) { top: 10px; }
  .hamburger span:nth-child(3) { top: 18px; }
  .hamburger.is-active span:nth-child(1) {
      top: 13px;
    }
    .hamburger.is-active span:nth-child(3) {
      top: 13px;
    }
}
@media screen and (max-width: 500px) {
  .header-nav{    
    width: 96%;
    height: 45px;
  }
  .hamburger {
      width: 25px;
      top: 19px;
      right: 28px;
  }
  .sp-nav-wrapper {
    width: 96%;
  }
  .sp-nav-list a{
    padding: 25px 0;
  }
  .btn-contact {
    width: 265px;
  }
}
/*-----------------------*/
/* 共通CTAセクション       */
/*-----------------------*/
.section-cta{
  background-color: var(--gray-color);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.cta-flame{
  background-color: #fff;
  padding: 56px 30px 122px;
  max-width: 1160px;
  margin: auto;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;

}
.cta-title{
  font-size:clamp(26px, 26 / 1200 * 100vw ,36px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.cta-text{
  font-size:clamp(18px, 18 / 1200 * 100vw ,22px);
  width: fit-content;
  margin: auto;
}
.cta-btn-wrap{
  display: flex;
  justify-content: center;
  gap: 75px;
  margin-top: 54px;
}
.box-red{
  width: 490px;
}
.box-black{
  width: 420px;
}
.box-red,
.box-black{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-flame .btn{
  width: 100%;
  min-width: 0;
  height: 87px;
  font-size:clamp(20px, 20 / 1200 * 100vw ,24px);
  line-height: 1.33;
  text-align: center;
  justify-content: space-between;
  padding: 10px 20px 10px 60px;
  box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.3);
}
.box-black .btn{
  background-color: #000;
}
.arrow-right{
  background-image: url('data:image/svg+xml,%3Csvg width=%2240%22 height=%2240%22 viewBox=%220 0 40 40%22 fill=%22none%22 xmlns=%22http://www.w3.org/2000/svg%22%3E %3Cg clip-path=%22url(%23clip0_9_8)%22%3E %3Cpath fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 d=%22M19.1 0C31.046 0 39.1 8.954 39.1 20C39.1 31.046 31.046 39.1 19.1 39.1C8.954 39.1 0 31.046 0 20C0 8.954 8.954 0 19.1 0Z%22 fill=%22white%22/%3E %3C/g%3E %3Cg clip-path=%22url(%23clip1_9_8)%22%3E %3Cpath fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 d=%22M28.625 20.788L23.925 25.452C23.766 25.609 23.559 25.688 23.351 25.688C23.143 25.688 22.935 25.609 22.777 25.452C22.459 25.137 22.459 24.627 22.777 24.313L26.091 21.024H12.421C11.973 21.024 11.609 20.664 11.609 20.219C11.609 19.774 11.973 19.413 12.421 19.413H26.091L22.777 16.125C22.459 15.81 22.459 15.3 22.777 14.985C23.094 14.67 23.608 14.671 23.925 14.985L28.625 19.649C28.943 19.964 28.943 20.474 28.625 20.788Z%22 fill=%22%23241714%22/%3E %3C/g%3E %3Cdefs%3E %3CclipPath id=%22clip0_9_8%22%3E %3Crect width=%2240%22 height=%2240%22 fill=%22white%22/%3E %3C/clipPath%3E %3CclipPath id=%22clip1_9_8%22%3E %3Crect width=%2218%22 height=%2212%22 fill=%22white%22 transform=%22translate(11 14)%22/%3E %3C/clipPath%3E %3C/defs%3E %3C/svg%3E');
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
.arrow-dl{
  background-image: url('data:image/svg+xml,%3Csvg width=%2240%22 height=%2240%22 viewBox=%220 0 40 40%22 fill=%22none%22 xmlns=%22http://www.w3.org/2000/svg%22%3E %3Cg clip-path=%22url(%23clip0_9_18)%22%3E %3Cpath fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 d=%22M20 0C31.046 0 39.1 8.954 39.1 20C39.1 31.046 31.046 39.1 20 39.1C8.954 39.1 0 31.046 0 20C0 8.954 8.954 0 20 0Z%22 fill=%22white%22/%3E %3C/g%3E %3Cg clip-path=%22url(%23clip1_9_18)%22%3E %3Cpath fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 d=%22M27.2 29.399H12.8C12.358 29.399 12 29.04 12 28.597V23.638C12 23.195 12.358 22.836 12.8 22.836C13.241 22.836 13.6 23.195 13.6 23.638V27.795H26.4V23.638C26.4 23.195 26.758 22.836 27.2 22.836C27.642 22.836 28 23.195 28 23.638V28.597C28 29.04 27.642 29.399 27.2 29.399ZM20.766 24.979C20.616 25.129 20.412 25.214 20.2 25.214C19.988 25.214 19.785 25.129 19.635 24.979L15.731 21.066C15.419 20.753 15.419 20.245 15.731 19.932C16.043 19.619 16.55 19.619 16.862 19.932L19.4 22.476V11.402C19.4 10.959 19.758 10.6 20.2 10.6C20.642 10.6 20.1 10.959 20.1 11.402V22.476L23.538 19.932C23.85 19.619 24.356 19.619 24.669 19.932C24.981 20.245 24.981 20.753 24.669 21.066L20.766 24.979Z%22 fill=%22%23241714%22/%3E %3C/g%3E %3Cdefs%3E %3CclipPath id=%22clip0_9_18%22%3E %3Crect width=%2240%22 height=%2240%22 fill=%22white%22/%3E %3C/clipPath%3E %3CclipPath id=%22clip1_9_18%22%3E %3Crect width=%2216%22 height=%2220%22 fill=%22white%22 transform=%22translate(12 10)%22/%3E %3C/clipPath%3E %3C/defs%3E %3C/svg%3E');
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
.banzai{
  font-size:clamp(18px, 18 / 1200 * 100vw ,22px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  white-space: nowrap;
}
.present{
  background-color: #00a1a7;
  border-radius: 6px;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  width: 700px;
  height: 120px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: -50px auto 0;
  padding-right: 84px;
  position: relative;
  z-index: 1;
}
.cta-book{
  position: absolute;
  top: -30px;
  left: -20px;
}
.shape{
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
.shape01{
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%22654px%22 height=%22690px%22%3E %3Cpath fill-rule=%22evenodd%22 fill=%22rgb(255, 255, 255)%22 d=%22M620.319,0.595 L0.108,689.800 L195.027,689.800 C353.757,510.107 652.313,171.032 653.848,161.098 C655.938,147.563 620.319,0.595 620.319,0.595 Z%22/%3E %3C/svg%3E');
  width: 34vw;
  max-width: 700px;
  height: auto;
  aspect-ratio: 654/690;
  top: 22px;
  left: -368px;
}
.shape02{
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%22604px%22 height=%22637px%22%3E %3Cpath fill-rule=%22evenodd%22 fill=%22rgb(255, 255, 255)%22 d=%22M572.931,0.060 L0.473,636.200 L180.385,636.200 C326.893,470.343 602.462,157.374 603.878,148.205 C605.807,135.712 572.931,0.060 572.931,0.060 Z%22/%3E %3C/svg%3E');
  width: 31.5vw;
  max-width: 700px;
  height: auto;
  aspect-ratio: 604/637;
  bottom: -100px;
  right: -40px;
}
.shape03{
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%22269px%22 height=%22283px%22%3E %3Cpath fill-rule=%22evenodd%22 fill=%22rgb(216, 12, 24)%22 d=%22M254.643,-0.009 L0.008,282.953 L80.034,282.953 C145.203,209.178 267.779,69.966 268.408,65.887 C269.267,60.331 254.643,-0.009 254.643,-0.009 Z%22/%3E %3C/svg%3E');  width: 604px;
  width: 14vw;
  max-width: 400px;
  min-width: 269px;
  height: auto;
  aspect-ratio: 269/283;
  bottom: 125px;
  left: calc((50vw - 450px) - 150px );
  transform: translateX(-50%);
}
.shape04{
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%22381px%22 height=%22402px%22%3E %3Cpath fill-rule=%22evenodd%22 fill=%22rgb(216, 12, 24)%22 d=%22M361.363,0.157 L0.561,401.095 L113.953,401.095 C206.293,296.560 379.975,99.306 380.868,93.527 C382.084,85.654 361.363,0.157 361.363,0.157 Z%22/%3E %3C/svg%3E');
  width: 20vw;
  max-width: 700px;
  min-width: 381px;
  height: auto;
  aspect-ratio: 381/402;
  top: -200px;
  right: -100px;
}
@media screen and (min-width: 2000px) {
  .shape01{
        left: calc((50vw - 450px) - 1000px);
        top: 60px;
  }
  .shape02{
    right: calc((50vw - 450px) - 700px );
  }
  .shape03{
  left: calc((50vw - 450px) - 150px );
  }
  .shape04{
    right: calc((50vw - 450px) - 700px );
  }
}
@media screen and (max-width: 1200px) {
  .cta-flame {
      padding: 56px 30px 122px;
      width: 90%;
      max-width: 900px;
  }
  .cta-btn-wrap {
    gap: 40px;
    margin-top: 40px;
  }
  .cta-text .sp-only{
    display: block;
  }
  .present{
    font-size: 22px;
    width: 580px;
    padding-right: 50px;
  }
  .shape01 {
    left: -290px;
    top: 60px;
  }
  .shape03{
    left: 30px;
  }
  .shape04{
      right: -120px;
  }

}

@media screen and (max-width: 950px) {
  .cta-flame {
      padding: 40px 20px 122px;
      width: 90%;
      max-width: 900px;
  }
  .cta-btn-wrap {
    gap: 20px;
  }
  .box-red,
  .box-black {
      width: 50%;
      max-width: 360px;
  }
  .box-red .sp-only{
    display: block;
  }
  .cta-title{
    font-size:clamp(21px, 21 / 767 * 100vw ,26px);
  }
  .cta-text {
    font-size: clamp(14px, 14 / 500 * 100vw, 18px);
  } 
  .banzai{
    font-size:clamp(14px, 14 / 700 * 100vw ,18px);
  }
  .cta-flame .btn {
      height: 74px;
      font-size: clamp(17px, 17 / 800 * 100vw, 20px);
  }
  .present{
    font-size: 20px;
    width: 500px;
    padding-right: 40px;
    height: 110px;
  }
  .cta-book {
      top: -25px;
      left: -20px;
      width: 120px;
  }
  .shape01 {
    left: -150px;
    top: 30px;
  }
}


@media screen and (max-width: 767px) {
  .cta-flame {
      padding: 40px 10px 122px;
  }
  .cta-title .sp-only{
    display: block;
  }
  .cta-title .pc-only{
    display: none;
  }
  .cta-title {
    font-size: clamp(20px, 20 / 480 * 100vw, 24px);
    white-space: nowrap;
  }
  .cta-btn-wrap{
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .box-red, .box-black {
    width: 85%;
    max-width: 380px;
  }
  .cta-flame .btn {
      height: 74px;
      font-size: clamp(17px, 17 / 400 * 100vw, 20px);
  }
}
@media screen and (max-width: 600px) {
    .present {
        font-size: 17px;
        width: 420px;
        padding-right: 20px;
        height: 100px;
    }
    .cta-book {
        width: 110px;
    }
    .shape01 {
          left: -120px;
          top: -10px;
          width: 56vw;
      }
    .shape02 {
        width: 46.5vw;
        bottom: -10px;
        right: -10px;
    }
    .shape03 {
        left: 0;
        width: 34vw;
        min-width: 0;
    }

    .shape04 {
      width: 46vw;
      min-width: 0;
      top: -150px;
      right: -100px;
  }
}
@media screen and (max-width: 480px) {
  .section-cta {
      padding: 45px 0 40px;
  }
  .cta-title {
    margin-bottom: 20px;
  }
  .cta-btn-wrap {
        margin-top: 30px;
  }
  .cta-flame {
    padding: 32px 10px 85px;
  }
  .cta-flame .btn  {
      font-size: 17px;
      padding: 10px 20px 10px 38px;
      width: 290px;
  }
  .cta-flame .box-red .btn  {
      padding: 10px 20px 10px 44px;
  }
  .banzai {
    margin-bottom: 5px;
  }
  .present {
    font-size: 15px;
    padding-right: 30px;
    height: 85px;
    width: 302px;
    line-height: 1.4;
  }
  .present .sp-only{
    display: block;
  }
  .present .pc-only{
    display: none;
  }
  .cta-book {
      top: -17px;
      left: -20px;
      width: 90px;
  }
}


/*---------------------*/
/* メインビジュアル      */
/*---------------------*/
.section-fv {
/*    height: 970px;*/
    padding-top: 170px;
    padding-bottom: 83px;
    border-bottom: solid 1px var(--main-color);
    position: relative;
}
.container-slider{
  aspect-ratio: 2347/1542;
  width: 72vw;
  max-width: 1200px;
  height: auto;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
}
.bxslider li{
  width: 100% !important;
}
.bxslider img {
  width: 100%;
  height: auto;
  display: block;
}
.bx-wrapper {
  border: none !important;
  box-shadow: none!important;
  background: none !important;
  margin-bottom: 0 !important;
}

.wrap-copy{
  max-width: 850px;
  margin: 0;
  position: relative;
  z-index: 1;
}
.copy{
  font-size:clamp(46px, 46 / 1200 * 100vw ,64px);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 47px;
}
.sub-copy{
  font-size:clamp(18px, 18 / 1200 * 100vw ,24px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 68px;
}
.fv-cta-flame{
  max-width: 740px;
  padding: 36px 24px 36px;
  margin: 0;
}
.section-fv .cta-btn-wrap{
  gap: 0;
  margin-top: 30px;
}
.section-fv .box-red{
  width: 52%;
}
.section-fv .box-black{
  width: 48%;
}
.section-fv .btn{
  font-size: clamp(18px, 18 / 1200 * 100vw ,20px);
  width: 308px;
  height: 72px;
  padding: 10px 15px 10px 30px;
}
.section-fv .banzai {
    font-size:clamp(16px, 16 / 1200 * 100vw ,18px);
}
.result-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0;
}

.stat {
  position: relative;
  padding: 0 40px;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background-color: var(--main-color); 
}

.stat-label {
  font-size: clamp(18px, 18 / 1200 * 100vw ,20px);
  color: var(--main-color);
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.stat-value {
  font-family: "Inter", sans-serif;
  font-weight: 800;  
  font-size: clamp(40px, 40 / 1200 * 100vw ,50px);
  color: var(--main-color);
  line-height: 1;
  white-space: nowrap;
}

.unit {
  font-size: clamp(26px, 26 / 1200 * 100vw ,32px);
  margin-left: 4px;
}
.unit1 {
  font-size: clamp(20px, 20 / 1200 * 100vw ,26px);
  margin-left: 4px;
}
.fv-shape01{
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%22654px%22 height=%22690px%22%3E %3Cpath fill-rule=%22evenodd%22 fill=%22rgb(242, 242, 242)%22 d=%22M620.319,0.595 L0.108,689.800 L195.027,689.800 C353.757,510.106 652.312,171.032 653.847,161.098 C655.938,147.564 620.319,0.595 620.319,0.595 Z%22/%3E %3C/svg%3E');
  width: 34vw;
  max-width: 680px;
  height: auto;
  aspect-ratio: 654/690;
  top: 20px;
  left: -368px;
}

.fv-shape02{
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%22424px%22 height=%22448px%22%3E %3Cpath fill-rule=%22evenodd%22 fill=%22rgb(242, 242, 242)%22 d=%22M402.187,0.787 L0.468,447.196 L126.719,447.196 C229.531,330.806 422.911,111.181 423.905,104.746 C425.259,95.979 402.187,0.787 402.187,0.787 Z%22/%3E %3C/svg%3E');
  width: 22.2vw;
  max-width: 450px;
  width: 424px;
  height: auto;
  aspect-ratio: 424/448;
  bottom: -70px;
  right: -109px;
}
.fv-shape03{
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%22381px%22 height=%22402px%22%3E %3Cpath fill-rule=%22evenodd%22 fill=%22rgb(216, 12, 24)%22 d=%22M361.362,0.156 L0.561,401.096 L113.953,401.096 C206.293,296.560 379.975,99.306 380.868,93.527 C382.084,85.654 361.362,0.156 361.362,0.156 Z%22/%3E %3C/svg%3E');
  width: 20vw;
  width: 381px;
  max-width: 400px;
  min-width: 300px;
  height: auto;
  aspect-ratio: 381/402;
  top: -190px;
  left: 25%;
}
.fv-shape04{
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%22269px%22 height=%22283px%22%3E %3Cpath fill-rule=%22evenodd%22 fill=%22rgb(216, 12, 24)%22 d=%22M254.644,-0.007 L0.008,282.951 L80.035,282.951 C145.203,209.178 267.778,69.966 268.408,65.887 C269.267,60.330 254.644,-0.007 254.644,-0.007 Z%22/%3E %3C/svg%3E');
  width: 15vw;
  width: 269px;
  max-width: 300px;
  min-width: 250px;
  height: auto;
  aspect-ratio: 269/283;
  bottom: -120px;
  left: 50%;
  z-index: 1;
}

@media screen and (min-width: 2300px) {
  .container-slider {
    left: 50%;
  }
  .fv-shape01 {
    left: 10vw;
  }
}
@media screen and (max-width: 1300px) {
  .fv-cta-flame {
      max-width: 660px;
      padding: 30px 20px 28px;
  }
  .section-fv .cta-btn-wrap {
    gap: 20px;
    margin-top: 20px;
  }
  .copy {
    font-size: clamp(34px, 34 / 767 * 100vw, 46px);
    margin-bottom: 28px;
  }
  .sub-copy {
      font-size: clamp(14px, 14 / 767 * 100vw, 18px);
      margin-bottom: 38px;
  }
  .fv-shape01 {
    top: 20px;
    left: -210px;
  }
  .fv-shape02 {
      width: 28vw;
      bottom: -90px;
      right: -90px;
  }
  .fv-shape03 {
      width: 26vw;
      min-width: 250px;
      top: -140px;
      left: 25%;
  }
  .fv-shape04 {
      width: 20vw;
      min-width: 200px;
      bottom: -100px;
      left: 50%;
  }

}

@media screen and (max-width: 767px) {
    .section-fv {
        height: auto;
        padding-top: 92vw;
        padding-bottom: 45px;
    }
    .container-slider{
      aspect-ratio: 750/637;
      width: 100%;
      height: auto;
    }
    .section-fv .bx-viewport{
      height: 100%;
    }
    .section-fv .cta-btn-wrap{
      flex-direction: row;
      margin: 20px auto 0;
      gap: 0;
    }
    .fv-cta-flame {
        max-width: 100%;
        width: 100%;
        margin: auto;
    }
    .section-fv .btn{
      font-size: 16px;
      width: 270px;
    }
    .section-fv .box-red,
    .section-fv .box-black {
        width: 286px;
    }
    .section-fv .banzai {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .stat-label{
      font-size: 14px;
    }
    .stat-value{
      font-size: 32px;
    }
    .unit {
        font-size: 26px;
        margin-left: 2px;
    }
    .unit1 {
        font-size: 20px;
    }
    .fv-shape01 {
        top: -20px;
        left: -30%;
        width: 57%;
    }
    .fv-shape02 {
        width: 40vw;
        bottom: 10px;
        right: -23%;
    }
    .fv-shape03 {
        width: 33vw;
        min-width: 0;
        top: -60px;
        left: 34%;
    }
    .fv-shape04 {
        width: 26vw;
        min-width: 0;
        bottom: -20px;
        left: 60%;
    }
}
@media screen and (max-width: 640px) {

    .section-fv .cta-btn-wrap{
      flex-direction: column;
      gap: 20px;
      margin: 26px auto 0;
    }
    .result-stats{
      flex-wrap: wrap;
      gap: 15px 0;
    }
    .stat:first-child{
      width: 100%;
    }
    .stat:first-child::after{
      content: none;
    }
    .stat:not(:last-child)::after{
      height: 47px;
    }
    .stat:nth-child(2){
      padding: 0 36px 0 0;
    }
    .stat:nth-child(3){
      padding: 0 0 0 36px;
    }
    .fv-cta-flame {
        max-width: 400px;
    }

}
@media screen and (max-width: 500px) {
  .copy .sp-only,
  .sub-copy .sp-only{
    display: block;
  }
  .copy {
    font-size: clamp(34px, 34 / 375 * 100vw, 40px);
    margin-bottom: 20px;
    line-height: 1.33;
  }
  .sub-copy {
      font-size: clamp(14px, 14 / 375 * 100vw, 18px);
      margin-bottom: 38px;
      line-height: 2;
  }
  .fv-shape01 {
    left: -23%;
  }
  .fv-shape03 {
    top: -40px;
  }
}

/*---------------------*/
/* イントロダクション   */
/*---------------------*/
.section-books{
  padding: 48px 0 48px;
}
.wrap-books{
  display: flex;
  gap: min(1.6vw,30px);
  line-height: 1.3;
}
.book1,.book2{
  border-radius: 0;
  color: #fff;
  font-weight: 500;
  width: 585px;
  height: 170px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding-left: 20px;
}
.book1{
  background-color: #00a1a7;
}
.book2{
  background-color: #be9445;
}
.wrap-books .title{
  font-size:clamp(17px, 17 / 1100 * 100vw ,20px);
  margin-bottom: 0.3em;
}
.wrap-books .description{
  font-size:clamp(15px, 15 / 1100 * 100vw ,18px);
}
@media screen and (max-width: 1100px) {
  .book1,.book2{
    gap: 5px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .wrap-books .title{
    font-size:clamp(14px, 14 / 900 * 100vw ,17px);
  }
  .wrap-books .description{
    font-size:clamp(13px, 13 / 900 * 100vw ,15px);
  }
}
@media screen and (max-width: 900px) {
  .wrap-books {
      gap: 20px;
      flex-direction: column;
      align-items: center;
  }
  .wrap-books .title{
    font-size:clamp(17px, 17 / 580 * 100vw ,20px);
    margin-bottom: 0.3em;
  }
  .wrap-books .description{
    font-size:clamp(15px, 15 / 550 * 100vw ,18px);
  }
  .book1, .book2 {
    max-width: 580px;
    width: 100%;
      height: auto;
      padding: 10px;
      justify-content: flex-end;
  }
  .book2 {
      padding: 15px 10px 15px 10px;
  }
  .book1  img
  .book2  img{
    margin: auto;
  }
  .wrap-books .box-text {
    width: 71%;    
  }
  .img-book{
    width: 29%;
    margin: auto;
  }
}
@media screen and (max-width: 550px) {
  .wrap-books .title{
    font-size:clamp(14px, 14 / 375 * 100vw ,18px);
  }
  .wrap-books .description{
    font-size:clamp(13px, 13 / 375 * 100vw ,15px);
  }
  .wrap-books .box-text {
    width: 66%;
    letter-spacing: 0.03em;
  }
  .img-book{
    width: 34%;
  }
}
/*---------------------*/
/* 企業ロゴ              */
/*---------------------*/
.section-commpany-logo{
  padding: 0 0 30px;
}
.section-commpany-logo .bx-wrapper{
  margin-bottom: 0;
}
.section-commpany-logo .bx-viewport{
  width: 100vw !important;
}
.logo-slider {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap; 
  height: 82.5px;
  gap: 25px;
}

.logo-slider li {
    width: auto;
    max-width: 160px;
    min-width: 80px;
    height: 82.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: inline-block;
}
.logo-slider li img{
  width: 113px;
  height: 82.5px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .section-commpany-logo{
    padding: 20px 0 30px;
  }
}
@media screen and (max-width: 525px) {
  .section-commpany-logo{
    padding: 0 0 3vw;
  }
  .logo-slider li img{
    width: 90px;
  }
}
@media screen and (max-width: 400px) {
  .section-commpany-logo{
    padding: 0 0 0;
  }
}

/*-----------------------------------------------*/
/* マネジメントという「技術」は、学べば誰もが習得できる。 */
/*-----------------------------------------------*/
.section-intro{
  padding: 123px 0 100px;
  background-color: var(--gray-color);
  position: relative;
  background: linear-gradient(0deg,#1c2331 0%,var(--gray-color) 45%,var(--gray-color) 100%);
}
.section-intro .heading-large{
  white-space: nowrap;
}
.wrap-skills{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  margin: 0 auto;
  padding: 0 50px;
  list-style: none;
}
.wrap-skills .box{
  width: 20%;
}
.skills-img img{
  margin: auto;
}
.skills-title{
  color: #fff;
  width: 100%;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px 0 8px;
}
.skills-title h3{
  font-size:clamp(18px, 18 / 1200 * 100vw ,22px);
  font-weight: 500;
  line-height: 1.27;
}
.skills-text{
  font-size:clamp(15px, 15 / 1200 * 100vw ,18px);
  height: 143px;
  padding: 14px 14px 12px;
}
.skills-title{
  position: relative;
}
.wrap-skills .box:nth-child(1) .skills-title{
  background-color: #96ca3c;
}
.wrap-skills .box:nth-child(1) .skills-text{
  border: solid 1px #96ca3c;
}
.wrap-skills .box:nth-child(2) .skills-title{
  background-color: #39c394;
}
.wrap-skills .box:nth-child(2) .skills-text{
  border: solid 1px #39c394;
}
.wrap-skills .box:nth-child(3) .skills-title{
  background-color: #35c2d0;
}
.wrap-skills .box:nth-child(3) .skills-text{
  border: solid 1px #35c2d0;
}
.wrap-skills .box:nth-child(4) .skills-title{
  background-color: #41a7e0;
}
.wrap-skills .box:nth-child(4) .skills-text{
  border: solid 1px #41a7e0;
}
.wrap-skills .box:nth-child(5) .skills-title{
  background-color: #4382dd;
}
.wrap-skills .box:nth-child(5) .skills-text{
  border: solid 1px #4382dd;
}
.wrap-skills .box:first-child .skills-title{
    clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 0% 0%);
    width: 110%;
}
.wrap-skills .box:not(:first-child) .skills-title{
    clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
    width: 110%;
}
.wrap-skills .box:not(:last-child) .skills-title::before{
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #555;
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -20px;
}


.section-intro .text-wrapper{
  margin: 110px auto 60px;
  position: relative;
}
.section-intro .text-wrapper .fs24{
  line-height: 1.9;
}
.section-intro .text2{
  margin: 38px auto 32px;
  font-weight: 500;
}
.section-intro .text-wrapper::after{
  content: "";
  background-image: url('data:image/svg+xml,%3Csvg%20%0A%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20width%3D%2287px%22%20height%3D%2245px%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20%20fill%3D%22rgb(216%2C%2012%2C%2024)%22%0A%20d%3D%22M43.500%2C45.000%20L0.000%2C0.001%20L86.1000%2C0.001%20L43.500%2C45.000%20Z%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 87px;
  height: 45px;
  margin: 70px auto 0;
}
.section-intro .text4{
  font-weight: 500;
}
/*　表 */
.problem {
  display: flex;
  gap: 2px;
  border-top: 1px solid #d5d5d5;
  width: 1100px;
  margin: auto;
}
.problem-wrapper{
  overflow-x: auto;
  margin-bottom: 100px;
}
.problem__left,
.problem__right {
  background-color: #fff;
}
.problem__left{
  width: 30%;
  font-size:clamp(16px, 16 / 850 * 100vw ,24px);
}
.problem__right {
  width: 70%;
  font-size:clamp(15px, 15 / 850 * 100vw ,22px);
}

.problem__head {
  padding: 18px 20px;
  font-weight: 500;
  font-size: 24px;
  font-size:clamp(16px, 16 / 850 * 100vw ,24px);
  text-align: center;
}

.problem__head--red {
  background: var(--main-color);
  color: #fff;
  text-align: center;
  border: solid 2px #fff;
}

.problem__head--dark {
  background: #241714;
  color: #fff;
  text-align: center;
  border: solid 2px #fff;
}

.problem__item {
  padding: 14px 10px 16px 20px;
  border-bottom: 1px solid #d5d5d5;
  height: 68px;
}
.problem__left .problem__item{
  text-align: center;

}

/* 色指定 */
.green { color: #96ca3c; }
.emerald { color: #39c394; }
.cyan { color: #35c2d0; }
.blue { color: #41a7e0; }
.deepblue { color: #4382dd; }


@media screen and (max-width: 1024px) {
  .wrap-skills{
    padding: 0 0;
  }
  .skills-text {
    height: 143px;
    padding: 10px 6px 10px;
  }
  .skills-title h3 {
    font-size: clamp(16px, 16 / 810 * 100vw, 18px);
  }
  .skills-text {
    font-size: clamp(14px, 14 / 810 * 100vw, 16px);
  }
  /*table*/
  .problem {
    width: 850px;
    padding-bottom: 16px;
  }
  .problem__head {
    padding: 13px 20px;
  }
  .problem__item {
    padding: 14px 10px 15px 15px;
    height: 54px;
  }
}
@media screen and (max-width: 870px) {
  .problem-wrapper {
    margin-bottom: 50px;
    margin-right: -20px;
  }

}
@media screen and (max-width: 767px) {
  .section-intro{
    padding: 75px 0 50px;
  }
  .wrap-skills{
      flex-direction: column;
      max-width: 480px;
      min-width: 320px;
  }
  .wrap-skills .box {
    width: 70%;
    height: 44vw;
    position: relative;    
    padding: 25px 15px 15px;
    background-color: #fff;
  }
  .section-intro .wrap-skills .box {
    margin: auto;
    margin-right: 16px;
  }
  .skills-title{
    position: absolute;
    left: -33%;
    top: 0;
    width: 30% !important;
    height: 110%;
    margin: 0;
    clip-path: polygon(100% 0, 100% 92%, 50% 100%, 0 92%, 0 0, 50% 8%) !important;
  }
  .wrap-skills .box:first-child .skills-title{
    clip-path: polygon(100% 0, 100% 92%, 50% 100%, 0 92%, 0 0, 50% 0%) !important;
  }
  .skills-title h3 {
    font-size: clamp(16px, 16 / 500 * 100vw, 18px);
    line-height: 1.43;
  }
  .skills-title .sp-only{
    display: block;
  }
  .skills-title .pc-only{
    display: none;
  }
  .skills-text {
    font-size: clamp(14px, 14 / 420 * 100vw, 18px);
    padding: 0;
  }
  .skills-img {
    height: 55%;
    width: auto;
    margin: auto;
    margin-bottom: 10px;
  }
  .skills-img img {
    margin: auto;
    height: 100%;
    width: auto;
  }
  .wrap-skills .box:nth-child(1){
    border: solid 1px #96ca3c;
  }
  .wrap-skills .box:nth-child(2){
    border: solid 1px #39c394;
  }
  .wrap-skills .box:nth-child(3){
    border: solid 1px #35c2d0;
  }
  .wrap-skills .box:nth-child(4){
    border: solid 1px #41a7e0;
  }
  .wrap-skills .box:nth-child(5){
    border: solid 1px #4382dd;
  }
  .wrap-skills .box .skills-text{
    border: none !important;
  }

}
@media screen and (max-width: 500px) {
    .wrap-skills .box {
        width: 75%;
        height: 56vw;
        padding: 10px 15px 15px;
    }
    .skills-img {
      height: 50%;
      margin-bottom: 5px;
  }
  .section-intro .wrap-skills .box {
    margin-right: 8px;
    width: 70%;
  }
  .section-intro .skills-title{
    width: 35% !important;
    left: -38%;
  }
  .section-intro .text-wrapper .pc-only{
    display: none;
  }
  .section-intro .text-wrapper .sp-only{
    display: block;
  }
  .section-intro .text-wrapper::after{
    width: 52px;
    height: 27px;
    margin: 32px auto;
  }
  .section-intro .text-wrapper{
      margin: 60px auto 30px;
  }
  .section-intro .text2 {
    margin: 20px auto;
  }
}

@media screen and (max-width: 420px) {
  .section-intro .skills-title{
    width: 85px !important;
    left: -90px;
  }
  .section-intro  .wrap-skills .box {
    height: 60vw;
    aspect-ratio: 1/1;
  }
  .skills-img {
    height: 59%;
  }
}

/*-----------------------------------------------*/
/* アチーブメントの管理職研修が選ばれる３つの理由 */
/*-----------------------------------------------*/
.section-reason{
  padding: 135px 0 96px;
  background-color: var(--main-color);
  position: relative;
  margin-bottom: 52px;
}
.section-reason::after{
  content: "";
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: var(--main-color);
  display: block;
  width: 130px;
  height: 52px;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.point-box{
  background-color: #fff;
  padding: 27px 30px 50px 50px;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto 40px;
}

.point-box-inner-wrap{
  display: flex;
  gap: 24px;

}
.point-box .title{
  font-size:clamp(26px, 26 / 767 * 100vw ,32px);
  font-weight: 500;
  text-align: left;
  margin-bottom: 30px;
}
.point{
  font-size:clamp(17px, 17 / 375 * 100vw ,28px);
  font-weight: 500;
  line-height: 1;
  position: relative;
  width: fit-content;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.point .num{
  font-size: 192%;
  font-weight: 400;
  padding-left: 15px;
}
.point::after{
  content: "";
  background-image: url('data:image/svg+xml,%3Csvg%20%0A%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20width%3D%2290px%22%20height%3D%2295px%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20%20fill%3D%22rgb(216%2C%2012%2C%2024)%22%0A%20d%3D%22M84.760%2C0.622%20L0.276%2C94.503%20L26.828%2C94.503%20C48.450%2C70.024%2089.118%2C23.838%2089.328%2C22.485%20C89.612%2C20.641%2084.760%2C0.622%2084.760%2C0.622%20Z%22%2F%3E%0A%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  width: 90px;
  height: 95px;
  position: absolute;
  top: -50px;
  right: -100px;
}
.point .box-text{
  width: 48%;
}
.point .box-image{
  width: 45%;
  flex-grow: 1;
}


.point-box.point01{
  margin-top: 68px;
}
.point-box.point01 .point-box-inner-wrap .box-text{
  width: 50%;
}

/*point02*/
.point-box.point02 .point-box-inner-wrap{
  gap: 34px;
}
.point-box.point02 .point-box-inner-wrap .box-text{
  width: 45%;
}

.box-instructors{
  display: flex;
  gap: 27px;
}
.box-instructors .instructor{
  width: 33%;
}
.name{
  font-size: 16px;
  line-height: 1;
  text-align: center;
  margin: 14px auto 9px;
}
.name-en{
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

/*point03*/
.point-box.point03 .point-box-inner-wrap{
  gap: 0;
}
.point-box.point03 .point-box-inner-wrap .box-text{
  width: 40%;
}
.point-box.point03 .point-box-inner-wrap .box-image{
  width: 60%;
}

@media screen and (max-width: 767px) {
  .point-box .title{
    font-size:clamp(20px, 20 / 500 * 100vw ,26px);
  }
  .section-reason .heading-lead{
    margin-bottom: 20px;
  }
  .point-box.point01 {
      margin-top: 40px;
  }
  .point-box-inner-wrap {
    flex-direction: column;
  }
  .point-box {
    padding: 27px 40px 50px 40px;
  }
  .point-box .point-box-inner-wrap .box-text {
    width: 100% !important;
  }
  .point-box .point-box-inner-wrap .box-image {
    width: 100% !important;
  }
  .point-box .point-box-inner-wrap .box-image img{
    width: 100% ;
  }
  .section-reason {
    padding: 100px 0 10px;
    margin-bottom: 40px;
  }
  .section-reason::after{
    aspect-ratio: 130/52;
    width: 20vw;
    height: auto;
    bottom: -6.8vw;
  }

}

@media screen and (max-width: 550px) {
  .point-box {
    padding: 27px 20px 50px 20px;
  }
  .point{
    margin-bottom: 28px;
  }
  .box-instructors {
    display: flex;
    gap: 15px;
  }
  .section-reason {
    padding: 70px 0 10px;
    margin-bottom: 0;
  }
}
/*-----------------------------------------------*/
/* なぜ「マインドセット変革」が、組織改善の最短ルートなのか？ */
/*-----------------------------------------------*/
.section-why{
  padding: 103px 0 96px;
  position: relative;
}
.section-why .heading-lead{
  font-size:clamp(20px, 24 / 1920 * 100vw ,24px);
  margin-bottom: 80px;
}
.section-why .btn-border{
  font-size: 20px;
  max-width: 438px;
  width: 100%;
  height: 72px;
  justify-content: space-between;
  padding: 0 16px 0 50px;
  margin-bottom: 67px;
  transition: 0.3s;
}
.section-why .btn-border .arrow{
  background-image: url('data:image/svg+xml,%3Csvg width=%2240%22 height=%2240%22 viewBox=%220 0 40 40%22 fill=%22none%22 xmlns=%22http://www.w3.org/2000/svg%22%3E %3Cg clip-path=%22url(%23clip0_6_13)%22%3E %3Cpath fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 d=%22M20 0C31.045 0 40.001 8.954 40.001 19.1C40.001 31.045 31.045 40.001 20 40.001C8.955 40.001 0 31.045 0 19.1C0 8.954 8.955 0 20 0Z%22 fill=%22%23241714%22/%3E %3Cg clip-path=%22url(%23clip1_6_13)%22%3E %3Cpath fill-rule=%22evenodd%22 clip-rule=%22evenodd%22 d=%22M24.763 23.122L20.073 27.754C19.758 28.067 19.244 28.067 18.927 27.754L14.236 23.122C14.077 22.965 14 22.76 14 22.556C14 22.351 14.077 22.147 14.236 21.99C14.555 21.677 15.067 21.677 15.383 21.99L18.69 25.256V11.785C18.69 11.342 19.054 10.985 19.5 10.985C19.947 10.985 20.31 11.342 20.31 11.785V25.256L23.617 21.99C23.933 21.677 24.447 21.677 24.763 21.99C25.08 22.302 25.08 22.809 24.763 23.122Z%22 fill=%22white%22/%3E %3C/g%3E %3C/g%3E %3Cdefs%3E %3CclipPath id=%22clip0_6_13%22%3E %3Crect width=%2240%22 height=%2240%22 fill=%22white%22/%3E %3C/clipPath%3E %3CclipPath id=%22clip1_6_13%22%3E %3Crect width=%2212%22 height=%2217%22 fill=%22white%22 transform=%22translate(14 11)%22/%3E %3C/clipPath%3E %3C/defs%3E %3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
.section-why .btn-border:hover {
  color: #000;
  background-color: #ececec;
}
.img-mindset01,
.img-mindset02{
  max-width: 600px;
  width: 25%;
  min-width: 220px;
  height: auto;
  aspect-ratio: 480/400;
  position: absolute;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
}
.img-mindset01{
  top: 380px;
  right: 0;
}
.img-mindset02{
  top: 930px;
  left: 0;
}
@media screen and (min-width: 2500px) {
  .img-mindset01{
    right: calc((100vw - 2500px) / 2 );
  }
  .img-mindset02{
    left: calc((100vw - 2500px) / 2 );
  }
}
@media screen and (max-width: 1440px) {
  .section-why .heading-lead{
    font-size:clamp(16px, 16 / 500 * 100vw ,18px);
    margin-bottom: 40px;
  }
  .img-mindset01,
  .img-mindset02{
    width: 20%;
  }
}

@media screen and (max-width: 1000px) {
  .section-why{
    padding: 75px 0 50px;
  }

  .img-mindset01,
  .img-mindset02{
    position: static;
    z-index: auto;
    width: 72%;
    margin: 0 auto 35px;
  }
  .section-why .heading-lead {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 645px) {
  .section-why .heading-lead br{
    display: none;
  }
  .section-why .btn-border{
    font-size:clamp(15px, 15 / 550 * 100vw ,20px);
    max-width: 380px;
    min-width: 308px;
    width: 84vw;
    height: auto;
    aspect-ratio: 617/100;
    padding: 0 15px 0 9%;
  }
  .section-why .btn-border .arrow {
      width: 32px;
      height: 32px;
  }
}

@media screen and (max-width: 580px) {
  .section-why .heading-lead br{
    display: block;
  }
  .section-why .heading-lead .sp-only{
    display: block;
  }
  .section-why .heading-lead .pc-only{
    display: none;
  }

  .section-why .btn-border{
    font-size:15px;
    width: 310px;
    height: auto;
    aspect-ratio: 617/100;
    padding: 0 10px 0 20px;
  }
}



@media screen and (max-width: 440px) {
  .section-why .heading-large br{
    display: none;
  }
  .section-why .heading-large .sp-only{
    display: block;
  }
}

summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
.detail-contents {
  padding: 70px 20px ;
  max-height: 0;
  max-width: 900px;
  width: 100%;
  margin: auto;
  border: solid 1px #d5d5d5;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height .4s ease,
    opacity .3s ease,
    transform .3s ease;
}

details[open] .detail-contents {
  max-height: 100%;
  opacity: 1;
  transform: translateY(0);
}
.arrow {
  transition: transform .3s ease;
}

details[open] .arrow {
  transform: rotate(180deg);
}

.detail-contents .text1{
  margin: 32px auto 40px;
  font-weight: 500;
}
.detail-contents .text2{
  line-height: 1.8;
  margin-top: 40px;
  width: fit-content;
  margin: auto;
}
.wrap-control{
  display: flex;
  justify-content: center;
  gap: 38px;
  margin-top: 40px;
}

.control__left,
.control__right{
  width: 380px;
  padding: 25px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.control__left{
  background-color: #dee3e4;
}
.control__right{
  background-color: #ffe5e9;
}
.ul-check{
  font-size:clamp(13px, 13 / 450 * 100vw ,16px);
  margin-top: 25px;
  margin-bottom: 0;
  list-style: none;
  padding-left: 17px;
  line-height: 2;
}
.ul-check li::before{
    content: "";
    background-image: url('data:image/svg+xml,%3C?xml version=%221.0%22 encoding=%22UTF-8%22?%3E%3Csvg id=%22_レイヤー_2%22 xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 16.35 16.35%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1{fill:%23d80c18;}%3C/style%3E%3C/defs%3E%3Cg id=%22_レイヤー_1-2%22%3E%3Cpath class=%22cls-1%22 d=%22M15.79,8.19v7.6H.56V.56h15.23v1.54s.01,0,.02,0V.54H.54v15.27h15.27v-7.62s-.01,0-.02,0Z%22/%3E%3Cpath class=%22cls-1%22 d=%22M15.81,16.35H.54c-.3,0-.54-.24-.54-.54V.54C0,.24.24,0,.54,0h15.27c.3,0,.54.24.54.54v1.56c0,.18-.09.35-.24.45-.15.1-.33.12-.5.06,0,0-.02,0-.02,0-.21-.08-.34-.28-.34-.5v-.99H1.1v14.15h14.15v-7.06c0-.22.14-.42.34-.5,0,0,.02,0,.02,0,.17-.06.35-.04.5.06.15.1.24.27.24.45v7.62c0,.3-.24.54-.54.54ZM15.6,2.6s0,0,0,0c0,0,0,0,0,0ZM15.6,2.6h0s0,0,0,0Z%22/%3E%3Cpath class=%22cls-1%22 d=%22M8.69,12.12c-.14,0-.28-.06-.38-.16l-3.88-3.88c-.21-.21-.21-.56,0-.77.21-.21.55-.21.77,0l3.5,3.5,6.62-6.62c.21-.21.56-.21.77,0,.21.21.21.56,0,.77l-7.01,7.01c-.1.1-.24.16-.38.16Z%22/%3E%3C/g%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-size: contain;
    width: 17px;
    height: 17px;
    display: inline-block;
    padding-right: 10px;
}
.img-psychology{
  margin: 20px auto 20px;
}
@media screen and (max-width: 900px) {
  .wrap-control {
      gap: 18px;
  }
}
@media screen and (max-width: 767px) {
  .detail-contents{
    padding: 50px 20px;
  }
  .wrap-control {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

}
@media screen and (max-width: 500px) {
  .detail-contents{
    padding: 25px 20px;
  }
  .detail-contents .text1 .sp-only{
    display: block;
  }
  .ul-check {
    margin-top: 16px;
  }
  .ul-check li::before{
    width: 15px;
    height: 15px;
    margin-bottom: -3px;
    padding-right: 8px;
  }
  .control__left, .control__right{
    padding: 15px 20px;
    width: 100%;
  }
  .img-psychology {
    margin: 15px auto 20px;
  }
}



/*-----------------------*/
/* 導入事例 */
/*-----------------------*/
.section-case{
  padding: 100px 0 100px;
  background-color: var(--main-color);
}
.wrap-case{
  display: flex;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
}
.box-case{
  background-color: #fff;
  width: 25%;
  cursor: pointer;
  overflow: hidden;
}
.box-case .inner{
  padding: 20px 27px 27px;
}
.box-case .title{
  font-size:clamp(19px, 19 / 1200 * 100vw ,22px);
  font-weight: 500;
  text-align: left;
  line-height: 1.45;
  margin-bottom: 20px;
}
.box-case .text{
  font-size:clamp(16px, 16 / 1200 * 100vw ,18px);
}
.box-img-case{
  overflow: hidden;
}
.img-case{
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.box-case:hover .img-case{
  transform: scale(1.2);
}
@media screen and (max-width: 1024px) {
  .wrap-case{
    gap: 12px;
  }
  .box-case .inner {
    padding: 20px 20px 27px;
  }
}
@media screen and (max-width: 900px) {
  .wrap-case{
    gap: 20px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: auto;
  }
  .box-case{
    width: calc(50% - 10px);
  }
  
}
@media screen and (max-width: 767px) {
  .section-case {
      padding: 60px 0 40px;
  }
}

@media screen and (max-width: 550px) {
  .wrap-case{
    max-width: 400px;
    padding: 0 20px;
  }
  .box-case{
    width: 100%;
  }
  .box-case .title {
    font-size: clamp(16px, 16 / 375 * 100vw, 20px);
    margin-bottom: 10px;
  }
  .box-case .text {
    font-size: clamp(14px, 14 / 375 * 100vw, 16px);
  }
}

/*-----------------------*/
/* 受講者の声 */
/*-----------------------*/
.section-voice{
  padding: 110px 0 100px;
}

.wrap-voice{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px 20px;
  margin-top: 40px;
}
.box-voice{
  background-color: #fff;
  width: 22%;
/*  min-width: 260px;
  */padding: 23px 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #d5d5d5;
}
.box-voice .title{
  font-size:clamp(16px, 16 / 1100 * 100vw ,20px);
  font-weight: 500;
  line-height: 1.4;
  margin: 20px auto 12px;
}
.box-voice .text{
  font-size: 16px;
  font-size:clamp(14px, 14 / 1000 * 100vw ,16px);
  line-height: 1.62;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1100px) {
  .wrap-voice{
    gap: 20px 10px;
    margin-top: 30px;
  }
  .box-voice{
    padding: 23px 12px 22px;
  }
}
@media screen and (max-width: 950px) {
  .wrap-voice-outer{
    overflow-x: auto;
    width: 100%;
    padding-bottom: 20px;
  }
  .wrap-voice{
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
  }
  .box-voice{
    min-width: 260px;
  }
}
@media screen and (max-width: 767px) {
  .section-voice {
    padding: 55px 0 50px;
  }
   .wrap-voice{
    margin-top: 0;
   }
}

/*-----------------------*/
/* 研修テーマ一覧 */
/*-----------------------*/
.section-theme{
  padding: 110px 0 100px;
}

/*--研修テーマTABLE---*/
.training-table-outer {
  overflow-x: auto;
  font-family: 'Yu Gothic UI','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
  margin: 70px 0 0;
  overflow-x: auto;
  padding-bottom: 20px;
}

.training-table {
  min-width: 1200px;
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: #333;
  border: 1px solid #c0c0c0;
}

.training-table th, .training-table td {
  border: 1px solid #c0c0c0;
  padding: 4px 8px;
  text-align: left;
}

/* ヘッダー設定 */
.training-table thead th {
  background-color: #f2f2f2;
  font-weight: 500;
  text-align: center;
}

.vertical-header {
  writing-mode: vertical-rl;
  padding: 5px 5px !important;
  width: 48px;
  color: #fff;
}


/* 研修テーマ列 */
.theme-cell {
  font-weight: 500;
  background-color: #fff;
  white-space: nowrap;
}


.training-table tbody tr:nth-child(even) td {
  background-color: #f9f9f9; /* 非常に薄いグレー */
}
.training-table td[class^="bg-level-"] {
  background-color: inherit;
}

/* ホバー演出 */
.training-table tbody tr:hover {
  background-color: #f1f5f9;
}
.training-table tbody tr:hover td {
  background-color: #f1f5f9 ;
  cursor: default;
}
/* 分類セル（一番左）は結合されているため、常に白背景で固定 */
.category-cell {
  background-color: #ffffff !important;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-align: center !important;
  width: 45px;
}

/* 塗りつぶしカラー (画像に基づいたグラデーション) */
.bg-level-0 { background-color: #daedef !important; } /* 内定者・新入社員 */
.bg-level-1 { background-color: #badde1 !important; } /* 内定者・新入社員 */
.bg-level-2 { background-color: #8ac6cd !important; } /* 若手 */
.bg-level-3 { background-color: #4597a0 !important; } /* 中堅 */
.bg-level-4 { background-color: #224b50 !important; } /* 管理職 */
.bg-level-5 { background-color: #222268 !important; } /* 経営層 */



@media screen and (max-width: 767px) {
  .section-theme {
    padding: 55px 0 50px;
  }
  .training-table-outer {
      margin: 30px 0 0;
  }
}



/*-----------------------*/
/* 研修プログラム例 */
/*-----------------------*/
.section-program{
  padding: 100px 0;
}

.program-container-outer{
  overflow-x: auto;
  padding-bottom: 20px
}
/* コンテナ全体 */
.program-container {
  display: flex;
  gap: 1px; 
  background-color: #d5d5d5; 
  border: 1px solid #d5d5d5;
  max-width: 1200px;
  min-width: 1000px;
  margin: auto;
}

/* 各カード */
.program-card {
  flex: 1; 
  min-width: 190px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.card-header {
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 5px;
  font-size:clamp(20px, 20 / 1000 * 100vw ,24px);
  font-weight: 500;
}
.card-content {
  padding: 30px 15px 15px;
}
.card-content h3 {
  font-size:clamp(15px, 15 / 1000 * 100vw ,18px);
  color: var(--main-color);
  margin: 0 0 10px 0;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
}

/* リストスタイル */
.card-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.card-content li {
  font-size:clamp(13px, 13 / 1000 * 100vw ,16px);
  line-height: 1.6;
  position: relative;
  padding-left: 1em;
  color: #333;
}
.card-content li::before {
  content: "・";
  position: absolute;
  left: 0;
}

@media screen and (max-width: 767px) {
  .section-program {
      padding: 50px 0;
  }
}
/*-----------------------*/
/* 教材イメージ         */
/*-----------------------*/
.section-textbook{
  padding: 100px 0;
}
.textbook-images-outer{
  overflow-x: auto;
  padding-bottom: 20px;
  margin: 50px auto 40px;
}
.textbook-images{
  margin: auto;
  width: 100%;
  max-width: 1014px;
  min-width: 840px;
}

@media screen and (max-width: 767px) {
  .section-textbook{
    padding: 50px 0;
  }
  .textbook-images-outer{
    margin: 30px auto 30px;
  }
}
/*-----------------------*/
/* セミナー情報            */
/*-----------------------*/
.section-seminar{
  padding: 100px 0;
}
.seminars_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 58px 50px;
  margin: 50px auto 0;
  list-style: none;
  padding: 0;
}
.seminars_list li{
    width: calc((100% - 100px) / 3);
    max-width: 370px;
    min-width: 365px;
}
.seminars_list li figure{
  width: 100%;
  margin: 0 0 20px;
  overflow: hidden;
}
.seminars_list li a img{
  transition: 0.3s;

}
.seminars_list li a:hover img{
  transform: scale(1.2);
}
.seminars_list .l-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    color: #000000;
    list-style: none;
}
.p-seminar .c-tag {
    padding: 3px 16px;
}
.c-tag {
    background-color: #edebeb;
    margin-bottom: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #333333;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 16px;
}
.c-tag--blue {
    background-color: #E5F8FF ;
    padding-left: 20px ;
    padding-right: 20px ;
}
.c-tag--blue:before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #4EBCFF;
    border-radius: 20px;
    margin-right: 5px;
}
.seminars_list .c-ttl {
    min-height: 90px;
    font-size:clamp(18px, 18 / 900 * 100vw ,20px);
    text-align: left;
}
.c-time {
    font-size:clamp(14px, 14 / 900 * 100vw ,16px);
    line-height: 2;
    font-weight: 600;
    text-align: center;
    background-color: #F7F7F7;
    padding: 8px 30px;
    margin: 20px 0 16px;
}
.seminars_list .c-txt{
    font-size:clamp(14px, 14 / 900 * 100vw ,16px);
}
/*全て見るボタン*/
.accordion-seminar{
  margin: 80px auto 0;
}
.accordion-seminar[open] > summary {
  display: none;
}
@media screen and (max-width: 1024px) {
  .seminars_list{
    gap: 58px 30px;
  }
  .seminars_list li{
      width: calc((100% - 60px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .seminars_list{
    flex-direction: column;
    align-items: center;
  }
  .seminars_list li{
      width: 100%;
      max-width: 450px;
      min-width: auto;
  }
  .seminars_list .c-ttl {
    min-height: 60px;
    font-size: clamp(18px, 18 / 500 * 100vw, 20px);
  }
  .seminars_list .c-txt{
    font-size:clamp(14px, 14 / 500 * 100vw ,16px);
  }
}

/*-----------------------*/
/* ご利用の流れ            */
/*-----------------------*/
.section-flow{
  padding: 100px 0;
  background-color: var(--gray-color);
}
.step-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1030px;
  margin: 110px auto 0;
}
.step-card {
  flex: 1;
  width: 310px;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  padding: 70px 36px 30px;
  text-align: center;
  position: relative;
}
.step-badge {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main-color);
  color: #fff;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  z-index: 2;
}

.step-label { font-size: 16px; font-weight: 500;}
.step-num { font-size: 225%; font-weight: 400;}
.step-icon {
  margin-bottom: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title {
  font-size:clamp(20px, 20 / 900 * 100vw ,24px);
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
}
.step-text {
  font-size:clamp(14px, 14 / 767 * 100vw ,16px);
  line-height: 1.7;
  text-align: left;
}

/* 矢印アイコン */
.step-card:not(:last-child)::after{
  content: "";
  display: inline-block;
  align-self: center;
  width: 25px;
  height: 25px;
  border-top: 3px solid var(--main-color);
  border-right: 3px solid var(--main-color);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: -34px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .step-card {
      padding: 60px 20px 30px;
  }
}

@media screen and (max-width: 850px) {
  .step-container {
      margin: 60px auto 0;
      flex-direction: column;
      align-items: center;
      gap: 92px;
  }
  .step-card:not(:last-child)::after{
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
    top: auto;
    width: 20px;
    height: 20px;
  }
  .step-label {
    font-size: 13px;
  }
  .step-badge{
    width: 70px;
    height: 70px;
    top: -26px;
  }
}

@media screen and (max-width: 767px) {
  .section-flow{
    padding: 50px 0;
  }
}
/*-----------------------*/
/* よくあるご質問            */
/*-----------------------*/
.section-faq{
  padding: 100px 0;
}

.faq-container {
  max-width: 900px;
  margin: 80px auto 40px;
  font-family: sans-serif;
  border-top: 1px solid #d5d5d5;
}

.faq-item {
  border-bottom: 1px solid #d5d5d5;
  overflow: hidden;
}

.faq-question {
  list-style: none;
  padding: 30px 10px ;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq-question::-webkit-details-marker { display: none; }

.q-prefix {
  color: var(--main-color);
  font-size: clamp(25px, 25 / 375 * 100vw ,38px);
  line-height: 1;
  margin-right: 15px;
}

.q-text {
  font-size: clamp(16px, 16 / 375 * 100vw ,22px);
  font-weight: 500;
  flex: 1;
  line-height: 1.43;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr; 
  transition: grid-template-rows 0.3s ease-out; 
}

.faq-item[open] .faq-content {
  grid-template-rows: 1fr; 
}

.faq-answer {
  overflow: hidden; 
}

.faq-answer p {
  padding: 0 50px 25px 50px;
  margin: 0;
  line-height: 1.8;
  font-size: clamp(14px, 14 / 400 * 100vw ,16px);
}

.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--main-color);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.faq-icon::before { width: 16px; height: 2px; }
.faq-icon::after { width: 2px; height: 16px; }
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .section-faq{
    padding: 50px 0 0;
  }
  .faq-question {
      padding: 25px 5px;
  }
  .faq-answer p {
    padding: 0 25px 25px 36px;
  }
  .faq-container {
    margin: 40px auto 40px;
  }

}

/*-----------------------*/
/* 会社概要            */
/*-----------------------*/
.section-company{
  padding: 100px 0 130px;
}
.company-profile {
  max-width: 900px;
  margin: 20px auto;
  line-height: 1.8;
}
.profile-row {
  display: flex;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid #d5d5d5;
  font-size:clamp(14px, 14 / 767 * 100vw ,18px);
}

.profile-row dt {
  width: 230px;
  flex-shrink: 0;
  font-weight: 500;
}
.profile-row dd {
  flex-grow: 1;
  margin: 0;
}

.map-link {
  color: var(--main-color);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.map-link:hover { text-decoration: underline; }
.icon-map{
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 width=%2216px%22 height=%2220px%22%3E %3Cpath fill-rule=%22evenodd%22 fill=%22rgb(216, 12, 24)%22 d=%22M8.334,19.046 C8.148,19.182 7.933,19.249 7.716,19.249 C7.498,19.249 7.283,19.182 7.099,19.049 C2.388,15.631 0.000,11.872 0.000,7.872 C0.000,3.618 3.462,0.156 7.716,0.156 C11.943,0.156 15.380,3.618 15.380,7.872 C15.380,11.895 13.009,15.655 8.334,19.046 ZM7.716,2.260 C4.621,2.260 2.105,4.778 2.105,7.872 C2.105,10.991 3.992,14.020 7.716,16.882 C11.405,14.041 13.275,11.012 13.275,7.872 C13.275,4.778 10.780,2.260 7.716,2.260 ZM7.716,11.482 C5.726,11.482 4.108,9.862 4.108,7.872 C4.108,5.883 5.726,4.264 7.716,4.264 C9.676,4.264 11.273,5.883 11.273,7.872 C11.273,9.862 9.676,11.482 7.716,11.482 ZM7.716,6.368 C6.902,6.368 6.213,7.057 6.213,7.872 C6.213,8.700 6.886,9.376 7.716,9.376 C8.517,9.376 9.168,8.700 9.168,7.872 C9.168,7.045 8.517,6.368 7.716,6.368 Z%22/%3E %3C/svg%3E');
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 20px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: -5px;
}
.business-content {
  display: flex;
  gap: 40px;
}
.business-col-title ,.mid-title {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}
.business-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.55;
}
.business-col li::before {
  content: "・";
  margin-right: 5px;
}

/* アドバイザリーボードの間隔 */
.board-section {
  margin-bottom: 25px;
}
.board-section:last-child { margin-bottom: 0; }
.board-section strong { display: block; margin-bottom: 5px; }
.board-section p { margin: 0; }

@media screen and (max-width: 1024px) {
  .business-content {
      gap: 20px;
  }
}

/* レスポンシブ対応：スマホでは縦並びにする */
@media (max-width: 767px) {
  .section-company{
    padding: 50px 0 56px;
  }
  .profile-row {
    flex-direction: column;
    font-size:clamp(14px, 14 / 500 * 100vw ,17px);
    padding: 20px 20px;
  }
  .profile-row dt {
    width: 100%;
    margin-bottom: 10px;
  }
  .business-content {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .business-col ul,
  .board-section p{
    line-height: 1.5;
  }
  .board-section .mid-title{
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 500px) {
  .profile-row {
    padding: 20px 5px;
  }
}


/*--------------------------*/
/* モーダルウインドウ：POINT02 */
/*--------------------------*/
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
/* 表示 */
.modal.is-open {
  display: block;
}
/* 背景 */
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
/* 中身 */
.modal-content {
  position: relative;
  width: 90%;
  max-width: 1040px;
  margin: 10px auto 30px;
  background: #fff;
  padding: 96px 70px;
  border-radius: 8px;
  z-index: 1;
  height: 100svh;
  overflow-y: auto;
}
/* 背景スクロール禁止 */
body.is-fixed {
  position: fixed;
  width: 100%;
}
/*閉じるボタン*/
.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 2px;
  background: var(--text-color);
  transform-origin: center;
}
.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.top-text{
  font-size: 16px;
}
.modal-steps{
  padding: 0;
  gap: 12px;
  margin-bottom: 80px;
}
.modal-steps .box {
    width: 25%;
}
.modal-steps .skills-title{
  background-color: var(--main-color) !important;
  height: 48px;
  margin-bottom: 10px;
}
.modal-steps .skills-text{
  font-size: 16px;
  font-size:clamp(14px, 14 / 1000 * 100vw ,16px);
  background-color: #f9f7f5;
  border: none !important;
  height: 107px;
  padding: 12px 15px;
}

.wrap-skills .box:last-child .skills-title {
    clip-path: polygon(100% 0, 100% 100%, 0% 100%, 10% 50%, 0% 0%);
    width: 100%;
}



.wrap-person{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin: 0 auto;
}
.wrap-person2,
.wrap-person3{
  margin-top: 100px;
}
.wrap-person .name{
  font-size:clamp(18px, 18 / 500 * 100vw ,28px);
  text-align: left;
}
.wrap-person .name-en{
  font-size:clamp(12px, 12 / 500 * 100vw ,14px);
  font-weight: 200;
  text-align: left;
}
.position{
  font-size:clamp(13px, 13 / 500 * 100vw ,16px);
  margin: 40px 0 0;
  padding: 0 0 0 15px;
}
.position li::marker{
  font-size: 50%;
}
.biography{
  font-size:clamp(13px, 13 / 500 * 100vw ,16px);
  line-height: 2;
  background-color: #f9f7f5;
  padding: 30px 28px;
  margin-top: 40px;
}
.literary-work{
  margin-top: 1em;
}

@media screen and (max-width: 1000px) {
  .modal-content {
      padding: 80px 40px;
  }
  .top-text {
    text-align: center;
  }
}
@media screen and (max-width: 880px) {
  .modal-steps .skills-text {
      height: 110px;
      padding: 12px 10px;
  }
}
@media screen and (max-width: 767px) {
  .modal-steps.wrap-skills .box {
      border: none;
      width: 215px;
      height: auto;
      padding: 0
      ;
  }
  .modal-steps .skills-text {
      height: 80px;
      display: flex;
      align-items: center;
  }
  .modal-steps .skills-title {
    height: 110%;
  }
  .modal-steps .skills-title .title{
    text-align: center;
  }
  .modal-steps {
      margin: 30px auto;
      width: 290px;
      min-width: 250px;
  }
  .wrap-person .name,
  .wrap-person .name-en{
    text-align: center;
  }
  .wrap-person .name-en{
    margin-top: -20px;
  }
  .wrap-person{
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .wrap-person .box-text{
    display: contents;
  }
  .wrap-person .box-img{
    width: 33vw;
    max-width: 165px;
  }
  .position {
    order: 5;
    margin: 5px 0 0;
  }
  .modal-close::before, .modal-close::after{
    width: 35px;
  }
  .modal-steps .box:last-child  .skills-title {
    clip-path: polygon(100% 0, 100% 100%, 50% 100%, 0 100%, 0 0, 50% 8%) !important;
    height: 100%;

  }
  .modal-steps .box:last-child ,
  .modal-steps .box:last-child .skills-text{
    height: 95px;
  }
}
@media screen and (max-width: 550px) {
  .modal-content {
      padding: 70px 20px 80px;
  }
  .biography {
    padding: 20px 20px;
    margin-top: 20px;
  }
  .wrap-person2, .wrap-person3 {
      margin-top: 55px;
  }
  .modal-close {
    top: 10px;
    right: 15px;
  }
  .modal-close::before, .modal-close::after {
      width: 30px;
  }
  .top-text {
      text-align: left;
  }
}
/***************/
/*　コピーライト */
/***************/
.copyright{
  display: block;
  text-align: center;
  font-size:clamp(12px, 12 / 375 * 100vw ,15px);
  padding: 24px;
  line-height: 1;
}
/*-----------------------*/
/* 追記            */
/*-----------------------*/
ul.seminars_list--1 li:nth-child(n+4) {
  display: none;
}
ul.seminars_list--2 li:nth-child(-n+3) {
  display: none;
}