/* ==========================================================================
	基本リセット & グローバル設定
========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
  font-size: 16px; /* 1rem = 16px */
}

body {
	font-family: "Noto Sans", sans-serif;
	font-size: 1rem;
	line-height: 2;
  color: #2A3742;
  background: #F7EED4;
}

img {
  max-width: 100%;
}

li {
  list-style-type: none;
}

a{
  color: #005CAC;
  text-decoration: none;
  word-break: break-all;
}

a:hover{
	opacity:0.8;
}


/* ==========================================================================
	共通レイアウトクラス
========================================================================== */
.container {
	width: 96%;
  max-width: 1440px;
  margin: 0 auto;
}
.section .wide-container,
.wide-container{
	width: 90%;
	max-width: 1120px;
	margin: 0 auto;
}

/* ユーティリティ (calc + vw で画面幅に応じたレスポンシブ余白) */
.mt-10 { margin-top: 1rem !important; }
.mt-20 { margin-top: 1.25rem !important; }
.mt-30 { margin-top: 1.875rem !important; }
.mt-40 { margin-top: calc(1.5rem + 1.5vw) !important; }
.mt-60 { margin-top: calc(2.5rem + 2vw) !important; }
.mt-70 { margin-top: calc(2rem + 3vw) !important; }
.mt-80 { margin-top: calc(3.5rem + 2.5vw) !important; }
.mt-160 { margin-top: calc(5rem + 6vw) !important; }

.mb-20 { margin-bottom: 1.25rem !important; }
.mb-40 { margin-bottom: calc(1.5rem + 1.5vw) !important; }
.mb-60 { margin-bottom: calc(2.5rem + 2vw) !important; }
.mb-80 { margin-bottom: calc(3.5rem + 2.5vw) !important; }

.mr-20 { margin-right: 1.25rem !important; }
.mr-40 { margin-right: calc(1.5rem + 1.5vw) !important; }
.mr-60 { margin-right: 3.75rem !important; }
.ml-20 { margin-left: 1.25rem !important; }

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.font-12 { font-size: clamp(0.7rem, 0.8vw, 0.75rem) !important;}
.font-14 { font-size: clamp(0.8rem, 0.9vw, 0.875rem) !important;}
.font-18 { font-size: clamp(1rem, 1.2vw, 1.125rem) !important;}
.font-24 { font-size: clamp(1.25rem, 2vw, 1.5rem) !important;}
.font-32 { font-size: clamp(1.625rem, 3.7vw, 2rem) !important;}
.font-bold{ font-weight: bold;}
.font-500 { font-weight: 500 !important; }

