@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
a[rel=home] {
  position: relative;
  display: inline-block;
  /* 必要に応じて */
}

/* もしフェードなどのアニメーションをつけたい場合は以下のように transition を追加 */
a[rel=home] img {
  transition: opacity 0.5s ease-in-out;
}

a[rel=home] .first-view,
a[rel=home] .content-view {
  position: absolute;
  /* 画像同士が重なるように配置 */
  top: 15px;
  left: 15px;
  width: auto;
  /* 必要に応じてサイズを調整 */
  transition: opacity 0.5s ease-in-out;
}

/* 初期状態：白いロゴを表示、黒いロゴは透明にしておく */
a[rel=home] .first-view {
  opacity: 1;
  z-index: 2;
}

a[rel=home] .content-view {
  opacity: 0;
  z-index: 1;
}

/* スクロール後（.scrolled クラス付与時）に切り替え */
a[rel=home].scrolled .first-view {
  opacity: 0;
}

a[rel=home].scrolled .content-view {
  opacity: 1;
}

/* スクロールアニメーション */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* お知らせ詳細ページではアニメーションを無効化 */
.news-detail.fade-in-up,
.news-detail .fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

html {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  line-height: 170%;
  letter-spacing: 0.015em;
  scroll-behavior: smooth;
}

body {
  line-height: inherit;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-size: inherit;
}

.pc {
  display: block;
}

.sp {
  display: none;
}
img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* mouseover
--------------------------------------------------*/
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  color: inherit;
  transition: all 0.4s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;

}

header .header_inner {
  width: calc(100% - min(8.6363636364vw, 190px));
  margin: auto;
  font-size: clamp(14px, 0.9090909091vw, 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px 20px;
}
header .logo_block {
  width: clamp(120px, 13.6363636364vw, 220px);
}
header .navigation_contents {
  margin-left: auto;
}
header .sub_nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
header .sub_nav .sub_nav_content a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 0 0 20px 20px;
  padding: min(0.9090909091vw, 12px) min(1.9090909091vw, 42px);
  font-size: 16px;
  font-weight: bold;
  width: 293px;
}
header .sub_nav .voice {
  background-color: #FFD400;
  color: #000;
}
header .sub_nav .voice::before {
  content: "";
  display: block;
  width: min(1.6363636364vw, 36px);
  aspect-ratio: 36/30;
  background: url(../img/header_icon_01.svg) no-repeat center/100% auto;
}
header .sub_nav .trial {
  background-color: #FF0055;
  color: #fff;
}
header .sub_nav .trial::before {
  content: "";
  display: block;
  width: min(1.8181818182vw, 40px);
  aspect-ratio: 40/24;
  background: url(../img/header_icon_02.svg) no-repeat center/100% auto;
}
header .sub_nav .signup {
  background-color: #0484E6;
  color: #fff;
}
header .sub_nav .signup::before {
  content: "";
  display: block;
  width: min(1.0909090909vw, 28px);
  aspect-ratio: 24/28;
  background: url(../img/header_icon_03.svg) no-repeat center/100% auto;
}
header .main_nav {
  margin-top: 30px;
}
header .main_nav .parent_list {
  display: flex;
  gap: clamp(16px, 3.6363636364vw, 70px);
}
header .main_nav .has_child {
  position: relative;
  z-index: 200;
}

header a {
    font-size: 16px;
  font-weight: bold;
}
header .main_nav .has_child > a {
  position: relative;
  z-index: 2;

}
header .main_nav .child_list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
  width: -moz-max-content;
  width: max-content;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  top: 30px;
  left: 0;
  transition: all 0.3s linear;
  background-color: #0066cc;
  border-radius: 10px;
  padding: 15px;
  z-index: 200;
}
header .main_nav .has_child:hover .child_list {
  max-height: 500px;
  opacity: 1;
  overflow: visible;
}
header .main_nav .child_list a {
  font-size: 96%;
  padding: 10px;
  color: #ffffff;
  transition: opacity 0.2s ease;
}
header .main_nav .child_list a:hover {
  opacity: 0.8;
}
header .main_nav .has_child:last-child .child_list {
  left: auto;
  right: 0;
}
  header .main_nav .member a{
    background-color: #0082C3;
    color: white;
    padding: 5px 18px;
    border-radius: 50px;
    font-weight: normal;
    font-size: 14px;
  }

/* モバイル専用要素をPCで非表示 */
.mobile_fixed_btns,
.menu_action_btns {
  display: none;
}

/* 会員メニューリンク（モバイル・タブレット用） */
.menu_member_links {
  display: none;
}

/* ハンバーガーメニューボタン - モバイル・タブレット表示 */
header .hum_btn {
  display: none;
}

@media screen and (max-width: 1023px) {
  header .hum_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #0066CC;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 102;
  }
}

header .hum_btn .hum_open {
  width: 24px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: all 0.3s;
  top: 11px;
}

header .hum_btn .hum_open::before,
header .hum_btn .hum_open::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  left: 0;
  transition: all 0.3s;
}

header .hum_btn .hum_open::before {
  top: -7px;
}

header .hum_btn .hum_open::after {
  bottom: -7px;
}

header .hum_btn .menu_text {
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  margin-top: 21px;
}

/* メニュー開いた時 */
header.menu_open .hum_btn .hum_open {
  background: transparent;
}

header.menu_open .hum_btn .hum_open::before {
  top: 0;
  transform: rotate(45deg);
}

header.menu_open .hum_btn .hum_open::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ナビゲーションメニュー - PC表示 */
header .navigation_contents {
  display: block;
}

/* モバイル・タブレット時のナビゲーション */
@media screen and (max-width: 1023px) {
  header .navigation_contents {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: #0066CC;
    z-index: 101;
    overflow-y: auto;
    transition: right 0.3s;
    padding: 100px 40px 120px;
  }

  header.menu_open .navigation_contents {
    right: 0;
  }
}

/* 会員メニューボタン（PC表示のみ） */
.member_nav_item {
  display: none;
}

.member_menu_btn {
  display: none;
}

@media screen and (min-width: 1024px) {
  .member_nav_item {
    display: block;
    margin-left: auto;
            position: relative;
        top: -6px;
  }

  .member_menu_btn.pc-only {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0484E6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
    white-space: nowrap;
  }

  .member_menu_btn.pc-only:hover {
    opacity: 0.8;
    background: #006BB8;
  }

  .member_menu_btn.pc-only .member_icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .member_menu_btn.pc-only .member_text {
    letter-spacing: 0.05em;
  }
}

/* 会員メニューパネル（PC表示のみ） */
.member_menu_panel {
  display: none;
}

@media screen and (min-width: 1024px) {
  .member_menu_panel {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 150;
    pointer-events: none;
  }
}

.member_menu_panel.active {
  pointer-events: auto;
}

.member_menu_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
}

.member_menu_panel.active .member_menu_overlay {
  background: rgba(0, 0, 0, 0.5);
}

.member_menu_content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #0066bf;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 80px 40px;
  transition: right 0.3s;
  overflow-y: auto;
  z-index: 2;
}

.member_menu_panel.active .member_menu_content {
  right: 0;
}

.member_menu_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.member_menu_close:hover {
  background: #fff;
  transform: scale(1.1);
}

.member_menu_close svg {
  width: 20px;
  height: 20px;
  stroke: #0066CC;
  stroke-width: 2.5;
}

.member_menu_title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-top: 0;
  margin-bottom: 40px;
}

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

.member_menu_link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.member_menu_link:hover {
  background: #0066CC;
  color: #fff;
  border-color: #0066CC;
  transform: translateX(-4px);
}

.member_menu_link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: #0066CC;
  transition: stroke 0.3s;
}

.member_menu_link:hover svg {
  stroke: #fff;
}

footer {
  background-color: #0082C3;
  padding-block: clamp(40px, 3.6363636364vw, 100px) 60px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  transform: rotate(180deg);
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path d="M0,30 Q300,0 600,30 T1200,30 L1200,0 L0,0 Z" fill="%230082C3"/></svg>') repeat-x;
  background-size: 100% 100%;
}
footer .footer_contact {
  color: #fff;
  width: min(72.7272727273vw, 1600px);
  background-color: #0D4792;
  padding: clamp(30px, 3.8181818182vw, 85px) clamp(20px, 5.2272727273vw, 115px);
  border-radius: 8px;
  margin-inline: auto;
  display: flex;
  gap: clamp(40px, 7.5%, 120px);
  justify-content: center;
}
footer .footer_contact .title_block {
  width:50%;
}
footer .footer_contact .info_block {
  width:50%;
}
footer .footer_contact .telarea {
  position: relative;
  padding-left: clamp(40px, 2.8636363636vw, 63px);
}
footer .footer_contact .telarea::before {
  content: "";
  display: block;
  width: clamp(24px, 2.4545454545vw, 56px);
  aspect-ratio: 54/72;
  background: url(../img/footer_contact_icon.svg) no-repeat center/100% auto;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
footer .footer_contact .tel_btn {
  display: block;
  position: relative;
  line-height: 100%;
}
footer .footer_contact .number {
  font-size: clamp(45px, 2.8181818182vw, 64px);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 100%;
}
footer .footer_contact .hour {
  font-size: clamp(9px, 0.6818181818vw, 15px);
  letter-spacing: 0.045em;
  line-height: 1.8;
}
footer .footer_contact .hour .sp-only {
  display: none;
}
footer .footer_contact .formarea {
  margin-top: clamp(24px, 1.8181818182vw, 40px);
}
footer .footer_contact .formarea_btn {
  display: block;
  width: 100%;
  padding: clamp(12px, 1.3636363636vw, 30px) clamp(36px, 2.6363636364vw, 58px) clamp(12px, 1.3636363636vw, 30px) clamp(20px, 1.8181818182vw, 40px);
  background-color: #fff;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 100px;
  position: relative;
  text-align: center;
}
footer .footer_contact .formarea_btn::after {
  content: "";
  display: block;
  width: clamp(12px, 0.8636363636vw, 19px);
  aspect-ratio: 19/15;
  background: url(../img/icon_arrow_bk.svg) no-repeat center/100% auto;
  position: absolute;
  top: 50%;
  right: 0;
  translate: -210.5263157895% -50%;
}

/* バナーエリア */
footer .footer_banner {
  width: min(72.7272727273vw, 1600px);
  margin: clamp(40px, 4.5454545455vw, 100px) auto 0;
}
footer .footer_banner .banner_inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.2727272727vw, 50px);
  align-items: center;
}
footer .footer_banner .banner_item {
  width: 100%;
}
footer .footer_banner .banner_item a {
  display: block;
  width: 100%;
  transition: opacity 0.3s;
}
footer .footer_banner .banner_item a:hover {
  opacity: 0.8;
}
footer .footer_banner .banner_item img {
  width: 100%;
  height: auto;
  display: block;
}

