html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}


body {
  font-family: 'Zen Kaku Gothic New', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif!important;
  line-height: 1.8;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #fff;
}


h2,
h3 {
  font-weight: 500;
}

a{
      font-family: 'Zen Kaku Gothic New', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif!important;

}

ul {
  padding: 0;
}

li {
    font-family: 'Zen Kaku Gothic New', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif!important;
  padding: 0;
  list-style: none;
  line-height: 2;
}



/* 共通：まず全部非表示にしておく */
.pc_br,
.sp_br {
  display: none;
}

/* PC用改行 */
@media screen and (min-width: 769px) {
  .pc_br {
    display: inline;
  }
}

/* SP用改行 */
@media screen and (max-width: 768px) {
  .sp_br {
    display: inline;
  }
}



/*========= site.cssからコピペさせていただいたもの ===============*/


#header {
    background-color: #fff;
    text-align: center;
    z-index: 100;
    margin: 0 auto;
    width: 100%;
    font-family: "Times New Roman"!important;
}

.logo {
    width: 15%;
    margin: auto;
    padding: 30px 0;
}

.logo img{
    width: 100%;
}


#g-nav-list::after{
    content:'';
	position: absolute;
	top:103%;
	width:100%;
	height:0px;
    left: 0%;


}
.g-nav-listtop
{
    position: absolute;
    top: 5%;
    left: 8%;
    margin: auto;
    z-index: 100;
    
}



/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
	padding: 10px 0;

    
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #464646;
	padding:10px 60px;
	transition:all .3s;
	font-size: 16px;
	font-family: 'Times New Roman', serif!important;
  
}


@media screen and (max-width:1200px) {
nav ul li a{
	padding:10px 20px;
}

}

nav ul li a:hover{
	color:#D1E0E5;	
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:80%;
	top:17px;
	width:6px;
	height:6px;
	border-top: 1.5px solid #031520;
    border-right:1.5px solid #031520;
    transform: rotate(135deg);
}

@media screen and (max-width:1200px) {
nav ul li.has-child::before {
    left: 100px;
}
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:45px;
	z-index: 4;
    /*形状を指定*/
	background:rgba(255,255,255,0.9);
	width:200px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #031520;
	border-bottom:solid 1px rgba(255,255,255,0.6);
	font-size: 13px;
     border-right: none;
    margin: 0 ;
    padding:15px 0; 
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:rgba(255,255,255,0.8);
   
}


/*==================================================
中心から外に線が伸びる（下部）
===================================*/

#g-navi li a{
	position: relative;
      letter-spacing: 0.1em;
}

#g-navi li.current a,
#g-navi li a:hover{
    color: #031520;
}

#g-navi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 25%;
    /*線の形状*/
    width: 50%;
    height: 1px;
    background:#031520;
    /*アニメーションの指定*/
    transition: all .2s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
#g-navi li.current a::after,
#g-navi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}


.g-nav-openbtn{
    display: none;
}
 
@media screen and (max-width:960px) {
.g-nav-openbtn{
    display: block;
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:30px;
	right: 30px;
	cursor: pointer;
    width: 30px;
    height:30px;
}

/*ボタン内側*/

.g-nav-openbtn .openbtn-area{
    transition: all .4s;
}

.g-nav-openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 0px;
	background: #031520;
  	width: 45%;
  }


.g-nav-openbtn span:nth-of-type(1) {
	top:15px;	
}

.g-nav-openbtn span:nth-of-type(2) {
	top:23px;
}

.g-nav-openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/

.g-nav-openbtn.active .openbtn-area{
	transform: rotateY(-360deg);
}

.g-nav-openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
}

.g-nav-openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.g-nav-openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}
	nav ul{
		display: block;
	}
}
/*===========================タブレット=======================================*/
/*タブレット版*/
@media screen and (max-width:1024px){
	
	.leaning_box h2 {
    font-size: 1.8rem;
	}
	
}
/*==================================================
機能編 　5-1-11 クリックしたらナビが上から下に出現
===================================*/

@media screen and (max-width:960px) {
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#ffffff;
    /*動き*/
	transition: all 0.6s;
   
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    width: 90%;
    margin:85px auto 0 auto;
}
    
