@charset "utf-8";
.wrapper {
    max-width: 90%;
}

.br-sp{
  display: none;
}


#training {
    margin: 100px auto 0 auto;
}
.title {
    display: block;
    text-align: center;
}
.title h2 {
    font-size: 6.4rem;
    font-weight: 700;
    color:var(--primary-red);
}
.title p {
    font-size: 1.8rem;
    color: #000;
    padding-top: 15px;
}
.top_img{
    display: block;
    width: 80%;
    margin: 0 auto;
    padding-top: 80px;
}
.box{
    width: 80%;
    background-color: var(--primary-red);
    opacity: 0.5;
    margin: 0 auto;
    text-align: center;
}

.training_catch,
.training_intro{
    color: #ffffff;
}

.training_catch{
    display: block;
    font-size: 3rem;
    padding-top: 25px;
}
.training_intro{
    display: inline-block;
    font-size: 2rem;
    line-height: 1.5;
    padding: 40px 10px 25px;
    text-align: left;
}

@media (max-width:768px) {
  #training {
    margin: 50px auto 0;
}
    .title {
    margin-bottom: 40px;
    }
    .title h2 {
    font-size: 3.2rem;
    text-align: center;
    padding-bottom: 10px
    }
    .title p {
    font-size: 1.5rem;
    padding: 0;
    }
    .top_img{
      padding-top: 0px;
  }
  .training_catch{
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: left;
    padding: 10px;
}
.training_intro{
  font-size: 1.4rem;
}
.top_img{
  width: 90%;
}
.box{
  width: 90%;
}
.training_intro{
  padding: 20px 10px 25px;
}
}

/*=============ボタン===================*/
.button{
    margin-top: 85px;
}
.button a {
    background: var(--primary-red);
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 400px;
    padding: 10px 50px 10px 10px;
    color: #fff;
    line-height: 1.4;
    text-decoration: none;
    text-align: center;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-size: 2.5rem;
}
/* 白い丸（矢印の背景） */
.button a::before {
    content: '';
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    z-index: 1;
}
.button a:hover {
    background: #333;
    color: #FFF;
}
/* 矢印本体 */
.button a::after {
    content: '';
    width: 16px;
    height: 16px;
    border-top: 3px solid var(--primary-red);
    border-right: 3px solid var(--primary-red);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 48%;
    right: 8%;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
    z-index: 2;
}
.button a:hover:after {
    border-color: var(--primary-red);
}


.arrow{
    width: 10%;
}

@media (max-width:768px) {
  .button a {
    background: var(--primary-red);
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 200px;
    padding: 10px 50px 10px 10px;
    color: #fff;
    line-height: 1.4;
    text-decoration: none;
    text-align: center;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-size: 1.5rem;
}
/* 白い丸（矢印の背景） */
.button a::before {
  content: '';
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: 1;
}
/* 矢印本体 */
.button a::after {
  width: 12px;
  height: 12px;
  top: 48%;
  right: 10%;
}
}

/*=============profile===================*/
.manner_box {
    position: relative;
    background-color: #fff;
    padding: 35px 20px;
    margin: 60px auto 0;
    overflow: hidden;
}

