/* ===============================================
 * 
  全体の基本スタイル（ベースリセット）
   
=============================================== */
a {
  text-decoration: none;
  color: inherit;
}


html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #3d4060;
  background: #fff;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
/* 見出しスタイル */
h1, h2, h3, h4 {
  font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Segoe UI, Noto Sans JP, Hiragino Sans, sans-serif;
}
/* 段落 */
p {
  margin-bottom: 1.2em;
  font-size: 1rem;
  line-height: 1.6;
}
/* リスト */
ol, ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
/* ボタン */
button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
}
/* フォーム要素の調整 */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}
/* 画像 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  background: transparent;
  border: 0;
  font-size: 100%;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
/*改行*/
/* PC表示用 */
.sp-line {
  display: none;
}
.pc-line {
  display: inline;
}
/* モバイル用（767px以下） */
@media (max-width: 767px) {
  main.ly_main__top {
    padding-bottom: 0px;
  }
  .sp-line {
    display: inline;
  }
  .pc-line {
    display: none;
  }
  
  
}
/* ==================================================================
 * 
   ヘッダー全体
   
================================================================== */

/* ★メニュー展開時に背景をスクロールさせないためのスタイル */
body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

  .header {
  opacity: 0.95;
  background: #356E9F;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.40));
}

.header__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: inherit;
  position: relative;
  box-sizing: border-box;
}


/* ======================
   ヘッダー: ロゴ
   ====================== */
.header__title {
  width: 140px;
  transition: opacity 0.3s ease;
}

.header__title:hover {
  opacity: 0.8;
}

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


/* ==========================
   ヘッダー: ナビゲーション (スマホの展開メニュー)
   ========================== */
.header__nav {
  display: none;
}

.header__nav.is-open {
  display: block;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(0);
  background-color: #356E9F;
  transition: transform 0.4s ease;
  z-index: 9998;
  overflow-y: auto;
}

.header__nav.is-open .nav__items {
  margin: 0;
  padding: 20px 30px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  box-sizing: border-box;
}

.header__nav.is-open .nav-items__item a {
  color: #fff;
  text-align: left;
  font-size: 20px;
  padding: 18px 0;
  margin-bottom: 0;
  display: block;
  width: 100%;
}


/* ===============================================
   ヘッダー: ハンバーガーメニュー
   =============================================== */
.hamburger {
  width: 48px;
  height: 100%;
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  width: 32px;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: all 0.4s ease;
  display: block;
  border-radius: 2px;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger.is-open span {
  background-color: #fff;
}

.hamburger.is-open span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: -11px;
  transform: rotate(-45deg);
}


/* ===============================================
   ヘッダー: 検索
   =============================================== */