#g-nav ul ul{
    width: 100%;
    margin: 0;
}
 
/*プルダウンナビのCSS*/
#g-nav ul li.has-child ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
    transform: none;
}

	
/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #031520;
	text-decoration: none;
	padding:25px 0;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 400;
    border-right: none;
    font-size: 16px;
    font-family: "kinuta-maruminyoshino-stdn", serif!important;

}
	#g-navi li a::after {
		background: none;
}
}

/*==================================================
　機能編 5-2-7 3本線が奥行きを持って回転して×に
===================================*/

.g-nav-openbtn{
    display: none;
}
 
@media screen and (max-width:960px) {
.g-nav-openbtn{
    display: block;
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:30px;
	right: 30px;
	cursor: pointer;
    width: 30px;
    height:30px;
}

/*ボタン内側*/

.g-nav-openbtn .openbtn-area{
    transition: all .4s;
}

.g-nav-openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 0px;
	background: #031520;
  	width: 45%;
  }


.g-nav-openbtn span:nth-of-type(1) {
	top:15px;	
}

.g-nav-openbtn span:nth-of-type(2) {
	top:23px;
}

.g-nav-openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/

.g-nav-openbtn.active .openbtn-area{
	transform: rotateY(-360deg);
}

.g-nav-openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
}

.g-nav-openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.g-nav-openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}
	nav ul{
		display: block;
	}
}
/*===========================SP=======================================*/
/*SP版*/
@media screen and (max-width:768px){
	.pc_img{
		display:none; 
	}
	.pc_only{
		display: none;
	}
	.sp_img{
		display: block;
	}
	.sp_only{
		display: block;
	}
nav ul li.has-child::before {
    left: 100px;
    top: 43%;
}

	/*===========================================================*/
	/* 機能編 5-2-1	3本線が×に*/
	/*===========================================================*/
	.navtoggle{
		position:fixed;
		z-index: 9999;/*ボタンを最前面に*/
		top:15px;
		right: 10px;
		cursor: pointer;
		width: 50px;
		height:50px;
	}

	/*×に変化*/	
	.navtoggle span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 14px;
		height: 2px;
		border-radius: 2px;
		background-color: #266175;
		width: 45%;
	  }

	.navtoggle span:nth-of-type(1) {
		top:15px;	
	}

	.navtoggle span:nth-of-type(2) {
		top:23px;
	}

	.navtoggle span:nth-of-type(3) {
		top:31px;
	}

	.navtoggle.active span:nth-of-type(1) {
		top: 18px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 30%;
	}

	.navtoggle.active span:nth-of-type(2) {
		opacity: 0;
	}

	.navtoggle.active span:nth-of-type(3){
		top: 30px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 30%;
	}

.nav-list{
		display: block;
		font-size: 1.6rem;
		padding-left: 0;
		margin: 60px auto;
		
	}	
	.nav-list li{
		  padding: 40px 10px;
	}
	.nav-list li a{
		font-size: 1.8rem;
	}
    .g-nav-listtop{
        top:0;
        left: 0;
    }

/*===========================================================*/
	/* SPMV/
	/*===========================================================*/
	
#header{
		background-color: #fff;
		position: fixed;
		z-index: 100;
		margin: 0;
		width: 100%;
	}
    .logo{
        width: 30%;
    }
	.header_inner{
		width: 100%;
		margin:0;
		display: block;
        background-color: #fff;
	}


}







/* ==========================
　　　　　　　　　　　共通
============================*/
.section-label {
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: #444;
  margin-bottom: 8px;
  padding-left: 2em;
}

.section-title {
  font-size: 27px;
  padding-left: 1em;
  margin: 52px 0 40px;
  letter-spacing: 1.3px;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 14px 0;
}

.gray {
  border-top: 1px solid #e7e7e7!important;
}