.manner_inner {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manner_heading {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.manner_text {
    display: inline-block;
    text-align: left;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.8;
    color: #333;
}

@media (max-width:768px){
  .manner_box {
    padding: 35px 30px;
}
  .br-sp{
    display: block;
  }
  .manner_heading {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.3;
}
.manner_text {
  font-size: 1.4rem;
}
}

/* =============================
    装飾ストライプ（左右2本ずつ）
  ============================= */

.stripe {
    position: absolute;
    top: 0;
    height: 100%;
    width: 60px;
    background-color: #f49ca2;
    transform: skew(10deg);
    z-index: 2;
    opacity: 0.6;
}

  /* 左側2本 */
.stripe-left1 {
    left: -48px;
    width: 100px;
}
.stripe-left2 {
    left: 80px;
}

  /* 右側2本 */
.stripe-right1 {
    right: -48px;
    width: 100px;
}
.stripe-right2 {
    right: 80px;
}

/* 全体の囲みボックス */
.concern_box {
    margin: 120px auto 0;
    max-width: 870px;
}

  /* 中身を整える */
.concern_inner {
    text-align: center;
}

  /* 見出し */
.concern_title {
    background: url("../img/training/frame.svg") no-repeat center center;
    background-size: cover;
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    color:#000;
    padding: 30px 0;
}

  /* リスト全体 */
.concern_list {
    display:inline-block;
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

  /* チェックマーク付きli */
.concern_list li {
    background: url("../img/training/check.svg") no-repeat left center;
    background-size: 150%;
    background-size: 24px 24px;
    padding-left: 36px;
    margin-bottom: 16px;
    font-size: 2.3rem;
    line-height: 1.5;
}

.concern_image_wrap {
    margin-top: 40px;
    text-align: center;
}

  /* イラスト部分 */
.concern_illust img {
    width: 200%;
    max-width: 600px; /* 適宜調整 */
    height: auto;
    display: inline-block;
}

  /* 赤いライン部分 */
.concern_line {
    margin-top: 20px;
}

.concern_line img {
    width: 100%;
    max-width: 2000px; /* くびれ線の実サイズにあわせて調整 */
    height: auto;
    display: inline-block;
    padding-top: 75px;
}

.training_feature {
    background-color: #fff;
    width: 80%;
    display: block;
    margin: 60px auto 0;
}

.feature_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 30px;
}

  /* 左側：テキスト */
.feature_text {
    width: 55%;
}

.feature_catch {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
}
.feature_catch span {
    font-weight: 800;
    display: block;
    margin-top: 10px;
    font-size: 3rem;
    letter-spacing: 0.08em;
}

.feature_desc {
    font-size: 2rem;
    line-height: 1.8;
    color: #333;
    text-align: left;
}

  /* 右側：イラスト画像 */
.feature_image {
    width: 40%;
    text-align: center;
}
.feature_image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.br-sp{
  display: none;
}

@media (max-width:768px){
  .concern_box {
   width: 80%;
   margin: 60px auto 0;
}
  .concern_illust img {
    width: 90%;
}
.concern_list {
  display:inline-block;
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}
.concern_title {
  background-size: auto;
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  color:#000;
  padding: 30px 0;
}
.concern_list li {
  padding: 0 0 3px 36px;
  margin-bottom: 16px;
  font-size: 1.4rem;
  line-height: 1.5;
}
.feature_catch {
  font-size: 2.3rem;
}
.feature_catch span {
 font-size: 1.8rem;
 line-height: 1.3;
}
.feature_inner {
  display: block;
  padding-top: 30px;
}
.feature_text {
  width: 100%;
}
.feature_desc {
  font-size: 1.4rem;
}
.br-sp{
  display: block;
}
  /* 右側：イラスト画像 */
  .feature_image {
    width: 100%;
    text-align: center;
}
.feature_image img {
  display: block;
  width: 75%;
  margin: 0 auto;
  padding-top: 20px;
}
/* 背景のストライプ */
.stripe {
  position: absolute;
  top: 0;
  height: 100%;
  width: 22px;
  background-color: #f49ca2;
  transform: skew(10deg);
  z-index: 2;
  opacity: 0.5;
}

/* 左側2本 */
.stripe-left1 {
  left: -100px;
  width: 100px;
}
.stripe-left2 {
  left: 19px;
}

/* 右側2本 */
.stripe-right1 {
  right: -100px;
  width: 100px;
}
.stripe-right2 {
  right: 19px;
}
}

/* * ============研修プログラム================= */
.training_programs {
    width: 80%;
    padding: 0 20px;
    text-align: center;
    background-color: #fff;
    margin: 150px auto 0;
}

.section_heading {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 40px;
}
.section_heading span {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    color: #000;
    padding-top: 15px;
}

  /* カード2列レイアウト */
.card_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
    justify-content: center;
    padding-top: 50px;
}

.training_card {
    width: calc(50% - 10%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.35);
    overflow: hidden;
    transition: transform 0.3s;
}
.training_card:hover {
    background: #fdf4f4; 
}

.training_card:hover img {
    filter: brightness(0.9); /* 少し暗くなる */
}

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

.card_content {
    padding: 20px;
    text-align: left;
    position: relative;
    min-height: 240px; /* 必要に応じて調整 */
    padding-bottom: 60px; /* 👈 ボタン分の下スペースを確保 */
}

.card_content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    color:#000;
    border: 2px solid var(--primary-red);
    display: inline-block;
    padding: 5px;
}

