@charset "UTF-8";
   
    
    /* パソコンで見たときは"pc"のclassがついた画像が表示される */
    .topimg_pc {
        display: block !important;
      }
  
      .topimg_sp {
        display: none !important;
      }
  
      .imgBox {
        max-width: none;
        padding-top: 0px;
        padding-bottom: 0px;
      }
  
      /* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
      @media only screen and (max-width: 750px) {
        .topimg_pc {
          display: none !important;
        }
  
        .topimg_sp {
          display: block !important;
        }
      }
  
      .c-heading-3 {
        margin: 15px;
        line-height: 1.4;
      }
  
      /* 求人 */
      .heading0411 {
        font-size: 1.5em;
        color: #d00e00;
        border-left: 6px solid #d00e00;
        padding-left: 12px;
        margin-bottom: 1em;
      }
  
      .info-box0411 {
        background-color: rgb(255, 240, 241);
        padding: 1em;
        margin: 2em 0;
      }
  
      a.anchor {
        display: block;
        padding-top: 30px;
        margin-top: -30px;
      }
  
      /* .paragraph0411 {
      margin-bottom: 1.2em;
    } */
  
      @media (max-width: 767px) {
  
        .heading0411 {
          font-size: 1.3em;
        }
      }

      /* ヘッダートップバナー */
      .l-header-top-banner {
        background-color: #d00e00;
        height: 15px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: left;
        font-size: 12px;
        line-height: 10px;
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10001;
        margin: 0;
        padding-left: 1em;
      }
      .l-header__logo{
        margin-top: 10px;
      }
      @media only screen and (max-width: 47.9375em) {
        .l-header__logo{
          margin-top: 0;
        }
      }

      @media only screen and (max-width: 47.9375em) {
        .l-header-top-banner {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          z-index: 10001;
          justify-content: center;
          font-size: 10px;
          padding-left: 0;
        }

        .l-header__button {
          top: 20px !important;
        }
      }

      .sp_only {
        display: none;
      }

      @media (max-width: 767px) {
        .sp_only {
          display: block;
        }
      }
/* =========================================
   カルーセルスライドショー
   ========================================= */

.carousel-slideshow {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  cursor: grab;
}

.carousel-track.dragging {
  transition: none;
  cursor: grabbing;
}

/* スライドアイテム */
.carousel-item {
  flex: 0 0 auto;
  width: 600px;
  height: 500px;
  margin: 0 15px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-item:hover img {
  transform: scale(1.03);
}

.carousel-item:hover img.carousel-overlay-image {
  transform: scale(1.03);
}

/* オーバーレイ画像（右下に配置）
   .carousel-item img の width/height:100% より優先するため結合セレクタを使用 */
.carousel-item img.carousel-overlay-image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: min(150px, 42%);
  max-height: min(170px, 48%);
  pointer-events: none;
  transition: transform 0.3s ease;
  object-fit: contain;
  object-position: right bottom;
  left: auto;
  top: auto;
}

/* 各画像の個別サイズ制御 */
.carousel-item img.carousel-overlay-beginner {
  bottom: 0;
  right: min(100px, 18%);
  max-width: min(100px, 30%);
  max-height: min(170px, 48%);
}

.carousel-item img.carousel-overlay-kids {
  bottom: 10px;
  right: 0;
  max-width: min(200px, 46%);
  max-height: min(170px, 48%);
}

.carousel-item img.carousel-overlay-junior {
  max-width: min(250px, 48%);
  max-height: min(200px, 52%);
  bottom: 10px;
  right: -30px;
}

.carousel-item img.carousel-overlay-middle {
  max-width: min(250px, 50%);
  max-height: min(250px, 58%);
  bottom: 0;
  right: -30px;
}

.carousel-item img.carousel-overlay-private {
  max-width: min(160px, 38%);
  max-height: min(240px, 58%);
  bottom: 0;
  right: min(50px, 10%);
}

.carousel-item img.carousel-overlay-family {
  max-width: min(250px, 50%);
  max-height: min(250px, 58%);
  bottom: 0;
  right: -30px;
}

/* キャプション（画像下部のオーバーレイ） */
.carousel-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 121, 121, 0.75);
  padding: 12px 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  min-width: 250px;
  max-width: 90%;
  white-space: nowrap;
  /* z-index: 3; */
  /* 左右の二重線 */
  /* border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  box-shadow: 
    inset 4px 0 0 0 rgba(208, 14, 0, 0.75),
    inset -4px 0 0 0 rgba(208, 14, 0, 0.75),
    inset 6px 0 0 0 #fff,
    inset -6px 0 0 0 #fff,
    0 4px 15px rgba(0, 0, 0, 0.3); */
}

/* バッジ（キャプション上中央） */
.caption-badge {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background-color: #ffc107;
  color: #323030;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 4;
  white-space: nowrap;
  line-height: 1.2;
}

.caption-badge-text {
  font-size: 0.8em;
}