.highlight-bg {
  background: #4A5D6B;
  color: #fff;
  display: inline;
  padding: 0;
  line-height: 1.8;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.underline {
  text-decoration: underline;
  text-decoration-color: #333;
  /* お好みの色 */
  text-underline-offset: 3px;
  /* ← 文字と線の間隔 */
}

.p_blue {
  color: #4A90A4;
}

@media (max-width:768px) {
  .section-label {
    padding-left: .3em;
  }

  .section-title {
    font-size: 21px;
    padding: 0;
    width: 95%;
    margin: 52px auto 40px;
  }
}


/* ==========================
　　　　　　　　　　　TOP
============================*/

.top-section {
  background: #fff;
  color: #333;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid #bbb;
}

.top-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1170px;
  margin: 0 auto;
  gap: 40px;
  width: 90%;
}

.top-left {
  max-width: 600px;
}

.top-logo {
  max-width: 320px;
}

.top-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
  letter-spacing: 1.4px;
}

.top-sub {
  font-size: 20px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
  text-align: left;
}

.top-right {
  display: flex;
  align-items: center;
}

.top-stats {
  display: flex;
  gap: 40px;
}

.stat .label {
  display: inline-block;
  font-size: 13px;
  color: #81B5D0;
  letter-spacing: 1.2px;
}

.stat .value {
  display: block;
  font-size: 36px;
  font-weight: bold;
  color: #111;
  text-align: center;
}

.stat .unit {
  font-size: 16px;
  margin-left: 4px;
}

.top-scroll {
  overflow: hidden;
  background: #fff;
  padding: 0;
  margin-top: 40px;
}

.scroll-track {
  display: flex;
  width: calc(200%);
  animation: scrollX 30s linear infinite;
}

.scroll-track img {
  width: 18%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}



@keyframes scrollX {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-51%);
  }
}

/* メディアクエリで切り替え */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {

  .top-section {
    padding-top:120px;
    padding-bottom: 40px;

  }

  .top-inner {
    flex-direction: column;
    align-items: center;
            width: 92%;

  }

  .top-title {
    font-size: 26px;
    line-height: 1.4;
font-weight: 600;
  }

  .top-logo {
    width: 70%;
}
  .top-sub {
    font-size: 16px;
  }

  .top-stats {
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .top-scroll {
    margin-top: 0px;
}
  .scroll-track {
    display: flex;
    width: calc(200%);
    animation: scrollX 15s linear infinite;
    /* ←この30sを短くする */
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    flex-direction: row;
    margin-right: 40px;
  }

  .scroll-track img {
    width: 25%;
    flex-shrink: 0;
  }

}

/* ==========================
　　　　　　　　　　　　WHY
============================*/
.why-section {
  width: 90%;
  margin: 0 auto;
}

.why-title {
  font-size: 27px;
  letter-spacing: 1.4px;
  font-weight: 500;
  margin: 52px 0 64px;
}

.container {
  /* width: 90%; */
  margin: 0 auto;
  padding: 0px 20px 30px;
}

.why-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.why-image {
  flex: 1 1 32%;
}

.why-image img {
  width: 100%;
  height: auto;
}

.why-text {
  flex: 1 1 55%;
}

.why-text p {
  margin-bottom: 30px;
  line-height: 2.2;
  font-weight: 500;
}

@media (max-width:768px) {
  .why-title {
    font-size: 21px;
    margin: 52px 0 40px;
  }

  .why-content {
    flex-direction: column;
  }

}




.recommend-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.recommend-box {
  border: 2px dotted #999;
  padding: 40px 30px;
  width: 85%;
  background: #fff;
}

.recommend-heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.recommend-box .section-label {
  font-size: 12px;
  color: #333;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.recommend-box .section-title {
  font-size: 13px;
  margin-bottom: 24px;
  margin-TOP: 16px;
}


.recommend-list {
  list-style: none;
  padding-left: 0;
  line-height: 2;
  width: 92%;
  margin: 0 auto;
}

.recommend-list li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 14px;
}

.recommend-list .circle {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: .8em;
  height: .8em;
  border: 1px solid #81B5D0;
  border-radius: 50%;
}

.recommend-list u {
  text-underline-offset: 4px;
}