footer .footer_info {
  width: min(72.7272727273vw, 1600px);
  margin-top: clamp(40px, 6.1363636364vw, 138px);
  margin-inline: auto;
  display: flex;
  gap: clamp(40px, 5.4545454545vw, 120px);
}
footer .footer_info .basic_block {
  width: 18.75%;
}
footer .footer_info .basic_block .textarea {
  margin-top: clamp(16px, 1.5909090909vw, 35px);
  font-size: clamp(12px, 0.7272727273vw, 16px);
  line-height: 115%;
  color: #fff;
}
footer .footer_info .basic_block .tel {
  text-decoration: underline;
  margin-top: 8px;
}
footer .footer_info .basic_block .snsarea {
  margin-top: clamp(16px, 1.5909090909vw, 35px);
  display: flex;
  gap: 8px;
}
footer .footer_info .basic_block .snsarea li {
  width: 50px;
  height: 50px;
}
footer .footer_info .basic_block .snsarea li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
footer .footer_info .basic_block .snsarea li a:hover {
  background-color: #E1306C;
  transform: scale(1.1);
}
footer .footer_info .basic_block .snsarea li a:hover svg {
  stroke: #fff;
}
footer .footer_info .basic_block .snsarea li a svg {
  width: 24px;
  height: 24px;
  stroke: #333;
  transition: stroke 0.3s ease;
}
footer .footer_info .sitemap_block {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
footer .footer_info .sitemap_block .parent_list {
  width: -moz-fit-content;
  width: fit-content;
}
footer .footer_info .sitemap_block .parent_list a {
  color: #fff;
  line-height: 108%;
}
footer .footer_info .sitemap_block .parent_list + a {
  font-size: clamp(13px, 0.7272727273vw, 16px);
  font-weight: 700;
}
footer .footer_info .sitemap_block .parent_list li + li {
  margin-top: clamp(20px, 1.3636363636vw, 30px);
}
footer .footer_info .sitemap_block .parent_list .parent_link {
  font-size: clamp(13px, 0.7272727273vw, 16px);
  font-weight: 700;
  padding-bottom: 20px;
  display: block;
}

/* PC: ホバーで子メニュー表示 */
footer .footer_info .sitemap_block .has_child:hover .child_list {
  display: flex;
}

footer .footer_info .sitemap_block .child_list {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.1818181818vw, 25px);
}
footer .footer_info .sitemap_block .child_list a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(12px, 0.6818181818vw, 15px);
  padding-left: clamp(8px, 0.8181818182vw, 18px);
}
footer .footer_info .sitemap_block .child_list a::before {
  content: "";
  display: block;
  width: clamp(6px, 0.5454545455vw, 12px);
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
}
footer .footer_info .sitemap_block .child_list a.overview {
  font-weight: 700;
  margin-bottom: clamp(4px, 0.5454545455vw, 12px);
  padding-bottom: clamp(4px, 0.5454545455vw, 12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  /* PC表示時は一覧ページリンクを非表示 */
  display: none;
}
footer .footer_copyrights {
  margin-top: clamp(80px, 7.1818181818vw, 158px);
  padding-bottom: clamp(20px, 1.8181818182vw, 40px);
}
footer .footer_copyrights .textarea {
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.center {
  text-align: center;
}

/* トップページ　英字タイトル付き */
.title_block h2 .ja_title {
  font-size: min(2.2727272727vw, 32px);
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000;
}
.title_block h2 .ja_title.big {
  font-size: clamp(32px, 2.7272727273vw, 40px);
}
.title_block h2 .ja_title .blue {
  color: #2876C3;
}
.title_block h2 .ja_title.wh {
  color: #fff;
}
.title_block h2 .ja_title + .en_title {
  margin-left: 8px;
}

/* ボタン関連のCSS */
.btnarea.center {
  text-align: center;
}

.btnarea.right {
  text-align: right;
}

.btnarea.mt40 {
  margin-top: clamp(24px, 1.8181818182vw, 40px);
}

.btnarea.mt60 {
  margin-top: clamp(24px, 2.7272727273vw, 60px);
}

.btnarea.mt80 {
  margin-top: clamp(32px, 3.6363636364vw, 80px);
}

.btn {
  display: inline-block;
  padding: clamp(8px, 1vw, 22px) clamp(32px, 3.5454545455vw, 78px);
  font-weight: 700;
  color: #000;
  border-radius: 8px;
  position: relative;
  z-index: 0;
}
.btn::after {
  content: "";
  display: block;
  width: clamp(10px, 0.8636363636vw, 20px);
  aspect-ratio: 19/15;
  background: url(../img/icon_arrow_bk.svg) no-repeat center/100% auto;
  position: absolute;
  top: 50%;
  right: 0;
  translate: -100% -50%;
}

.btn.bg_y {
  background-color: #FFC800;
}

.index_top {
  /* コンセプト */
}
.index_top .mv_block {
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}
.index_top .mv_block .mv_image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.index_top .mv_block .mv_image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.index_top .mv_block .mv_title {
  width: -moz-fit-content;
  width: fit-content;
  color: #3889D9;
  font-size: clamp(34px, 3.6363636364vw, 100px);
  font-weight: 900;
  line-height: 120%;
  letter-spacing: 0.06em;
}

/* 音壵ボタン */
.index_top .mv_block .sound-toggle {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #3889D9;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.index_top .mv_block .sound-toggle:hover {
  background: #3889D9;
  transform: scale(1.1);
}
.index_top .mv_block .sound-toggle svg {
  width: 24px;
  height: 24px;
  color: #3889D9;
  transition: color 0.3s ease;
}
.index_top .mv_block .sound-toggle:hover svg {
  color: #fff;
}
.index_top .mv_block .sound-toggle .sound-on {
  display: none;
}
.index_top .mv_block .sound-toggle .sound-off {
  display: block;
}
.index_top .mv_block .sound-toggle.active .sound-on {
  display: block;
}
.index_top .mv_block .sound-toggle.active .sound-off {
  display: none;
}

/* スクロールインジケーター */
.index_top .mv_block .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.index_top .mv_block .scroll-text {
  color: #3889D9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.index_top .mv_block .scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, #3889D9 0%, rgba(56, 137, 217, 0) 100%);
  animation: scrollLineAnimation 2s ease-in-out infinite;
}

@keyframes scrollLineAnimation {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

/* 汎用innerクラス */
.inner {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.index_top .concept .inner {
  width: min(72.7272727273vw, 1600px);
  margin: 200px auto;
  position: relative;
}
.index_top .concept .title_block {
  width: 37.5%;
}
.index_top .concept .text_block {
  width: 37.5%;
}
.index_top .concept .image_block {
  width: min(50vw, 1100px);
  position: absolute;
  top: -60px;
  right: -9.5454545455vw;
  z-index: -1;
  aspect-ratio: 1100/800;
}
.index_top .concept .image_block figure {
  position: absolute;
}
.index_top .concept .image_block figure:nth-child(1) {
  width: 100%;
  left: 0;
}
.index_top .concept .image_block figure:nth-child(2) {
  width: min(42.7272727273%, 480px);
  aspect-ratio: 475/340;
  top: 0;
  right: 10px;
}
.index_top .concept .image_block figure:nth-child(3) {
  width: min(22.2727272727%, 245px);
  aspect-ratio: 249/225;
  translate: 201.7777777778% 133.2%;
}
.index_top .concept .image_block figure:nth-child(4) {
  width: min(50.9090909091%, 560px);
  aspect-ratio: 560/265;
  translate: 13.3928571429% 179.2452830189%;
}
.index_top .concept .image_block figure:nth-child(5) {
  width: min(30.4545454545%, 335px);
  aspect-ratio: 338/295;
  translate: 205.9701492537% 162.7118644068%;
}
.index_top .news {
  margin-top: clamp(60px, 4.5454545455vw, 100px);
  background: url(../img/top/top_lesson_bg.png) no-repeat top center/cover;
  padding-block: clamp(30px, 2.1818181818vw, 80px);
}
.index_top .news .inner {
  width: min(72.7272727273vw, 1600px);
  margin: 0 auto 0;
  display: flex;
  gap: clamp(30px, 2.7272727273vw, 60px);
  align-items: flex-start;
}
.index_top .news .news_content {
  flex: 2;
}
.index_top .news .news_content .en_title {
  padding-bottom: 5px;
}


.index_top .news .title_block {
  text-align: center;
}
.index_top .news .calendar_area {
  flex: 1;
  margin-top: clamp(30px, 2.7272727273vw, 60px);
  border-radius: 16px;
  padding: clamp(20px, 1.8181818182vw, 40px);
}
.index_top .news .calendar_title {
  font-size: clamp(16px, 1.0909090909vw, 24px);
  font-weight: 700;
  color: #2876C3;
  text-align: center;
}
.index_top .news .calendar_placeholder {
  text-align: center;
  padding: clamp(40px, 3.6363636364vw, 80px) 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}
.index_top .news .newslist_block {
}
.index_top .news .newslist_block ul {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 0.8636363636vw, 30px);
}
.index_top .news .newslist_block ul li.news_card {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.index_top .news .newslist_block ul li.news_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.index_top .news .newslist_block ul li.news_card.has_new {
 
}
.index_top .news .newslist_block ul li .new_label {
  position: absolute;
  top: -12px;
  left: clamp(-26px,-1.4545454545vw, 32px);
  background-color: #FFC20B;
  color: #000;
  font-size: clamp(11px, 0.6363636364vw, 14px);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(255, 194, 11, 0.4);
  z-index: 1;
}
.index_top .news .newslist_block ul li .news_link {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.3636363636vw, 30px);
  padding: clamp(16px, 1.4545454545vw, 15px) clamp(20px, 1.8181818182vw, 40px);
  text-decoration: none;
  color: inherit;
}
.index_top .news .newslist_block ul li .date {
  font-size: clamp(11px, 0.6363636364vw, 14px);
  font-weight: 600;
  color: #666;
  white-space: nowrap;
}
.index_top .news .newslist_block ul li .category {
  font-size: clamp(11px, 0.6363636364vw, 14px);
  color: #fff;
  border-radius: 6px;
  background-color: #064F9E;
  padding: 6px 14px;
  white-space: nowrap;
}
.index_top .news .newslist_block ul li .title {
  flex: 1;
  font-size: clamp(13px, 0.7272727273vw, 16px);
  font-weight: 700;
  line-height: 1.5;
}
.index_top .news .newslist_block ul li .arrow_icon {
  width: clamp(32px, 2.1818181818vw, 48px);
  height: clamp(32px, 2.1818181818vw, 48px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  overflow: hidden;
}
.index_top .news .newslist_block ul li:hover .arrow_icon {
  transform: translateX(4px);
}
.index_top .news .newslist_block ul li .arrow_icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}
.index_top .news .btnarea {
  margin-top: clamp(30px, 2.7272727273vw, 60px);
}
.index_top .about {
  margin-top: clamp(80px, 6.7272727273vw, 150px);
}
.index_top .about .inner {
  width: min(72.7272727273vw, 1600px);
  margin-inline: auto;
}
.index_top .about .about_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 2.7272727273vw, 60px);
}
.index_top .about .about_image {
  flex-shrink: 0;
  width: clamp(150px, 24.1818181818vw, 460px);
}
.index_top .about .about_image img {
  width: 100%;
  height: auto;
}
.index_top .about .aboutlist_block {
  margin-top: clamp(28px, 1.0272727273vw, 60px);
}
.index_top .about .aboutlist_block ul {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(25px, 2.2727272727vw, 50px);
}
.index_top .about .aboutlist_block li {
  width: calc((100% - clamp(25px, 2.2727272727vw, 50px)) / 2);
  position: relative;
  cursor: pointer;
}
.index_top .about .aboutlist_block li:hover .imagearea img {
  transform: scale(1.1);
}
.index_top .about .aboutlist_block .imagearea {
  position: relative;
  z-index: 0;
  border-radius: 20px;
  overflow: hidden;
}
.index_top .about .aboutlist_block .imagearea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.index_top .about .aboutlist_block .imagearea::after {
  content: "";
  display: block;
  background: linear-gradient(180deg, rgba(99, 174, 212, 0) 0%, rgb(51, 90, 110) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.82;
}
.index_top .about .aboutlist_block .textarea {
  position: absolute;
  left: 0;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: clamp(8px, 1.0909090909vw, 24px);
}
.index_top .about .aboutlist_block .number {
  width: clamp(25px, 2.2727272727vw, 50px);
}
.index_top .about .aboutlist_block .list_title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(16px, 1.1818181818vw, 26px);
}
.index_top .about .company_link_area {
  margin-top: clamp(30px, 2.7272727273vw, 60px);
  text-align: right;
}
.index_top .about .company_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #064F9E;
  font-weight: 600;
  font-size: clamp(14px, 0.9090909091vw, 20px);
  text-decoration: none;
  transition: opacity 0.3s;
}
.index_top .about .company_link:hover {
  opacity: 0.7;
}
.index_top .about .company_link .link_text {
  border-bottom: 1px dashed #064F9E;
  padding-bottom: 2px;
}
.index_top .about .company_link .link_arrow {
  width: clamp(20px, 1.3636363636vw, 30px);
  height: clamp(20px, 1.3636363636vw, 30px);

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.index_top .about .company_link:hover .link_arrow {
  transform: translateX(4px);
}
.index_top .about .company_link .link_arrow img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}
.index_top .lesson {
  margin-top: clamp(80px, 11.3636363636vw, 200px);
  background: #000;
  background: url(../img/top/top_lesson_bg.png) no-repeat top center/cover;
  padding-block: clamp(60px, 11.1818181818vw, 230px);
  position: relative;
  z-index: 0;
}
.index_top .lesson .first_image {
  position: absolute;
top: -115px;
    left: 7%;
  width: clamp(300px, 27.7272727273vw, 600px);
  z-index: 1;
}
.index_top .lesson .first_image img {
  width: 100%;
  height: auto;
}
.index_top .lesson .inner {
  width: min(72.7272727273vw, 1400px);
  margin-inline: auto;
}
.index_top .lesson .title_block {
  width: 50%;
  position: relative;
  z-index: 1;
}
.index_top .lesson .text_block {
  width: 50%;
  position: relative;
  z-index: 1;
}
.index_top .lesson .image_block {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
.index_top .lesson .image_block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top left;
  object-position: top left;
}
.index_top .lesson .image_block.pc-none {
  display: none;
}
.index_top .course {
  padding-block: clamp(60px, 8.1818181818vw, 180px) 0;
}
.index_top .course .inner {
  width: min(72.7272727273vw, 1200px);
  margin-inline: auto;
  display: flex;
  gap: clamp(40px, 2.6363636364vw, 80px);
}
.index_top .course .course_left {
  width: 33.33%;
  flex-shrink: 0;
}
.index_top .course .course_image {
  width: 100%;
  margin-bottom: clamp(20px, 0.4181818182vw, 40px);
}
.index_top .course .course_image img {
  width: 60%;
  height: auto;
  margin-bottom: 50px;
}
.index_top .course .course_copy {
  font-size: clamp(20px, 3.6363636364vw, 38px);
  font-weight: 700;
  color: #2876C3;
  line-height: 2;
  text-align: left;
}
.index_top .course .course_right {
  flex: 1;
}
.index_top .course .course_content {
  margin-top: clamp(30px, 2.7272727273vw, 60px);
}
.index_top .course .course_text {
  font-size: clamp(14px, 0.8181818182vw, 18px);
  line-height: 2.8;
  color: #333;
}
.index_top .course .course_button_area {
  margin-top: clamp(30px, 2.7272727273vw, 60px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 1.8181818182vw, 40px);
}
.index_top .course .course_illust {
  width: clamp(200px, 18.1818181818vw, 400px);
  flex-shrink: 0;
}
.index_top .course .course_illust img {
  width: 100%;
  height: auto;
  position: relative;
  right: -50px;
}
.index_top .course .course_illust_sp {
  display: none;
}
.index_top .course .course_slider {
  margin-top: clamp(60px, 5.4545454545vw, 120px);
  overflow: hidden;
  width: 100%;
}
.index_top .course .slider_track {
  display: flex;
  gap: clamp(20px, 1.8181818182vw, 40px);
  animation: scroll-left 30s linear infinite;
  width: max-content;
}
.index_top .course .slider_item {
  flex-shrink: 0;
  width: clamp(250px, 34.727273vw, 800px);
}
.index_top .course .slider_item img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.index_top .course .link_block {
  margin-top: clamp(24px, 3.4090909091vw, 75px);
}
.index_top .course .linkarea {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 4.2727272727vw, 94px) clamp(15px, 2.5vw, 55px);
}
.index_top .course .linkarea li {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: calc((100% - clamp(15px, 2.5vw, 55px)) / 2);
}
.index_top .course .linkarea li figure a {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index_top .course .linkarea li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.index_top .course .linkarea li .title a {
  display: block;
  font-weight: 700;
  padding: clamp(15px, 1.6363636364vw, 36px) clamp(40px, 3.6363636364vw, 80px) clamp(15px, 1.6363636364vw, 36px) clamp(10px, 1.0909090909vw, 24px);
  border-bottom: solid 10px #FFC20B;
  position: relative;
  z-index: 0;
}
.index_top .course .linkarea li .title a::after {
  content: "";
  display: block;
  width: clamp(20px, 2.0454545455vw, 45px);
  aspect-ratio: 45/30;
  background: url(../img/icon_arrow_bk.svg) no-repeat center/100% auto;
  position: absolute;
  top: 50%;
  right: 0;
  translate: -84.4444444444% -50%;
}
.index_top .course .linkarea li .text {
  padding: clamp(10px, 1.5454545455vw, 34px);
}
.index_top .studio {
  background-color: #FFF9E5;
  padding-block: clamp(80px, 9.0909090909vw, 200px) clamp(60px, 6.3636363636vw, 140px);
  margin-top: clamp(80px, 9.3181818182vw, 205px);
  width: 100%;
  overflow-x: clip;
  position: relative;
}
.index_top .studio .facility_image_left {
position: absolute;
    top: -72px;
    left: max(calc((100% - min(89.727273vw, 1600px)) / 2), 0px);
    width: clamp(300px, 27.7272727273vw, 600px);
    z-index: 1;
}
.index_top .studio .facility_image_left img {
  width: 100%;
  height: auto;
  position: relative;
  left: -30px;
    max-width: 300px;
}
.index_top .studio .facility_image_right {
  position: absolute;
  top: -100px;
  right: -10px;
  width: clamp(300px, 27.7272727273vw, 600px);
  max-width: 400px;
  z-index: 1;
}
.index_top .studio .facility_image_right img {
  width: 100%;
  height: auto;
}
.index_top .studio .inner {
  width: min(84.727273vw, 1400px);
  margin-inline: auto;
  position: relative;
  position: relative;
  z-index: 0;
}
.index_top .studio .title_block {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

@media screen and (min-width: 1900px) {
.index_top .studio .title_block{
  top: -40px;
}

}

.index_top .studio .slider_block {
  width: 100%;
  /*overflow: hidden;*/
  position: relative;
}
.index_top .studio .swiper-slide {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(20px, 4.4090909091vw, 97px);
  justify-content: space-between;
  align-items: end;
  background-color: #FFF9E5;
}
.index_top .studio .swiper-slide figure {
  width: 43.4375%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.index_top .studio .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.index_top .studio .swiper-slide .textarea {
  width: 50.1875%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.index_top .studio .swiper-slide .title {
  font-size: clamp(20px, 1.1818181818vw, 22px);
  font-weight: 700;
}
.index_top .studio .swiper-slide .text {
  background-color: #fff;
  border-radius: 20px;
  padding: clamp(20px, 2.7272727273vw, 90px) clamp(28px, 2.7272727273vw, 60px);
  margin-top: min(1.8181818182vw, 40px);
  margin-bottom: min(1.3636363636vw, 32px);
}
.index_top .studio .swiper_pagination {
  width: 43.4375%;
  text-align: center;
  margin-left: auto;
  margin-top: 20px;
}
.index_top .studio .swiper_pagination .swiper-pagination-bullet {
  width:clamp(12px, 0.790909vw, 20px);
  height:clamp(12px, 0.790909vw, 20px);
  opacity: 0.4;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}
.index_top .studio .swiper_pagination .swiper-pagination-bullet-active {
  background-color: #FFC20B;
  opacity: 1;
}
.recruit {
  background-color: #7BD6F5;
  padding: 50px 0 80px 0;
  position: relative;
}

.recruit::before {
  content: "";
  position: absolute;
  top: -60px;
  transform: rotate(180deg);
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path d="M0,30 Q300,60 600,30 T1200,30 L1200,0 L0,0 Z" fill="%237BD6F5"/></svg>') repeat-x;
  background-size: 100% 100%;
}

.recruit .inner {
  width: min(84.727273vw, 1400px);
  margin-inline: auto;
  position: relative;
  display: flex;
  gap: 40px;
  align-items: center;
}

.recruit .title_block {
  flex: 0 0 40%;
  width: 40%;
}

.recruit .title_block .en_title {
  font-family: "Just Me Again Down Here", cursive;
  font-size: clamp(22px, 4vw, 32px);
  color: #fff;
  display: block;
}

.recruit .title_block .ja_title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  display: block;
  margin-bottom: 24px;
}

.recruit h2 {
  margin: 0;
}

.recruit .text_block {
  margin-top: 24px;
}

.recruit .text_block .textarea p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
  margin-bottom: 24px;
}

.recruit .image_block {
  flex: 0 0 60%;
  width: 60%;
  position: relative;
  aspect-ratio: 955/663;
}

.recruit .image_block figure {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
}

.recruit .image_block figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/*
.recruit .image_block .imagearea:nth-child(1) {
  width: 36.6492146597vw;
  max-width: 300px;
  height: auto;
  top: 0;
  left: 0;
  z-index: 2;
}

.recruit .image_block .imagearea:nth-child(2) {
  width: 11.17801vw;
  max-width: 250px;
  height: auto;
  left: 0;
  bottom: 0;
  z-index: 1;
}*/

.recruit .image_block .imagearea {
    width: 49.649215vw;
    max-width: 862px;
  height: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.footer_contact .title_block .ja_title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  display: block;
  margin-bottom: 24px;
}
.footer_contact h2 {
  margin: 0;
}
.footer_contact .title_block .en_title {
    font-family: "Just Me Again Down Here", cursive;
    font-size: 18px;
    color: #FFD400;
    display: block;
}

/* ================================================
   タブレット縦向き（768px - 1023px）
   スマホと同様のレイアウト
   ================================================ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  /* スマホと同じスタイルを適用 */
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}

/* ================================================
   スマホ（767px以下）
   ================================================ */
@media screen and (max-width: 1023px) {

  /* ヘッダー スマホ・タブレット対応 */
  header .header_inner {
    width: 100%;
    padding: 15px 20px;
  }

  header .logo_block {
    width: 155px;
    z-index: 102;
  }

  header .logo_block img {
    width: 100%;
  }

  /* メニュー開いた時のロゴを白色に */
  header.menu_open .logo_block img {
    content: url(../img/logo_white.svg);
  }

  header .sub_nav {
    display: none;
  }

  header .main_nav {
    margin-top: 0;
  }

  header .main_nav .parent_list {
    flex-direction: column;
    gap: 0;
  }

  header .main_nav .parent_list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  header .main_nav .parent_list > li:last-child {
    border-bottom: none;
  }

  header .main_nav .parent_list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #fff;
  }

  header .main_nav .parent_list > li > a::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Ccircle cx="12" cy="12" r="11" fill="%230066CC"/%3E%3Cpath d="M10 8l4 4-4 4" stroke="white" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
  }

  header .main_nav .child_list {
    position: static;
    max-height: none;
    opacity: 1;
    padding-left: 20px;
    margin-top: 8px;
    margin-bottom: 8px;
    width: 95%;
  }

  header .main_nav .child_list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: #fff;
  }

  header .main_nav .child_list a::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Ccircle cx="12" cy="12" r="11" fill="%230066CC"/%3E%3Cpath d="M10 8l4 4-4 4" stroke="white" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
  }



  /* 固定ボタン */
  .mobile_fixed_btns {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    gap: 8px;
    padding: 12px;
    z-index: 99;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
  }

  .mobile_fixed_btns.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile_fixed_btns a {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
  }

  .mobile_fixed_btns .voice {
    display: none;
  }

  .mobile_fixed_btns .trial {
    background: #FF0055;
  }

  .mobile_fixed_btns .signup {
    background: #0484E6;
  }

  .mobile_fixed_btns a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .mobile_fixed_btns .voice::before {
    background-image: url(../img/header_icon_01.svg);
  }

  .mobile_fixed_btns .trial::before {
    background-image: url(../img/header_icon_02.svg);
  }

  .mobile_fixed_btns .signup::before {
    background-image: url(../img/header_icon_03.svg);
  }

  /* メニュー内のボタン */
  .menu_action_btns {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
  }

  .menu_action_btns a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
  }

  .menu_action_btns .voice {
    background: #FFD400;
    color: #000;
  }

  .menu_action_btns .trial {
    background: #FF0055;
  }

  .menu_action_btns .signup {
    background: #0484E6;
  }

  /* 会員メニューリンク（モバイル・タブレット専用） */
  .menu_member_links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
  }

  .menu_member_links .member_link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s;
  }

  .menu_member_links .member_link:hover {
    background: rgba(255, 255, 255, 0.25);
  }

  .menu_member_links .member_link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .menu_action_btns a::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .menu_action_btns .voice::before {
    background-image: url(../img/header_icon_01.svg);
  }

  .menu_action_btns .trial::before {
    background-image: url(../img/header_icon_02.svg);
  }

  .menu_action_btns .signup::before {
    background-image: url(../img/header_icon_03.svg);
  }

  /* TOPページ スマホ対応 */
  
  /* 共通：ja_titleのフォントサイズを確保 */
  .title_block h2 .ja_title {
    font-size: clamp(20px, 5vw, 28px);
  }

  /* Concept セクション */
  .index_top .concept .inner {
    width:min(76.7272727273vw, 90%);
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .index_top .concept .title_block {
    width: 100%;
    order: 1;
  }

  .index_top .concept .text_block {
    width: 100%;
    order: 2;
   font-size: clamp(14px, 0.8181818182vw, 18px);
    line-height: 2.8;
  }

  .index_top .concept .image_block {
    width: 110%;
    position: relative;
    top: 0;
    right: 0;
    left: -5%;
    order: 3;
    margin-top: 20px;
  }

  /* News セクション */
  .index_top .news .inner {
    flex-direction: column;
    gap: 40px;
  }

  .index_top .news .news_content {
    width: 100%;
  }

  .index_top .news .calendar_area {
    width: 100%;
    margin-top: 0;
    padding: 20px 0;
  }

  .index_top .about .inner {
    width: 90%;
  }

  /* About セクション */
  .index_top .about .about_header {
    flex-direction: column;
    gap: 30px;
  }

  .index_top .about .about_image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .index_top .about .aboutlist_block ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .index_top .about .aboutlist_block li {
    width: 100%;
  }

  /* Lesson セクション */
  .index_top .lesson {
    position: relative;
    padding-bottom: 0px;
  }

  .index_top .lesson .first_image {
    width: 280px;
    top: -50px;
    left: 5%;
    z-index: 2;
  }

  .index_top .lesson .inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .index_top .lesson .inner .textarea {
   font-size: clamp(14px, 0.8181818182vw, 18px);
    line-height: 2.8;
    text-align: center;

  }
  .index_top .lesson .title_block {
        width: 90%;
        margin: 0 auto;
    order: 1;
  }

  .index_top .lesson .text_block {
           width: 90%;
        margin: 0 auto;
    order: 2;
  }

  .index_top .lesson .image_block {
    width: 100%;
    position: relative;
    top: 0;
    right: 0;
    order: 3;
  }

  .index_top .lesson .image_block.sp-none {
    display: none;
  }

  .index_top .lesson .image_block.pc-none {
    display: block;
  }

  .index_top .lesson .image_block img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Course セクション */
  .index_top .course .inner {
    flex-direction: column;
    gap: 40px;
  }

  .index_top .course .course_left {
    width: 100%;
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .index_top .course .course_left .course_copy {
    display: none;
  }

  .index_top .course .course_copy_sp {
    display: block;
    font-size: clamp(20px, 5vw, 28px);
    font-weight: 700;
    color: #2876C3;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
  }

  .index_top .course .course_image {
    display: none;
  }

  .index_top .course .course_right {
    width: 100%;
    order: 1;
  }

  .index_top .course .title_block {
    order: 1;
  }

  .index_top .course .course_content {
    order: 3;
  }

  .index_top .course .course_button_area {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .index_top .course .course_illust_pc {
    display: none;
  }

  .index_top .course .course_illust_sp {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
  }

  .index_top .course .course_illust_sp img {
    width: 100%;
    height: auto;
  }

  /* Course スライダー */
  .index_top .course .course_slider {
    margin-top: 5px;
  }

  .index_top .course .slider_item {
    width: 200px;
  }

  /* MV 音声ボタン非表示 */
  .index_top .mv_block .sound-toggle {
    display: none;
  }

  /* Studio セクション */
  .index_top .studio .title_block_pc {
    display: none;
  }

  .index_top .studio .title_block_sp {
    display: block;
    position: static;
    margin-bottom: 40px;
    text-align: center;
  }

  .index_top .studio .inner {
    overflow: visible;
  }

  .index_top .studio .slider_block {
    position: static;
  }

  .index_top .studio .swiper-slide {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .index_top .studio .facility_image_left {
    width: 200px;
    top: -80px;
    left: max(calc((100% - min(100% - 32px, 1600px)) / 2), 16px);
  }

  .index_top .studio .facility_image_right {
    width: 200px;
    top: -44px;
    right: -30px;
  }

  .index_top .studio .swiper-slide {
    flex-direction: column;
    min-height: auto;
    gap: 20px;
  }

  .index_top .studio .swiper-slide figure {
    width: 100%;
  }

  .index_top .studio .swiper-slide .textarea {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .index_top .studio .swiper-slide .text {
 font-size: clamp(14px, 0.8181818182vw, 18px)
}
  .index_top .studio .facility_image_left img {
          max-width: 175px;
        top: 38px;
  }

  .index_top .studio .swiper_pagination {
    width: 100%;
    margin:0 0 40px 0;
  }

  .recruit .inner {
    flex-direction: column;
    gap: 40px;
  }

  .index_top .studio {
    padding-block: clamp(80px, 9.0909090909vw, 200px) clamp(100px, 6.3636363636vw, 140px);
  }

  .recruit .title_block {
    flex: none;
    width: 100%;
    order: 1;
  }

  .recruit .image_block {
    flex: none;
    width: 100%;
    order: 2;
    aspect-ratio: 1;
    height: 328px;
  }

  .recruit .image_block .imagearea:nth-child(1) {
    width: 100%;
  }

  .recruit .text_block {
    text-align: center;
  }

  .recruit .image_block .imagearea:nth-child(2) {
    width: 130px;
    left: -14px;
    bottom: 20px;
  }

  .recruit .image_block .imagearea:nth-child(3) {
   width: 230px;
   right: -50px;
   top: 52%;
  }

  /* Footer スマホ対応 */
  footer {
    padding-block: 60px 40px;
  }

  footer::before {
    height: 40px;
    top: -40px;
  }

  footer .footer_contact {
    width: calc(100% - 32px);
    flex-direction: column;
    padding: 40px 40px;
    gap: 32px;
  }

  footer .footer_contact .title_block {
    width: 100%;
  }

  footer .footer_contact .title_block h2 {
    font-size: 24px;
    padding-top: 0;
    margin: 0 auto;
  }

  footer .footer_contact .title_block .textarea {
    margin-top: 12px;
    font-size: 14px;
  }

  footer .footer_contact .info_block {
    width: 100%;
  }

  footer .footer_contact .telarea {
    padding-left: 0;
    text-align: center;
  }

  footer .footer_contact .telarea::before {
        top: 14px;
    margin: 0 auto 12px;
    transform: none;
  }

  footer .footer_contact .number {
          font-size:clamp(32px, 5vw, 32px);
        position: relative;
        left: 13px;
  }

  footer .footer_contact .hour {
    font-size: 12px;
    margin-top: 8px;
    line-height: 1.8;
  }

  footer .footer_contact .formarea {
    margin-top: 24px;
  }

  footer .footer_contact .formarea_btn {
    padding: 14px 50px 14px 20px;
    font-size: 14px;
  }

  footer .footer_contact .formarea_btn::after {
    right: 20px;
    transform: translateY(-50%);
  }

  /* バナーエリア - モバイル */
  footer .footer_banner {
    width: calc(100% - 32px);
    margin: 40px auto 0;
  }
  footer .footer_banner .banner_inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  footer .footer_info {
    width: calc(100% - 32px);
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
  }

  /* スマホ表示時はsitemap_blockを先に表示 */
  footer .footer_info .sitemap_block {
    order: 1;
  }

  footer .footer_info .basic_block {
    order: 2;
    width: 100%;
  }

  footer .footer_info .basic_block .logoarea {
    width: 80%;
    margin: 0 auto;;
  }

  footer .footer_info .basic_block .textarea {
    margin-top: 20px;
    text-align: center;
    line-height: 1.8;
    font-size: 18px;;
  }

  footer .footer_info .basic_block .snsarea {
    margin-top: 20px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  footer .footer_info .sitemap_block {
    flex-direction: column;
    gap: 32px;
  }

  footer .footer_info .sitemap_block .parent_list {
    width: 100%;
  }

  footer .footer_info .sitemap_block .parent_list > li > a {
    font-size: 16px;
    font-weight: 700;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* スマホ表示時はchild_listを非表示 */
  footer .footer_info .sitemap_block .child_list {
    display: none;
  }

  /* スマホ表示時はbrを表示 */
  footer .footer_contact .hour .sp-only {
    display: inline;
  }

  footer .footer_copyrights {
    margin-top: 60px;
  }

  footer .footer_copyrights .textarea {
    font-size: 11px;
  }

  /* スマホ時は固定ボタンの下にコンテンツが隠れないよう余白追加 */
  body {
    padding-bottom: 80px;
  }

  /* お知らせセクション スマホ対応 */
  .index_top .news .inner {
    flex-direction: column;
    width:min(87.727273vw, 90%);
  }
  .index_top .news .news_content {
    width: 100%;
  }
  .index_top .news .calendar_area {
    width: 100%;
    order: 2;
  }
}
/* --------------------------------------------------
  display
-------------------------------------------------- */
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

.u-alignC {
  text-align: center;
}

.u-alignR {
  text-align: right;
}

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-margin.-short {
  margin-bottom: 16px;
}
.u-margin.-middle {
  margin-bottom: 32px;
}
.u-margin.-large {
  margin-bottom: 64px;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

/* --------------------------------------------------
  u-preload
-------------------------------------------------- */
/* --------------------------------------------------
  u-bellota
-------------------------------------------------- */
.u-bellota {
  font-family: "Bellota Text";
}

/* --------------------------------------------------
  u-wrap
-------------------------------------------------- */
.u-wrap {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
/* --------------------------------------------------
  container & basic setting
-------------------------------------------------- */
.container {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.container.mode_l {
  max-width: 1440px;
}

.sec_item {
  padding-top: 140px;
  padding-bottom: 140px;
}

.sec_mt {
  margin-top: 140px;
}

.cont_item {
  margin-top: 60px;
}

.inner_item {
  padding-top: 100px;
  padding-bottom: 70px;
}

.mode_renewal {
  line-height: 1.8;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}

.txt_box > p:not(:first-child) {
  margin-top: 24px;
}

/* --------------------------------------------------
  animation
-------------------------------------------------- */
@keyframes dot_jump {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(-6px);
  }
  10% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes purun {
  0% {
    transform: scale(1.025, 1) translate(0%, 0%);
  }
  4% {
    transform: scale(1.05, 0.9) translate(0%, 0%);
  }
  8% {
    transform: scale(0.9, 1.1) translate(0%, 0%);
  }
  12% {
    transform: scale(1.025, 0.95) translate(0%, 0%);
  }
  16% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin: 0 1.5em 0 0;
}

.alignright {
  float: right;
  margin: 0 0 0 1.5em;
}

.wp-caption {
  max-width: 100%;
}

@media screen and (max-width: 1079px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

/* ================================================
   スマホ・タブレット縦向け（1023px以下）
   ================================================ */
@media screen and (max-width: 1023px) {
  html {
    font-size: 2.4vw;
  }
  body {
    line-height: 1;
    min-width: 1%;
    overflow-x: hidden;
    position: relative;
  }
  a[href^="tel:"],
  a[href^="https://line"] {
    text-decoration: none !important;
  }
  .u-pc {
    display: none;
  }
  .u-wrap {
    width: 90vw;
  }
  .container {
    padding-left: 3.999vw;
    padding-right: 3.999vw;
  }
  .sec_item {
    padding: 21.328vw 0vw 21.328vw 0vw;
  }
  .sec_mt {
    margin: 21.328vw 0vw 0vw 0vw;
  }
  .cont_item {
    margin: 10.664vw 0vw 0vw 0vw;
  }
  .inner_item {
    padding-top: 10.664vw;
    padding-bottom: 10.664vw;
  }
  .mode_renewal {
    font-size: 4.2656vw;
  }

  /* 2カラムレイアウト → 1カラムに変更 */
  .layout-2column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .layout-2column.reverse {
    flex-direction: column;
  }

  .layout-2column .main-content {
    width: 100%;
    max-width: 100%;
    order: 2;
  }

  .layout-2column .sidebar {
    width: 100%;
    max-width: 100%;
    position: static;
    order: 1;
  }

  /* under-containerの左右パディングを0に */
  .under-container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .over {
    text-decoration: none !important;
  }
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
  a[href^="tel:"],
  a[href^="https://line"] {
    display: inline-block;
    pointer-events: none;
  }
  .u-sp {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  header .main_nav .child_list.shown {
    max-height: 1000px;
    overflow: visible;
    opacity: 1;
  }
  header .main_nav .child_list.shown > a {
    padding: 4px 8px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.96);
  }
  .index_top {
    /* コンセプト */
  }
}

        /* レイアウト用CSS */
        body {
            font-family: "Inter", sans-serif;
            line-height: 1.7;
            color: #333;
        }

        /* 下層ページヘッダー */
        .page-header {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 6;
            min-height: 400px;
            max-height: 600px;
            background-image: url('../../assets/img/header/bg.png');
            background-size: cover;
            background-position: center center;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-bottom: -98px;
    z-index: -1;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
            text-align: center;
            top: -60px;
            line-height: 1.8;
        }

        .page-header-content h1 {
            font-size: clamp(24px, 5vw, 32px);
            font-weight: 700;
            color: #0060C1;
        }

        .page-title-en {
            font-family: "Just Me Again Down Here", cursive;
            font-size: clamp(22px, 4vw, 22px);
            color: #FFC20B;
        }

        .en_title {
            display: inline-block;
            font-family: "Just Me Again Down Here", cursive;
            font-size: clamp(22px, 4vw, 32px);
            color: #FFC20B;
            font-weight: normal;
            transform: rotate(-1deg);
            padding-bottom: 20px;
        }
        .page-header-images {
            position: absolute;
            width: 80%;
            max-width: 80%;
            height: 100%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 1;
        }

        .page-header-images .img-left {
            position: absolute;
            left: 0;
            max-width: 493px;
            height: 60%;
            top: 34%;
        }

        .page-header-images .img-right {
            position: absolute;
            right: 0;
            top: 34%;
            max-width: 393px;
            height: 60%;
        }        /* パンくずリスト */
        .breadcrumb {
          width: 90%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 20px 20px;
        }

        .breadcrumb ul {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            list-style: none;
            gap: 20px;
            justify-content: end;
        }

        .breadcrumb ul li {
            display: flex;
            align-items: center;
            font-size: clamp(13px, 1.8vw, 14px);
            color: #333;
        }

        .breadcrumb ul li a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb ul li a:hover {
            color: #0066CC;
        }

        .breadcrumb ul li:not(:last-child)::after {
            content: "";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            margin-left: 20px;
            background: #0066CC url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M12 5l7 7-7 7"/></svg>') no-repeat center / 12px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* グローバルナビゲーション */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1;
            transition: background-color 0.3s ease;
                      padding-bottom: 20px;
        }

        header.scrolled {
            /*backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);*/
        }

        /* サブナビゲーションのホバー */
        .sub_nav_content a {
            transition: all 0.5s;
        }

        .sub_nav_content a.trial:hover {
            background: #d24b78;
        }
.sub_nav_content a.signup:hover {
background: #58b6ff;
}
.sub_nav_content a.voice:hover {
background: #ffb500;
}
   


        .under-container {
            max-width: 1900px;
            width: 90%;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .pool-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .pool-header h1 {
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 700;
            color: #0066CC;
            margin-bottom: 16px;
        }

        .pool-header p {
            font-size: clamp(14px, 2vw, 18px);
            color: #666;
        }

        .layout-section {
            margin-bottom: 120px;
        }

        .section-title {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 700;
            color: #333;
            margin-bottom: 40px;
            padding-bottom: 16px;
            border-bottom: 3px solid #FFC800;
        }

        .layout-description {
            background: #f9f9f9;
            padding: 24px;
            border-radius: 8px;
            margin-bottom: 32px;
        }

        .layout-description h3 {
            font-size: clamp(18px, 3vw, 22px);
            font-weight: 600;
            margin-bottom: 12px;
            color: #0066CC;
        }

        .layout-description p {
            font-size: clamp(14px, 2vw, 16px);
            color: #666;
            line-height: 1.8;
        }

        /* シングルカラムレイアウト */
        .layout-single {
            max-width: 1600px;
            margin: 0 auto;
        }

        .layout-single article {
            background: #fff;
            padding: 40px;

        }

        h2 {
            font-size: clamp(28px, 3.5vw, 36px);
            font-weight: 700;
            color: #333;
            margin-bottom: 24px;
            position: relative;
                margin: 50px 77px;
        }


        .index_top h2 {
margin: 0 0 20px 0;
                line-height: 1.6; }

        h2 span.num {
    width: 60px;
    height: 60px;
    background: #FFC800;
    border-radius: 50px 50px 0px 50px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -80px;
    top: -28px;
        }

        h3 {
            font-size: clamp(24px, 3vw, 28px);
            font-weight: bold;
            margin-bottom: 16px;
        }
        h4 {
            font-size: clamp(22px, 2.5vw, 26px);
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.8;
            color: #0060C1;
        }

        .content-ttl {
            font-size: clamp(16px, 2.5vw, 20px);
            font-weight: bold;
            margin-bottom: 16px;
            position: relative;
            display: flex;
            align-items: center;
        }
        .content-ttl span.num {
            width: 40px;
            height: 40px;
            background: #FFC800;
            border-radius: 50px 50px 0px 50px;
            font-size: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-right: 12px;
        }
        .copy {
            font-size: clamp(32px, 2.5vw, 36px);
            margin-bottom: 24px;
        }
        .copy span {
            color: #0066CC;
            font-weight: bold;
        }

        .layout-single article p {
            font-size: clamp(18px, 2vw, 16px);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .layout-single article img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 24px 0;
        }

        /* 2カラムレイアウト */
        .layout-2column {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
            max-width: 1900px;
            margin: 0 auto;
        }

        /* メインコンテンツ */
        .layout-2column .main-content {
            background: #fff;
            padding: 0px 0;
    width: 90%;
    max-width: 1018px;
    margin: 0 auto;
        }



        .layout-2column .main-content p {
            font-size: clamp(16px, 2vw, 18px);
            line-height: 1.8;
                 margin-bottom: 0px;
        }
        ._about02 .layout-2column .main-content p,
        ._about06 .layout-2column .main-content p {
            margin-bottom: 0px;
        }
        .layout-2column .main-content p.small {
            font-size: clamp(16px, 2vw, 16px);
            line-height: 1.8;
            margin-bottom: 30px;
        }
        .layout-2column .main-content img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin:0 0 24px 0;
        }

        .layout-2column .main-content .newslist_block img {
          margin-bottom: 0;
        }

        /* サイドバー */
        .layout-2column .sidebar {
            background: #fff;
            padding:24px;
            border-radius: 8px;
            position: sticky;
            top: 160px;
            align-self: start;
        }

        .sidebar-widget {
            margin-bottom: 32px;
            position: relative;
        }

        .sidebar-widget:last-child {
            margin-bottom: 0;
        }

        .sidebar-widget h3 {
color: #2876C3;
font-weight: bold;
font-size: 18px;
position: absolute;
top: -35px;
margin-top: 0px;
        }

        .sidebar-widget ul {
            list-style: none;
            background: #D3E9FF;
            border-radius:10px 10px;
            overflow: hidden;
            margin-bottom: 70px;
        }

.sidebar-widget ul li.active {
            background: #2876C3;
        }
        .sidebar-widget ul li {
            margin-bottom: 0;
            border-bottom: 1px solid #fff;
        }

        .sidebar-widget ul li:last-child {
            border-bottom: none;
        }

        .sidebar-widget ul li a {
            color: #333;
            text-decoration: none;
            font-size: clamp(16px, 2vw, 16px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 22px 20px;
            transition: background 0.3s;
            position: relative;
        }

        .sidebar-widget ul li a::after {
            content: "";
            display: inline-block;
            width: 32px;
            height: 32px;
            background: #fff;
            border-radius: 50%;
            flex-shrink: 0;
            position: relative;
        }

        .sidebar-widget ul li a::before {
            content: "";
            display: inline-block;
            width: 12px;
            height: 12px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232876C3" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M12 5l7 7-7 7"/></svg>') no-repeat center / contain;
            position: absolute;
            right: 30px;
            z-index: 1;
        }

        .sidebar-widget ul li a:hover,
        .sidebar-widget ul li a.active {
            background: #2876C3;
            color: #fff;
        }

        /* カテゴリーの投稿数を非表示 */
        .sidebar-widget ul li.cat-item {
            font-size: 0;
        }

        .sidebar-widget ul li.cat-item a {
            font-size: clamp(15px, 1.1363636364vw, 18px);
        }

        .sidebar-widget .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 20px;
            background-color: #D3E9FF;
            border-radius: 10px;
        }

        .sidebar-widget .tag-list a {
            background: #fff;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: clamp(12px, 1.8vw, 14px);
            color: #666;
            text-decoration: none;
            transition: background 0.3s;
        }

        .sidebar-widget .tag-list a:hover {
            background: #FFC800;
            color: #000;
        }

        /* コード表示エリア */
        .code-block {
            background: #f5f5f5;
            padding: 24px;
            border-radius: 8px;
            margin-top: 32px;
            overflow-x: auto;
        }

        .code-block h4 {
            font-size: clamp(22px, 2.5vw, 18px);
            font-weight: 600;
            margin-bottom: 16px;
            color: #333;
        }

        .code-block pre {
            background: #2d2d2d;
            color: #f8f8f2;
            padding: 20px;
            border-radius: 4px;
            overflow-x: auto;
            font-size: clamp(12px, 1.8vw, 14px);
            line-height: 1.6;
        }

        .code-block code {
            font-family: 'Courier New', monospace;
        }

        /* メディアブロック（2カラムFlexbox：画像左、テキスト右） */
        .media-block {
            display: flex;
            gap: 60px;
            margin-top: 32px;
            align-items: flex-start;
            margin-bottom: 50px;
        }

        .media-block .media-image {
            flex: 0 0 50%;
            width: 50%;
        }

        .media-block .media-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }

        .media-block .media-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .media-block .media-content .btn-group {
            margin-top: auto;
        }




        /* メディアブロック（逆パターン：テキスト左、画像右） */
        .media-block-reverse {
            display: flex;
            gap: 32px;
            margin-top: 32px;
            align-items: flex-start;
        }

        .media-block-reverse .media-content {
            flex: 0 0 50%;
            width:50%;
        }


        .media-block-reverse .media-image {
            flex: 1;
        }

        .media-block-reverse .media-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }

        /* カラーブロック */
        .color-block {
            padding: 70px 60px 50px 60px;
            border-radius: 10px;
            background: #D3E9FF;
            position: relative;
            margin-top: 80px;
                     margin-bottom: 50px;
                         display: flex;
                         justify-content:center;
        }

        .color-block .block-ttl {
            width: 317px;
            height: 60px;
            border-radius: 50px;
            background: #2876C3;
            color: #fff;
            font-size: clamp(18px, 2.5vw, 18px);
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
        }

        .layout-2column .main-content .color-block p {
            font-size: clamp(16px, 2vw, 16px);
            line-height: 1.8;
            color: #333;
            margin-bottom: 0;
        }

        /* カラーブロック - イエローバージョン */
        .color-block.yellow {
            background: #FFF2D3;
        }

        .color-block.yellow .block-ttl {
            background: #FFC20B;
            color: #000;
        }

        /* 2カラムコンテンツ（Q&A用など汎用的な左右分割） */
        .content-2col-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 32px;
            align-items: center;
        }

        .content-2col-item {
            margin-bottom: 32px;
        }

        .content-2col-item:last-child {
            margin-bottom: 0;
        }

        .content-2col-left h3 {
            font-size: clamp(18px, 3vw, 28px);
            font-weight: bold;
            margin-bottom: 16px;
            position: relative;
            padding-left: 0;
        }

        .content-2col-left h3 .num {
            width: 50px;
            height: 50px;
            background: #0066CC;
            color: #fff;
            border-radius: 50%;
            font-size: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-weight: bold;
            vertical-align: middle;
        }

        .content-2col-right p {
            font-size: clamp(14px, 2vw, 16px);
            line-height: 1.8;
            color: #333;
        }

        .block-white {
            background: #fff;
            border-radius: 10px;
            padding: 20px;
        }

        .block-white p {
            margin-bottom: 0;
        }

        /* タイトル付きボーダーボックス */
        .box-bordered-ttl {
            margin-top: 50px;
            margin-bottom: 50px;
            position: relative;
        }

        .box-bordered-ttl .box-ttl {
            background: #2876C3;
            color: #fff;
            font-size: clamp(18px, 3vw, 18px);
            padding:5px 20px;
            position: absolute;
            top: -20px;
        }

        .box-bordered-ttl .box-content {
            border: 2px solid #2876C3;

            border-radius: 0 0 10px 10px;
            padding: 40px 30px;
        }

        .box-bordered-ttl .box-content ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .box-bordered-ttl .box-content ul li {
            font-size: clamp(18px, 2vw, 18px);
            line-height: 1.8;
            color: #2D61A8;
            margin-bottom: 16px;
            padding-left: 1.2em;
            position: relative;
        }

        .box-bordered-ttl .box-content ul li:last-child {
            margin-bottom: 0;
        }

        .box-bordered-ttl .box-content ul li::before {
            content: "・";
            position: absolute;
            left: 0;
        }

        /* 情報テーブル */
        .info-table {
            width: 100%;
            margin-top: 50px;
            margin-bottom: 50px;
        }

        .info-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .info-table tr {
            border-bottom: 1px dashed #2876C3;
        }

        .info-table th {
            font-size: clamp(18px, 2vw, 18px);
            font-weight: bold;
            color: #333;
            text-align: left;
            padding: 20px 16px;
            width: 30%;
            vertical-align: top;
        }

        .info-table td {
            font-size: clamp(18px, 2vw, 18px);
            color: #333;
            padding: 20px 16px;
            line-height: 1.8;
        }

        /* 横方向テーブル */
        .table-horizontal {
            width: 100%;
            margin-top: 50px;
            margin-bottom: 50px;
        }

        .table-horizontal table {
            width: 100%;
            border-collapse: collapse;

        }

        .table-horizontal thead th {
            background: #FFC20B;
            font-size: clamp(14px, 2vw, 16px);
            font-weight: bold;
            text-align: center;
            padding: 6px 12px;
            border-radius: 70px;
        }

        .table-horizontal thead th:not(:last-child) {
            margin-right: 10px;
        }

        .table-horizontal thead tr {
            display: flex;
            gap: 10px;
        }

        .table-horizontal tbody td {
            font-size: clamp(14px, 2vw, 16px);
            color: #333;
            text-align: center;
            padding: 16px 12px;
            border-bottom: 1px dashed #000;
            line-height: 1.8;
        }
        .table-horizontal tbody td span,
        .table-compare tbody td span {
            background-color: #0066CC;
            color: white;
            padding: 5px 10px;
            border-radius: 50px;;
        }

        .table-horizontal tbody tr {
            display: flex;
            gap: 10px;
        }

        .table-horizontal thead th,
        .table-horizontal tbody td {
            flex: 1;
        }

        /* 比較テーブル（複数行） */
        .table-compare {
            width: 100%;
            margin-top: 50px;
            margin-bottom: 50px;
        }

        .table-compare table {
            width: 100%;
  
        }

        .table-compare thead th {
            background: #FFC20B;
            font-size: clamp(14px, 2vw, 16px);
            font-weight: bold;
            text-align: center;
            padding: 6px 22px;
            border-radius: 70px;
        }
        .table-compare thead th.none 
        {
            background: none;
            border: none;
        }

        .table-horizontal .w100 {
               width:160px;
    max-width: 160px;
        }

        .table-compare tbody th {
            font-size: clamp(14px, 2vw, 16px);
            font-weight: bold;
            text-align: center;
            width: 190px;
   
        }
        .table-compare tbody th .first {
                        background: #2876C3;
            color: #fff;
               padding: 6px 12px;
            border-radius: 70px;
        }

        .table-compare tbody td {
            font-size: clamp(14px, 2vw, 16px);
            color: #333;
            text-align: center;
            padding: 6px 12px;
            border-bottom: 1px dashed #000;
            line-height: 2.2;
        }

        /* ボタン */
        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 50px;
            margin-bottom: 50px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 20px 0px;
            border-radius: 5px;
            font-size: clamp(14px, 2vw, 16px);
            font-weight: bold;
            text-decoration: none;
            transition: opacity 0.3s, transform 0.3s;
            cursor: pointer;
            border: none;
                width: 100%;
    max-width: 400px;
    min-width: 260px;
        }

        .btn:hover {
            opacity: 0.8;
            transform: translateY(-2px);
        }

        /* 別ページリンクボタン（黄色） */
        .btn-link {
            background: #FFC800;
            color: #000;
            position: relative;
        }

 

        /* 動画再生ボタン（青） */
        .btn-video {
            background: #2876C3;
            color: #fff;
        }

        .btn-video::before {
            content: "";
            display: inline-block;
            width: 20px;
            height: 20px;
            margin-right: 12px;
            background: url('../../assets/img/ic-movie.svg') no-repeat center / contain;
        }
        .btn-video::after {
            display: none;
        }

        /* PDFダウンロードボタン（青） */
        .btn-pdf {
            background: #2876C3;
            color: #fff;
        }

        .btn-pdf::after {
            content: "";
            display: inline-block;
            width: 20px;
            height: 20px;
            margin-left: 12px;
            background: url('../../assets/img/ic-pdf.svg') no-repeat center / contain;
        }

        /* カードブロック */
        .card-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-top: 32px;
        }

        .card-item {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .layout-2column .main-content .card-item .card-image {
            width: 100%;
            overflow: hidden;
            border-radius: 8px 8px 0 0;
            flex-shrink: 0;
        }

        .card-item .card-image img {
            width: 100%;
            height: auto;
            display: block;
            margin-bottom: 0px;
            border-radius: 8px 8px 0 0;
        }

        .card-item .card-content {
            padding: 24px 40px;
            background: #F2F4F7;
            border-radius: 0 0 8px 8px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-item .card-content h4 {
         
            font-weight: bold;
            color: #333;
            margin-bottom: 12px;
        }

        .card-item .card-content h4 a {
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: color 0.3s;
        }

        .card-item .card-content h4 a::after {
            content: "";
            display: inline-block;
            width: 20px;
            height: 20px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230066CC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M12 5l7 7-7 7"/></svg>') no-repeat center / contain;
            flex-shrink: 0;
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .card-item .card-content h4 a:hover {
            color: #0066CC;
        }

        .card-item .card-content h4 a:hover::after {
            transform: translateX(4px);
        }

        .card-item .card-content p {
            font-size: clamp(16px, 2vw, 16px);
            line-height: 1.7;
            color: #666;
            margin: 0;
            flex: 1;
        }

        /* プロフィールブロック（3カラム） */
        .profile-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 50px;
        }

        .profile-item {
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .profile-item .profile-image {
            width: 100%;
            max-width: 280px;
            margin: 0 auto 20px;
            overflow: hidden;
            border-radius: 50%;
            aspect-ratio: 1 / 1;
        }

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

        .profile-item h4 {
            font-size: clamp(22px, 2.5vw, 22px);
            font-weight: bold;
            color: #333;
            margin-bottom: 16px;
        }

        .profile-item p {
            font-size: clamp(14px, 2vw, 20px);
            line-height: 1.7;
            color: #666;
            text-align: center;
            flex: 1;
        }
        
        .profile-item .btn-group {
            margin-top: auto;
        }

        /* タブレット対応 */
        @media screen and (max-width: 1024px) {
            .pool-container {
                padding: 40px 16px;
            }

            .layout-2column {
                grid-template-columns: 1fr 250px;
                gap: 24px;
            }

            .layout-single article,
            .layout-2column .main-content {
                padding: 24px;
            }

            .layout-section {
                margin-bottom: 60px;
            }

            .media-block .media-image {
                flex: 0 0 400px;
                width: 400px;
            }

            .media-block {
                gap: 24px;
            }

            .media-block-reverse .media-content {
                flex: 0 0 450px;
                width: 450px;
            }

            .media-block-reverse {
                gap: 24px;
            }

            .color-block {
                padding: 80px 40px;
            }


            .color-block .block-ttl {
                width: 280px;
                height: 70px;
                top: -35px;
   
            }

            .card-list {
                gap: 24px;
            }

            .card-item .card-content {
                padding: 20px;
            }

            .profile-list {
                gap: 24px;
            }

            .profile-item .profile-image {
                max-width: 220px;
            }

            .content-2col-wrapper {
                gap: 32px;
            }
        }

        /* スマートフォン対応 */
        @media screen and (max-width: 1023px) {  header {
    padding-bottom: 0;
  }
  .index_top h2 {
    padding: 0 0px;
  }

    .page-header-content {

            top: -50px;
        }

        .page-header-content h1 {
          font-size: clamp(18px, 5vw, 32px);
        }

        .page-title-en {
          font-size: clamp(16px, 4vw, 22px);
        }
            /* トップページMVブロック スマホ対応 */
            .index_top .mv_block {
                height: 60vh;
                aspect-ratio: auto;
            }

            .index_top .mv_block .scroll-indicator {
                bottom: 20px;
            }

            .index_top .mv_block .scroll-text {
                font-size: 10px;
            }

            .index_top .mv_block .scroll-line {
                height: 40px;
            }

            .index_top .mv_block .mv_image {
                height: 100%;
                width: auto;
                aspect-ratio: auto;
                left: 50%;
                transform: translateX(-50%);
            }

            .index_top .mv_block .mv_image video {
                height: 100%;
                width: auto;
                min-width: 100%;
                object-fit: cover;
                object-position: center;
            }

            .pool-container {
                padding: 24px 16px;
            }

            .pool-header {
                margin-bottom: 48px;
            }

            .layout-section {
                margin-bottom: 48px;
            }

            .layout-2column {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .layout-single article,
            .layout-2column .main-content,
            .layout-2column .sidebar {
                padding: 20px 0;
            }


            /* スマホではサイドバーの追従スクロールを無効化 */
            .layout-2column .sidebar {
                position: static;
            }

            /* スマホではサイドバーをメインコンテンツの下に配置 */
            .layout-2column .main-content {
                order: 1;
            }

            .layout-2column .sidebar {
                order: 2;
            }

            /* スマホではコンテンツ幅を100%に */
            .layout-2column .main-content {
                width: 100%;
                margin: 0;
                padding: 20px 0;
            }

            .under-container {
                width: 100%;
                padding: 0px 20px;
            }

            .breadcrumb {
                width: 100%;
            }

            .inner {
                width: 100%;
            }

            .sidebar-widget {
                margin-bottom: 24px;
            }

            .code-block {
                padding: 16px;
                margin-top: 24px;
            }

            .code-block pre {
                padding: 16px;
                font-size: 12px;
            }

            .media-block {
                flex-direction: column;
                gap: 20px;
                margin-top: 24px;
            }

            .media-block .media-image {
                flex: none;
                width: 100%;
                order: 2;
            }

            .media-block .media-content {
                width: 100%;
                order: 1;
            }

            .media-block-reverse {
                flex-direction: column;
                gap: 20px;
                margin-top: 24px;
            }

            .media-block-reverse .media-content {
                flex: none;
                width: 100%;
                order: 1;
            }

            .media-block-reverse .media-image {
                width: 100%;
                order: 2;
            }

            .color-block {
                padding: 60px 24px 50px;
                margin-top: 60px;
       
            }
.color-block.faq {
    padding: 20px 24px 45px 24px;
}

            .color-block .block-ttl {
                width: 240px;
                height: 40px;
                top: -15px;
                font-size: 16px;
            }

            .card-list {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .card-item .card-content {
                padding: 20px;
            }

            .profile-list {
                grid-template-columns: repeat(2, 1fr);
                gap: 60px;
            }

            .profile-item .profile-image {
                max-width: 180px;
                margin-bottom: 16px;
            }

            .content-2col-wrapper {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .content-2col-left h3 .num {
                width: 40px;
                height: 40px;
                font-size: 18px;
                margin-right: 8px;
            }

            .table-compare tbody th .first {
                border-radius: 10px;
            }

            .btn-group {
                flex-direction: column;
                width: 100%;
                margin-bottom: 0px;
            }

            .btn {
                width: 100%;
                padding: 22px 60px;
                min-height: 44px;
            }
            .btn::after {
    content: "";
    display: block;
    width: clamp(10px, 0.8636363636vw, 20px);
    aspect-ratio: 19 / 15;
    background: url(../img/icon_arrow_bk.svg) no-repeat center / 100% auto;
    position: absolute;
    top: 50%;
    right: 0;
    translate: -100% -50%;
}
.recruit {
  margin-top: 150px;
}

.home .recruit {
  margin-top: 0px;
}
            h2 {
                padding-top: 80px;
                text-align: center;
                line-height: 1.4;
                margin:50px 10px ;
            }

            .recruit h2 {
              padding-top: 0px;
            }

            h2 span.num {
                position: absolute;
                left: 50%;
                top: 0;
                transform: translateX(-50%);
            }

            .page-header-images {
                width: 100%;
                max-width: 100%;
            }

            .page-header-images .img-left {
        max-width: 51%;
        height: auto;
        top: 59%;
        left: 10px;
            }

            .page-header-images .img-right {
        max-width: 39%;
        height: auto;
        top: 59%;
        right: 11px;
            }
        }

                /* ページ内スクロールナビゲーション */
        .page-scroll-nav {
            margin-bottom: 0px;
            padding: 20px 0;
        }

        .page-scroll-nav ul {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            list-style: none;
            gap: 0;
        }

        .page-scroll-nav ul li {
            display: flex;
            align-items: center;
            position: relative;
        }

        .page-scroll-nav ul li:not(:last-child)::after {
            content: "";
            display: inline-block;
            width: 1px;
            height: 20px;
            background: #ddd;
            margin: 0 20px;
        }

        .page-scroll-nav ul li a {
            display: flex;
            align-items: center;
            font-size: clamp(14px, 1.5vw, 18px);
            color: #333;
            text-decoration: none;
            padding: 8px 10px;
            transition: color 0.3s;
            position: relative;
        }

        .page-scroll-nav ul li a::after {
            content: "";
            display: inline-block;
            width: 20px;
            height: 20px;
            margin-left: 20px;
            background: #0066CC url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M12 5l7 7-7 7"/></svg>') no-repeat center / 12px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .page-scroll-nav ul li a:hover {
            color: #0066CC;
        }

        @media screen and (max-width: 1023px) {
            .page-scroll-nav ul {
                flex-direction: column;
                gap: 12px;
            }

            .page-scroll-nav ul li:not(:last-child)::after {
                display: none;
            }

            .page-scroll-nav ul li {
                width: 100%;
            }

            .page-scroll-nav ul li a {
                width: 100%;
                justify-content: space-between;
                padding: 12px 16px;
                background: #f9f9f9;
                border-radius: 4px;
            }
        }

        .point {
    background-color: white;
    padding: 5px 10px;
    border-radius: 50px;
    margin-right: 10px;
    flex-shrink: 0;
}

.point-list ul li {
    margin-bottom: 20px;
    font-weight: bold;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.point-list ul li:last-child {
    margin-bottom: 0;
}

/* スマホ・タブレット表示時の調整 */
@media screen and (max-width: 1023px) {
    .point-list ul li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        line-height: 1.6;
        font-size: 14px;
        font-weight: normal;
    }

    .point {
        padding: 4px 8px;
        font-size: 11px;
        white-space: nowrap;
        margin-right: 0;
    }
}

/* 施設ページ用スタイル */
.content-section {
    margin-bottom: 200px;
}

.content-section:last-child {
    margin-bottom: 0;
}

#section1.facility-map img {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding: 100px 0 50px;
}

.facility-item {
    margin-top: 60px;
}

.facility-name {
    background-color: #D3E9FF;
    text-align: center;
    border-radius: 50px;
    padding: 20px;
    min-width: 300px;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 40px;
    width: fit-content;
    line-height: 1.4;
}

.facility-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.facility-image {
    text-align: center;
    margin-bottom: 50px;
}

.facility-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.facility-image h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333;
}

.facility-image p {
    text-align: left;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* アクセスマップ */
.access-map {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
    align-items: anchor-center;
}

.access-info h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
    color: #2876C3;
}

.access-info .address {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.access-info .tel {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 24px;
}

.access-info .tel a {
    color: #0066CC;
    text-decoration: none;
}

.access-map-iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.access-map-iframe iframe {
    width: 100%;
    height: 100%;
}

/* =====================================================
   お知らせページ
===================================================== */
.layout-2column {
    display: flex;
    gap: 40px;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    flex: 1;
}

.sidebar {
width: 33vw;
    max-width: 400px;
}

/* お知らせリスト（page-news.php） */
.main-content .newslist_block ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.main-content .newslist_block ul li.news_card {
  position: relative;
  background-color: #fff;
  border-radius: 0;
  transition: opacity 0.3s;
    border-radius: 10px;
}

/* 奇数番目：白背景 */
.main-content .newslist_block ul li.news_card:nth-child(odd) {
background-color: #C5E6FF;
}

/* 偶数番目：水色背景 */
.main-content .newslist_block ul li.news_card:nth-child(even) {
  background-color: #fff;  
}

.main-content .newslist_block ul li.news_card:hover {
  opacity: 0.8;
}

.main-content .newslist_block ul li .new_label {
  position: absolute;
  top: -12px;
  left: clamp(-26px,-1.4545454545vw, 32px);
  background-color: #FFC20B;
  color: #000;
  font-size: clamp(11px, 0.6363636364vw, 14px);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(255, 194, 11, 0.4);
  z-index: 1;
}

.main-content .newslist_block ul li .news_link {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.3636363636vw, 30px);
  padding: clamp(16px, 1.4545454545vw, 15px) clamp(20px, 1.8181818182vw, 40px);
  text-decoration: none;
  color: inherit;

}

.main-content .newslist_block ul li .date {
  font-size: clamp(11px, 0.6363636364vw, 14px);
  font-weight: 600;
  color: #666;
  white-space: nowrap;
}

.main-content .newslist_block ul li .category {
  font-size: clamp(11px, 0.6363636364vw, 14px);
  color: #fff;
  border-radius: 6px;
  background-color: #064F9E;
  padding: 6px 14px;
  white-space: nowrap;
}

.main-content .newslist_block ul li .title {
  flex: 1;
  font-size: clamp(13px, 0.7272727273vw, 16px);
  font-weight: 700;
  line-height: 1.5;
}

.main-content .newslist_block ul li .arrow_icon {
  width: clamp(32px, 2.1818181818vw, 48px);
  height: clamp(32px, 2.1818181818vw, 48px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  overflow: hidden;
}

.main-content .newslist_block ul li:hover .arrow_icon {
  transform: translateX(4px);
}

.main-content .newslist_block ul li .arrow_icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

.category-event {
    background-color: #FFC800;
    color: #333;
}

.category-campaign {
    background-color: #FF0055;
    color: #fff;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    color: #333;
}

/* ========================================
   お知らせ詳細ページ（single.php）
======================================== */
.news-detail {
  background: #fff;
  border-radius: 10px;
  padding: clamp(30px, 2.7272727273vw, 60px) 0;
}

/* ヘッダー部分 */
.news-detail_header {
  margin-bottom: clamp(30px, 2.2727272727vw, 50px);
  padding-bottom: clamp(20px, 1.8181818182vw, 40px);
  border-bottom: 2px solid #E5E5E5;
}

.news-detail_meta {
  display: flex;
  align-items: center;
  gap: clamp(12px, 0.9090909091vw, 20px);
  margin-bottom: clamp(16px, 1.2727272727vw, 28px);
}

.news-detail_date {
  font-size: clamp(13px, 0.7272727273vw, 16px);
  font-weight: 600;
  color: #666;
}

.news-detail_category {
  font-size: clamp(12px, 0.6363636364vw, 14px);
  color: #fff;
  background-color: #064F9E;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600;
}

.news-detail_title {
  font-size: clamp(20px, 1.4545454545vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* コンテンツ部分 */
.news-detail_content {
  font-size: clamp(15px, 0.8181818182vw, 18px);
  line-height: 1.9;
  color: #333;
  margin-bottom: clamp(40px, 2.7272727273vw, 60px);
}

.news-detail_content p {
  margin-bottom: 1.5em;
}

.news-detail_content p:last-child {
  margin-bottom: 0;
}

.news-detail_content h2 {
  font-size: clamp(18px, 1.1363636364vw, 25px);
  font-weight: 700;
  margin: clamp(35px, 2.2727272727vw, 50px) 0 clamp(20px, 1.2727272727vw, 28px);
  padding-left: 12px;
  border-left: 4px solid #064F9E;
  color: #064F9E;
}

.news-detail_content h3 {
  font-size: clamp(16px, 0.9090909091vw, 20px);
  font-weight: 700;
  margin: clamp(30px, 2vw, 40px) 0 clamp(16px, 1vw, 22px);
  color: #333;
}

.news-detail_content ul,
.news-detail_content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.news-detail_content li {
  margin-bottom: 0.5em;
}

.news-detail_content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: clamp(20px, 1.8181818182vw, 40px) 0;
}

.news-detail_content a {
  color: #064F9E;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.news-detail_content a:hover {
  opacity: 0.7;
}

/* タグ部分 */
.news-detail_tags {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 0.5454545455vw, 12px);
  padding: clamp(20px, 1.8181818182vw, 40px) 0;
  border-top: 1px solid #E5E5E5;
  margin-bottom: clamp(30px, 2.2727272727vw, 50px);
}

.news-detail_tag {
  font-size: clamp(12px, 0.6363636364vw, 14px);
  color: #064F9E;
  background-color: #E6F2FF;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
}

.news-detail_tag:hover {
  background-color: #064F9E;
  color: #fff;
}

/* ナビゲーション（前後の記事） */
.news-detail_navigation {
  display: flex;
  gap: clamp(16px, 1.2727272727vw, 28px);
  margin-bottom: clamp(30px, 2.2727272727vw, 50px);
}

.news-detail_nav-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.5454545455vw, 12px);
  padding: clamp(16px, 1.4545454545vw, 32px) clamp(20px, 1.8181818182vw, 40px);
  background-color: #F8F9FA;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.news-detail_nav-link:hover {
  background-color: #E6F2FF;
  border-color: #064F9E;
}

.news-detail_nav-label {
  font-size: clamp(11px, 0.6363636364vw, 14px);
  color: #999;
  font-weight: 600;
}

.news-detail_nav-title {
  font-size: clamp(13px, 0.7272727273vw, 16px);
  color: #333;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-detail_nav-prev .news-detail_nav-label::before {
  content: "← ";
}

.news-detail_nav-next {
  text-align: right;
}

.news-detail_nav-next .news-detail_nav-label::after {
  content: " →";
}

/* お知らせ一覧へ戻るボタン */
.news-detail_back {
  text-align: center;
}

.news-detail_back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(14px, 1.0909090909vw, 24px) clamp(30px, 2.2727272727vw, 50px);
  background-color: #064F9E;
  color: #fff;
  font-size: clamp(14px, 0.7272727273vw, 16px);
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  border: 2px solid #064F9E;
}

.news-detail_back-link:hover {
  background-color: #fff;
  color: #064F9E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 79, 158, 0.2);
}

.news-detail_back-link::before {
  content: "←";
  font-size: 1.2em;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .news-detail {
    padding: 30px 20px;
  }

  .news-detail_header {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .news-detail_meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
  }

  .news-detail_content {
    margin-bottom: 40px;
  }

  .news-detail_content h2 {
    margin: 30px 0 16px;
  }

  .news-detail_content h3 {
    margin: 25px 0 12px;
  }

  .news-detail_content img {
    margin: 20px 0;
  }

  .news-detail_tags {
    padding: 20px 0;
    margin-bottom: 30px;
  }

  .news-detail_navigation {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }

  .news-detail_nav-link {
    padding: 16px 20px;
  }

  .news-detail_nav-next {
    text-align: left;
  }

  .news-detail_back-link {
    padding: 14px 30px;
    width: 100%;
    max-width: 300px;
  }
}

/* ========================================
   Coming Soon（準備中ページ）
======================================== */
.coming-soon {
  text-align: center;
  padding: clamp(60px, 5.4545454545vw, 120px) clamp(20px, 1.8181818182vw, 40px);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coming-soon_text {
  font-size: clamp(32px, 2.7272727273vw, 60px);
  font-weight: 700;
  color: #064F9E;
  margin-bottom: clamp(20px, 1.8181818182vw, 40px);
  letter-spacing: 0.05em;
}

.coming-soon_description {
  font-size: clamp(14px, 0.9090909091vw, 20px);
  color: #666;
  line-height: 1.8;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .coming-soon {
    padding: 60px 20px;
    min-height: 300px;
  }
}

/* ========================================
   会社概要ページ（page-company.php）
======================================== */

/* 経営理念セクション */
.mission-badge {
  display: inline-block;
  background-color: #064F9E;
  color: #fff;
  font-size: clamp(12px, 0.7272727273vw, 16px);
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 20px;
  margin-bottom: clamp(16px, 1.2727272727vw, 28px);
  letter-spacing: 0.1em;
}

.mission-copy {
  font-size: clamp(18px, 1.2727272727vw, 28px);
  font-weight: 700;
  line-height: 1.8;
  color: #333;
  margin-bottom: clamp(30px, 2.2727272727vw, 50px);
}

.mission-copy .emphasis {
  color: #064F9E;
  font-size: clamp(20px, 1.4545454545vw, 32px);
}

/* 会社情報ボックス */
.company-box {
  margin-bottom: clamp(30px, 2.2727272727vw, 50px);
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  overflow: hidden;
}

.company-box-title {
  background-color: #064F9E;
  color: #fff;
  font-size: clamp(16px, 0.9090909091vw, 20px);
  font-weight: 700;
  padding: clamp(12px, 0.9090909091vw, 20px) clamp(20px, 1.8181818182vw, 40px);
  margin: 0;
  letter-spacing: 0.1em;
}

.company-box-content {
  padding: clamp(20px, 1.8181818182vw, 40px) clamp(20px, 1.8181818182vw, 40px);
  background-color: #fff;
}

.company-box-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-box-content ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1em;
  font-size: clamp(14px, 0.8181818182vw, 18px);
  line-height: 1.8;
  color: #333;
}

.company-box-content ul li:last-child {
  margin-bottom: 0;
}

.company-box-content ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #064F9E;
  font-size: 0.8em;
}

/* テーブルスタイル */
.table-horizontal {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: clamp(30px, 2.2727272727vw, 50px);
  background-color: #fff;
  overflow: hidden;

}

.table-horizontal tbody tr {
  border-bottom: 1px solid #E5E5E5;
}

.table-horizontal tbody tr:last-child {
  border-bottom: none;
}

.table-horizontal th {
  background-color: #F8F9FA;
  color: #333;
  font-size: clamp(13px, 0.7272727273vw, 16px);
  font-weight: 700;
  text-align: left;
  padding: clamp(16px, 1.2727272727vw, 28px) clamp(20px, 1.8181818182vw, 40px);
  width: 25%;
  vertical-align: top;
  white-space: nowrap;
}

.table-horizontal td {
  font-size: clamp(14px, 0.8181818182vw, 18px);
  line-height: 1.8;
  color: #333;
  padding: clamp(16px, 1.2727272727vw, 28px) clamp(20px, 1.8181818182vw, 40px);
}

.table-horizontal td a {
  color: #064F9E;
  text-decoration: none;
  transition: opacity 0.3s;
}

.table-horizontal td a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* シンプルリスト */
.simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.simple-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1em;
  font-size: clamp(14px, 0.8181818182vw, 18px);
  line-height: 1.8;
  color: #333;
}

.simple-list li:last-child {
  margin-bottom: 0;
}

.simple-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #064F9E;
  font-weight: 700;
}

/* テキストユーティリティ */
.text-center {
  text-align: center;
}

.text-red {
  color: #FF0055;
  font-weight: 700;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .mission-copy {
    margin-bottom: 30px;
  }

  .company-box {
    margin-bottom: 30px;
  }

  .company-box-content {
    padding: 20px;
  }

  .company-box-content ul li {
    margin-bottom: 0.8em;
  }

  .table-horizontal {
    display: block;
    margin-bottom: 30px;
  }

  .table-horizontal tbody,
  .table-horizontal tr,
  .table-horizontal th,
  .table-horizontal td {
    display: block;
    width: 100%;
  }

  .table-horizontal tbody tr {
    margin-bottom: 20px;

    overflow: hidden;
  }

  .table-horizontal tbody tr:last-child {
    margin-bottom: 0;
  }

  .table-horizontal th {
    width: 100%;
    padding: 12px 16px;
    border-bottom: 1px solid #E5E5E5;
    white-space: normal;
  }

  .table-horizontal td {
    padding: 16px;
  }

  .simple-list li {
    margin-bottom: 0.8em;
  }
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 40px;
}

/* WordPress標準ページネーション */
.pagination .navigation.pagination {
    width: 100%;
}

.pagination .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination .page-numbers:hover:not(.current) {
    background-color: #0066CC;
    color: #fff;
    border-color: #0066CC;
}

.pagination .page-numbers.current {
    background-color: #0484E6;
    color: #fff;
    border-color: #0066CC;
    cursor: default;
}

.pagination .page-numbers.dots {
    border: none;
    cursor: default;
}

.pagination .page-numbers.dots:hover {
    background-color: transparent;
    color: #333;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination a:hover:not(.disabled) {
    background-color: #0066CC;
    color: #fff;
    border-color: #0066CC;
}

.pagination-number.active {
    background-color: #0066CC;
    color: #fff;
    border-color: #0066CC;
}

.pagination-prev.disabled,
.pagination-next.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* サイドバー */
.sidebar-widget {

}

.sidebar-widget h3 {

}

.sidebar-widget ul {

}

.sidebar-widget ul li {

}

.sidebar-widget ul li:last-child {

}

.sidebar-widget ul li a {

}

.sidebar-widget ul li a::before {

}

.sidebar-widget ul li a:hover {

}

/* タグクラウド */
.tagcloud .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tagcloud .tag-list a {
    display: inline-block;
    padding: 6px 12px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.tagcloud .tag-list a:hover {
    background-color: #0066CC;
    color: #fff;
    border-color: #0066CC;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1023px) {
    .layout-2column {
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
        padding: 0;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .news-title {
        font-size: 16px;
    }
    
    .pagination {
        gap: 4px;
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .pagination a {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .pagination-prev,
    .pagination-next {
        font-size: 12px;
    }
    
    .facility-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
#section1.facility-map img {
  padding: 50px 0 0px;
}
.facility-image {
  margin-bottom: 0px;
}
    .facility-name {
        font-size: 18px;
        padding: 16px;
        min-width: 200px;
    }

    .facility-image h4 {
        font-size: 18px;
    }

    .facility-image p {
        font-size: 14px;
    }

    .access-map {
        grid-template-columns: 1fr;
        gap: 40px;
    }
.content-section {
  margin-bottom: 100px;
}
    .access-map-iframe {
        height: 300px;
    }
}

/* 保護者の声 */
.voice-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
}

.voice-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.voice-item {
  background-color: #FFF6DB;
  border-radius: 10px;
  padding: 30px 50px 20px 20px;
  display: flex;
  gap: 20px;
      align-items: center;
}

.voice-item {
  width: 100%;
}

.voice-icon {
  width: 20%;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.voice-icon img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

.voice-content {
  flex: 1;
}

.voice-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.voice-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.voice-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.voice-tag {
  background-color: #0066cc;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 10px;
  font-size: 14px;
}

.voice-text {
  line-height: 1.8;
  color: #333;
}

.coming-soon-box {
  width: 100%;
  background-color: #C5E6FF;
  border-radius: 10px;
  padding: 60px 30px;
  text-align: center;
}

.coming-soon {
  font-size: 24px;
  color: #0066cc;
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .voice-icon {
    width: 25%;
  }
}

/* ページトップボタン */
.page-top-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 120px;
  height: 120px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.page-top-btn.show {
  opacity: 1;
  visibility: visible;
  animation: bounce-in 0.5s ease-out;
}

@keyframes bounce-in {
  0% {
    transform: scale(0) translateY(20px);
    opacity: 0;
  }
  50% {
    transform: scale(1.1) translateY(-5px);
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.page-top-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-top-btn .page-top-sp {
  display: none;
}

.page-top-btn:hover {
  transform: translateY(-8px);
}

.page-top-btn:hover img {
  transform: scale(1.1);
}

.page-top-btn:active {
  transform: translateY(-4px) scale(0.95);
}

@media (max-width: 768px) {
  .page-top-btn {
    right: 15px;
    bottom: 95px;
    width: 60px;
    height: 60px;
  }
  
  .page-top-btn .page-top-pc {
    display: none;
  }
  
  .page-top-btn .page-top-sp {
    display: block;
  }
}

.layout-2column .main-content p.table-note {
  font-size: 14px;
    padding: 25px;
    background: #ffeeee;
    border-radius: 10px;
    margin-top: 17px;
}

.parts.border {
      border: 1px solid #ccc;
    border-radius: 10px;
    padding: 50px;
}