.carousel-caption h2 {
  margin: 0;
  padding: 0;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-caption span {
  display: block;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.caption-line1 {
  font-size: 18px;
  margin-bottom: 4px;
}

.caption-line2 {
  font-size: 14px;
}

/* 矢印ボタン */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid #d00e00;
  color: #d00e00;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:hover {
  background-color: #c31d1f;
  color: #fff;
}

.carousel-arrow span {
  line-height: 1;
  margin-top: -2px;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

/* =========================================
   レスポンシブ対応
   ========================================= */

/* タブレット */
@media (max-width: 1024px) {
  .carousel-slideshow {
    padding: 15px 0;
  }

  .carousel-item {
    width: 450px;
    height: 375px;
    margin: 0 10px;
  }

  .carousel-caption {
    bottom: 20px;
    padding: 10px 25px;
  }

  .caption-line1 {
    font-size: 16px;
  }

  .caption-line2 {
    font-size: 13px;
  }
}

/* スマートフォン */
@media (max-width: 768px) {
  .carousel-slideshow {
    padding: 10px 0;
  }

  .carousel-item {
    width: 300px;
    height: 250px;
    margin: 0 8px;
  }

  /* オーバーレイ：スライド内に収め、キャプションと重なりにくくする */
  .carousel-item img.carousel-overlay-image {
    max-width: min(38%, 130px);
    max-height: 52%;
  }

  .carousel-item img.carousel-overlay-beginner {
    right: clamp(6px, 3vw, 16px);
    bottom: 0;
    max-width: min(32%, 92px);
    max-height: 50%;
  }

  /* キッズイラスト：スマホでは表示サイズを約80%に */
  .carousel-item img.carousel-overlay-kids {
    bottom: 4px;
    right: 0;
    max-width: min(calc(42% * 0.8), calc(118px * 0.8));
    max-height: calc(50% * 0.8);
  }

  .carousel-item img.carousel-overlay-junior {
    max-width: min(44%, 122px);
    max-height: 54%;
    bottom: 4px;
    right: 0;
  }

  .carousel-item img.carousel-overlay-middle {
    max-width: min(44%, 122px);
    max-height: 56%;
    bottom: 0;
    right: 0;
  }

  .carousel-item img.carousel-overlay-private {
    max-width: min(36%, 102px);
    max-height: 54%;
    bottom: 0;
    right: clamp(8px, 4vw, 18px);
  }

  .carousel-item img.carousel-overlay-family {
    max-width: min(44%, 122px);
    max-height: 56%;
    bottom: 0;
    right: 0;
  }

  .carousel-caption {
    bottom: 15px;
    padding: 8px 20px;
    min-width: 150px;
  }

  .caption-line1 {
    font-size: 14px;
  }

  .caption-line2 {
    font-size: 12px;
  }

  /* バッジ：スマホで約20%縮小（ベース値の0.8倍） */
  .carousel-caption .caption-badge {
    font-size: calc(16px * 0.8);
    padding: calc(10px * 0.8) calc(20px * 0.8);
    top: calc(-55px * 0.8);
    left: 50%;
    transform: translateX(-50%);
    border-radius: calc(50px * 0.8);
    box-shadow: 0 calc(2px * 0.8) calc(8px * 0.8) rgba(0, 0, 0, 0.2);
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }
}

/* 小型スマートフォン */
@media (max-width: 480px) {
  .carousel-slideshow {
    padding: 10px 0;
  }

  .carousel-item {
    width: 260px;
    height: 217px;
    margin: 0 6px;
  }

  .carousel-item img.carousel-overlay-image {
    max-width: min(36%, 112px);
    max-height: 50%;
  }

  .carousel-item img.carousel-overlay-beginner {
    right: clamp(4px, 2.5vw, 12px);
    max-width: min(30%, 84px);
    max-height: 48%;
    right: 0;
  }

  .carousel-item img.carousel-overlay-kids {
    max-width: min(calc(40% * 0.8), calc(108px * 0.8));
    max-height: calc(48% * 0.8);
    right: -10px;
  }

  .carousel-item img.carousel-overlay-junior {
    max-width: min(42%, 108px);
    max-height: 52%;
    right: -20px;
  }

  .carousel-item img.carousel-overlay-middle {
    max-width: min(42%, 108px);
    max-height: 54%;
    right: -20px;
  }

  .carousel-item img.carousel-overlay-private {
    max-width: min(34%, 92px);
    max-height: 52%;
    right: -20px;
  }

  .carousel-item img.carousel-overlay-family {
    max-width: min(42%, 108px);
    max-height: 54%;
    right: -20px;
  }

  .carousel-caption {
    bottom: 10px;
    padding: 6px 15px;
    min-width: 120px;
  }

  .caption-line1 {
    font-size: 12px;
  }

  .caption-line2 {
    font-size: 11px;
  }

  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

@media only screen and (max-width:47.9375em) {
  .c-content-block--type_home-blog .c-content-block__inner {
      padding-top: 1.5em!important;
  }
}

/* =========================================
   講師紹介セクション - テキストを画像上に重ねる
   ========================================= */

.photographyArea .planBox .inner {
  position: relative;
  overflow: hidden;
}

.photographyArea .planBox .imgArea {
  position: relative;
  width: 100%;
}

.photographyArea .planBox .imgArea img {
  width: 100%;
  height: auto;
  display: block;
}

.photographyArea .planBox .txtArea {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
  padding: 50px 15px 15px 15px;
  box-sizing: border-box;
  color: #fff;
}

.photographyArea .planBox .txtArea .instructor-name {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px 0;
  text-align: center;
  color: #fff;
}

.photographyArea .planBox .txtArea .instructor-profile {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  color: #fff;
}

/* =========================================
   タブ切り替えセクション
   ========================================= */

.info-tabs {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* タブナビゲーション */
.info-tabs__nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ddd;
}

.info-tabs__nav-item {
  flex: 1;
  padding: 15px 10px;
  text-align: center;
  cursor: pointer;
  font-size: 19px;
  color: #666;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-bottom: none;
  margin-right: -1px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.info-tabs__nav-item:first-letter {
  font-size: 1.5em;
  color: #ec1c24;
}
.info-tabs__nav-item:first-child {
  border-radius: 4px 0 0 0;
}

.info-tabs__nav-item:last-child {
  border-radius: 0 4px 0 0;
  margin-right: 0;
}

.info-tabs__nav-item:hover {
  background: #fff;
  color: #333;
}

.info-tabs__nav-item.active {
  background: #fff;
  color: #333;
  border-bottom: 2px solid #fff;
  margin-bottom: -1px;
}

.info-tabs__nav-item .tab-icon {
  color: #d00e00;
  font-size: 20px;
  font-weight: bold;
}

/* タブコンテンツ */
.info-tabs__content {
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  min-height: 300px;
}

.info-tabs__panel {
  display: none;
  padding: 20px;
}

.info-tabs__panel.active {
  display: block;
}

.info-tabs__panel .top-blog,
.info-tabs__panel .top-news {
  padding: 0;
}

.info-tabs__panel dl {
  margin: 0;
}

.info-tabs__panel dt {
  color: #999;
  font-size: 14px;
  border-bottom: none;
}

.info-tabs__panel dd {
  margin: 0 0 10px 0;
  padding: 0 0 15px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  line-height: 1.6;
}

.info-tabs__panel dd:last-of-type {
  border-bottom: none;
}

/* 一覧を見るリンク */
.info-tabs__link {
  text-align: center;
  padding: 20px 0 10px;
}

.info-tabs__btn {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid #333;
  border-radius: 30px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fff;
}

.info-tabs__btn:hover {
  background: #333;
  color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .info-tabs {
    padding: 10px;
  }

  .info-tabs__nav {
    flex-wrap: wrap;
  }

  .info-tabs__nav-item {
    flex: 1 1 50%;
    font-size: 14px;
    padding: 12px 8px;
  }

  .info-tabs__nav-item:nth-child(1) {
    border-radius: 4px 0 0 0;
  }

  .info-tabs__nav-item:nth-child(2) {
    border-radius: 0 4px 0 0;
  }

  .info-tabs__nav-item:nth-child(3),
  .info-tabs__nav-item:nth-child(4) {
    border-radius: 0;
    border-top: none;
  }

  .info-tabs__nav-item .tab-icon {
    font-size: 18px;
  }

  .info-tabs__panel {
    padding: 15px;
  }

  .info-tabs__panel dt {
    font-size: 13px;
  }

  .info-tabs__panel dd {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .info-tabs__nav-item {
    font-size: 12px;
    padding: 10px 5px;
  }

  .info-tabs__nav-item .tab-icon {
    font-size: 16px;
  }
}

/* =========================================
   YouTube動画のレスポンシブ対応
   ========================================= */

/* デスクトップ（パソコン） */
.video_youtube {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
}

.video_youtube iframe,
.video_youtube video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
}

/* タブレット */
@media (max-width: 1024px) {
  .video_youtube {
    width: 80%;
    max-width: 600px;
  }
}

/* スマートフォン */
@media (max-width: 768px) {
  .video_youtube {
    width: 90%;
    max-width: 90%;
  }
}

/* =========================================
   当校についてボタン
   ========================================= */

.txt_catch {
  text-align: center;
  margin-top: 2em;
}

.about-link-area {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 45px;
  background: linear-gradient(135deg, #6d6d6d 0%, #292929 100%);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(138, 138, 138, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.about-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  transition: left 0.5s ease;
}

.about-btn:hover::before {
  left: 100%;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  /* border-color: #fff; */
  background: linear-gradient(135deg, #4a4a4a 0%, #2d2d2d 100%);
  color: #fff;
}

.about-btn:hover .about-btn__text,
.about-btn:hover .about-btn__icon {
  color: #fff;
}

.about-btn__icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.about-btn:hover .about-btn__icon {
  transform: translateX(5px);
}

.about-btn__text {
  letter-spacing: 0.05em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .about-link-area {
    margin-top: 25px;
  }

  .about-btn {
    /* padding: 14px 35px; */
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-link-area {
    margin-top: 20px;
  }

  .about-btn {
    /* padding: 12px 30px; */
    font-size: 15px;
  }
}

/* =========================================
   講師募集セクション
   ========================================= */

.recruitment-section {
  max-width: 1000px;
  margin: 1em auto;
  padding: 0 20px;
}

.recruitment-container {
  background: #fff;
  /* border: 2px solid #e0e0e0; */
  /* border-radius: 8px; */
  padding: 20px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  max-width: 800px;
  margin: 0 auto;
}

.recruitment-container:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  border-color: #d3d3d3;
}

.recruitment-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 15px;
}

.recruitment-header {
  flex-shrink: 0;
}

.recruitment-title {
  font-size: 23px;
  color: #333;
  margin: 0;
  padding-left: 20px;
  border-left: 6px solid #726e6e;
  line-height: 1.4;
  white-space: nowrap;
}

.recruitment-text {
  flex: 1;
  color: #333;
}

.recruitment-text p {
  font-size: 16px;
  line-height: 1.8;
}

.recruitment-text p:last-child {
  margin-bottom: 0;
}

.recruitment-emphasis {
  font-weight: bold;
}

.recruitment-btn-area {
  text-align: center;
  padding-top: 10px;
}

.recruitment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 50px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #999;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.recruitment-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(208, 14, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.recruitment-btn:hover::before {
  left: 100%;
}

.recruitment-btn:hover {
  background: #333;
  color: #fff;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.recruitment-btn__arrow {
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.recruitment-btn:hover .recruitment-btn__arrow {
  transform: translateX(5px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .recruitment-section {
    padding: 0 15px;
  }

  .recruitment-container {
    padding: 30px 20px;
  }

  .recruitment-content {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
  }

  .recruitment-title {
    font-size: 26px;
    padding-left: 15px;
    border-left-width: 5px;
    white-space: normal;
  }

  .recruitment-text p {
    font-size: 15px;
  }

  .recruitment-btn {
    padding: 12px 40px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .recruitment-section {
    margin: 30px auto 20px;
  }

  .recruitment-container {
    padding: 25px 15px;
  }

  .recruitment-title {
    font-size: 22px;
    padding-left: 12px;
    border-left-width: 4px;
  }

  .recruitment-text p {
    font-size: 14px;
  }

  .recruitment-btn {
    padding: 10px 35px;
    font-size: 14px;
  }
}


@media print, screen and (min-width: 61.25em) {
  .c-content-block__inner {
      max-width: 100%;
      padding-bottom: 2em;
  }
}

.txt_c {
  text-align: center;
  margin-top: 1em;
}
.txt_mt_1em {
  margin-top: 1em;
}

.linkArea {
  margin-top: 1em!important;
}

/* =========================================
   ヘッダー SNSアイコン
   ========================================= */

.snsArea ul.header-sns-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
  padding-right: 0;
  margin-right: 0;
  justify-content: flex-end;
}

.l-main-menu__list>li>a{
  padding: 10px 12px;
}

@media only screen and (max-width: 47.9375em) {
  .snsArea ul.header-sns-icons {
    padding-right: 0;
    margin-right: 0;
  }
  
  .snsArea {
    padding-right: 0;
    margin-right: 0;
  }
}

.header-sns-icons .sns-icon {
  width: 21px;
  height: 21px;
  display: block;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.header-sns-icons a:hover .sns-icon {
  opacity: 1;
  transform: translateY(-2px);
}
.snsArea ul li a{
  width: 20px;
}
.snsArea ul li{
  height: 17px;
}
/* =========================================
   フッター SNSアイコン
   ========================================= */

.footer-sns-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.footer-sns-icon {
  width: 32px;
  height: 32px;
  display: block;
  transition: all 0.3s ease;
}

.footer-sns-icons a:hover .footer-sns-icon {
  transform: translateY(-3px);
  filter: brightness(1.2);
}

/* =========================================
   グローバルナビ - 特設サイトリンク
   ========================================= */

.l-main-menu__special-link {
  /* position: relative; */
  /* padding: 2px 8px !important;
  border: 1px solid #d00e00 !important; */
  /* transition: all 0.3s ease; */
  color: #d00e00 !important;
}

.l-main-menu__special-link:hover {
  color: #176dce!important;
}

/* =========================================
   SNSセクション（Instagram/YouTube/LINE）
   ========================================= */

.sns-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.sns-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* SNSパネル共通スタイル */
.sns-panel {
  display: block;
  background: #fff;
  border: 2px solid #e0e0e0;
  /* border-radius: 8px; */
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.sns-panel:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  text-decoration: none;
}

/* タイトル */
.sns-panel__title {
  font-size: 24px;
  color: #333;
  margin: 0;
  padding: 20px 15px 15px;
  text-align: left;
  background: #f9f9f9;
  border-bottom: 2px solid #e0e0e0;
}
.sns-panel__title:first-letter {
  font-size: 1.5em;
  color: #ec1c24;
}

/* コンテンツエリア */
.sns-panel__content {
  padding: 30px 20px;
  text-align: center;
}

/* ロゴ */
.sns-panel__logo {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

.sns-panel__logo img {
  max-width: 80px;
  height: auto;
  display: block;
}

/* 説明文 */
.sns-panel__description {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 25px 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* QRコード */
.sns-panel__qr {
  margin: 0 auto 15px;
  max-width: 180px;
}

.sns-panel__qr img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* アカウント名 */
.sns-panel__account {
  font-size: 14px;
  font-weight: 600;
  color: #0095f6;
  margin: 0;
  text-align: center;
}

/* 各SNSパネルのカスタマイズ */
/* .sns-panel--instagram:hover {
  border-color: #e1306c;
} */

/* .sns-panel--instagram:hover, .sns-panel--youtube:hover, .sns-panel--line:hover {
  border-color: #ff0000;
} */

/* .sns-panel--line:hover {
  border-color: #00b900;
} */

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .sns-section {
    margin: 50px auto;
  }

  .sns-container {
    gap: 25px;
  }

  .sns-panel__logo img {
    max-width: 70px;
  }

  .sns-panel__qr {
    max-width: 160px;
  }
}

@media (max-width: 768px) {
  .sns-section {
    margin: 40px auto;
    padding: 0 15px;
  }

  .sns-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sns-panel__title {
    font-size: 22px;
    padding: 18px 15px 12px;
  }

  .sns-panel__content {
    padding: 25px 20px;
  }

  .sns-panel__logo {
    min-height: 70px;
    margin-bottom: 18px;
  }

  .sns-panel__logo img {
    max-width: 65px;
  }

  .sns-panel__description {
    font-size: 14px;
    min-height: auto;
    margin-bottom: 20px;
  }

  .sns-panel__qr {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .sns-section {
    margin: 30px auto;
  }

  .sns-panel__title {
    font-size: 20px;
    padding: 15px 12px 10px;
  }

  .sns-panel__content {
    padding: 20px 15px;
  }

  .sns-panel__logo {
    min-height: 60px;
    margin-bottom: 15px;
  }

  .sns-panel__logo img {
    max-width: 60px;
  }

  .sns-panel__description {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .sns-panel__qr {
    max-width: 140px;
  }

  .sns-panel__account {
    font-size: 13px;
  }
}

/* =========================================
   FAQセクション（よくあるご質問）
   ========================================= */

.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

/* FAQタイトル */
.faq-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin: 0 0 40px 0;
  text-align: left;
}

.faq-title::first-letter {
  font-size: 1.5em;
  color: #d00e00;
  font-weight: bold;
}

/* FAQコンテナ */
.faq-container {
  margin-top: 1em;
  margin-bottom: 40px;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
}

/* FAQ Question */
.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f5f5;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: #ebebeb;
}

.faq-question__label {
  font-size: 18px;
  font-weight: bold;
  color: #d00e00;
  flex-shrink: 0;
}

.faq-question__text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

.faq-question__icon {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* FAQ Answer */
.faq-answer {
  display: none;
  padding: 20px 20px 20px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
}

.faq-item--active .faq-answer {
  display: flex;
  gap: 12px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer__label {
  font-size: 18px;
  font-weight: bold;
  color: #d00e00;
  flex-shrink: 0;
}

.faq-answer__text {
  flex: 1;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

/* FAQ Button Area */
.faq-btn-area {
  text-align: center;
  margin-top: 40px;
}

.faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 50px;
  background: #4a4a4a;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.faq-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #fff;
}

.faq-btn__arrow {
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-btn:hover .faq-btn__arrow {
  transform: translateX(5px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .faq-section {
    margin: 50px auto;
    padding: 0 15px;
  }

  .faq-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 15px 15px;
    gap: 10px;
  }

  .faq-question__label {
    font-size: 16px;
  }

  .faq-question__text {
    font-size: 15px;
  }

  .faq-question__icon {
    font-size: 22px;
    width: 28px;
    height: 28px;
  }

  .faq-answer {
    padding: 15px 15px 15px 15px;
  }

  .faq-answer__label {
    font-size: 16px;
  }

  .faq-answer__text {
    font-size: 14px;
  }

  .faq-btn {
    padding: 14px 40px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    margin: 40px auto;
  }

  .faq-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .faq-question {
    padding: 12px 12px;
    gap: 8px;
  }

  .faq-question__label {
    font-size: 15px;
  }

  .faq-question__text {
    font-size: 14px;
  }

  .faq-question__icon {
    font-size: 20px;
    width: 26px;
    height: 26px;
  }

  .faq-answer {
    padding: 12px 12px 12px 12px;
  }

  .faq-answer__label {
    font-size: 15px;
  }

  .faq-answer__text {
    font-size: 13px;
  }

  .faq-btn {
    padding: 12px 35px;
    font-size: 14px;
  }

  .faq-btn-area {
    margin-top: 30px;
  }
}

/* =========================================
   初心者向けCTAセクション
   ========================================= */

.beginner-cta-section {
  background: linear-gradient(135deg, #ffe0e0 0%, #ffe0e0 100%);
  padding: 40px 0;
  margin: 40px 0;
}

.beginner-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(195, 29, 31, 0.2);
}

.beginner-cta-image {
  position: relative;
  overflow: hidden;
  /* min-height: 400px; */
}

.beginner-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* 初心者マークオーバーレイ（左上に配置） */
.beginner-mark-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  max-width: 120px;
  max-height: 120px;
  width: auto;
  height: auto;
  pointer-events: none;
  object-fit: contain;
}

.beginner-cta-container:hover .beginner-cta-image img {
  transform: scale(1.05);
}

.beginner-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 40px;
  text-align: center;
}

.beginner-cta__title {
  font-size: 28px;
  color: #c31d1f;
  font-weight: bold;
  margin: 0 0 20px 0;
  letter-spacing: 0.05em;
}

.beginner-cta__catch {
  font-size: 32px;
  font-weight: bold;
  color: #d32f2f;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.beginner-cta__description {
  font-size: 18px;
  color: #424242;
  line-height: 1.8;
  margin: 0 0 35px 0;
}

.beginner-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px 50px;
  background: linear-gradient(135deg, #ec1c24 0%, #c31d1f 100%);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(236, 28, 36, 0.4);
  border: 2px solid transparent;
  max-width: 500px;
  margin: 0 auto;
}

.beginner-cta__btn:hover {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(236, 28, 36, 0.6);
  text-decoration: none;
  color: #fff;
}

.beginner-cta__btn-arrow {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.beginner-cta__btn:hover .beginner-cta__btn-arrow {
  transform: translateX(8px);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .beginner-cta-container {
    grid-template-columns: 1fr;
  }

  .beginner-cta-image {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .beginner-cta-section {
    padding: 30px 0;
    margin: 30px 0;
  }

  .beginner-cta-container {
    margin: 0 15px;
  }

  .beginner-cta-image {
    min-height: 250px;
  }

  .beginner-cta-content {
    padding: 30px 25px;
  }

  .beginner-cta__title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .beginner-cta__catch {
    font-size: 26px;
  }

  .beginner-cta__description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .beginner-cta__btn {
    padding: 16px 40px;
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .beginner-cta-section {
    padding: 25px 0;
    margin: 20px 0;
  }

  .beginner-cta-image {
    min-height: 200px;
  }

  .beginner-cta-content {
    padding: 25px 20px;
  }

  .beginner-cta__title {
    font-size: 22px;
  }

  .beginner-cta__catch {
    font-size: 22px;
  }

  .beginner-cta__description {
    font-size: 15px;
  }

  .beginner-cta__btn {
    padding: 14px 35px;
    font-size: 16px;
    width: 100%;
    max-width: 320px;
  }
}

/* =========================================
   団体向けCTAセクション
   ========================================= */

.group-cta-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.group-cta-container {
  background: linear-gradient(135deg, #f5f5f5 0%, #f5f5f5 100%);
  border: 2px solid #e1e1e1;
  /* border-radius: 12px; */
  padding: 40px;
  /* box-shadow: 0 4px 20px rgba(195, 29, 31, 0.15); */
}

.group-cta-content {
  margin-bottom: 10px;
}

.group-cta__title {
  font-size: 28px;
  font-weight: bold;
  color: #c31d1f;
  margin: 0 0 20px 0;
  padding-left: 20px;
  border-left: 5px solid #ec1c24;
}

.group-cta__description {
  font-size: 17px;
  color: #424242;
  line-height: 1.8;
  margin: 10px 0;
}

.group-cta__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.group-cta__list li {
  color: #424242;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  padding-left: 15px;
}

.group-cta__list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #c31d1f;
  font-weight: bold;
}

.group-cta__btn-area {
  text-align: center;
  padding-top: 10px;
}

.group-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 40px;
  background: #c31d1f;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(195, 29, 31, 0.3);
}

.group-cta__btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195, 29, 31, 0.4);
  text-decoration: none;
  color: #fff;
}

.group-cta__btn-arrow {
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.group-cta__btn:hover .group-cta__btn-arrow {
  transform: translateX(5px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .group-cta-section {
    margin: 50px auto;
    padding: 0 15px;
  }

  .group-cta-container {
    padding: 30px 20px;
  }

  .group-cta__title {
    font-size: 24px;
    padding-left: 15px;
    border-left-width: 4px;
  }

  .group-cta__description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .group-cta__list {
    gap: 8px 15px;
  }

  .group-cta__list li {
    font-size: 14px;
    padding-left: 15px;
  }

  .group-cta__btn {
    padding: 12px 30px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .group-cta-section {
    margin: 40px auto;
  }

  .group-cta-container {
    padding: 25px 15px;
  }

  .group-cta__title {
    font-size: 22px;
    padding-left: 12px;
  }

  .group-cta__description {
    font-size: 15px;
  }

  .group-cta__list {
    gap: 6px 10px;
  }

  .group-cta__list li {
    font-size: 14px;
  }

  .group-cta__btn {
    padding: 12px 25px;
    font-size: 14px;
    width: 100%;
  }

  .group-cta__btn-text {
    font-size: 13px;
  }
}

/* =========================================
   プレミアムレッスンセクション
   ========================================= */

.premium-section {
  background: #000;
  padding: 50px 0 60px;
  font-family: Noto Serif JP, serif;
  margin-top: 4em;
}

.premium-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* メインタイトル */
.premium-main-title {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin: 0 0 0.5em 0;
  line-height: 1.6;
}
.premium-main-title__sub {
  font-size: 0.7em;
}

/* カードグリッド */
.premium-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 3em;
}

/* プレミアムカード */
.premium-card {
  position: relative;
  display: block;
  overflow: hidden;
  /* border-radius: 8px; */
  text-decoration: none;
  transition: all 0.3s ease;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

/* カード画像 */
.premium-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.premium-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画像オーバーレイ（黒50%） */
.premium-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.premium-card:hover .premium-card__overlay {
  background: rgba(0, 0, 0, 0.3);
}

/* カードコンテンツ */
.premium-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 20px;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
}

.premium-card__title {
  font-size: 18.5px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.premium-card__description {
  font-size: 14px;
  color: #fff;
  margin: 0;
  line-height: 1.7;
  opacity: 0.95;
}

/* サブタイトル */
.premium-sub-title {
  font-size: 19px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin: 0 0 1em 0;
  line-height: 1.6;
}

/* ボタンエリア */
.premium-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 50px;
  background: #555;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 280px;
}

.premium-btn:hover {
  background: #777;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: #fff;
}

.premium-btn__arrow {
  font-size: 15px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.premium-btn:hover .premium-btn__arrow {
  transform: translateX(5px);
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .premium-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .premium-card {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .premium-section {
    padding: 60px 0;
  }

  .premium-container {
    padding: 0 15px;
  }

  .premium-main-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .premium-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .premium-card {
    aspect-ratio: 16 / 9;
  }

  .premium-card__content {
    padding: 20px 18px;
  }

  .premium-card__title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .premium-card__description {
    font-size: 13px;
  }

  .premium-sub-title {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .premium-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .premium-btn {
    /* padding: 16px 40px; */
    font-size: 15px;
    /* min-width: 100%; */
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .premium-section {
    padding: 50px 0;
  }

  .premium-main-title {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .premium-card__content {
    padding: 18px 15px;
  }

  .premium-card__title {
    font-size: 17px;
  }

  .premium-card__description {
    font-size: 12px;
  }

  .premium-sub-title {
    font-size: 17px;
    margin-bottom: 25px;
  }

  .premium-btn {
    padding: 7px 35px;
    font-size: 15px;
  }
}

/* =========================================
   特設サイトへのCTAセクション
   ========================================= */

.special-site-cta-section {
  background: url('../../img/bg_main_visual_1_2_2024.jpg') center/cover no-repeat;
  padding: 0;
  position: relative;
  overflow: hidden;
  font-family: Noto Serif JP, serif;
}

.special-site-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  pointer-events: none;
  z-index: 0;
}

.special-site-cta {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.special-site-cta__content {
  text-align: center;
  /* background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px; */
  padding: 40px;
  /* backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease; */
}

/* .special-site-cta__content:hover {
  border-color: rgba(208, 14, 0, 0.4);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
} */

.special-site-cta__subtitle {
  font-size: 15px;
  color: #d00e00;
  font-weight: 600;
  margin: 0 0 10px 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.special-site-cta__title {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 10px 0;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.special-site-cta__description {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
  margin: 0 0 20px 0;
}

.pc-only {
  display: inline;
}

.special-site-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 7px 50px;
  background: linear-gradient(135deg, #d00e00 0%, #a00b00 100%);
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(208, 14, 0, 0.4);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.special-site-cta__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.special-site-cta__btn:hover::before {
  left: 100%;
}

.special-site-cta__btn:hover {
  background: linear-gradient(135deg, #e01000 0%, #b00c00 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(208, 14, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  color: #fff;
}

.special-site-cta__btn-arrow {
  font-size: 17px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.special-site-cta__btn:hover .special-site-cta__btn-arrow {
  transform: translateX(8px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .special-site-cta {
    padding: 0 15px;
  }

  .special-site-cta__content {
    padding: 40px 25px;
  }

  .special-site-cta__subtitle {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .special-site-cta__title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .special-site-cta__description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
  }

  .pc-only {
    display: none;
  }

  .special-site-cta__btn {
    /* padding: 18px 45px; */
    font-size: 17px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .special-site-cta-section {
    padding: 10px 0;
  }

  .special-site-cta__content {
    padding: 35px 20px;
  }

  .special-site-cta__subtitle {
    font-size: 12px;
  }

  .special-site-cta__title {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .special-site-cta__description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .special-site-cta__btn {
    /* padding: 16px 40px; */
    font-size: 16px;
    width: 100%;
    max-width: 320px;
  }

  .special-site-cta__btn-arrow {
    font-size: 20px;
  }
}

  .snsArea  {
    margin-top: 5px;
  }
  .blog {
    margin-top: 0;
  }
/* レスポンシブ対応 */
/* @media (max-width: 768px) {
  .snsArea ul {
    margin-top: 5px;
  }
} */

/* アクセスページ用スタイル */
.access-info-container {
    text-align: center;
    /* padding: 40px 20px; */
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

/* access-infoがある場合は中央揃えを維持 */
.access-info-container > .access-info {
    display: block;
    width: 100%;
    flex: none;
}

.access-info-container .item_50 {
    width: calc(50% - 15px);
    min-width: 300px;
    padding: 20px;
    box-sizing: border-box;
}

.access-info-container .item_50 h4 {
    font-size: 18px;
    font-weight: bold;
    color: #323030;
    margin-bottom: 15px;
    text-align: left;
}

.access-info-container .item_50 h3 {
    font-size: 18px;
    font-weight: bold;
    color: #323030;
    margin-bottom: 15px;
    text-align: left;
}

.access-info-container .item_50 p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: left;
}

/* 料金表のスタイル */
table.group {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    background-color: #fff;
}

table.group tr {
    border-bottom: 1px solid #ddd;
}

table.group th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #323030;
    background-color: #f9f9f9;
    width: 50%;
    font-size: 15px;
}

table.group td {
    padding: 12px 15px;
    text-align: right;
    color: #323030;
    font-size: 15px;
}

table.group td.price {
    text-align: right;
    font-weight: 600;
    color: #323030;
}

table.group td .cap {
    font-size: 13px;
    font-weight: normal;
    color: #666;
    display: block;
    margin-top: 5px;
}

table.group td .red {
    font-size: 13px;
    color: #d00e00;
    display: block;
    margin-top: 5px;
}

.access-info {
    display: inline-block;
    text-align: center;
}

.access-info p {
    margin: 0;
    padding: 8px 0;
    line-height: 1.8;
    font-size: 16px;
}

.access-car {
    color: #d00e00;
    font-weight: 500;
    font-size: 18px!important;
}

.access-bus {
    color: #d00e00;
    font-weight: 500;
}

.access-address {
    color: #000;
    font-weight: 400;
}

.access-tel {
    color: #d00e00;
    font-weight: 500;
    font-size: 18px;
}

.access-info-container .linkArea {
    margin-top: 30px;
    text-align: center;
}

/* アクセスセクション */
.access-section {
    margin: 100px 0;
}

/* h3タグの統一デザイン */
.box_access .box-title,
.access-section-title {
    background-color: transparent;
    color: #323030;
    text-align: center;
    padding: 15px 0;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
}

.box_access .box-title::after,
.access-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #d00e00;
}

/* フローチャート */
.access-flowchart {
    margin: 30px 0;
}

.flowchart-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.flowchart-origin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.flowchart-box {
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 4px;
    min-width: 120px;
}

.origin-box {
    background-color: #ffc107;
    color: #323030;
    font-weight: 600;
}

.route-box {
    background-color: #e38b09;
    color: #fff;
    font-weight: 500;
}

.ic-box {
    background-color: #ffc107;
    color: #323030;
    font-weight: 600;
}

.station-box {
    background-color: #e38b09;
    color: #fff;
    font-weight: 500;
}

.bus-box {
    background-color: #e38b09;
    color: #fff;
    font-weight: 500;
}

.destination-box {
    background-color: #d32f2f;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 15px 30px;
}

.flowchart-arrow {
    text-align: center;
    font-size: 24px;
    color: #323030;
    font-weight: bold;
    margin: 10px 0;
}

/* アクセスサマリー */
.access-summary {
    margin-top: 30px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.access-summary p {
    margin: 15px 0;
    line-height: 1.8;
    font-size: 15px;
}

.access-summary strong {
    color: #323030;
    font-weight: 600;
}

/* アクセスコンテンツ */
.access-content {
    padding: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.access-content p {
    margin: 15px 0;
}

.access-note {
    color: #d32f2f;
    font-weight: 500;
    margin-top: 20px !important;
}

.note-asterisk {
    font-weight: bold;
    font-size: 18px;
}

.access-link-area {
    text-align: center;
    margin-top: 30px;
}

.access-link-btn {
    display: inline-block;
    background-color: #d00e00;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.access-link-btn:hover {
    background-color: #ffc107;
}

/* タクシー会社情報 */
.taxi-info{
  font-size: 15px;
} 
.taxi-note {
    font-size: 13px;
    color: #666;
    margin: 10px 0;
    line-height: 1.6;
}

.taxi-companies {
    margin-top: 20px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.taxi-companies p {
    margin: 10px 0;
    font-size: 15px;
}

/* Google Map */
.access-map-container {
    margin: 20px 0;
}

.access-map {
    width: 100%;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.access-map iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: 0;
}

.access-section .linkArea {
    text-align: center;
    margin-top: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .flowchart-row {
        flex-direction: column;
    }
    
    .flowchart-origin {
        width: 100%;
    }
    
    .flowchart-box {
        width: 100%;
        max-width: 300px;
    }
    
    .access-section-title {
        font-size: 18px;
        padding: 12px 15px;
    }
    
    .access-map iframe {
        height: 400px;
    }
}

/* 無料送迎バス */
.shuttle-bus-visual {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    align-items: flex-start;
}

.shuttle-bus-photo {
    flex: 1;
    max-width: 400px;
}

.shuttle-bus-photo img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.station-map {
    flex: 1;
    max-width: 400px;
    position: relative;
    border: 2px solid #333;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.map-station {
    background-color: #fff;
    border: 2px solid #333;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
}

.map-parking,
.map-info {
    background-color: #e0e0e0;
    border: 1px solid #999;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
}

.map-park {
    background-color: #e0e0e0;
    border: 1px solid #999;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}

.map-bus-stop {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #2196f3;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

.map-bus-stop::before {
    content: "🚌";
    margin-right: 5px;
}

.shuttle-timetable {
    margin: 30px 0;
}

.shuttle-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fff;
}

.shuttle-table thead th {
    background-color: #b3b3b3;
    color: #fff;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.shuttle-table tbody td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 15px;
}

.shuttle-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.shuttle-notes {
    margin-top: 30px;
}

.shuttle-notes .access-note {
    margin: 15px 0;
    line-height: 1.8;
}

.box_access h3::before{
  display:none;
}
.price-table h4::before,
.access-info-container .item_50 h4::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #d00e00;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    margin-bottom: 2px;
}
.price-table .box_access{
  margin-bottom: 5em;
}

/* レスポンシブ対応 - 無料送迎バス */
@media (max-width: 768px) {
    .shuttle-bus-visual {
        flex-direction: column;
    }
    
    .shuttle-bus-photo,
    .station-map {
        max-width: 100%;
    }
    
    .shuttle-table {
        font-size: 13px;
    }
    
    .shuttle-table thead th,
    .shuttle-table tbody td {
        padding: 8px 4px;
    }
    
    /* 料金ページのレスポンシブ対応 */
    .access-info-container .item_50 {
        width: 100%;
        min-width: 100%;
    }
    
    table.group th,
    table.group td {
        padding: 10px 8px;
        font-size: 14px;
    }
}

/* ヘッダーロゴグループ */
.l-header__logo-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ヘッダートップテキスト */
.l-header__top-text {
    font-size: 12px;
    color: #000;
    text-align: left;
    margin-bottom: 0;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

@media print, screen and (min-width: 48em) {
    .l-header__top-text {
        font-size: 12px;
        margin-bottom: 8px;
    }
}

@media print, screen and (min-width: 61.25em) {
    .l-header__top-text {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

/* ヘッダーメニューのアイコンスタイル */
.l-main-menu__list > li > a i[class*="ti-"] {
    display: inline-block;
    margin-right: 5px;
    font-size: 16px;
    vertical-align: middle;
    line-height: 1;
}

/* ヘッダーメニューの画像アイコンスタイル */
.l-main-menu__list > li > a .nav-icon-img {
    display: inline-block;
    margin-right: 5px;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    object-fit: contain;
}
#first-time-customer .c-content-lessonplan__inner h3.feat_title::before,#first-time-customer .c-content-lessonplan__inner h3.feat_title2::before{
  display: none;
}

#first-time-customer .c-content-lessonplan__inner h3.feat_title{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFC107;
  border-top: 3px solid #FFC107;
  padding-left:0;
}
#first-time-customer table.group th, #first-time-customer table.group td {
  padding: 1em 10px 1em 1em;
  border-right: 1px solid #bbb;
  text-align: center;
  vertical-align: middle;
}
#first-time-customer table.group th,
#first-time-customer table.group td {
  padding: 1em 10px 1em 1em;
  border-right: 1px solid #bbb;
  text-align: center;
  vertical-align: middle;
}

#first-time-customer table.group td.non {
  width: 15%;
  min-width: 80px;
  border-right: 1px solid #bbb;
}
#first-time-customer span.level_small {
  font-size: 0.8rem;
}

/* first-time-customer内のh2とh3を中央揃え */
#first-time-customer h2,
#first-time-customer h3 {
  text-align: center;
}

/* first-time-customer内のリード文（見出し直後のpタグ） */
#first-time-customer .lead-text {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 1em 0 2em 0;
}

br.sp-only{
  display: none;
}

/* 身支度画像レイアウト */
.clothing-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.clothing-image-wrapper {
  flex: 0 0 auto;
}

.clothing-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.clothing-arrow {
  font-size: 48px;
  color: #d00e00;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clothing-arrow-horizontal {
  display: flex;
}

.clothing-arrow-vertical {
  display: none;
}

@media (max-width: 768px) {
  .sp-only{
    display: block;
  }

  .clothing-images {
    flex-direction: column;
    gap: 15px;
  }

  .clothing-arrow-horizontal {
    display: none;
  }

  .clothing-arrow-vertical {
    display: flex;
  }
}

/* レンタル手順レイアウト */
.rental-process-title {
  margin: 30px 0 20px 0;
  font-size: 22px;
  font-weight: 600;
  color: #323030;
  padding-bottom: 10px;
  border-bottom: 2px solid #d00e00;
}

.rental-steps {
  margin: 30px 0;
}

.rental-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 4px solid #d00e00;
  border-radius: 4px;
  gap: 20px;
}

.rental-step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #d00e00;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
}

.rental-step-content {
  flex: 1;
}

.rental-step-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  color: #323030;
  line-height: 1.4;
}

.rental-step-text {
  margin: 0 0 10px 0;
  font-size: 15px;
  color: #323030;
  line-height: 1.8;
}

.rental-step-note {
  margin: 10px 0 0 0;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  padding: 10px;
  /* background-color: #fff9e6;
  border-left: 3px solid #ffc107;
  border-radius: 3px; */
}

.rental-step-note .rental-star {
  color: #d00e00;
  font-weight: bold;
  margin-right: 5px;
}

.rental-step-caution {
  margin: 10px 0 0 0;
  font-size: 14px;
  color: #d00e00;
  line-height: 1.8;
  padding: 10px;
  /* background-color: #fff5f5;
  border-left: 3px solid #d00e00;
  border-radius: 3px; */
}

.rental-important {
  margin: 40px 0 20px 0;
  padding: 20px;
  background-color: #fff5f5;
  border: 2px solid #d00e00;
  border-radius: 4px;
}

.rental-important-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: #d00e00;
  line-height: 1.6;
}

.rental-important-text {
  margin: 0;
  font-size: 15px;
  color: #323030;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .rental-step {
    flex-direction: column;
    align-items: center;
    padding: 15px;
    gap: 15px;
  }

  .rental-step-number {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .rental-step-content {
    width: 100%;
  }

  .rental-step-title {
    font-size: 16px;
    text-align: center;
  }

  .rental-step-text,
  .rental-step-note,
  .rental-step-caution {
    font-size: 14px;
  }
}
/* パソコン表示の時だけ改行を表示 */
.pc-only-br{
  display: block;
}
@media (max-width: 768px) {
  .pc-only-br{
    display: none;
  }
}

/* first-time-customer内の画像グリッド */
.first-images-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 1000px;
  max-width: 95%;
  margin: 2em auto;
}

.first-image-item {
  flex: 1;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
}

.first-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .first-images-grid {
    width: 95%;
    gap: 15px;
  }
}

/* 初心者でも安心な3つの理由 */
.reasons-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 2em 0;
  flex-wrap: wrap;
}

.reason-item {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.reason-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(208, 14, 0, 0.15);
  border-color: #FFC107;
}

.reason-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FFC107 0%, #ff9800 100%);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.reason-title {
  font-size: 20px;
  font-weight: bold;
  color: #323030;
  margin: 0 0 15px 0;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 2px solid #FFC107;
}

.reason-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #d00e00;
  margin: 0 0 15px 0;
  line-height: 1.6;
}

.reason-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .reasons-grid {
    flex-direction: column;
    gap: 25px;
  }

  .reason-item {
    min-width: 100%;
  }

  .reason-number {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .reason-title {
    font-size: 18px;
  }

  .reason-subtitle {
    font-size: 15px;
  }

  .reason-text {
    font-size: 14px;
  }
}

/* 選べるレッスン時間セクション */
.lesson-courses {
  margin: 2.5em 0;
}

.lesson-course-intro {
  text-align: center;
  margin-bottom: 2.5em;
  padding: 25px;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe0b2 100%);
  border-radius: 12px;
  border: 2px solid #FFC107;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.course-intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #323030;
  margin: 0;
}

.course-intro-text strong {
  color: #d00e00;
  font-weight: bold;
  font-size: 1.1em;
  position: relative;
}

.course-intro-text strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFC107, transparent);
}

.course-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 2em;
}

.benefit-item {
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFC107, #ff9800);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(208, 14, 0, 0.15);
  border-color: #FFC107;
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.benefit-icon img {
  max-width: 100px;
  height: auto;
  display: block;
}

.benefit-item:nth-child(2) .benefit-icon {
  animation-delay: 0.5s;
}

.benefit-item:nth-child(3) .benefit-icon {
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.benefit-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .lesson-course-intro {
    padding: 20px;
    margin-bottom: 2em;
  }

  .course-intro-text {
    font-size: 16px;
  }

  .course-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-item {
    padding: 25px 20px;
  }

  .benefit-icon {
    font-size: 40px;
  }

  .benefit-text {
    font-size: 14px;
  }
}

/* lead-text内の装飾 */
.lead-text .text-bold {
  font-weight: bold;
  color: #323030;
}

.lead-text .text-emphasis {
  font-weight: bold;
  color: #d00e00;
  position: relative;
}

.lead-text .text-emphasis::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFC107, transparent);
}

/* サロモンステーション公式ページボタンの幅調整 */
.boxFlexible .btnyellow.btnSmall {
  white-space: nowrap;
  min-width: 350px;
  display: inline-block;
  text-align: center;
}

@media (max-width: 768px) {
  .boxFlexible .btnyellow.btnSmall {
    min-width: 100%;
    width: 100%;
  }
}

/* レッスン開校日程セクション */
.lesson-schedule {
  max-width: 1200px;
  margin: 2em auto;
  padding: 30px;
  background: linear-gradient(135deg, #fff9e6 0%, #fff5e6 100%);
  border: 2px solid #FFC107;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

.schedule-title {
  font-size: 22px;
  font-weight: bold;
  color: #323030;
  text-align: center;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #FFC107;
  position: relative;
}

.schedule-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #d00e00;
}

.schedule-date {
  text-align: center;
  margin: 25px 0;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.date-text {
  font-size: 20px;
  font-weight: bold;
  color: #d00e00;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.schedule-notes {
  margin-top: 25px;
}

.note-item {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin: 12px 0;
  padding-left: 25px;
  position: relative;
}

.note-item::before {
  content: '※';
  position: absolute;
  left: 0;
  color: #d00e00;
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 768px) {
  .lesson-schedule {
    padding: 25px 20px;
    margin: 1.5em auto;
  }

  .schedule-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .schedule-date {
    padding: 15px;
    margin: 20px 0;
  }

  .date-text {
    font-size: 18px;
  }

  .note-item {
    font-size: 14px;
    padding-left: 22px;
  }
}

/* コースカテゴリーリンク */
.course-category-links {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-top: 2em;
  flex-wrap: wrap;
}

.category-link {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-link:hover {
  text-decoration: none;
  transform: translateY(-5px);
}

.category-link img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.category-link:hover img {
  box-shadow: 0 8px 25px rgba(208, 14, 0, 0.2);
  transform: scale(1.02);
}

.category-name {
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #323030;
  text-align: center;
  line-height: 1.6;
}

.category-sub {
  font-size: 0.75em;
  font-weight: normal;
  color: #666;
  vertical-align: middle;
}

.category-link:hover .category-name {
  color: #d00e00;
}

@media (max-width: 768px) {
  .course-category-links {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .category-link {
    min-width: 100%;
    max-width: 100%;
  }

  .category-name {
    font-size: 16px;
  }
}