@media (max-width:768px) {

  

  .why-section .container {
    padding: 0px 0px 20px;
  }

    .container {
    padding: 60px 0px 20px;
  }

  .recommend-section {
    padding: 20px 0px 80px;
  }

  .recommend-heading {
    padding-left: 10px;
}

  
  .recommend-box {
    padding: 20px 0px 20px 10px;
    width: 100%;
  }

  .recommend-box .section-title {
    font-size: 13px;
    margin-bottom: 24px;
    margin-TOP: 16px;
    width: inherit;
    margin: 16px 0 24px;
  }

  .recommend-list li {
    font-size: 13.5px;
    margin-bottom: 24px;
  }


}

/* ==========================
　　　　　　　　　　　VISION
============================*/

.vision-section {
  width: 90%;
  margin: 0 auto;
}


.vision-section h2 {
  font-size: 27px;
  margin: 52px 0 40px;
  letter-spacing: 1.3px;
}


.vision-section {
  width: 90%;
  margin: 0 auto;
}

.vision-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 98%;
  margin: 0 auto;
  align-items: center;
}

.vision-text {
  flex: 1 1 50%;
  padding-left: 1em;
}

.vision-text p {
  font-size: 18px;
  font-weight: 500;
}

.vision-text ol {
  margin-top: 20px;
  padding-left: 1em;
  counter-reset: list;
}

.vision-text ol li {
  list-style: none;
  position: relative;
  margin-bottom: 16px;
  line-height: 1.8;
  align-items: flex-start;
}

.vision-text ol li::before {
  counter-increment: list;
  content: "0" counter(list) ".";
  color: #81B5D0;
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
  margin-right: 8px;
  display: inline-block;
  /* ← ✅ インラインじゃなくてボックス化 */
  min-width: 2.5em;
}

.vision-list li::before {
  counter-increment: number;
  content: "0" counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  line-height: 1.8;
}

/* .vision-text span {
  display: inline-block;
  border-bottom: 1px solid #333;
} */

.vision-image {
  flex: 1 1 39%;
}

.vision-image img {
  width: 100%;
  height: auto;

}

/*  */
.vision-list {
  padding-left: 0;
  counter-reset: number;
  margin-left: 0;
}

.vision-list li {
  list-style: none;
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 24px;
  line-height: 1.8;
  text-indent: 0;
}




/*  */



@media (max-width:768px) {

  .vision-content {
    flex-direction: column;
  }

  .vision-text {
    padding-left: 0em;
  }

  .vision-section h2 {
    font-size: 21px;
  }

  .vision-text p {
    font-size: 16px;
  }

  .vision-text ol li {
    font-size: 0.9rem;
  }

  .vision-text ol {
    padding-left: 0;
            margin-top: 36px;
  }

}

/* ==========================
　　　　　　　　　　　OUTLINE
============================*/

.outline-section {
  width: 90%;
  margin: 120px auto;
}

.outline-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* スマホ対応用 */
  width: 95%;
  margin: 0 auto;
}

.outline-content p {
  margin-bottom: 20px;
  line-height: 2.1;
}


.outline-text {
  flex: 1 1 45%;
  min-width: 300px;
}

.outline-image {
  flex: 1 1 40%;
  min-width: 240px;
  text-align: center;
}

.outline-image img {
  width: 64%;
  height: auto;
}

@media (max-width:768px) {

  .outline-content {
    flex-direction: column-reverse;
    margin: 65px auto 0;
  }

  .outline-image img {
    width: 100%;
  }
}

/* ==========================
　　　　　　　　　　　benefit
============================*/

.benefit-section {
  width: 90%;
  margin: 120px auto;
}

.benefit-flex {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 80px;
  text-align: center;
}

.benefit-item {
  max-width: 325px;
}

.benefit-item img {
  width: 200px;
  height: auto;
  margin-bottom: 12px;
}

.benefit-item h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 16px;
  line-height: 1.6;
  width: 80%;
  margin: 0 auto;
}

.benefit-summary {
  text-align: center;
  margin-top: 72px;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width:768px) {

  .benefit-section {
    margin: 84px auto 100px;
  }

  .benefit-item p {
    font-size: 16px;
    width: 85%;

  }

  .benefit-summary {

    font-size: 16px;
  }
}


/* ==========================
　　　　　　　　　　　voice
============================*/