.bg_WHT { background-color: #fff; }
.bg_BLUE { background-color: #CDE7FF; }

.color-blue{ color: #005CAC;}
.color-pink{ color: #FF75B1;}

.list-disc li{
  list-style-type: disc;
}
.list-disc.pink li::marker{
  color: #FF75B1;
}

.list-note {
  list-style: none;
  padding: 0;
}
.list-note li {
  position: relative;
  padding-left: 1rem;
  text-indent: -1rem;
  margin-bottom: .3rem;
}
.list-note li:last-child {
  margin-bottom: 0;
}

.gray-box{
  display: inline-block;
  border-radius: 1.25rem;
  background: #F4F4F4;
  padding: 2rem 2.5rem;
}
.gray-box-sub{
  border-radius: 8px;
  background: #F4F4F4;
  padding: 1rem;
}

.inline-block{ display: inline-block;}
.block{ display: block;}

/* グリッドレイアウト */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
}
.flex {
  display: flex;
	flex-shrink: 1;
	justify-content: space-between;
}
.align-center{
  align-items: center;
}

/* 改行設定 */
.nobr {
  display: inline-block;
  white-space: nowrap;
}
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}
@media (max-width: 567.8px) {
  .isSPn { display: none; }
}

/* ボタン */
.btn-l {
	color: #005CAC;
	text-align: center;
	font-family: Outfit, sans-serif;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 3.2px;
	text-transform: uppercase;
	display: inline-block;
  padding: 24px 60px;
  text-decoration: none;
  cursor: pointer;
	border-radius: 8px;
	border: 1px solid #005CAC;
	background: #FFF;
	position: relative;
}
.btn-l:after{
	content: "";
  position: absolute;
  right: 20px;       /* 右端からの位置 */
  width: 8px;        /* 矢印の幅 */
  height: 8px;       /* 矢印の高さ */
  border-top: 2px solid #005CACff;   /* 上の線 */
  border-right: 2px solid #005CAC; /* 右の線 */
  transform: translateY(-50%) rotate(45deg); /* 45度回転させて「く」にする */
  top: 50%;
}
.btn-l._BLUE{
	color: #fff;
	background: #005CAC;
}
.btn-l._BLUE:after{
  border-top: 2px solid #fff;   /* 上の線 */
  border-right: 2px solid #fff; /* 右の線 */
}
.btn-s {
  background: #005CAC;
  color: #fff !important;
  padding: clamp(0.875rem, 1.1vw, 1rem);
  border-radius: 4px;
	text-decoration: none;
	line-height: 1;
}

.btn-l.blank{
  min-width: 320px;
  border: none;
  background-color: #CDE7FF;
  padding-left: 1rem;
  padding-right: 1rem;
}
.btn-l.blank.size-w {
    padding-right: 4rem;
    line-height: 1.6;
    text-align: left;
    width: 100%;
}
.btn-l.blank:after{
  width: 2rem;
  height: 2rem;
  background-image: url(./public/img/common/ico_blank.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  border: none;
  transform: none;
  top: calc(50% - 1rem);
}

.flex-btn{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .flex-btn{
    display: block;
  }
  .flex-btn p{
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* ==========================================================================
	ヘッダー & ナビゲーション
========================================================================== */
.header {
  display: flex;
  align-items: center;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.1875rem 0; /* 19px */
}
.logo{
  width: clamp(6.25rem, 12vw, 10rem); /* 100px - 160px 可変 */
  height: clamp(6.25rem, 12vw, 10rem);
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	border-radius: 0 0 3.5rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo a{
  width: 47.5%;
  height: auto;
}
.logo img{
  width: 100%;
  height: auto;
}
.nav {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}
.nav ul {
  display: flex;
	flex-wrap: nowrap;
	align-items: center;
  list-style: none;
	padding-left: calc(2rem + 5vw);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.nav li {
  flex-shrink: 1;
}
.nav li a {
  text-decoration: none;
  font-size: 1rem;
  color: #005CAC;
	font-weight: 500;
	letter-spacing: 0.8px;
	display: inline-block;
	white-space: nowrap;
}

/* ==========================================================================
	ヒーローエリア (MV) & ニュース
========================================================================== */
/* ヒーローエリア */
/*.hero {
  position: relative;
	background-image: url(./public/img/top/top_mv_pc.jpg);
	background-position: left top;
	background-size: 100%;
	background-repeat: no-repeat;
	background-color: #fff;
	background-origin: content-box;
  padding-left: 5vw;
  overflow: hidden;
}*/

/* 背景レイヤーとslickの中身を全部100%高さにする */
.hero .hero-bg-slider,
.hero .hero-bg-slider .slick-list,
.hero .hero-bg-slider .slick-track,
.hero .hero-bg-slider .slick-slide,
.hero .hero-bg-slider .slick-slide > div,
.hero .hero-bg-slide{
  height: 100%;
      background-size: cover;
}

/* hero自体に最低限の高さを与える（必要に応じて調整） */
.hero{
  min-height: 60vh; /* 例：デザインに合わせて */
}

.hero{
  position: relative;
  overflow: hidden;
  background-color: #fff;
  /* 既存の background-image は消す（slickの背景が担当するため） */
  background-image: none;
  padding-left: 5vw;
      
}

/* JSで追加される slick レイヤー */
.hero .hero-bg-slider{
  position: absolute;
  inset: 0;
  z-index: 0; /* 背面 */
   left:auto;
  right: 0;
  top: 0;
  bottom: 0;
      width: calc(100vw - 70px);
}

/* slick内部の各スライド */
.hero .hero-bg-slide{
  width: 100%;
  height: 100%;
  min-height: 100%; /* 高さはheroに追従 */
background-position: right top;
  background-repeat: no-repeat;
  background-size: cover; /* 100%が良ければ下で差し替え可 */
}

.hero .hero-bg-slide{ background-size: 100%; }

/* 既存コンテンツを前面へ */
.hero .hero-container{
  position: relative;
  z-index: 2;
}

.hero-container{
	max-width: 100%;
  min-height: 738px;
}
.hero h2 {
	color: #FFF;
  font-size: clamp(1.75rem, 4.2vw, 2.875rem); /* 28px - 46px */
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-top: calc(5rem + 3vw);
  margin-left: 8%;
}

.hero .newsBox{
	display: flex;
	justify-content: flex-end;
  margin-top: calc(3rem + 2vw);
  position: absolute;
  right: 0;
  bottom: 0;
}
.hero .news{
  max-width: 32rem;
  padding: 2.5rem 2.5rem 2rem;
  border-radius: 1.3125rem 0 1.3125rem 1.3125rem;
	background: rgba(255, 255, 255, 0.94);
	display: inline-block;
}
.hero .news .title{
	color: #005CAC;
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 5.76px;
	text-transform: uppercase;
  margin-bottom: 2rem;
	background: url(./public/img/top/news_title_wave.png) right center no-repeat;
	background-size: 100%;
}
.hero .news dt{
	color: #bbb;
  font-size: 0.75rem; 
	line-height: 1.5;
  margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
}
.hero .news dd{
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: calc(1rem + 0.5vw); 
}
.hero .news span.ico{
	color: #005CAC;
  font-size: 0.625rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 4px;
	border: 0.5px solid #005CAC;
	margin-left: 1rem;
}
.hero .news span.pickup{
	color: #FF75B1;
  font-family: 'Outfit', sans-serif;
  font-size: 0.625rem;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	margin-left: auto;
}


/* ==========================================================================
  ページスクロール
========================================================================== */
.sticky-rail {
	position: absolute;
	bottom: 8rem;
	left: 8vw;
	width: 151px;
	height: 151px;
	pointer-events: none;
	z-index: 100;
}

.pagetop-btn {
	display: flex;
  align-items: center;
  justify-content: center;
  width: 151px;
  height: 151px;
	background-image: url(./public/img/top/page_scroll.png);
	background-position: center center;
	background-size: cover;
  pointer-events: auto;
  text-decoration: none;
	position: absolute;
}
.pagetop-btn::before {
	content: "";
	display: block;
	width: 106px;
	height: 106px;
  background-color: rgba(255, 255, 255, 0.30);
  border-radius: 50%;
	position: absolute;
}

/* ==========================================================================
  共通装飾 (波型マスク・飾り)
========================================================================== */
.wave-container {
  position: relative;
  width: 100%;
  line-height: 0; /* 下に隙間ができるのを防ぐ */
}

.wave-mask {
	position: absolute;
  bottom: 0;
  left: 0;
	width: 100%;
  height: 80px;
  background-color: #F7EED4;

  /* マスクの設定 */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 80'%3E%3Cpath d='M0,16.85c79.38-22.29,158.75-22.46,238.12-.52l3.75,1.05c78.75,21.76,157.5,21.76,236.25,0l1.88-0.52V80H0V16.85z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 80'%3E%3Cpath d='M0,16.85c79.38-22.29,158.75-22.46,238.12-.52l3.75,1.05c78.75,21.76,157.5,21.76,236.25,0l1.88-0.52V80H0V16.85z'/%3E%3C/svg%3E");

  /* リピートとサイズの設定 */
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  
  /* 1つの波の大きさを調整（例：横幅480pxで1セット） */
  -webkit-mask-size: 480px 80px; 
  mask-size: 480px 80px;

  -webkit-mask-position: bottom;
  mask-position: bottom;
}
.wave-mask._WHT {
	background-color: #fff;
}
.wave-mask._BLUE {
	background-color: #CDE7FF;
}
.hero .sango img{
	position: absolute;
	bottom: 0;
	z-index: 10;
	width: 226px;
}

/* ==========================================================================
	セクション共通
========================================================================== */
.section{
  padding-top: 5rem;
  padding-bottom: calc(8rem + 10vw); 
	position: relative;
	overflow: hidden;
}
.section .container{
	margin: 0 auto;
}
.section h1,.section h2{
	color: #005CAC;
  font-size: clamp(1.75rem, 4vw, 2.5rem); 
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.125rem;
}
.section h1 span,.section h2 span{
  display: block;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  margin-top: 1.75rem;
}

.section h3{
  color: #005CAC;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.075rem;
}

/* セクションパーツ */
.section .photo {
  width: 100%;
  max-width: 50rem; 
  height: auto;
  aspect-ratio: 800 / 421;
  margin: 0 auto;
  border-radius: 6.25rem 0;
  overflow: hidden;
}

.section .photo img {
  width: 100%;
  height: auto;
  margin-top: -5rem;
}

/* 背景の装飾（波と泡） */
.bg_wave::before,
.bg_wave::after,
.bg_bubble_top::before,
.bg_bubble_btm::after{
	content: "";
	position: absolute;
	pointer-events: none;
}
.bg_wave::before {
	width: 227px;
	height: 22px;
	top: 20px;
	left: 20px;
	background-image: url(./public/img/common/bg_wave_top.png);
	background-repeat: no-repeat;
	background-size: auto;
}
.bg_wave::after {
	width: 351px;
	height: 64px;
	right: 20px;
	bottom: 135px;
	background-image: url(./public/img/common/bg_wave_btm.png);
	background-repeat: no-repeat;
	background-size: auto;
}
.bg_bubble_top::before {	
	width: 26px;
	height: 43px;
	top: 11%;
	left: -13%;
	background-image: url(./public/img/common/bg_bubble_top.svg);
	background-repeat: no-repeat;
	background-size: auto;
}
.bg_bubble_btm::after {
	width: 23px;
	height: 61px;
	right: 12%;
	bottom: 16%;
	background-image: url(./public/img/common/bg_bubble_btm.svg);
	background-repeat: no-repeat;
	background-size: auto;
}

/* ==========================================================================
	サンゴを知ろう
========================================================================== */
.learn-box {
  width: 48%;
  height: auto;
  aspect-ratio: 536 / 320;
  padding: 4%; /* パディングも画面幅に連動 */
	background-image:
	linear-gradient(0deg, rgba(0, 92, 172, 0.50) 0%, rgba(0, 92, 172, 0.50) 100%),
	url(./public/img/top/img_learn.jpg);
	background-position: left bottom;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 5rem 0;
	color: #FFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.learn-box .learn-box-ttl {
	width: 100%;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 700;
}
.learn-box .learn-box-text {
	width: 100%;
	margin-top: 1.5rem;
}

.learn-box dt {
	width: 100%;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 700;
}
.learn-box dd {
	width: 100%;
	margin-top: 1.5rem;
}

/* ==========================================================================
	スライダー
========================================================================== */
.slider-section {
  display: flex;
	max-width: 1120px; /* コンテナと同じ幅 */
	margin: 0 auto;
	position: relative;
  overflow: visible; /* スライドが画面右外へはみ出さないように */
}

/* 左側のサイドバー */
.slider-sidebar {
  background: #CDE7FF; /* 背後に隠れるように背景色を指定 */
	padding: 3.75rem 10rem 3.75rem 0;
  z-index: 10; /* スライダーより上に配置 */
  position: relative;
  flex-shrink: 0; /* 幅を維持 */
}

/* 右側のスライダーコンテナ */
.slider-content {
  flex-grow: 1;
  position: relative;
  z-index: 1;
	flex: 1;
  margin-right: calc(50% - 50vw) !important;
	overflow: visible;
}

.slick-slider {
  width: calc(100vw - 100px);
}
.slide-item {
  padding-right: clamp(1.25rem, 2vw, 1.5rem); 
  box-sizing: border-box;
}
.slide-item img {
  width: 100%;
  display: block;
	border-radius: 2.5rem 0;
	border: 1px solid #005CAC;
}
.slide-item .date {
	color: #005CAC;
	font-family: Outfit, sans-serif;
	font-size: clamp(0.7rem, 0.8vw, 0.75rem);
	letter-spacing: 2.4px;
	margin-top: 5px;
}
.slide-item .text {
	font-size: clamp(0.8rem, 0.9vw, 0.875rem);
}

/* カスタム矢印のスタイル（位置調整） */
.slider-controls{
	display: inline-flex;
  align-items: center;
	margin-top: 40px;
	border-radius: 99px;
	background: #FFF;
}
.slider-btn {
	display: flex;
  align-items: center;
  justify-content: center;
  width: 67px;
  height: 62px;
  background-color: transparent; /* ボタン単体の背景は消す */
  border: none;
  cursor: pointer;
  position: relative;
}

/* 矢印共通設定 */
.slider-btn::before {
  content: "";
  display: block;
  width: 8px;  /* 矢印のサイズ */
  height: 8px; /* 矢印のサイズ */
  border-top: 2px solid #005CAC;  /* 線の太さと色 */
  border-left: 2px solid #005CAC; /* 線の太さと色 */
	position: absolute;
  top: 50%;
}

.prev-arrow::before {
	transform: translate(-30%, -50%) rotate(-45deg); /* 左向き */
  left: 70%;
}
.next-arrow::before {
	transform: translate(-70%, -50%) rotate(135deg); /* 右向き */
  left: 30%;
}
/* 無効化状態（slickの端） */
.slider-btn.slick-disabled {
  border-top: 2px solid #D9D9D9;  /* 線の太さと色 */
  border-left: 2px solid #D9D9D9; /* 線の太さと色 */
  cursor: not-allowed;
}

/* ==========================================================================
	プログラム概要
========================================================================== */
.bnr-entry{
	border-radius: 5rem 0;
	background-image: url(./public/img/top/bnr_blue.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: left bottom;
	background-color: #005CAC;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: calc(2.5rem + 1.5vw) calc(2.5rem + 1.5vw) calc(2rem + 1.5vw);
}
.bnr-report{
	border-radius: 5rem 0;
	background-image: url(./public/img/top/bnr_pink.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: left bottom;
	background-color: #FFA8CE;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: calc(2.5rem + 1.5vw) calc(2.5rem + 1.5vw) calc(2rem + 1.5vw);
}
.sub-box{
	width: 50%;
	color: #fff;
}
.sub-box dt {
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 700;
}
.sub-box dd {
	margin-top: 1.5rem;
}
.bnr-report a.btn-l{
	color: #FFA8CE;
	border: 1px solid #FFA8CE;
}
.bnr-report a.btn-l:after{
  border-top: 2px solid #FFA8CE;   /* 上の線 */
  border-right: 2px solid #FFA8CE; /* 右の線 */
}

/* ==========================================================================
	メンバー企業
========================================================================== */
.logo-scroller {
  /* 1120pxのコンテナの中にいても画面端まで突き抜けさせる */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden; /* はみ出しを隠す */
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(5rem, 10vw, 10rem);
}

.logo-track {
  display: flex;
  width: max-content; /* 中身の幅に合わせる */
  margin-bottom: 20px;
}

.logo-list {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* ロゴ同士の間隔 */
  padding-right: 1.5rem; /* gapと同じ値を指定 */
}

.logo-list img {
  height: 54px; /* ロゴの高さ */
  width: auto;
}

/* アニメーション：左へ */
.track-left {
	animation: scroll-left 20s linear infinite;
}

/* アニメーション：右へ */
.track-right {
  animation: scroll-right 20s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* 半分（2つ目のリストの頭）まで動かす */
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ボックス */
.member-box{
	width: 100%;
	border-radius: 1.25rem;
	border: 1px solid #005CAC;
	background: #FFF;
	color: #005CAC;
	text-align: center;
	padding: calc(2rem + 1.5vw) 1.25rem calc(1rem + 1vw);
	position: relative;
}
.member-box.left{
	margin-right: 12px;
}
.member-box.left:before {
  content: "";
  display: block;
	width: 152px;
	height: 45px;
	background: url(./public/img/top/ico_member.svg) #fff no-repeat center center;
	position: absolute;
	left: calc(50% - 76px);
	top: -22px;
}
.member-box.right{
	margin-left: 12px;
}
.member-box.right:before {
  content: "";
  display: block;
	width: 152px;
	height: 70px;
	background: url(./public/img/top/ico_donation.svg) #fff no-repeat center center;
	position: absolute;
	left: calc(50% - 76px);
	top: -35px;
}

.member-box dt {
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 700;
	margin-bottom: 1.25rem;
}
.member-box dd {
	margin-bottom: 2.5rem;
}
.member-box dd:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
	FAQ
========================================================================== */
.faq-container {
	max-width: 800px;
	width: 100%;
	margin: 5rem auto 0;
}
.faq-item {
	border-radius: 1.25rem 0;
  background: #fff;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.faq-header {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
	background-color: #005CAC;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 200%; /* 36px */
	letter-spacing: 0.9px;
	text-align: left;
	position: relative;
}
.faq-title-group, .faq-answer-group {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.faq-title-group{
	align-items: center;
}

.faq-text, .faq-answer-text {
  flex: 1;
  line-height: 1.6;
}

/* QとAの共通アイコンスタイル */
.q-icon, .a-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
	border-radius: 8px;
	text-align: center;
	font-family: Outfit;
	font-size: 30px;
	font-weight: 500;
	text-transform: uppercase;
}

/* Qアイコンの配色 */
.q-icon {
	background-color: #fff;
	color: #005CAC;
}

/* Aアイコンの配色 */
.a-icon {
	background-color: #FF93D2;
	color: #fff;
}

/* アイコン：＋・ー の切り替え */
.icon {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid #fff; /* 1pxの丸い枠線 */
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s;
}

/* 中の棒（共通） */
.icon::before, .icon::after {
  content: "";
  position: absolute;
  background: #fff; /* 線の色 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}

/* 横棒 */
.icon::before {
  width: 14px; /* 線の長さ */
  height: 1px; /* 線の太さを1pxに */
}

/* 縦棒 */
.icon::after {
  width: 14px;  /* 線の太さを1pxに */
  height: 1px; /* 線の長さ */
}

.faq-item.is-active .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}


/* コンテンツ（最初は隠す） */
.faq-content {
  display: none;
  padding: 24px;
  color: #005CAC;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 200%; /* 28px */
	letter-spacing: 0.7px;
	text-align: left;
}

/* ==========================================================================
	フッター
========================================================================== */
.footer {
  padding: 50px 0 80px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.footer-bottom {
  padding-top: 40px;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 24px;
	color: #005CAC;
}
.nav-group h3 a{
	color: #005CAC;
  font-size: 14px;
  margin-bottom: 15px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 14px */
	letter-spacing: 0.7px;
	text-decoration: none;
}

.nav-group ul {
  list-style: none;
  padding: 0;
	margin-left: 5px;
}
.nav-group ul > li {
  text-indent: -5px;
}
.nav-group ul > li:before {
  content: "- ";
  text-indent: -5px;
}
.nav-group a {
  font-size: 12px;
  opacity: 0.8;
	color: #005CAC;
	text-decoration: none;
}

.footer-sns {
  display: flex;
  gap: 20px;
}
.sns-link {
  font-size: 0;
  text-decoration: underline;
}

.footer-btns {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
}
.btn-footer {
	width: 240px;
	padding: 23px 0;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: 0.8px;
	text-align: center;
}
.btn-footer.primary {
  background-color: #FF75B1;
}

/* コピーライト */
.footer-copyright {
  margin-top: 24px;
  font-size: 12px;
}


/* ==========================================================================
	スマートフォン向け調整 (768px以下)
========================================================================== */
/* フッター */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    gap: 30px;
  }
  .footer-nav {
    gap: 30px;
  }
  .footer-btns {
    justify-content: flex-start;
  }
  .hero .hero-bg-slider {
    width: calc(100vw - 0px);
}
}

/* 	メニュー / ハンバーガーメニュー */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}
@media (max-width: 1024px) {
  .nav {
		transform-origin: top right;
	  transform: scale(0.8);
  }
  .nav li.mr-40{
    margin-right: 1rem !important;
  }
  .logo {
    border-radius: 0 0 2rem 0;
	}
}
/* ハンバーガーボタン */
.hamburger {
  display: none;
  position: fixed;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  background: #005CAC;
  border: none;
  border-radius: 4px;
  z-index: 1000;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  left: 10px;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }

/* 展開時のアニメーション */
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

  .nav {
    position: fixed;
    top: 0;
    left: 100%; /* 右側に隠しておく */
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 0;
		transform: scale(1);
		
  }

  .nav.is-active {
    left: 0; /* 画面内へ */
  }

  .nav ul {
    flex-direction: column;
    text-align: center;
		width: 100%;
		padding-left: 0;
  }
  .nav li {
		width: 100%;
		display: block;
    margin: 15px 0;
  }
  .nav li a.btn-s {
		display: block;
		width: calc(100% - 40px);
		margin: 0 auto;
  }
}

@media (max-width: 768px) {
  
  /* 1. 全体コンテナの調整 */
  .container, .wide-container {
    width: 100% !important;
    padding: 0 clamp(1.125rem, 1.5vw, 1.25rem);
		box-sizing: border-box;
  }

  /* 2. ヘッダーとロゴ */
  .header {
    height: 4.6875rem;
  }
  .logo {
		width: 6.25rem;
    height: 6.25rem;
    border-radius: 0 0 1.875rem 0;
	}
  .logo a {
    width: 3.125rem;
    height: auto;
  }
    .logo img {
    width: 100%;
    height: auto;
  }

  /* 3. ヒーローエリア（MV） */
.hero {
}
  .hero {
		background-position: center;
    background-size: cover;
		padding-left: 0;
  }
	.hero h2 {
    font-size: clamp(1.8rem, 4.2vw, 2.25rem);
    margin: 3rem 1.25rem 0;
    line-height: 1.4;
  }
  .hero .newsBox {
    width: 100%;
    justify-content: center;
    margin-top: 35vw;
    padding: 0 1.25rem;
  }
  .hero .news {
    max-width: 100%;
    padding: 1.875rem 1.25rem 3.625rem;
    border-radius: 1.25rem;
  }
  .hero .sango img {
    width: 7.5rem;
    right: 0;
    bottom: 0;
  }

  /* 4. セクション共通 */
  .section {
		padding-top: clamp(1.75rem, 4vw, 2.5rem);
    padding-bottom: 30%;
  }
  .section h1,.section h2 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
		text-align: center;
  }
	.section h3 {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
		text-align: center;
  }
  .section .photo {
    width: 100%;
		height: auto;
	  border-radius: 2.5rem 0;
  }
  .section .photo img {
    margin-top: 0;
  }

	.bg_wave::before {
		top: 0;
		left: clamp(1.125rem, 1.5vw, 1.25rem);
		background-size: 30vw;
	}
	.bg_wave::after {
		right: clamp(1.125rem, 1.5vw, 1.25rem);
		bottom: 9%;
		background-size: 45vw;
		background-position: right bottom;
	}
  /* 5. ページトップボタン（左から右下へ移動） */
  .sticky-rail {
    left: auto;
    right: 15px;
    top: auto;
    bottom: 20px;
    position: fixed; /* スマホでは常に右下固定が使いやすい */
    width: 60px;
    height: 60px;
  }
  .pagetop-btn {
    width: 60px;
    height: 60px;
  }
  .pagetop-btn::before {
    width: 45px;
    height: 45px;
  }
  .pagetop-btn svg {
    width: 20px;
    height: auto;
    z-index: 1;
  }

  /* 6. グリッドとフレックスの解除 */
  .grid, .flex {
    display: block;
  }
	.grid h3{
		margin-top: 1.875rem;
	}
  .learn-box {
    width: 100%;
    height: auto;
    margin-bottom: 1.25rem;
    border-radius: 2.5rem 0;
  }
	.bg_bubble_top .text-left{
		text-align: center !important;
	}
  .member-box.left{
		margin-right: 0;
  }
	.member-box.right{
		margin-left: 0;
		margin-top: clamp(3rem, 5vw, 5rem);
  }

  /* 8. バナーエリア */
  .bnr-entry, .bnr-report {
    padding: 2.5rem 1.25rem;
    background-size: contain;
		border-radius: 2.5rem 0;
  }
  .sub-box {
    width: 100%;
    text-align: center;
  }

  /* 9. FAQエリア */
  .faq-container {
    width: 100%;
  }
  .q-icon, .a-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  .faq-header {
    font-size: 0.9375rem;
    padding: 0.9375rem;
  }
  .faq-content {
    padding: 0.9375rem;
  }
  /* 10. フッター */
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列に並べる */
    gap: 1.25rem;
  }
  .footer-btns {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .btn-footer {
    width: 100%;
  }
  .footer-logo {
    text-align: center;
    margin-bottom: 1.25rem;
  }
  .footer-sns {
		width: 100%;
    justify-content: center;
  }
  .footer-sns .sns-link {
		width: 30%;
		        max-width: 2rem;
  }
	.footer-sns .sns-link svg {
		width: 100%;
		height: auto;
  }
  .footer-copyright {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .section h1 span,.section h2 span{
		text-align: center !important;
  }
	.slider-section {
    display: block; /* 縦並びに */
  }
	.bg_bubble_top::before {
    left: 0; /* 泡の位置微調整 */
		transform: scale(1.2);
  }
  .bg_bubble_btm::after {
    right: 4%; /* 泡の位置微調整 */
		transform: scale(1.2);
  }
	.slider-sidebar {
    padding: 0 0 2.5rem;
    text-align: center;
  }
  .slider-content {
    margin-right: -20px !important; /* コンテナのpadding分外へ */
    margin-left: 0 !important;
  }
  .slick-slider {
    width: 100%;
  }
}


/* ==========================================================================
  下層ページ
========================================================================== */
/* 共通ヘッダー */
.l-header{
  background-color: #f7eed4;
}
.l-header.section{
  padding-top: 0;
  padding-bottom: 0;
}
.l-header.section .container{ 
  padding-top: 10rem;
  padding-bottom: 15.5rem;
  background-image: url(./public/img/common/header.png);
  background-position: center bottom 4.8rem;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .l-header.section .container{
    padding-top: 6rem;
    padding-bottom: 13rem;
    background-image: url(./public/img/common/header_left.png),url(./public/img/common/header_right.png);
    background-position: left 0 bottom 4.8rem, right 0 bottom 4.8rem;
    background-size: 40%;
  }
}
/* パンくずリスト */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  font-size: 0.9rem; /* 少し小さめに */
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";      /* 区切り文字 */
  padding: 0 12px;
  color: #bbb;       /* 区切り文字の色 */
}

.breadcrumb .home-icon {
  width: 18px;         /* 文字の大きさに合わせる */
  height: auto;
  vertical-align: middle; /* 文字との高さ合わせ */
  margin-top: -3px;
}

.breadcrumb .breadcrumb-item a {
  color: #005CAC;    /* リンクの色 */
  text-decoration: none;
}

.breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb .breadcrumb-item[aria-current="page"] {
  color: #bbb;       /* 現在のページの色 */
}

/* 波付き見出し */
.h-wave { 
  font-size: clamp(1.625rem, 3.7vw, 2rem) !important;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.h-wave::before { 
  content: "";
  display: block;
  width: 109px;
  height: 6px;
  margin-right: clamp(1.75rem, 4vw, 2.5rem);
  background: url(./public/img/common/ico_wave.svg) no-repeat center center / 100%;
}
.h-wave::after { 
  content: "";
  display: block;
  width: 109px;
  height: 6px;
  margin-left: clamp(1.75rem, 4vw, 2.5rem);
  background: url(./public/img/common/ico_wave.svg) no-repeat center center / 100%;
}
@media (max-width: 768px) {
  .h-wave::before,.h-wave::after { 
    width: 4rem;
    background-size: 140%;
  }
  .h-wave::before { 
    margin-right: 1.5rem;
  }
  .h-wave::after  { 
    margin-left: 1.5rem;
  }

  table.report-table.overflow {
    display: block;
    overflow-x: auto;
    width: 100%;
}

table.report-table.overflow tbody {
    display: table;
}

}







section.section.tp {
    padding-bottom: calc(8rem + 3vw);
}



.sec{
  position: relative;
  background: var(--bg-top, #CFE8FF);
      top: 1rem;
}

.wave-sep{
  position: absolute;
  left: 0;
  right: 0;
height: 10rem;
  overflow: hidden;
  pointer-events: none;
}

.wave-sep--bottom{ bottom: -1px; }
.wave-sep--top{ top: -1px; transform: scaleY(-1); }

.wave-sep__svg{
  width: 100%;
  height: 100%;
  display: block;
}

/* 下の背景色で塗る */
.wave-sep__fill{
  fill: var(--bg-bottom, #fff);
}

/* 一定速度・一方向・戻らない */
.wave-sep__flow{
  animation: waveFlow 22s linear infinite;
  will-change: transform;
  transform: translateZ(0); /* GPUヒント */
}

@keyframes waveFlow{
  from{ transform: translate3d(0,0,0); }
  to  { transform: translate3d(-1440px,0,0); }
}

@media (prefers-reduced-motion: reduce){
  .wave-sep__flow{ animation: none; }
  .wave-sep__svg{ filter: none; }
}