.card_content p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #000;
}

.circle_btn {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: var(--primary-red);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    text-decoration: none;

    position: absolute;
    bottom: 20px;
    right: 20px;

    transition: background 0.3s;
    cursor: pointer; /* ← 指マークに！ */
}

.circle_btn:hover {
    background-color: #a82323;
}

/* モーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal_content {
    background: #fff;
    border: 2px solid var(--primary-red);
    padding: 30px;
    max-width: 800px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    position: relative;
    text-align: left;

    max-height: 90vh;  /* モーダルの高さを画面の90%に制限 */
    overflow-y: auto;  /* 中身が多いときにスクロール */
}

/* 上段：テキストと画像の横並び */
.modal_inner {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
  }
  .modal_inner p{
    width: 100%;
  }
  
  .modal_text_block {
    flex: 1;
  }
  
  .modal_text_block h3 {
    font-size: 2rem;
    border: 2px solid var(--primary-red);
    padding: 8px;
    margin-bottom: 12px;
    display: inline-block;
  }
  
  .modal_text_block p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  
  .modal_flex_row {
    display: flex;
    align-items: center; /* pとimgを縦方向中央揃え */
    gap: 30px; /* テキストと画像の間の余白 */
  }
  
  /* テキスト側に幅の比重をもたせたい場合 */
  .modal_flex_row p {
    flex: 1;
    margin: 0; /* 必要に応じて */
  }
  
  /* 画像側は縮小防止 */
  .modal_img img {
    max-width: 300px;
    height: auto;
    display: block;
  }
  
  
  /* 下段：研修内容リスト */
  .modal_subheading {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #000;
    text-decoration: underline 2px var(--primary-red);
    text-underline-offset: 5px;
  }
  
  .modal_topics {
  display: flex ;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between; /* ←横並びを安定させる */
}
  
  .modal_topics li {
    width: calc(47% - 10px);
    font-size: 1.5rem;
    line-height: 1.3;
    background: #fdfdfd;
    padding-left: 12px;
  }

  .modal_close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 2.4rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    z-index: 10;
    transition: color 0.2s ease;
}

.modal_close:hover {
    color: var(--primary-red); /* ホバーで赤くするなど */
}

.with_line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.with_line::after {
    content: "";
    flex-grow: 1;
    height: 1.5px;
    background-color: var(--primary-red);
}


.red-dot {
    color: var(--primary-red);
}

  /* レスポンシブ対応 */
  @media (max-width: 768px) {
    .modal_inner {
      flex-direction: column;
    }
    .modal_topics li {
      width: 100%;
    }
    .section_heading span {
      font-size: 1.5rem;
      padding-top: 5px;
  }
    .section_heading {
      font-size: 3.2rem;
      font-weight: 900;
      color: var(--primary-red);
      margin-bottom: 40px;
  }
  .card_grid {
    display: block;
    padding-top: 0px;
  }
  .training_card {
    width: 100%;
    margin-top: 30px;
}
.modal_content {
  padding: 20px;
  max-width: 95%;
  height: auto;
  overflow-y: auto;
}

/* テキストと画像を縦並びに */
.modal_inner {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.modal_flex_row {
  flex-direction: column;
  gap: 20px;
}

/* 画像サイズを親に収める */
.modal_img img {
  max-width: 100%;
  height: auto;
}

/* 見出しと本文サイズ調整 */
.modal_text_block h3 {
  font-size: 1.6rem;
  padding: 6px;
}

.modal_text_block p {
  font-size: 1.4rem;
  line-height: 1.6;
}

/* モーダル内容リストの項目も1列表示 */
.modal_topics {
  flex-direction: column;
  gap: 16px;
}

.modal_topics li {
  width: 100%;
  font-size: 1.4rem;
}

.modal_subheading {
  font-size: 1.6rem;
  margin-top: 20px;
}

.modal_close {
  font-size: 2rem;
  top: 8px;
  right: 10px;
}
.modal_topics li {
  padding-left: 0;
}
  } 


/*  ============選ばれる理由================= */
.reason_section{
    width: 80%;
    margin: 150px auto 0;
}
.section_heading_deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* 文字と画像の間隔 */
    margin-bottom: 40px;
    text-align: center;
}