.voices-section {
  background: #D5DCDD;
  padding: 80px 0px;
}

.voices-section .section-title {
  padding-left: 0.3em;
}

.voices-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 88%;
}

.inner_a {
  min-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .inner_a {
    min-width: initial;
    width: 90%;
    margin: 0 auto;
  }

}

.voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.voice-card {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border-left: 4px solid #ccc;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.voice-card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  text-decoration: none;
  /* リンクっぽさ消す */
  color: inherit;
  /* デフォルト色を継承 */
}

.voice-card:hover {
  transform: translateY(-4px);
}

.voice-card-content {
  padding: 24px;
  flex: 1;
}

.voice-number {
  font-size: 12px;
  margin-bottom: 8px;
  color: #666;
}

.voice-role {
  font-weight: bold;
  font-size: 12px;
  margin-left: 5px;
}

.voice-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.voice-readmore {
  font-size: 12px;
  letter-spacing: 1px;
  text-align: right;
  border-top: 1px solid #aaa;
  padding-top: 6px;
  color: #444;
}

.voice-img {
  width: 150px;
  flex-shrink: 0;
}

.voice-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* カードごとの色分け */
.border-blue {
  border-left-color: #3C5A72;
}

.border-red {
  border-left-color: #A85A4B;
}

.border-purple {
  border-left-color: #6C5D89;
}

.border-orange {
  border-left-color: #C48A3D;
}

.border-teal {
  border-left-color: #5D88A9;
}

.border-navy {
  border-left-color: #6C5D89;
}


/* オレンジの枠線カード用 */

/* 他の例 */
.voice-card.border-blue .voice-number {
  color: #3C5A72;
}

.voice-card.border-red .voice-number {
  color: #A85A4B;
}

.voice-card.border-purple .voice-number {
  color: #6C5D89;
}

.voice-card.border-orange .voice-number {
  color: #C48A3D;
  /* オレンジっぽい色 */
}

.voice-card.border-teal .voice-number {
  color: #5D88A9;
}

.voice-card.border-navy .voice-number {
  color: #6C5D89;
}

/* スマホ対応 */
@media (max-width: 768px) {

  .voices-container {
    width: 95%;
  }

  .voices-section {
    padding: 80px 0px 0px;
  }

  .voices-grid {
    grid-template-columns: 1fr;
  }

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

  .voice-card p {
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 500;
  }

  .voice-img {
    width: 120px;
  }

}

/* ==========================
　　　　　　　　協業事例
============================*/

.cases-section {
  background: #D5DCDD;
  padding: 80px 20px;
}



.cases-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 90%;
}


.cases-container hr {
  border: none;
  border-top: 1px solid #bbb;
  margin: 14px 0;
}

.case-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid #bbb;
}

.case-number {
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
  font-size: 12px;
  color: #777;
  font-weight: bold;
  min-width: 80px;
  text-align: center;
  margin-top: 6px;

}

.case-content {
  flex: 1;
}

.case-title {
  display: inline;
  position: relative;
  background: #fff;
  padding: 0 12px;
  z-index: 1;
  margin: 0;
  font-size: 20px;
  color: #333;
  font-weight: 500;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.8;
  /* 行間も調整すると綺麗 */
}


.case-project {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 500;
  color: #333;
  margin-left: .6em;
}

.case-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-left: .6em;
}

/* 擬似線を使ったタイトル装飾（任意） */
/* .case-box::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 1px;
  background: #bbb;
  z-index: 0;
} */

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

  .case-title {
    font-size: 18px;
    padding: 0 4px;
  }

  .case-project {
    font-size: 15px;
  }

  .case-box {
    flex-direction: column;
  }

  .case-number {
    text-align: center;
    display: inline-flex;
  }
}

/* ==========================
　　　　　　　5つの武器
============================*/

.essential-section {
  padding: 80px 20px;
  width: 90%;
  margin: 0 auto 180px;
}



.essential-text {
  width: 95%;
  margin: 65px auto 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;

}

.essential-image {
  text-align: center;
}

.essential-image img {
  max-width: 1000px;
  height: auto;
}

