/*
Theme Name: テーマ名
Theme URL: 
Description: お客様専用テーマです。
Author: 制作者
*/


/* header */

.header  {
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
body:not(.home) .header {
    background-color: #1B4C87;
}

.header .header_space {
	width: 100%;
	height: 100%;
	padding: 0 100px;
}

.header .header_space .container {
	width: 100%;
}

.header .header_space .container .logo {
	width: 100px;
	display: block;
}

.header .header_space .container .logo img {
	width: 100%;
	height: auto;
}

.header .header_space .container nav {
	
}

.header .header_space .container nav ul {
	gap: 0 60px;
}

.header .header_space .container nav ul li a {
	font-size: 16px;
	color: #ffffff;
	font-weight: 500;
	letter-spacing:1.2px;
}

.header .header_space .container nav ul li a.menu_contact {
	background-color: #E9C271;
	padding: 5px 20px;
	border-radius: 50px;
	position: relative;
	transition: color 0.25s;
	display: inline-flex; 
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.header .header_space .container nav ul li a.menu_contact .btn_border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* クリックを邪魔しないようにする */
    z-index: 1;
    border-radius: 50px; /* ブラウザによってはSVG自体の角も丸めておく */
}

/* SVG内の長方形（線）の設定 */
.header .header_space .container nav ul li a.menu_contact .btn_border rect {
    fill: transparent;      /* 塗りつぶしなし */
    stroke: #fff;           /* 線の色 */
    stroke-width: 2px;      /* 線の太さ */
    
    /* アニメーションの肝 */
    stroke-dasharray: 100;  /* 線の全長（pathLength=100なので100で一周） */
    stroke-dashoffset: 100; /* 線の開始位置を100ずらす（つまり見えない状態にする） */
    transition: stroke-dashoffset 0.6s ease; /* アニメーション速度 */
}

/* ホバー時の動作 */
.header .header_space .container nav ul li a.menu_contact:hover .btn_border rect {
    stroke-dashoffset: 0;   /* 線を元の位置に戻す（線が走る） */
}

a.underline {
  display: inline-block;
  position: relative;
  text-decoration: none;
	padding: 5px 0;
}

a.underline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

a.underline:hover::after {
  transform: scaleX(1);
}





/* main */

.main_box {
	width: calc(100% );
	background-color: #FFF;
}

.fixed_button {
	width: 230px;
	height: 230px;
	border-radius: 50%;
	background-image: linear-gradient(to right, #E9C271, #E8AC2F);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: fixed;
	z-index: 100;
	bottom: 50px;
	right: 50px;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	opacity: 1;
	visibility: visible;
}
.fixed_button.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fixed_button .text1 {
	font-size: 29px;
	font-weight: 500;
	border-bottom: solid 1px #fff;
	line-height: 1.3;
	text-align: center;
	padding-bottom: 15px;
}

.fixed_button .text2 {
	font-size: 21px;
	font-weight: bold;
	margin-top: 20px;
}

.fixed_button .text2 span {
	font-size: 19px;
}





/* index */

.firstview {
	width: 100%;
	height: 100vh;
	background-image: url(./assets/img/fv-img.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 0 100px;
}

.firstview h2 {
	font-size: 77px;
	color: #1E5CA7;
	text-shadow: 1px 3px 0px rgba(255, 255, 255, 1);
}

.firstview .subtitle {
	font-size: 33px;
	color: #fff;
	margin-top: 30px;
	font-weight: bold;
	

}

.firstview .text {
	font-size: 18px;
	color: #fff;
	margin-top: 20px;
	font-weight: bold;
	letter-spacing: 2px;
	
}

.about {
	width: 100%;
	padding: 150px 0 100px;
	position: relative;
	background-color: #fff;
}


.about .title_box {
	width: 100%;
}

.about .title_box .left {
	gap: 10px 0;
	position: relative;
	z-index: 90;

}

.about .title_box .left h2 {
	font-size: 100px;
	background-image: linear-gradient(to bottom, #326EB7, #174781);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	letter-spacing: 5px;
}

.about .title_box .left h2 span {
	font-size: 100px;
	background-clip: text;
	-webkit-background-clip: text;
	color: #1c1c1c;
	letter-spacing: 5px;
}

.about .title_box .left p {
	font-size: 18px;
	font-weight: 400;
	margin-top: -20px;
}

.about .title_box .right_text {
	font-size: 210px;
	color: #E8F1FC;
	line-height: 1;
    margin-top: 0px;
	position: absolute;
	top: -20px;
	left: -20px;
}

.about .img_flex {
	width: 100%;
	gap: 0 8%;
}

.about .img_flex .img_box {
	width: 46.5%;
}

.about .img_flex .img_box img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
	padding-left: 100px;
}

.about .content_box {
	padding-top: 20px;
	padding-right: 105px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	position: relative;
}

.about .content_box p {
	font-size: 18px;
	font-weight: 400;
	line-height: 38px;
	margin-bottom: 30px;
	z-index: 1;
	letter-spacing: 2px;
	margin-top: 45px;
}

.about .content_box a {
	font-size: 17px;
	font-weight: 500;
	display: flex;
	align-items: center;
	background: linear-gradient(180deg,rgba(6, 125, 81, 1) 0%, rgba(4, 83, 54, 1) 100%);
	border-radius: 50px;
	padding: 25px 30px 25px 80px;
	color: #fff;
	gap: 0 50px;
	margin-top: 80px;
}

.about .left_img {
	width: 88%;
	height: 530px;
	border-radius: 0 60px 60px 0;
	object-fit: cover;
	object-position: center;
	margin-top: 100px;
}
.banner{
	width: 80%;
}
/* =========================================
     料金表ボックス
   ========================================= */
.price-container {
    display: flex;
    gap: 100px;
    justify-content: center;
	margin-top: 110px;
}
.price-box {
    flex: 1;
    max-width: 480px;
    border: 3px solid #154587;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
}
.box-header {
    background-image: linear-gradient(to bottom, #154587, #0F2A4F);
    color: #fff;
    text-align: center;
    padding: 25px;
    font-size: 30px;
    font-weight: 500;
    margin: 0;
}
.box-content {
    padding: 25px 10px;
    text-align: center;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
}
.price-large {
    font-size: 36px;
    font-family: Arial, sans-serif;
    margin-right: 5px;
}
.price-note {
    font-size: 20px;
}

.price-original {
    font-size: 30px;
    position: relative;
    padding: 0 5px;
}
.price-original span {
    font-size: 20px;
}
.price-original::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
    transform: rotate(-15deg);
}
.arrow-separator {
    font-size: 20px;
    color: #333;
    margin: 0 10px;
    font-family: monospace;
}
.price-new-text {
    font-size: 25px;
}
.price-accent {
    font-size: 48px;
    color: #d93a3a; /* 赤色 */
    font-family: Arial, sans-serif;
    margin-left: 5px;
    line-height: 1;
}
.price-unit-red {
    color: #d93a3a;
    font-size: 24px;
}


.benefit {
	width: 100%;
	background-color: #F1F1F1;
	padding: 120px 0 200px;
	border-radius: 120px 120px 0 0px;
}

.benefit .section_space {
	width: 100%;
	margin: 0 auto;
}

.benefit .section_space .container {
	width: 100%;
}

.benefit .section_space .container h2 {
	font-size: 170px;
	background-image: linear-gradient(to bottom, #154587, #0F2A4F);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
	text-align: center;
	letter-spacing: 5px;
}


.benefit .section_space .container h2 span{
	font-size: 170px;
    color: #1c1c1c;
	text-align: center;
	letter-spacing: 5px;
}


.benefit .section_space .container .subtitle {
	font-size: 23px;
	color: #1c1c1c;
	font-weight: 400;
	text-align: center;
	margin-top: 10px;
}

.benefit .section_space .container .list_box {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 100px;
	margin-top: 90px;
}

.benefit .section_space .container .list_box .list_item {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 0 0 0 4%;
}
.benefit .section_space .container .list_box .list_item.reverse {
	display: flex;
	flex-direction: row-reverse;
	padding: 0 4% 0 0;
}

.benefit .section_space .container .list_box .list_item .benefit_image_area {
	width: 40%;
	z-index: 1;
}

.benefit .section_space .container .list_box .list_item .benefit_image_area img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	aspect-ratio: 2 / 1.3;
	object-fit: cover;
	object-position: center;
}

.benefit .section_space .container .list_box .list_item .content_area {
	width: calc(60% + 60px);
    background-color: #fff;
    border-radius: 40px 0 0 40px;
    padding: 70px 100px;
    position: relative;
    margin-left: -60px;
    z-index: 0;
}
.benefit .section_space .container .list_box .list_item.reverse .content_area {
	border-radius: 0 40px 40px 0;
	margin-left: 0px;
	margin-right: -60px;
}

.benefit .section_space .container .list_box .list_item .content_area .benefit_number {
	position: absolute;
	font-size: 12.291666vw;
	color: #F3F7F9;
	top: 0;
	right: 0;
}

.benefit .section_space .container .list_box .list_item .content_area .benefit_number {
	position: absolute;
	font-size: 12.291666vw;
	color: #F3F7F9;
	top: 20px;
	right: 80px;
	z-index: 0;
}

.benefit .section_space .container .list_box .list_item .content_area .heading {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.5694444vw;
    margin: 0;
    line-height: 1;
	color: #144280;
	letter-spacing: 2px;
}

.benefit .section_space .container .list_box .list_item .content_area .heading::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #E8AC2F;
    border-radius: 50%;
    flex-shrink: 0;
	margin-top: 0px;
}

.benefit .section_space .container .list_box .list_item .content_area .heading::after {
    content: "";
    display: block;
    width: 75px;
    height: 2px;
    background-color: #144280;
	margin-top: 0px;
}

.benefit .section_space .container .list_box .list_item .content_area .text_box {
    width: 100%;
	margin-top: 30px;
	padding: 0 0 0 25px;
	z-index: 1;
	position: relative;
}

.benefit .section_space .container .list_box .list_item .content_area .text_box h3 {
    color: #144280;
	font-size: 2.222222vw;
	font-weight: bold;
}

.benefit .section_space .container .list_box .list_item .content_area .text_box p {
	font-size: 1.25vw;
	font-weight: 500;
	margin-top: 30px;
	line-height: 2;
}








.factory {
	width: 100%;
	background-color: #1E5CA7;
	padding: 100px 0;
	overflow: hidden;
	border-radius: 0 120px 0 0;
}

.factory .top {
	width: 85%;
	max-width: 1240px;
	margin: 0 auto;
}

.factory .top .title_box {
	width: 100%;
	position: relative;
}

.factory .top .title_box .left {
	gap: 0px 0;
	z-index: 1;
}

.factory .top .title_box .left h2 {
	
   font-size: 130px;
	color: #fff;
	letter-spacing: 5px;
}

.factory .top .title_box .left h2 span{
	font-size: 130px;
	color: #fff;
	letter-spacing: 5px;
}

.factory .top .title_box .left p {
	font-size: 23px;
	font-weight: 400;
	color: #fff;
}

.factory .top .title_box .right_text {
	font-size: 248px;
    color: #195296;
    line-height: 1;
    margin-top: 0px;
    letter-spacing: 5px;
    position: absolute;
    top: 40px;
   right: -110px;
	z-index: 0;
}

.factory .top .list_box {
	width: 100%;
	flex-wrap: wrap;
	margin-top: 80px;
	gap: 50px 6%;
}

.factory .top .list_box .list_item {
	width: 47%;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.factory .top .list_box .list_item img {
	width: 100%;
	height: auto;
	aspect-ratio: 582 / 346;
	object-fit: cover;
}

.factory .top .list_box .list_item .text_box {
	width: 100%;
	padding: 30px;
}

.factory .top .list_box .list_item .text_box h3 {
	font-size: 23px;
	font-weight: 500;
}

.factory .top .list_box .list_item .text_box p {
	font-size: 15px;
	font-weight: 400;
	margin-top: 10px;
	line-height: 1.8;
}

.factory .staff {
	width: 92.5%;
	margin-left: auto;
	background-color: #fff;
	margin-top: 100px;
	border-radius: 160px 0 0 160px;
	padding: 80px 3% 80px 100px;
	position: relative;
}

.factory .staff .sub {
	position: absolute;
	font-size: 8.3333333vw;
	color: #E8EEF2;
	top: 95px;
	right: 20px;
	letter-spacing: 3px;
}

.factory .staff h2 {
	font-size: 100px;
    background-image: linear-gradient(to bottom, #154587, #0F2A4F);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 5px;
	font-size: 130px;
}

.factory .staff h2 span{
	font-size: 130px;
	color: #1c1c1c;
	letter-spacing: 5px;
}

.factory .staff p {
	font-size: 23px;
	font-weight: 400;
	color: #1c1c1c;
}

.factory .staff .flex {
	width: 100%;
	align-items: center;
	margin-top: 20px;
	gap: 50px;
}

.factory .staff .flex .text_box {
	padding: 0 20px;
}

.factory .staff .flex .text_box h3 {
	font-size: 25px;
	font-weight: bold;
	display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    line-height: 1;
}

.factory .staff .flex .text_box h3::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-color: #E8AC2F;
    border-radius: 50%;
    flex-shrink: 0;
	margin-top: 5px;
}

.factory .staff .flex .text_box h3::after {
    content: "";
    display: block;
    width: 75px;
    height: 1px;
    background-color: #1C1C1C;
	margin-top: 5px;
}

.factory .staff .flex .text_box p {
	font-size: 16px;
	font-weight: 400;
	line-height: 2.2;
	margin-top: 40px;
}

.factory .staff .flex .img_box {
	width: 38%;
}

.factory .staff .flex .img_box img {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 1.5;
	object-fit: cover;
	border-radius: 30px;
}

.factory .staff .flex .img_box p {
	font-size: 25px;
	font-weight: bold;
	margin-top: 15px;
	text-align: center;
}

.flow {
	width: 100%;
	padding: 100px 0;
}

.flow .section_space {
	width: 85%;
	max-width: 1240px;
	margin: 0 auto;
}

.flow .section_space .container {
	width: 100%;
}

.flow .section_space .container h2 {
	font-size: 100px;
    background-image: linear-gradient(to bottom, #154587, #0F2A4F);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 5px;
	font-size: 130px;
	text-align: center;
}

.flow .section_space .container h2 span{
	font-size: 130px;
	color: #1c1c1c;
	letter-spacing: 5px;
}

.flow .section_space .container p {
	font-size: 23px;
	font-weight: 400;
	color: #1c1c1c;
	text-align: center;
}

.step-container {
	width: 100%;
    display: flex;
    justify-content: center;
    gap: 3.333333%;
    margin: 60px auto 0;
    flex-wrap: wrap;
}

.step-card {
    background-color: #E8EEF2;
    border-radius: 15px;
    padding: 80px 20px 30px;
    width: 22.5%;
    position: relative;
    text-align: center;
    margin-top: 40px;
}

.step-header {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background-color: #E8EEF2;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
	padding-top: 20px;
}

.step-label {
    font-size: 20px;
    font-weight: bold;
    color: #E8AC2F;
    margin-bottom: 2px;
}

.step-number {
    font-size: 36px;
    font-weight: bold;
    color: #E8AC2F;
}

.step-card img {
    width: 120px;
    height: 120px;
	position: relative;
	z-index: 5;
}

.step-title {
    font-size: 32px;
    font-weight: bold;
    color: #143D6E;
    margin-top: 30px;
}

.step-desc {
    font-size: 13px !important;
    line-height: 1.6;
    margin-top: 30px;
    text-align: center;
}

.flow .section_space .container .under_box {
	width: fit-content;
	background-color: #fff;
	border: solid 2px #D7AB50;
	padding: 20px 50px;
	margin: 90px auto 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.flow .section_space .container .under_box p {
	font-size: 16px;
	font-weight: 500;
	text-align: left;
}


.access {
	width: 100%;
	border-radius: 0 120px 0 0;
	margin-top: 0px;
}

.access .section_space {
	width: 100%;
	background-color: #EEEFF2;
	border-radius: 0 130px 0 0;
	padding: 90px 150px 120px 150px;
	position: relative;
}

.access .section_space .container {
	width: 100%;
}

.access .title_box {
	width: 100%;
}

.access .title_box .left {
	gap: 0px 0;
	z-index: 1;
}

.access .title_box .left h2 {
	font-size: 100px;
    background-image: linear-gradient(to bottom, #154587, #0F2A4F);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 5px;
	font-size: 130px;
}

.access .title_box .left h2 span{
	font-size: 130px;
	color: #1c1c1c;
	letter-spacing: 5px;
}

.access .title_box .left p {
	font-size: 23px;
	font-weight: 400;
	color: #1c1c1c;
}

.access .title_box .right_text {
	font-size: 190px;
	color: #F9F9F9;
	line-height: 1;
    margin-top: 0px;
	letter-spacing: 5px;
	position: absolute;
	top: 62px;
    left: 120px;
}

.access .info {
	width: 100%;
	margin-top: 50px;
}

.access .info iframe {
	width: 55%;
	height: auto;
	aspect-ratio: 2 / 1.2;
}

.access .info .info_box {
	width: 45%;
	color: #1c1c1c;
	gap: 40px 0;
	padding-left: 50px;
	padding-top: 50px;
}

.access .info .info_box .box_item {
	width: 100%;
	display: flex;
    align-items: baseline;
}

.access .info .info_box .box_item .title {
	width: 30%;
	font-size: 17px;
}

.access .info .info_box .box_item .text {
	width: 75%;
	font-size: 17px;
	line-height: 30px;
	letter-spacing: 0.5px;
}






/* page */

.page_box {
	width: 100%;
	margin-top: 80px;
	padding: 100px 0;
	background-color: #edeef1;
}

.page_box .section_space {
	width: 85%;
	margin: 0 auto;
	max-width: 1240px;
}

.page_box .section_space .container {
	width: 100%;
}

.page_box .section_space .container .title_box {
	width: 100%;
}

.page_box .section_space .container .title_box h2 {
	font-size: 130px;
	background-image: linear-gradient(to bottom, #154587, #0F2A4F);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	letter-spacing: 5px;
}

.page_box .section_space .container .title_box h2 span {
	font-size: 130px;
	background-clip: text;
	-webkit-background-clip: text;
	color: #1c1c1c;
	letter-spacing: 5px;
}

.page_box .section_space .container .title_box p {
	font-size: 22px;
	font-weight: 400;
	margin-top: -10px;
}

.company-info {
    background-color: #fff;
    width: 100%;
    max-width: 1000px;
    padding: 30px 60px 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	border-radius: 5px;
	margin: 60px auto 0;
}

.info-row {
    display: flex;
    align-items: center;
    width: 100%;
	align-items: stretch;
}

.info-row .left {
    width: 200px;
	border-bottom: 1px solid #326EB7;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	padding: 30px;
}

.info-row .right {
    flex: 1;
	border-bottom: 1px solid #D8D8D8;
	padding: 30px 60px;
	display: flex;
	align-items: center;
}

.info-term {
    font-weight: 500;
    margin: 0;
	line-height: 1.8;
}

.info-desc {
    margin: 0;
    line-height: 1.8;
}



.page_box .access_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 40px 3.5%;
	padding: 0 30px;
	margin-top: 70px;
}

.page_box .access_list .list_item {
	width: 31%;
	background-color: #fff;
	border-radius: 16px;
}

.page_box .access_list .list_item img {
	width: 100%;
	height: auto;
	aspect-ratio: 364 / 248;
	object-fit: cover;
		border-radius: 16px 16px 0 0;
}

.page_box .access_list .list_item .contents {
	width: 100%;
	padding: 40px 30px 30px;
}

.page_box .access_list .list_item .contents .text_flex {
	align-items: center;
	gap: 20px;
}

.page_box .access_list .list_item .contents .text_flex .al {
	font-size: 20px;
	color: #E8AC2F;
	margin-top: 5px;
}

.page_box .access_list .list_item .contents .text_flex .ja {
	font-size: 25px;
	font-weight: 500;
}

.page_box .access_list .list_item .contents .tel {
	font-size: 22px;
	font-weight: bold;
	color: #154587;
	margin-top: 25px;
}

.page_box .access_list .list_item .contents .address {
	font-size: 15px;
	font-weight: 400;
	margin-top: 10px;
	line-height: 1.6;
	letter-spacing: 0.5px;
}

.page_box .access_list .list_item .contents .more {
	font-size: 14px;
	color: #154587;
	font-weight: 500;
	margin-top: 10px;
	margin-left: auto;
	display: table;
	text-decoration: underline 1px #154587; 
}

.pricing-table {
    margin: 80px auto 60px;
  }

  /* 注釈テキスト */
  .pricing-note {
    text-align: right;
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
  }

  /* --- 各行のラップ --- */
  .price-row {
    display: flex;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    min-height: 100px; /* 最低の高さ */
  }
  
  /* --- 左側：コース名 --- */
  .course-name {
    background-color: #427198; /* 画像の青色 */
    color: #fff;
    width: 35%; /* 左側の幅 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0; /* 幅を縮めない */
  }

.course-time{
	margin-top: 7px;
}

  /* 最後の行だけグレーにする */
  .course-name.is-gray {
    background-color: #7a8697;
  }

  .course-time span {
    display: block;
    font-size: 15px;
    margin-top: 5px;
    font-weight: 500;
    opacity: 0.9;
  }

  /* --- 右側：料金詳細エリア --- */
  .price-details {
    width: 65%; /* 右側の幅 */
    display: flex;
    /* デフォルトは横並び */
  }

  /* 右側の列（カラム） */
  .price-col {
    flex: 1; /* 等分にする */
    display: flex;
    flex-direction: column;
    border-left: 1px solid #ddd; /* 列の区切り線 */
  }
  /* 最初の列の左線は消す（親枠と被るため） */
  .price-details .price-col:first-child {
    border-left: none;
  }

  /* ヘッダー部分（薄い青） */
  .col-head {
    background-color: #eef4fa;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #ddd;
    height: 46px; /* 高さ固定 */
    display: flex;
    align-items: center;
    justify-content: center;
	font-size: 20px;
  }

  /* 価格部分（白） */
  .col-body {
    background-color: #fff;
    padding: 15px;
    flex-grow: 1; /* 残りの高さを埋める */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }

  /* 価格の数字装飾 */
  .price-text {
    font-size: 20px;
  }
  .tax-note {
    font-size: 13px;
    margin-left: 3px;
	margin-top: 2px;
  }
  .small-note {
    font-size: 13px;
  }

  /* 特殊パターン：ヘッダーがなく全体が白い場合（教育コースなど） */
  .price-col.full-height {
    background-color: #fff;
  }
  .price-col.full-height .col-body {
    height: 100%;
    padding: 0;
  }







/* footer */

.footer {
	width: 100%;
	background-color: #303030;
	padding: 85px 0;
}

.footer .space {
	width: 85%;
	margin: 0 auto;
}

.footer .space .container {
	width: 100%;
}

.footer .space .container .logo {
	width: 100px;
	display: block;
}

.footer .space .container .logo img {
	width: 100%;
	height: auto;
}

.footer .space .container .right_box {
	color: #fff;
}

.footer .space .container .right_box .footer_menu {
	gap: 0 30px;
}

.footer .space .container .right_box .footer_menu a {
	font-size: 14px;
	color: #fff;
}

.footer .space .container .right_box .copyright {
	font-size: 12px;
	margin-top: 25px;
}