.section_heading .section_title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-red); /* 赤色に合わせて調整 */
    white-space: nowrap;
}

.heading_deco {
    width: 25px;
    height: auto;
}

.reason_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
}

.reason_list li {
    width: 25%;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.reason_list li img {
    width: 80px;
    margin-bottom: 15px;
}


.reason_title{
    font-size: 2rem;
    color: #000;
    text-decoration:underline 2px var(--primary-red) ;
    font-weight: 900;
    text-align: center;
    line-height: 1.5;
}
.reason_text{
    text-align: left;
    font-size: 1.8rem;
    line-height: 1.7;
    color: #000;
    padding-top: 15px;
}
@media (max-width: 768px) {
  .achievement_item {
      flex: 1 1 100%;
  }

  .reason_list {
    display: block;
}
.section_title{
  font-size:2.3rem ;
}
.reason_list li {
width: 80%;
padding: 0;
margin: 20px auto 0;
}
.reason_title{
font-size: 1.7rem;
line-height: 1.6;
}
.reason_text{
font-size: 1.4rem;
line-height: 1.5;
}
}

@media (max-width: 960px) {
  .reason_title{
    font-size: 1.7rem;
    line-height: 1.6;
    }
  .reason_list {
    display: block;
}
.section_title{
  font-size:2.3rem ;
}
.reason_list li {
width: 80%;
padding: 0;
margin: 20px auto 0;
}
}
/*  ============実績紹介================= */
.achievement_section{
    width:80% ;
    text-align: center;
    display: block;
    margin: 150px auto 0;
}

.achievement_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    justify-content: center;
    padding-top: 40px;
}

.achievement_item {
    flex: 0 1 calc(50% - 15px);
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-sizing: border-box;
}

.achievement_icon {
    width: 10%;
    height: auto;
    flex-shrink: 0;
    padding-right: 3%;
}

.achievement_category {
    font-weight:900;
    font-size: 1.8rem;
    margin-bottom: 6px;
    color: #333;
    text-align: left;
}

.achievement_text {
    font-size: 1.6rem;
    color: #000;
    line-height: 1.5;
    text-align: left;
    padding-top: 10px;
}
.section_reason_title{
  font-size:5rem ;
  color: var(--primary-red);
  text-align: center;
  font-weight: 900;
}
.section_title{
    font-size:5rem ;
    color: var(--primary-red);
    text-align: center;
    font-weight: 900;
}

.section_subtitle{
    font-size: 2rem;
    color: #000;
    padding-top: 15px;
    text-align: center;
}

.satisfaction_box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    }

.satisfaction_icon {
    width: 28px;
    height: auto;
    flex-shrink: 0;
    margin-top: 4px;
}

.satisfaction_text {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #000;
}

.satisfaction_text strong {
    color: var(--primary-red);
}

.satisfaction_note {
    font-size: 1.2rem;
    color: #777;
}
.br-sp{
  display: none;
}


@media (max-width: 768px) {
  .section_title{
    font-size:3.2rem ;
    line-height: 1.2;
}
    .achievement_item {
        flex: 1 1 100%;
        margin-top: 10px;
    }

    .reason_list {
      display: block;
  }
  .section_reason_title{
    font-size:2.3rem ;
    font-weight: 900;
}
.reason_list li {
  width: 80%;
  padding: 0;
  margin: 20px auto 0;
}
.reason_title{
  font-size: 1.7rem;
  line-height: 1.6;
}
.reason_text{
  font-size: 1.4rem;
  line-height: 1.5;
}
.section_subtitle{
  font-size: 1.5rem;
  padding-top: 10px;
  text-align: center;
}
.achievement_category {
  font-size: 1.6rem;
}
.achievement_text {
  font-size: 1.4rem;
  padding-top: 5px;
}
.br-sp{
  display: block;
}
.satisfaction_text {
  font-size: 1.5rem;
}
}

/*  ============受講者の声================= */

.voice_section {
    width: 80%;
    max-width: 1000px;
    margin: 180px auto 0;
    text-align: center;
}