@media (max-width: 1000px) {

  .essential-section {
    padding: 80px 0;
    margin-bottom: 0px;
  }

  .essential-section .sp-only {
    margin-right: 0px !important;
  }

  .essential-image img {
    width: 100%;
    margin-right: 0px !important;
  }

}



/* ==========================
　　　　　　3つの鍵
============================*/



.program-wrap {
  display: flex;
  align-items: stretch;
  /* 高さをそろえる */
  gap: 40px;
}

.program-images {
  flex: 0 0 30%;
  overflow: hidden;
  position: relative;
  height: auto;
}

.program-content {
  flex: 1.2;
  padding-left: 40px;
}

.program-content .section-title {
  padding-left: 0;
}

.program-content .section-label {
  padding-left: 0;
}

.program-content hr {
  width: 95%;
  /* border: .5px solid #eeeeee; */
}

.program-intro p {
  margin: 64px 0;

}

.program-heading {
  margin-top: 40px;
  margin-bottom: 20px;
}

.program-title {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 12px;
}

.program-number {
  color: #81B5D0;
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
  font-size: 14px;
  margin-top: 4px;
  min-width: 28px;
  /* 余白確保 */
}

.program-title strong {
  font-size: 26px;
  font-weight: 500;
  display: block;
  line-height: 1.4;
  white-space: nowrap;
}

.program-detail strong {
  font-weight: 600;
}

.accordion-sp strong {
  font-weight: 500;
}


.program-sub {
  font-size: 16px;
  color: #333;
  margin-top: 2px;
    font-weight: 500;
}

.program-block {
  width: 80%;
}

.program-lead {
  margin: 20px 0 30px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.program-detail>ul>li {
  margin-bottom: 24px;
  /* セクション間に余白をつける */
}

.accordion-content>ul>li {
  margin-bottom: 20px;
  /* セクション間に余白をつける */
}



.program-detail ul ul li {
  margin-left: 12px;
  /* サブ項目の行間は小さめに */
}

.accordion-contentul ul li {
  margin-left: 12px;
  /* サブ項目の行間は小さめに */
}



.image-track {
  position: absolute;
  /* ←ここが重要！！ */
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  animation: scrollUp 60s linear infinite;
}


.image-track img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
  margin-bottom: 100px;
}


.accordion-content {
  display: none;
}

@media (max-width: 768px) {

  .gray {
  border-top: 1px solid #e7e7e7!important;
}

  .program-images {
    display: none;
  }

  .program-content {
    width: 90%;
    padding-left: 0px;
    margin: 0 auto;
  }

  .program-content .section-label {
    padding-left: 12px;
  }

  .program-block {
    width: 95%;
    margin: 0 auto;
  }

  .program-heading {
    text-align: center;
  }

  .program-title {

    gap: 10px;
    margin-top: 12px;
    flex-direction: column;
  }

  .program-wrap {
    flex-direction: column;
  }

  .mobile-only {
    display: block;
    margin-bottom: 60px;
  }

  .desktop-only {
    display: none;
  }

  .program-images {
    order: 2;
    height: auto;
  }

  .mobile-only img {
    width: 95%;
    text-align: center;
    display: block;
    margin: 25px auto;
  }

  .accordion-toggle {
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    color: #4A5D6B;
    /* 落ち着いたカラーに */
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
    display: inline-block;
  }

  .accordion-toggle:hover {
    opacity: 0.7;
  }
}


/* ==========================
　　　　　無料動画へ
============================*/

.cta-section {
  width: 80%;
  margin: 150px auto;
  background-color: #e9eff3;
  padding: 60px 20px;
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

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

.cta-points {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.cta-points li {
  margin-bottom: 8px;
  font-size: 16px;
}

.cta-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 30px 0;
}

.cta-form label {
  display: block;
  font-weight: bold;
  font-size: 14px;
}

.cta-form input[type="email"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 16px;
  margin-top: 10px;

}

.cta-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  justify-content: center;
}

.cta-policy {
  font-size: 12px;
  color: #555;
  margin-bottom: 20px;
}

.cta-policy a {
  color: #007acc;
  text-decoration: underline;
}