.bl_searchKey_btn {
  position: relative;
  width: 32px;
  height: 32px;
  border: none;
  background: url(https://www.busoken.com/hubfs/ico_search.svg) no-repeat center;
  background-size: contain;
  cursor: pointer;
  margin-left: auto;
  margin-right: 10px;
}

.bl_searchKey {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: #356E9F;
  opacity: 0.95;
  padding: 10px 0;
  z-index: 990;
}

.header__search_form {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.bl_searchKey_inner {
  position: relative;
}

.bl_searchKey_input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 44px;
  padding: 10px 15px 10px 50px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0;
  background-image: url(https://www.busoken.com/hubfs/ico_search.svg);
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 20px 20px;
  background-color: transparent;
  color: white;
  font-size: 18px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.bl_searchKey_input::placeholder {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}


/* ===============================================
   PC表示 (min-width: 960px)
   =============================================== */
@media screen and (min-width: 960px) {
  .header {
    height: 100px;
  }

  .header__inner {
    justify-content: space-between;
    gap: 70px;
  }
  
  .header__title {
    width: 190px;
    flex-shrink: 0;
  }

  .hamburger {
    display: none;
  }
  
  .header__nav {
    display: flex;
    position: static;
    transform: none;
    background-color: transparent;
    width: auto;
    height: inherit;
    z-index: auto;
    flex-grow: 1;
    overflow-y: visible;
  }

  .header__nav.is-open {
    display: flex;
    position: static;
    height: inherit;
    transform: none;
    background-color: transparent;
  }

  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 0;
    padding: 0;
    border-top: none;
  }

  .nav-items__item {
    padding: 0 10px;
    position: relative;
  }

  .nav-items__item a {
    color: #fff;
    font-size: 19px;
    margin-bottom: 0;
    padding: 0;
    white-space: nowrap;
    font-weight:400;
  }
  
  .nav-items__item::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .nav-items__item:hover::after {
    transform: scaleX(1);
  }

  .bl_searchKey_btn {
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 0;
  }
  
  .bl_searchKey {
    top: 100px;
  }
}
/* ==================================================================
 * 
   メインビジュアル
   
================================================================== */
.ly_main__top {
  margin-top: 108px;
  padding-top: 0;
  max-width: unset;
}
.top__mv {
  position: relative;
  height: 150vh;
  max-height: 900px;
  padding: 340px 0 60px;
  box-sizing: border-box;
  margin: 0;
  background: none;
  overflow: hidden;
}
/* 背景画像 */
.top__mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://www.busoken.com/hubfs/busoken_theme/busoken-theme_imgs/top/mv_img.jpg) center 30% / cover no-repeat;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}
/* キャッチコピーコンテナ */
.mv__container {
  position: relative;
  z-index: 1;
  text-align: center;
}
/* キャッチコピー文字 */
.mv-text-main {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.25;
  color: #00263b;
  font-family: "Inria Sans", sans-serif;
  letter-spacing: 0.35rem;
  margin: 0;
}
/* アニメーション用span（1文字ずつ） */
.c-text__split {
  display: inline-block;
  opacity: 0;
  line-height: 1.2;
  vertical-align: bottom;
  margin-right: 0;
}
/* スクロールアイコンのアニメーション */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
.scroll-down-indicator {
  align-items: center;
  animation: floatUpDown 4.5s ease-in-out infinite;
  border: 2px solid #00263b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: 98px;
  justify-content: center;
  position: absolute;
  right: 16%;
  top: 40px;
  width: 98px;
  z-index: 10;
}
/* 共通：角度だけ同じ */
.scroll-down-indicator .chevron {
  display: block;
  transform: rotate(40deg); /* ← 下向き ∨ */
}
/* 1本目（大きく・太く） */
.chevron--1 {
  width: 18px;
  height: 18px;
  border-right: 3px solid #00263B;
  border-bottom: 3px solid #00263B;
}
/* 2本目（中くらい） */
.chevron--2 {
  width: 14px;
  height: 14px;
  border-right: 2px solid #00263B;
  border-bottom: 2px solid #00263B;
}
/* 3本目（小さく・細く） */
.chevron--3 {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #00263B;
  border-bottom: 1.5px solid #00263B;
}
/* タブレット */
@media (max-width: 1023px) and (min-width: 768px) {
  .scroll-down-indicator {
    top: 250px;
    right: 10%;
    width: 70px;
    height: 70px;
  }
}
/* モバイル */
@media (max-width: 767px) {
  .top__mv::before{
         background:none;
  }
.top__mv {
    background: url(https://www.busoken.com/hubfs/busoken_theme/busoken-theme_imgs/top/mv_img_sp.jpg) no-repeat center center / cover;
    overflow: hidden;
    padding: 0;
    position: relative;
  height: 100vh;
    max-height: 550px;

    }
  .mv__container {
    position: relative;
    z-index: 1;
    padding-top: 270px; /* キャッチコピーを好みの位置まで下げる（調整OK） */
    text-align: center;
  }
  .mv-text-main {
    font-size: 28px;
    letter-spacing: 0.15rem;
    line-height: 1.3;
  }
  .scroll-down-indicator {
    display: none;
  }
}




/* ==================================================================
 * 
   事業紹介
   
================================================================== */
.top__business {
  padding: 65px 20px;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
.section-inner {
  max-width: 1082px;
  margin: 0 auto;
}
.section-ttl {
  color: var(--h2, #00263B);
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 0px;
  margin-bottom: 40px;
}
.section-subttl {
  color: #00263b;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Segoe UI, Noto Sans JP, Hiragino Sans, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 45px;
  margin-top: -40px;
  text-align: center;
}
.business-list {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.business-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 0px;
  flex: 1 1 calc((100% - 2 * 25px) / 3); /* gapが2つ分25pxなので調整 */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.business-image {
  margin: 0px 0px 12px 0px;
  width: 344px;
  height: 169px;
  border-radius: 7px;
  object-fit: cover;
}
.business-list .business-item:nth-child(3) .business-image {
  border: 2px solid #E0E0E0;
  border-radius: 7px;
}
.business-label {
  color: var(--p, #313131);
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin: 0px 0 5px;
}
.business-item:last-child{
        padding-bottom: 0px;

}

.business-description p {
  font-size: 20px;
  line-height: 1.1;
  color: #555;
  margin: 0;
  white-space: pre-line; /* 改行コードを反映 */
}
.btn-container {
  text-align: center;
  margin-top: 40px;
  justify-self: center;/* 新たに追加　中央 */
}


.interactive-button {
  position: relative;
  width: 321px;
  height: 52px;
  padding: 0 16px; /* 左右とも16pxに */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #FFC235;
  color: #241C0A;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  overflow: hidden;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.btn-text {
  flex: 1;
  text-align: center;
}

.interactive-button svg {
  position: absolute;
  right: 16px; /* paddingと合わせる */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; /* アイコンがクリックを邪魔しないように */
}


.interactive-button:hover {
  background: #FFF;
  border-color: #FFC235;
  color: #241C0A;
}

.interactive-button:hover svg path {
  stroke: #241C0A;
}



/* 元の会社概要を見るボタンの設定　↓ */
 /*
.company-btn {
  display: inline-block;
  width: 300px;
  height: 68px;
  line-height: 68px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(to right, #192733 0%, #192733 50%, #004EA2 50%, #004EA2 100%);
  transition: background-position ease 0.4s;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 22px;
}
.company-btn:hover {
  background-position: 0 0;
}
*/


/* モバイル */
@media (max-width: 767px) {
  .top__business {
    padding: 32px 25px 50px;
  }
  .section-ttl {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .section-subttl {
    font-size: 16px;
    line-height: 1.1;
    margin-bottom: 42px;
    margin-top: -28px;
  }
  .business-list {
    display: block;
    flex-direction: column;
    gap: 32px;
  }
  .business-item {
    flex: none;
    width: 100%;
    padding-bottom: 30px;
  }
  .business-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin-bottom: 0px;
  }
  .business-label {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .business-description p {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: -0.01rem;
  }
  .btn-container {
    margin-top: 20px;
  }
  .company-btn {
    width: 220px;
    height: auto;
    font-size: 18px;
    padding: 24px 0px;
    line-height: normal;
    border-radius: 7px;
  }
  /*ボタン*/
  .interactive-button {
    width: 265px; 
    height: 56px; 
    font-size: 16px;
    padding: 0 24px;
  }
  
}



/* ==================================================================
 * 
   提供しているノウハウ
   
================================================================== */

.top__knowhow {
    padding: 65px 0px 80px;
    background-color: #E6EFF3;
}
.knowhow-section-ttl {
    color: var(--h2, #00263B);
    text-align: center;
    font-family: "Hiragino Kaku Gothic Pro", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 40px;
}
/* 親コンテナ */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto auto 1fr auto; /* ヘッダー(auto), ボディ(可変), フッター(auto) */
    gap: 0px 10px;
    max-width: 1080px;
    margin: 20px auto;
    padding: 0;
}
/* 各カード（子要素） */
.card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / -1;
    overflow: hidden; /* 角丸を効かせるため */
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
}
/*-------- ノウハウラベル --------*/
.knowhow-label {
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 7px;
    margin-right: auto;
    padding: 3px 15px;
    width: fit-content;
}
/* ラベルの色 */
.beginner {
    background-color: #4487ac;
}
.beginner-intermediate {
    background-color: #37557c;
}
/*-------- ノウハウスクール名 --------*/
.knowhow-school {
    color: #00263b;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Segoe UI, Noto Sans JP, Hiragino Sans, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 7px;
    text-align: left;
    width: 100%;
}
/*-------- ノウハウ画像 --------*/
.knowhow-img {
    border: 1px solid #ccc;
    display: block;
    height: auto;
    margin-bottom: 6px;
    object-fit: cover;
    width: 100%;
}
.knowhow-img img {
    width: 100%;
}
/*-------- ノウハウタイトル --------*/
.knowhow-title {
    color: #00263b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    padding-left: 20px;
    position: relative;
    text-align: left;
    border-bottom: 1.5px solid #cdcdcd;
    letter-spacing: 1px;
    padding-bottom: 10px;
}
.knowhow-title :before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 10px;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    margin-right: 8px;
    background: url('https://www.busoken.com/hubfs/busoken_theme/busoken-theme_imgs/top/knowhow-title-icon.svg') no-repeat center / contain;
}
.knowhow-description {
    margin: 10px auto;
    padding: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* -webkit-box-orient: vertical;*/ /*...にするなら表示*/
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    letter-spacing: .04rem;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    transition: max-height .3s ease;
    max-height: 2.2em;
}
.knowhow-description-sub {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / -1;
}
.knowhow-description-sub p {
    color: #000;
    font-size: 14px;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    letter-spacing: .04rem;
    text-align: left;
    transition: max-height .3s ease;
}
/*セミナーを見る　ボタン*/
.seminar-button-area {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
/*セミナーを見る　ボタン*/
	/*
.seminar-button {
  width: 100%;
  display: inline-block;
  margin: 16px 0 10px;
  padding: 0px 0px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 7px;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  transition: background-position ease 0.4s;
  cursor: pointer;
}
	
.seminar-button:hover {
  background-position: 0 0;
}
/*
	
/* 白ぼかしグラデーション（非展開時のみ表示） */
.knowhow-description::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.2em; /* グラデーションの高さ調整 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.knowhow-description.expanded {
    -webkit-line-clamp: unset;
    max-height: 600px;
    overflow: visible;
}
/* 展開状態（ぼかしを非表示） */
.knowhow-description.expanded::after {
    opacity: 0;
}
.toggle-button {
    background: none;
    border: none;
    color: #004EA2;
    cursor: pointer;
    padding: 0;
    font-size: 16.5px;
    margin-top: 0px;
    text-align: center;
}
.seminar-button {
    position: relative;
    width: 203px;
    height: 31px;
    padding: 0 16px; /* 左右とも16pxに */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #FFC235;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.seminar-button a {
    text-decoration: none;
    color: #241C0A;
}
.seminar-button svg {
    position: absolute;
    right: 16px; /* paddingと合わせる */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* アイコンがクリックを邪魔しないように */
}
.seminar-button:hover {
    background: #FFF;
    border-color: #FFC235;
    color: #241C0A;
}
.seminar-button:hover svg path {
    stroke: #241C0A;
}

/*モバイル*/
@media (max-width: 767px) {
/* 親コンテナのグリッド設定を1列に変更 */
.grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}
.card {
    /* 親グリッドの行をまたぐ設定を解除 */
    grid-row: auto;
    grid-template-rows: none;
    padding: 27px 20px;
    margin-top: 20px;
}
body {
    display: block;
    margin: 0px;
}
.top__knowhow {
    padding: 30px 25px 50px;
}
/*コンテンツタイトル*/
.knowhow-section-ttl {
    font-size: 30px;
    margin: 0px 0px 20px;
}
.knowhow-label {
    font-size: 14px;
    padding: 4px 20px;
}
.knowhow-school {
    font-size: 16px;
}
.knowhow-img {
    display: none;
}
.knowhow-title {
    font-size: 19px;
}
.knowhow-description p {
    font-size: 17px;
}
/*セミナーを見る　ボタン*/
.hs-cta-embed.hs-cta-simple-placeholder.hs-cta-embed-193505269085.hs-cta-embed__loaded {
    width: 100% !important;
}
.seminar-button {
    width: 100%;
    margin: 16px 0 10px;
    padding: 0px 0px;
}
.toggle-button {
    background: none;
    border: none;
    color: #004EA2;
    cursor: pointer;
    padding: 16px 0 9px;
    font-size: 17.5px;
    margin-top: 0px;
    text-align: center;
    font-weight: bold;
}
/*ボタン*/
.seminar-button {
    width: 203px;
    height: 31px;
    font-size: 17px;
    padding: 0 0px;
}
}




/* ==================================================================
 * 
   事業実績
   
================================================================== */
.top__achievements {
  padding: 65px 0px 80px;
  background-color: #F6F9FB;
}
.achievements-section-ttl {
  color: var(--h2, #00263B);
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
}
.achievements-list {
  max-width: 845px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  align-items: center;
}
.achievements-item {
  background: #fff;
  padding: 58px 30px 60px;
  border-radius: 8px;
  text-align: center;
  width: 100%;
}
.achievements-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 4px;
  color: #000;
  line-height: 1;
}
.achievements-number {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: 0.2rem;
}
.achievements-number span {
  font-size: 30px;
}
.achievements-sublabel {
  color: #494F58;
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}
.achievements-wrap {
  border-radius: 9px;
  border: 1.275px solid #D7DFE7;
  background: #F8FAFC;
  width: 784px;
  height: 410px;
  align-content: center;
  max-width: 100%;
  box-sizing: border-box;
  padding: 24px 32px;
  margin: 0 auto;
}
/* Webサイトの年間セッション数だけ横並びにする */
.achievements-item.session .achievements-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0px;
  justify-content: center;
}
/* テキスト左寄せ */
.achievements-item.session .achievements-text-block {
  flex: 1;
  text-align: left;
  max-width: 40%;
}
.achievements-item.session .achievements-text-block p.achievements-text {
  text-align: left;
  line-height: 1.6;
}
/* 画像右寄せ */
.achievements-item.session .achievements-image {
  flex: 0 0 auto;
}
.achievements-item.session .achievements-image img {
  max-width: 188px;
  height: auto;
  margin-bottom: 0;
}
.achievements-image img {
  margin: 0 auto;
  padding-bottom: 24px;
}
.achievements-caption {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 2.5;
}
.achievements-text {
  letter-spacing: .06rem;
  font-size: 24px;
  color: #000;
  font-weight: 600;
  line-height: 1.3;
}
.achievements-text span {
  font-size: 40px;
}
.achievements-note {
  color: #99A7BB;
  font-size: 16px;
  margin-top: 12px;
  font-weight: 600;
  line-height: 2;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', 'Noto Sans JP', 'Hiragino Sans', sans-serif;
}

/* モバイル */
@media (max-width: 768px) {
  .achievements-wrap {
    height: auto;
  }
  .top__achievements {
    padding: 33px 0 50px;
  }
  .achievements-section-ttl {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .achievements-list {
    gap: 20px;
  }
  .achievements-item {
    border-radius: 7px;
    padding: 44px 12px 23px;
    width: 80%;
  }
  .achievements-title {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .achievements-number {
    font-size: 27px;
    letter-spacing: .1rem;
    margin-bottom: 8px;
  }
  .achievements-number span {
    font-size: 12px;
  }
  .achievements-sublabel {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .achievements-caption {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
  }
  .achievements-text {
    font-size: 13px;
  }
  .achievements-text span {
    font-size: 19px;
  }
  .achievements-note {
    font-size: 10px;
    margin-top: 8px;
  }
  .achievements-image img {
    margin-bottom: 14px;
    width: 90% !important;
  }
  /* 横並びの親要素 */
  .achievements-item.session .achievements-wrap {
    gap: 0px !important;
    padding: 12px 30px !important;
  }
  /* テキスト部分 */
  .achievements-item.session .achievements-text-block {
    margin-right: 0 !important;
    flex: 1 1 auto;
    max-width: 56%;
  }
  /* 画像部分 */
  .achievements-item.session .achievements-image {
    flex: 0 0 auto;
    margin-left: 0 !important;
  }
  /* 画像自体のサイズ調整 */
  .achievements-item.session .achievements-image img {
    max-width: 120px !important; /* 必要に応じて調整 */
    height: auto !important;
    display: block;
  }
}




/* ==================================================================
 * 
   最新記事
   
================================================================== */
/* レイアウト関連 */
.blog-section-wrapper {
  max-width: unset;
  position: relative;
  padding: 65px 0px;
  background-color: #E6EFF3;
}
.blog-section-container {
  margin: 0 auto;
  max-width: 1074px;
  width: 100%;
  position: relative;
}
/* ブログセクションのタイトル */
.blog-section__title {
  color: #00263b;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  margin: 0 0 40px;
  text-align: center;
}
/* ブログ記事のグリッドコンテナ */
.blog-section__articles {
  display: grid;
  gap: 15px 20px;
  grid-template-columns: 50% 23% 23%;
  grid-template-rows: auto auto;
  height: fit-content;
  margin: 0 auto 40px;
  width: 100%;
  justify-content: space-between;
  max-width: 1045px;
  padding: 0 15px;
}
/* ブログカード共通スタイル */
.blog-card {
  margin: 0;
  box-shadow: none;
  text-decoration: none;
  transition: 0.25s;
  position: relative;
  width: 100%;
}
/* カード全体を覆うリンク */
.blog-card__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
/* 画像ラッパー */
.blog-card__image-wrapper {
  height: fit-content;
  margin: 0 0 15px; /* デフォルトのマージン */
  padding-top: unset;
  overflow: hidden;
}
/* 画像本体 */
.blog-card__image-wrapper > img {
  position: relative;
  top: 0;
  transform: none;
  object-fit: fill;
  height: 100% !important;
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}
/* カード本文のコンテナ */
.blog-card__body {
  padding: 0;
  position: relative;
}
/* カード: 最初のタイプ (大きなカード) の特定スタイル */
.blog-card:first-of-type {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.blog-card:first-of-type .blog-card__image-wrapper {
  margin: 0 0 25px; /* 最初のカードの画像ラッパーのマージン */
}
.blog-card:first-of-type .blog-card__tag-list {
  top: -41px; /* 最初のカードのタグラッパーのトップ位置 */
}
.blog-card:first-of-type .blog-card__tag {
  font-size: 20px;
  font-weight: bold;
  max-height: calc(20px * 1.5 * 1);
}
.blog-card:first-of-type .blog-card__title {
  margin: 0 0 15px;
  height: 70px;
}
.blog-card:first-of-type .blog-card__title span {
  font-size: 24px;
  line-height: 1.58;
  max-height: calc(24px * 1.58 * 2);
}
/* タグのリスト */
.blog-card__tag-list {
  display: flex;
  top: -28px; /* デフォルトのトップ位置 */
  margin: 0 5px;
  position: absolute;
  left: 0;
  z-index: 20;
  list-style: none;
}
/* 個々のタグ */
.blog-card__tag {
  font-size: 14px; /* デフォルトのフォントサイズ */
  font-weight: 500; /* デフォルトのフォントウェイト */
  max-height: calc(14px * 1.5 * 1); /* デフォルトの最大高さ */
  background: #008cd6;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0 10px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.25s;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
/* 記事タイトル */
.blog-card__title {
  margin: 0 0 6px; /* デフォルトのマージン */
  color: #3d4060;
}
.blog-card__title span {
  font-size: 14px; /* デフォルトのフォントサイズ */
  line-height: 1.53; /* デフォルトの行の高さ */
  font-weight: 700;
  letter-spacing: 0.05em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: calc(18px * 1.5 * 2); /* デフォルトの最大高さ */
}
/* 記事日付 */
.blog-card__date {
  font-size: 11px;
  color: #afb0ba;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
/* ボタン */
.blog-section__button-wrap {
    text-align: center;
}

.blog-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* テキスト中央寄せ */
  gap: 56px; /* テキストとアイコンの間隔 */
  width: 247px;
  height: 48px;
  padding: 0 0 0 70px;
  border-radius: 9999px;
  background: #FFC235;
  color: #241C0A;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.blog-section__button::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="17" viewBox="0 0 12 17" fill="none"><path d="M2 2L9 8.79545L2 15" stroke="black" stroke-width="3"/></svg>');
  display: inline-block;
}

.blog-section__button:hover {
  background: #FFF;
  border-color: #FFC235;
  color: #241C0A;
}

.blog-section__button:hover::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="17" viewBox="0 0 12 17" fill="none"><path d="M2 2L9 8.79545L2 15" stroke="%23241C0A" stroke-width="3"/></svg>');
}



/* モバイル */
@media (max-width: 768px) {
  .blog-section-wrapper {
    max-width: unset;
    position: relative;
    padding: 33px 22px 50px;
  }
  .blog-section__title {
    font-size: 32px; /* モバイルでのタイトルフォントサイズを調整 */
    margin-bottom: 30px;
  }
  .blog-section__articles {
    grid-template-columns: repeat(2, 1fr); /* モバイルでは2カラム */
    gap: 15px 15px; /* モバイルでのギャップを調整 */
    padding: 0; /* モバイルでのパディングをリセット */
    max-width: none; /* モバイルでは最大幅をリセット */
  }
  /* 最初のカードを全幅に設定 */
  .blog-card:first-of-type {
    grid-column: 1 / 3; /* 1番目のカードを2カラムにまたがせる */
    grid-row: auto; /* グリッドロウのリセット */
  }
  /* 最初のカードに適用されていたデスクトップ向けの特定のスタイルをモバイル向けにリセット */
  .blog-card:first-of-type .blog-card__image-wrapper {
    margin-bottom: 15px;
  }
  .blog-card:first-of-type .blog-card__tag-list {
    top: -28px;
  }
  .blog-card:first-of-type .blog-card__tag {
    font-size: 14px;
    font-weight: 500;
    max-height: calc(14px * 1.5 * 1);
  }
  .blog-card:first-of-type .blog-card__title {
    margin-bottom: 6px;
    height: auto;
  }
  .blog-card:first-of-type .blog-card__title span {
    font-size: 14px;
    line-height: 1.53;
    max-height: calc(18px * 1.5 * 2);
  }

  
   /*ボタン*/
    .blog-section__button {
        width: 213px !important;
        height: 56px;
        font-size: 16px;
        padding: 0px 0px 0 48px;
    }
  
}






/* ==================================================================
 * 
   お問い合わせフォーム
   
================================================================== */
.top__contact {
  background: #E6EFF3;
  padding: 65px 0 80px;
}
.contact-section-inner {
  max-width: 846px;
  margin: 0 auto;
  padding: 0 20px;
  }

.contact-section-inner input, .contact-section-inner textarea {
  width: 100% !important;
  max-width: 846px;
  margin-bottom: 16px !important;
  border-radius: 5px;
  border: 1px solid #999;
  padding: 0.2em 0.5em;
  display: block;
}
.contact-section-inner input {
  height: 34px;
}
.contact-section-inner textarea {
  height: 82px;
}
.contact-section-inner label {
  color: #000;
  font-size: 18px !important;
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
  padding-left: 0.5em;
}
span.hs-form-required {
  color: red;
  padding-left: 4px;
}
/* プライバシーポリシーのチェックボックスラベルを左寄せ */
.contact-section-inner .hs_privacypolicy {
  text-align: left !important;
  width: auto;
}
/* チェックボックス＆テキストの整列修正 */
.contact-section-inner .hs_privacypolicy label.hs-form-booleancheckbox-display {
  display: flex;
  align-items: center;
  gap: 4px;
}
.contact-section-inner .hs_privacypolicy input[type="checkbox"] {
  margin: 0 !important;
  padding: 0;
  width: fit-content !important;
}

.contact-section-inner .hs_privacypolicy span {
    width: auto;
}






/* ボタン中央寄せ */
.hs-form .actions {
  text-align: center;
}

/* フォーム送信ボタンを統一デザインに */
.hs-form input[type="submit"],
.hs-form .hs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 56px; /* テキストとアイコンの間隔 */
  width: 321px !important;
  height: 52px;
  border-radius: 9999px;
  background: #FFC235;
  color: #241C0A;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
    /* アイコンを背景として追加 */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="17" viewBox="0 0 12 17" fill="none"><path d="M2 2L9 8.79545L2 15" stroke="currentColor" stroke-width="3"/></svg>');
  background-repeat: no-repeat;
  background-position: right 24px center; /* 右端からの距離調整 */
}
  

/* ホバー時 */
.hs-form input[type="submit"]:hover,
.hs-form .hs-button:hover {
  background-color: #FFF; /* ← backgroundを全部塗り直さず、色だけ変える */
  border-color: #FFC235;
  color: #241C0A;

  /* アイコン背景も再指定 */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="17" viewBox="0 0 12 17" fill="none"><path d="M2 2L9 8.79545L2 15" stroke="currentColor" stroke-width="3"/></svg>');
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 12px 17px;
}





/* モバイル */
@media (max-width: 768px) {
  .top__contact {
    background: #E6EFF3;
    padding: 33px 24px 50px;
  }
  .contact-section-inner {
    max-width: 846px;
    margin: 0 auto;
    padding: 0px;
  }
  .contact-section-inner input, .contact-section-inner textarea {
    width: 94% !important;
    max-width: 100%;
    margin: 0 auto;
  }

  /*ボタン*/
 .hs-form input[type="submit"],
.hs-form .hs-button {
        width: 265px !important;
        height: 56px;
        font-size: 16px;
        padding: 0 24px;
    }
}




}