.section_heading_en {
    font-size: 5rem;
    color: var(--primary-red);
    font-weight: 900;
    text-transform: uppercase;
}

.section_heading_ja {
    font-size: 2rem;
    font-weight: 700;
    padding-top: 15px;
}

.voice_list {
    display: block;
    list-style: none;
    padding-top: 40px;
    margin: 0 auto;
}

.voice_item {
    display: flex;
    align-items: flex-start;
    margin-top: 50px;
    text-align: left;
    gap: 20px;
}

.voice_icon {
    width: 95px;
    flex-shrink: 0;
}

.voice_content {
    flex-grow: 1;
}

.voice_name {
    font-weight: bold;
    font-size: 2rem;
    padding-left: 3%;
}

/* コメント部分のみ吹き出し風 */
.voice_comment {
    position: relative;
    display: inline-block;
    margin:15px 0 0 20px;
    padding: 10px;
    border: 2px solid var(--primary-red);
    background-color: #ffffff;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
}

/* 吹き出しのしっぽ（左側） */
.voice_comment::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 10px 20px 10px 0;
    border-color: transparent #e52828 transparent transparent;
    translate: -100% -50%;
}

.voice_comment::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 7.8px 15.5px 7.8px 0;
    border-color: transparent #ffffff transparent transparent;
    translate: -100% -50%;
}

@media (max-width: 768px) {
  .section_heading_en {
    font-size: 3.2rem;
}
.voice_item {
  display: block;
  align-items: flex-start;
  margin-bottom: 40px;
  text-align: left;
  gap: 20px;
}
.voice_icon {
  display: block;
  margin: 0 auto;
}
.voice_name {
  font-size: 1.6rem;
  margin-bottom: 0;
  padding-left: 0;
  padding-top: 10px;
  text-align: center;
}
.voice_comment {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  padding: 10px;
  border: 2px solid var(--primary-red);
  background-color: #ffffff;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin: 30px 0 0 0;
}

/* 吹き出しのしっぽ（左側） */
.voice_comment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 10px 20px 10px;
  border-color: transparent transparent var(--primary-red);
  translate: -50% -100%;
}

.voice_comment::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 7.8px 15.5px 7.8px;
  border-color: transparent transparent #ffffff;
  translate: -50% -100%;
}

}


/*  ============講師紹介================= */
.trainer_section{
    margin-top: 120px;
    display: block;
    margin: 150px auto 0;
    background-color: rgba(229,40,40,0.3);
    padding: 20px 0;
}

.trainer_wrapper{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 0 25px 0;
    margin: 0 auto;
}
.trainer_image img{
    width: 280px;
}

.trainer_info {
    max-width: 500px;
    text-align: left;
}

.trainer_intro {
    font-size: 2rem;
    color: #000;
    font-weight: 900;
}

.trainer_name {
    font-size: 2rem;
    font-weight: bold;
    padding-top: 35px;
    color: #000;
}

.trainer_detail {
    list-style: none;
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.8;
    padding-top: 20px;
    color: #000;
}
@media (max-width: 768px) {
.trainer_intro {
  font-size: 1.6rem;
}
.trainer_detail {
  font-size: 1.4rem;
}
.trainer_image img{
  width: 250px;
}
}
/*=========
accordion
=========*/