.cta-button {
  width: 80%;
  background-color: #4a5c66;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  font-family: 'Zen Kaku Gothic New';
  letter-spacing: 1.6px;
}

.cta-button:hover {
  background-color: #3a4d56;
}

@media (max-width: 768px) {
  .cta-section {
    width: 90%;
    margin: 30px auto;
  }

  .cta-text {
        font-size: 14.5px;
        font-weight: 500;
    text-align: left;
  }

  .cta-points li {
    font-size: 13.5px;
  }

  .cta-form input[type="email"] {
    width: 80%;
    font-size: 12px;

  }

}


/* ==========================
　　　　　プロフィール
============================*/

.prof-section {
  background-color: #fff;
  padding: 80px 20px;
  margin: 0 auto;
  width: 90%;
}

.prof-section .gray {
  margin: 30px auto 45px;
}



.profile {
  display: flex;
  gap: 100px;
  /* 適度な余白 */
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
}

.prof-image {
  flex: 1;
  /* 画像側：比率1 */
  max-width: 220px;
  /* 必要なら上限 */
}


.prof-image img {
  display: block;
  width: 100%;
  height: auto;
}

.prof-text {
  flex: 3.5;
  /* テキスト側：比率3.5 */
}

@media screen and (max-width: 768px) {

  .proftitle {
    font-size: .9rem;
  }

  .profile {
    flex-direction: column;
    gap: 24px;
    margin: 0 auto;
  }

  .prof-image,
  .prof-text {
    flex: none;
    max-width: 100%;
  }
}




/* ==========================
　　　　　QA
============================*/


.faq-section {
  padding: 80px 20px 140px;
  margin: 0 auto;
  width: 90%;
}

.faq-list {
  width: 70%;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  color: #333 !important;
  font-family: 'Zen Kaku Gothic New', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px;
  font-size: 16px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 16px 20px;
  font-size: 15px;
  line-height: 1.7;
  background: #f9f9f9;
}

.faq-a {
  font-weight: 400;
  margin-right: 4px;
  font-family: 'Zen Kaku Gothic New', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;

}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 16px;
  /* 初期は上下paddingなし */
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  /* 十分に大きな数値にしておく */
  padding: 2em 2.4em;
}

@media screen and (max-width: 768px) {
  .prof-section {
    padding: 10px 20px;
  }

  .faq-list {
    width: 100%;
    margin: 0 auto;
  }

}


.footer_inner {
  width: 100%;
  background-color: #D1E0E5;
  text-align: center;
  padding: 20px 0;
}

.privacy2 {
  padding: 20px 0;
  text-align: center;
  font-size: .8rem;
  font-family: serif;
}

.privacy2 a {
  color: #031520;
  text-decoration: none;
}

.copyright {
  font-size: .8rem;
  text-align: center;
  font-family: serif;
}



/* メニュー */
.scroll-nav {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.scroll-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scroll-nav a {
  display: block;
  /* ← これで背景が a の全体に効くようになる */
  writing-mode: vertical-rl;
  text-align: center;
  font-size: 14px;
  color: #B0B0B0;
  background: none;
  text-decoration: none;
  transition: 0.3s;
  padding: 16px 8px;
  letter-spacing: 1px;
}



.scroll-nav a.active {
  background: #4A5D6B;
  color: #fff;
}

.scroll-nav.show {
  opacity: 1;
  visibility: visible;
}


@media screen and (max-width: 999px) {
  .scroll-nav {
    display: none;
  }
}


.mobile-nav {
  display: none;
  background: #f9f9f9;
  padding: 20px 16px;
  width: 80%;
  margin: 0 auto 50px;
}

.mobile-nav p {
  font-size: 14px;
  letter-spacing: 1px;
  width: 80%;
  margin: 27px auto;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  width: 80%;
}

.mobile-nav li {
  margin-bottom: 16px;
    font-family: 'Zen Kaku Gothic New', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif!important;

  }

.mobile-nav a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  display: inline-block;
    font-family: 'Zen Kaku Gothic New', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif!important;
    padding: 0;
}

/* スマホ表示時だけ表示 */
@media screen and (max-width: 999px) {
  .mobile-nav {
    display: block;
  }
}