.accordion_area {}
.accordion_area .accordion_one .ac_header {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 1.5rem 4rem 1.5rem 2rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
}
.accordion_area .accordion_one .ac_header:not(.open):hover {
  background-color: #f1f8ff;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header {
  background-color: #f5f5f5;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
  background-color: #f1f8ff;
}
.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.accordion_area .accordion_one .ac_header .i_box:before, .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #014897;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #014897;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}
.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}
.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  background: #fff;
}
@media screen and (max-width: 736px) {
  .accordion_area .accordion_one .ac_header {
    padding: 1.5rem 2rem 1.5rem 1.0rem;
  }
  .accordion_area .accordion_one .ac_header .i_box {
    right: 0.8rem;
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
  .accordion_area .accordion_one .ac_header .i_box:before {
    width: 15px;
  }
  .accordion_area .accordion_one .ac_header .i_box:after {
    height: 15px;
    right: 7px;
  }
  .accordion_area .accordion_one .ac_inner {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  }
}

/*=========
faq
=========*/
.faq_section{
    margin: 120px auto 0;
    width: 80%;
}

.p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__headinner::before {
  position: absolute;
  left: 0;
  content: "Q．";
  color: #09357f;
  font-size: 20px;
  font-weight: bold;
}
.p-faq__headinner p.p-faq__q-txt {
  font-size: 2rem;
  text-align: left;
}
@media screen and (max-width: 736px) {
  .p-faq__headinner {
    padding-left: 25px;
  }
  .p-faq__headinner::before {
    font-size: 1.4rem;
  }
  .p-faq__headinner p.p-faq__q-txt {
    font-size: 1.4rem;
  }
}
.p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__bodyinner::before {
  position: absolute;
  left: 0;
  content: "A．";
  color: #de0000;
  font-size: 2rem;
  font-weight: bold;
}
.p-faq__bodyinner p.p-faq__a-txt {
    display: block;
    font-size: 2rem;
    text-align: left;
    margin: 0 auto;
}

.price_section {
    margin-top: 1.5em;
    text-align: center;
    font-size: 16px;
  }
  
  .price_note {
    font-weight: bold;
    font-size: 2rem;
    color: #000;
  }
  
  .wavy-underline {
    display: inline-block;
    position: relative;
  }
  
  .wavy-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 5px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="5"><path d="M0,2.5 Q2.5,0 5,2.5 T10,2.5 T15,2.5 T20,2.5 T25,2.5 T30,2.5 T35,2.5 T40,2.5 T45,2.5 T50,2.5 T55,2.5 T60,2.5 T65,2.5 T70,2.5 T75,2.5 T80,2.5 T85,2.5 T90,2.5 T95,2.5 T100,2.5" fill="none" stroke="red" stroke-width="1"/></svg>');
    background-repeat: repeat-x;
    background-size: contain;
    height: 6px;
  }
  
  .price_boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    padding-top: 13px;
  }
  
  .price_box {
    border: 1px solid #aaa;
    padding: 1em;
    width: 300px;
    text-align: left;
    position: relative;
  }
  
  .plan_title {
    font-weight: bold;
    color: #000;
  }
  
  .normal_price {
    color: #555;
    padding-top: 10px;
  }
  
  .discount_price {
    color: #e60033;
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.3em;
    justify-content:center;
  }
  
  .discount_price span:first-child {
    font-size: 1em;
  }
  
  .badge {
    background-color: #e60033;
    color: white;
    font-size: 0.8em;
    padding: 0.2em 0.4em;
    border-radius: 6px;
    font-weight: normal;
    line-height: 1.2;
    text-align: center;
    margin-left: 10px;
  }
  
  .badge .percent {
    display: block;
    font-size: 1em;
  }
  
  .discount_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
  }
  
  .badge_note {
    font-size: 1.2rem;
    color: #555;
    margin-top: 9px;
    text-align: right;
    line-height: 1.2;
  }
  .s_section {
    margin: 60px 0 0 0;
  }
  
  
@media screen and (max-width: 736px) {
  .p-faq__bodyinner {
    padding-left: 25px;
  }
  .p-faq__bodyinner::before {
    font-size: 14px;
  }
  .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 14px;
  }
  .price_note {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .wavy-underline::after {
    bottom: -3px;
  }
  .discount_price {
    font-size: 1.8rem;
  }
  .badge_note {
    text-align: left;
}
}
/*=========
base
=========*/


.s_section {
  max-width: 1020px;
  margin: 0 auto;
  padding: 60px 10px 0 10px;
}
.gutter>*:not(:last-child) {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 736px) {
  h2 {
    font-size: 16px;
  }
}
ul.list-disc {
  margin-bottom: 0;
  padding-left: 0;
}
.list-disc__item {
  margin-left: 1.5em;
  list-style: disc;
}
a._a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 2.0em 1.0em;
  border: 1px solid #222222;
  background: linear-gradient(to right, #ffffff 50%, #222222 50%);
  background-size: 200% auto;
  box-sizing: border-box;
  color: #222222;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  transition: .3s;
  position: relative;
}
a._a:after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
}
a._a:hover {
  color: #ffffff;
  background-position: -100% 0;
}