@charset "utf-8";
/* =========================================================
	PC STYLE (width >= 768px)
	* Indent: tabs
========================================================= */


.pconly{
	display:none!important;
}
.sponly{}

.ta_c{
	text-align:center;
	width:100%;
	margin-top: 30px;
}
/* ------------------------------
	Header
------------------------------ */
body{
	font-family: 'Noto Sans JP', 'Lato', sans-serif;
	line-height: 1.6;
	letter-spacing: 0.05em;
	background: #d8ebf9;
	color:#222222;
}

.btn-style01::after,
.btn-style02::after {
	transition: transform 0.3s ease, background 0.3s ease;
}

.btn-style01:hover::after,
.btn-style02:hover::after {
	transform: translateX(3px); /* → マウスオーバーで矢印が少し右へ */
}
header a:hover,
.fnav li a:hover{
	text-decoration: underline;
}
a,
a:hover{
	color:#051551;
}

main{
	padding: 0px 0 0px 0;
}

main a{
	color:#199af8;
}

.header {
	margin: 15px 0;
	position: absolute;
	width: 100%;
	/* position: fixed; */
}

.h_inner {
	display: flex;
	justify-content: space-between;
	margin:0px auto;
	/* padding: 0 50px; */
	width: calc(100% - 40px);
	align-items: center;
}

.h_logo {
    display: block;
    /* width: 11%; */
    min-width: 180px;
}

.h_logo img {
	max-width: 190px;
}

.header_logo {display: block;}

/* メニュー本体 */
.gnav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(5,21,81,0.8);
	backdrop-filter: blur(15px);
	opacity: 0;
	visibility: hidden;
	padding-top: 60px;
	/* position: relative; */
	transition: opacity .3s ease;
	z-index: 100;
	display: flex;
	/* flex-wrap: wrap; */
	flex-flow: column-reverse;
	justify-content: flex-end;
}

.gnav.active {
	opacity: 1;
	visibility: visible;
}

.gnav_list01,
.gnav_list02 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.gnav_list01 li,
.gnav_list02 li {
	/* margin: 15px 0; */
}

.gnav_list01 li a,
.gnav_list02 li a {
	color: #fff;
	font-size: 16px;
	display: block;
	padding: 0 0 10px 0;
	text-decoration: none;
}
body.noscroll {
	overflow: hidden;
}


.kv{
	/* border-radius: 0px 0px 100px 0px; */
	overflow: hidden;
	text-align: justify;
}

.kv_inner{
	position: relative;
	z-index: -1;
	display: flex;
	flex-direction: column-reverse;
}

.kv_copy{
	position: relative;
	bottom: 70px;
	left: 0;
	background: #d8ebf9;
	padding: 7vw 0px 0px 0px;
	/* max-width: 745px; */
	border-radius: 0 70px 0 0;
	z-index: 9999;
	/* width: calc(100% - 60px); */
	margin:0px auto;
	width: 100%;
}

.kv_copy:before{
	content:"";
	width: 70px;
	height: 70px;
	display:block;
	background:#d8ebf9;
	position: absolute;
	left: 0px;
	top: -70px;
	-webkit-mask: radial-gradient(circle at 50px 0, transparent 50px, black 0);
	mask: radial-gradient(circle at 70px 0, transparent 70px, black 0%);
}
.kv_copy:after{
	/* content:""; */
	width: 70px;
	height: 70px;
	display:block;
	background:#d8ebf9;
	position: absolute;
	right: -70px;
	bottom:0;
	-webkit-mask: radial-gradient(circle at 70px 0, transparent 70px, black 0);
	/* mask: radial-gradient(circle at 70px 0, transparent 70px, black 0%); */
}

.kv_title{
	display: flex;
	/* margin-bottom: 40px; */
	color:#051551;
	/* height: 100%; */
	gap: 20px;
	flex-flow: nowrap;
	justify-content: space-between;
	margin: 0px auto 21px auto;
	width: calc(100% - 60px);
	align-items: center;
}

.kv_logo{
	width: 20%;
	/* margin-right: 28px; */
}

.kv_msg{
	font-size: 7vw;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.05em;
	white-space: nowrap;
	width: 80%;
}

.kv_msg span{
	color:#199af8;
}

.kv_lead{
	font-size: 16px;
	line-height: 1.7;
	margin-right: 21px;
	margin: 0px auto;
	/* width: 100%; */
	width: calc(100% - 60px);
	text-align: justify;
}


.kv_image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom, 
		rgba(255, 255, 255, 0.4) 0%,
		rgba(255, 255, 255, 0) 37%
	);
	pointer-events: none;
	z-index: 9998;
}
.kv_image {
	position: relative;
	height: 60vh;
	overflow: hidden;
}

.kv_image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.5s ease;
}

.kv_image img.active {
	opacity: 1;
	z-index: 1;
}



.btn-style01 {
	/* ボタン */
	background: #199af8;
	color: #fff;
	border-radius: 50px;
	padding: 18px 60px 18px 32px;
	display: inline-block;
	font-weight: 600;
	min-width: 200px;
	line-height: 1.4;
	text-align: left;
	position:relative;
	border: 2px solid #199af8;
}
.btn-style01:after {
	content:"";
	width: 10px;
	height: 13px;
	display:inline-block;
	background:url("../images/arrow_white.png") center center no-repeat;
	background-size: 8px;
	margin-right: 2px;
	position:absolute;
	right:20px;
	top: calc(50% - 7px);
}

.btn-style01:hover {
	background: #fff;
	color: #199af8;
}

.btn-style01:hover:after {
	content:"";
	width: 10px;
	height: 13px;
	display:inline-block;
	background:url("../images/arrow_blue.png") center center no-repeat;
	background-size: 8px;
	margin-right: 2px;
	position:absolute;
	right:20px;
	top: calc(50% - 7px);
}





.btn-style02 {
	/* ボタン */
	background: #fff;
	color: #199af8;
	border-radius: 50px;
	padding: 18px 60px 20px 32px;
	display: inline-block;
	font-weight: 600;
	min-width: 240px;
	line-height: 1.4;
	position:relative;
	border: 2px solid #fff;
}
.btn-style02:after {
	content:"";
	width: 10px;
	height: 13px;
	display:inline-block;
	background:url("../images/arrow_blue.png") center center no-repeat;
	background-size: 8px;
	margin-right: 2px;
	position:absolute;
	right:20px;
	top: calc(50% - 7px);
}

.btn-style02:hover {
	background: #199af8;
	color: #fff;
}

.btn-style02:hover:after {
	content:"";
	width: 10px;
	height: 13px;
	display:inline-block;
	background:url("../images/arrow_white.png") center center no-repeat;
	background-size: 8px;
	margin-right: 2px;
	position:absolute;
	right:20px;
	top: calc(50% - 7px);
}

/* ------------------------------
What is A2 Milk?
------------------------------ */
.whats-a2 {
    margin-bottom: 80px;
}

.sep02_01-box {
	display: flex;
	/* 必要に応じて gap や justify-content などを後で追加 */
	max-width: 1600px;
	/* margin:0px auto; */
	/* width: 100%; */
	justify-content: space-between;
	flex-wrap: wrap;
	width: calc(100% - 60px);
	margin: 0px auto;
}

.sep02_01-left {
	/* 左の画像エリア */
	width: 100%;
	border-radius: 50px;
	overflow: hidden;
}

.sep02_01-left img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sep02_01-right {
	/* 右のテキストエリア */
	width: 100%;
	padding-top: 20px;
}

.section_ruby {
	/* 英語のサブタイトル */
	font-size: 16px;
	font-family: 'Lato';
	font-weight: 500;
	font-style: italic;
	color: #199af8;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}

.section_ruby:before{
	content:"";
	width: 11px;
	height: 11px;
	display:inline-block;
	background:url("../images/dotted.png") center center no-repeat;
	background-size: 4px;
	margin-right: 1px;
}

.section_title {
	/* 見出し */
	font-size: 30px;
	font-weight: 600;
	color: #051551;
	margin-bottom: 25px;
	line-height: 1.3;
}

.sep02_01-box .section_text {
	/* 本文 */
	font-size: 16px;
	line-height: 2.1;
	margin-bottom: 40px;
	text-align: justify;
}


/* ------------------------------
About the Japan A2 Milk Association
------------------------------ */

.about-a2{
	background:#fff;
	padding: 80px 0;
}


.sep02_02-box {
	display: flex;
	/* 必要に応じて gap や justify-content などを後で追加 */
	max-width: 1600px;
	margin: 0px auto 75px auto;
	/* width: calc(100% - 120px); */
	justify-content: space-between;
	align-items: center;
	gap: 35px;
	width: calc(100% - 60px);
}


@media (max-width: 1199px) {
	.sep02_02-box {
		flex-flow: wrap;
	}
	.sep02_02-left {
		/* width:100%!important; */
	}
	.sep02_02-right {
	    padding-top: 0px!important;
	    width: 100%!important;
	    /* text-align: center!important; */
	}
	.sep02_02-box .section_text{
		margin-bottom: 5px!important;
	}

}
.sep02_02-left {
	/* 左の画像エリア */
	width: 100%;
	/* border-radius: 50px; */
	overflow: hidden;
	display: flex;
	justify-content: left;
	gap: 40px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.sep02_02-left img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sep02_02-right {
	/* 右のテキストエリア */
	/* width: 20%; */
	padding-top: 20px;
	text-align: left;
	/* min-width: 330px; */
}


.sep02_02-box .section_text {
	/* 本文 */
	font-size: 16px;
	line-height: 2.4;
	margin-bottom: 40px;
	text-align: justify;
}

.about_logo{
	width: 16vw;
	/* min-width: 190px; */
	/* max-width: 225px; */
	margin:0px auto;
	display: none;
}

.about_logo img{}

.about_msg{
	width: 100%;
}



.slider01-box {
	overflow: hidden;
	width: 100%;
}

.slider01 {
	display: flex;
	width: max-content; /* 中の要素幅に合わせて伸びる */
	animation: slide-left 40s linear infinite; /* ←スピード調整 */
}

.slider01 li {
	flex: 0 0 500px; /* 幅固定にする */
}

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

/* アニメーション本体 */
@keyframes slide-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.casein{
	background:#fff;
}





/* ------------------------------
β-Casein Testing
------------------------------ */
.casein {
	padding-bottom: 80px;
	overflow-x: hidden;
}

.sep02_03-box {
	display: flex;
	justify-content: space-between;
	max-width: 1600px; /* ←テキスト側の基準はこの幅 */
	margin: 0 auto;
	/* width: calc(100% - 120px); */
	gap: 60px;
	/* align-items: center; */
	flex-wrap: wrap;
	width: calc(100% - 60px);
}

/* 左のテキスト側 */
.sep02_03-left {
	/* width: 630px; */
	/* padding-top: 80px; */
}

.sep02_03-left img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sep02_03-right {
	width: 100%;
	/* padding-top: 20px; */
	margin-right: 0;
}

.sep02_03-right img {
	display: block;
	width: 100%;
	height: 100%;
	/* max-height: 620px; */
	object-fit: cover;
	border-radius: 50px; /* ←角丸デザイン用（不要なら消してOK）*/
}
@media (min-width: 1199px) {
	.sep02_03-right {
		margin-right: calc(-1 * (140% - 1200px) / 2);
	}
}

/* 1600px未満では計算値がマイナスになるので0に戻す */
@media (max-width: 1200px) {
	.sep02_03-right {
		margin-right: 0;
	}
}


.sep02_03-box .section_text {
	/* 本文 */
	font-size: 16px;
	line-height: 2.4;
	text-align: justify;
	margin-bottom: 40px;
}


/* ------------------------------
information
------------------------------ */

.information {
/* セクション全体 */margin: 80px 0 0px 0;}

.information-box {
/* セクションのコンテナ */display: flex;max-width: 1600px;margin: 0px auto 0px auto;width: calc(100% - 60px);/* justify-content: space-between; *//* align-items: center; */flex-wrap: wrap;}

.information-inner {
	/* 販売先一覧の記事ブロック */
	background: #fff;
	border-radius: 50px;
	padding: 35px 40px 35px 40px;
	width: 100%;
	margin-bottom: 30px;
}

.information-ttl {
/* タイトル部分のラッパー（左右に分割） */
	display: flex;
	justify-content: space-between;
	align-items: center;
}



.information-box .section_text {
	/* 本文 */
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 0px;
	text-align: justify;
}


/* ------------------------------
	News Section
------------------------------ */

.news {
	/* セクション全体 */
	margin-bottom: 50px;
}

.news-box {
	/* セクションのコンテナ */
	display: flex;
	max-width: 1600px;
	margin: 0px auto 0 auto;
	width: calc(100% - 60px);
	justify-content: space-between;
	/* align-items: center; */
	background: #fff;
	border-radius: 50px;
	padding: 35px 40px 35px 40px;
	flex-wrap: wrap;
}

.news-left {
	/* 左側の見出しエリア */
	width: 100%;
	min-width: 200px;
	margin-bottom: 10px;
	/* margin-top: 21px; */
}



.linkmore {
	/* 「新着情報一覧」リンク */
}

.news-right {
	/* 右側のリスト（ul） */
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.news_item {
	/* 各ニュースの項目（li） */
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
	padding-top: 20px;
	display: flex;
	justify-content: left;
	/* gap: 20px; */
	align-items: flex-start; /* ← これで高さをそろえない */
	flex-wrap: wrap;
}

.news-right li:last-child {
	border-bottom: none!important;
}

.news_date {
	/* 日付 */
	margin-bottom: 15px;
	margin-right: 15px;
}

.news_tag {
	/* タグ */
	border: 1px solid #199af8;
	border-radius: 50px;
	padding: 3px 10px 4px 10px;
	color: #199af8;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	min-width: 110px;
	display: inline-block;
}

.news_title {
	/* タイトルリンク */
}

.news .section_title {
	/* 見出し */
	font-weight: 500;
}

.information .section_title {
	/* 見出し */
	font-weight: 500;
}

/* ------------------------------
contact
------------------------------ */

section.contact{
	color:#fff;
}

section.contact .section_ruby{
	color:#fff;
}

section.contact .section_ruby:before{
	content:"";
	width: 15px;
	height: 15px;
	display:inline-block;
	background:url("../images/dotted_white.png") center center no-repeat;
	background-size: 6px;
	margin-right: 2px;
}

.contact-box{
	display: flex;
	max-width: 1600px;
	margin: 0px auto 0 auto;
	/* width: calc(100% - 60px); */
	justify-content: space-between;
	align-items: center;
	background: #199af8;
	/* border-radius: 50px; */
	padding: 35px 40px 35px 40px;
	flex-wrap: wrap;
}

section.contact .section_title {
	/* 見出し */
	font-size: 30px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 12px;
	/* min-width: 256px; */
}

.contact_ttl{
	width: 100%;
	/* min-width: 256px; */
}

.contact_text{
	line-height: 2.2;
	width: 100%;
	font-size: 18px;
	margin-bottom: 40px;
	text-align: justify;
}

.contact_btn{
    /* min-width: 290px; */
    text-align: center;
    width: 100%;
}


.footer{
	background: #051551;
	padding: 50px 0;
	color:#fff;
	/* margin: 35px 0; */
	position: absolute;
	width: 100%;
}

.footer-box{
	display: flex;
	justify-content: space-between;
	color: #fff;
	font-size: 14px;
	/* display: flex; */
	/* justify-content: space-between; */
	margin: 0px auto;
	/* padding: 0 50px; */
	flex-wrap: wrap;
	/* width: calc(100% - 60px); */
}

.footer a{
	color:#fff;
}
.footer_logo{
    /* width: 60%; */
    margin: 0px auto 40px auto;
    width: calc(60% - 60px);
}

.footer_logo a{}

.fnav{
    width: 100%;
}

.fnav_list01{
    display: flex;
    margin-bottom: 5px;
    justify-content: right;
    flex-wrap: wrap;
}

.fnav_list02{
    display: flex;
    justify-content: right;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.fnav li{
	/* text-decoration: underline; */
	/* margin-left: 40px; */
	white-space: nowrap;
	/* margin-bottom: 15px; */
}

.fnav li a:hover{
	text-decoration: underline;
}

.footer_copy{
    text-align: center;
    margin: 0px auto;
    padding: 0 50px;
}

.footer-box {
	flex-direction: column;
	align-items: center;
	/* padding: 40px 20px; */
	text-align: center;
}

.footer_logo {
	margin-bottom: 30px;
}

.fnav_list01,
.fnav_list02 {
	display: block; /* 横並びを解除して縦にする */
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}

.fnav_list01 li,
.fnav_list02 li {
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

.fnav_list01 li a,
.fnav_list02 li a {
	display: block;
	padding: 15px 30px;
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	position: relative;
	text-align: left;
}

.fnav_list01 li a::before,
.fnav_list02 li a::before {
	content:"";
	width: 10px;
	height: 13px;
	display:inline-block;
	background:url("../images/arrow_white.png") center center no-repeat;
	background-size: 8px;
	margin-right: 2px;
	position:absolute;
	right: 30px;
	top: calc(50% - 7px);
}

.footer_copy {
	margin-top: 30px;
	text-align: center;
	font-size: 12px;
	line-height: 1.8;
}











/* ハンバーガーボタン */
.menu-btn {
	position: fixed;
	width: 30px;
	height: 22px;
	border: none;
	background: none;
	cursor: pointer;
	z-index: 999; /* メニューより上に表示 */
	right: 20px;
}

.menu-btn span {
	display: block;
	width: 100%;
	height: 3px;
	background: #051551;
	border-radius: 2px;
	margin-bottom: 6px;
	transition: all 0.3s ease;
}

.menu-btn span:last-child {
	margin-bottom: 0;
}

/* ボタンを開いた状態 */
.menu-btn.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);background: #fff; /* 白くする */
}
.menu-btn.active span:nth-child(2) {
	opacity: 0;
}
.menu-btn.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);background: #fff; /* 白くする */
}














#sub .kv .kv_image {
	position: relative;
	height: 320px;
	overflow: hidden;
}

#sub .kv .kv_title{
	display: flex;
	margin-bottom: 0;
	color:#051551;
	gap: 0;
	flex-flow: wrap;
	flex-direction: column;
	align-items: baseline;
}

#sub .kv .section_title {
	/* 見出し */
	font-size: 38px;
	font-weight: 600;
	color: #051551;
}

#sub .kv .kv_copy{
	background:#fff;
}


#sub .kv .kv_copy:before{
	background:#fff;
}
#sub .kv .kv_copy:after{
	background:#fff;
}

#sub main{
	background:#fff url("../images/logo_grey.png") no-repeat;
	background-size: 80%;
	background-position: right -11vw top 0vw;
	padding: 0px 0 0px 0;
}

.bg_blue{
	background: #d8ebf9;
}

.pd150{
	/* padding: 0; */
	/* margin-top: 60px; */
	padding: 60px 0;
	margin-top: 80px;
}

.sub-nav{
	padding: 0 0 50px 0;
	width: calc(100% - 60px);
	margin:0px auto;
}

.sub-nav-box{
    margin:0px auto;
    display: flex;
    justify-content: center;
    /* gap: 35px; */
    /* flex-flow: column; */
    justify-content: space-between;
    flex-wrap: wrap;
}

.p-list{
    width: calc(100% - 120px);
    margin:0px auto;
    padding-bottom: 60px;
    display: none;
}

.p-list-box{
    font-size: 12px;
    display: flex;
    justify-content: right;
}

.p-list-box li{}

.p-list-box li a{
	transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    gap: 6px;
    font-weight: 600;
    margin-right: 8px;
}

.p-list-box li a:after{
	content:">";
	display:block;
}
.sub-nav-box li {
	width: 100%;
	margin-bottom: 15px;
}

.sub-nav-box li a{
	transition: color 0.3s ease, transform 0.3s ease;
	display: flex;
	align-items: center;
	font-weight: 600;
	color: #051551;
	gap: 8px;
}
.sub-nav-box li a {
	display: flex;
	align-items: center;
	font-weight: 600;
	color: #051551;
	font-size: 14px;
	gap: 10px;
	transition: color 0.3s ease, transform 0.3s ease;
	/* white-space: nowrap; */
}

.sub-nav-box li a::before {
	content:"";
	width: 25px;
	height: 25px;
	display:inline-block;
	background:#fff url("../images/arrow_blue.png") center center no-repeat;
	background-size: 5px;
	margin-right: 3px;
	border:1px solid #199af8;
	border-radius:50px;
	transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.sub-nav-box li a:hover,
.sub-nav-box li.active a {
	color: #199af8;
}

.sub-nav-box li a:hover::before,
.sub-nav-box li.active a::before {
	background-color:#199af8;
	background-image:url("../images/arrow_white.png");
	border-color:#199af8;
	transform: translateX(3px);
}




.sub-boxstyle01{
        padding: 0 0 0px 0;
        width: calc(100% - 60px);
        margin: 0px auto;
        max-width: 1200px;
}

.sub-title{
    text-align: center;
    margin-bottom: 40px;
}

.sub-section_ruby {
	font-size: 16px;
	font-family: 'Lato';
	font-weight: 500;
	font-style: italic;
	color: #199af8;
	letter-spacing: 0.05em;
	text-align: center;
}

.sub-section_title {
	font-size: 30px;
	font-weight: 600;
	color: #051551;
	margin-bottom: 25px;
}


.sub-sep02-box01{
	display: flex;
	gap: 40px;
	margin-bottom: 60px;
	flex-flow: column-reverse;
}
.sub-sep02-box01-left{
	width: 70%;
	overflow: hidden;
	margin:0px auto;
}
.sub-sep02-box01-right{
	width: 100%;
	padding-top: 16px;
}
.sub-sep02-box02{
	display: flex;
	gap: 40px;
	margin-bottom: 60px;
	flex-flow: column;
}
.sub-sep02-box02-right{
	width: 70%;
	overflow: hidden;
	margin:0px auto;
}
.sub-sep02-box02-left{
	width: 100%;
	padding-top: 16px;
}

.sub-sep02-box01-left img,
.sub-sep02-box02-right img,
.sub-sep02-box03-left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50px;
}

.sub-sep02-box03{
	display: flex;
	gap: 40px;
	margin-bottom: 60px;
	flex-flow: column-reverse;
}
.sub-sep02-box03-left{
	width: 70%;
	overflow: hidden;
	margin:0px auto;
}
.sub-sep02-box03-right{
	width: 100%;
	padding-top: 16px;
}

.sub-h3title{
	font-size: 22px;
	font-weight: 600;
	color: #1896f3;
	padding-bottom: 10px;
	margin-bottom: 26px;
	border-bottom: 1px solid #d0d0d0;
	position: relative;
	text-align: justify;
}
.sub-h3title:after{
	content:"";
	border-bottom: 1px solid #1896f3;
	display:block;
	width: 4em;
	position: absolute;
	bottom: -1px;
	left: 0;
}

.sub-text01{
	font-size: 16px;
	line-height: 2;
	text-align: justify;
}

.atnbox{
	font-size:12px;
}

#sub .kv_inner{
	background:#fff;
}


.sub-name{
	margin-top:20px;
	font-size:12px;
	text-align:center;
}

.sub-name strong{
	font-size:16px;
	display:block;
	color:#051551;
}

.video-wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%; 
}

.video-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.sub-column1-box01{
	margin-bottom: 60px;
}



.caption-box{
	font-size:18px;
	line-height:2.1;
	text-align:center;
	margin-bottom: 60px;
}

.small-sep2-box{
	background: #fff;
	border-radius: 50px;
	padding: 35px 40px 25px 40px;
	display: flex;
	/* justify-content: space-between; */
	gap: 25px;
	flex-flow: column-reverse;
}

.small-sep2-box-left{
	width: 100%;
}

.small-sep2-box-right{width: 100%;}

.list-style01{display: flex;justify-content: space-between;width: 100%;gap: 25px;}

.list-style01 li{
	margin-bottom: 20px;
	width: 50%;
}

.list-style02{
	font-size: 16px;
	margin-left: 1.5em;
}

.list-style02 li{
	list-style: disc;
	margin-bottom: 20px;
}

.h3style{
	font-weight: 600;
	font-size: 17px;
	color: #051551;
	margin-bottom: 20px;
	line-height: 1.7;
}

.mb30{
	margin-bottom:30px;
}

.has-sub{

}

.has-sub > a{display:none!important;}

.sub-menu{

}

.sub-menu li{

}






.profile-box{
	max-width: 1200px;
	margin:0px auto;
	width: calc(100% - 60px);
	display:flex;
	gap: 60px 0;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: column;
}

.profile-box div{}

.profile-box-left{
	border-radius: 50px;
	overflow: hidden;
	width: 80%;
	margin:0px auto;
	max-width: 300px;
}

.profile-box-left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-box-inner-left{
	display: flex;
	gap: 0px 35px;
	align-items: flex-start;
	width: 100%;
	justify-content: space-between;
	flex-wrap: wrap;
}

.profile-box-inner-right{
	display: flex;
	gap: 0px 35px;
	align-items: flex-start;
	width: 100%;
	justify-content: space-between;
	flex-wrap: wrap;
}

.profile-box .sub-section_ruby{
	font-size:16px;
}

.profile-box .sub-section_title{
	font-size:23px;
	margin-bottom: 16px;
}

.profile-box .sub-section_text{
	margin-bottom: 35px;
}

.profile-box-right{
	padding-top:15px;
	width: 100%;
	margin:0px auto;
	text-align: center;
}



html, body {
	height: 100%;
}
.modal-wrapper {
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 100vh;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.5);
}

.modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}
.modal-box {
	background: #fff;
	padding: 25px;
	border-radius: 15px;
	max-width: 900px;
	width: 92%;
	box-shadow: 0 15px 30px rgba(0,0,0,0.2);
	position: relative;
	margin: 0 auto;
	max-height: 94vh;       /* ← ここで高さを制限 */
	overflow-y: auto;       /* ← 中だけスクロール可能にする */
}

.modal-close-btn {
	position: absolute;
	top: 30px;
	right: 30px;
	background: transparent;
	/* font-size: 28px; */
	border: none;
	cursor: pointer;
	color: #199af8;
	font-weight: bold;
	width: 40px;
}

.modal-inner {
	display: flex;
	/* flex-direction: row; */
	/* gap: 28px 45px; */
	flex-wrap: wrap;
	justify-content: space-between;
}

.modal-image img {
	width: 300px;
	/* height: 220px; */
	object-fit: cover;
	border-radius: 30px;
}

.modal-text {
	/* flex: 1; */
	/* min-width: 250px; */
	width: 100%;
}

.modal-ruby {
	font-size: 16px;
	color: #199af8;
	margin-bottom: 5px;
}

.modal-name {
	font-size: 26px;
	margin: 0;
	color: #002050;
}

.modal-title {
	font-size: 16px;
	margin: 10px 0 20px;
	color: #333;
}

.modal-history {
	list-style: none;
	padding-left: 0;
	margin-bottom: 18px;
	font-size: 13px;
	line-height: 1.5;
}

.modal-desc {
	font-size: 14px;
	text-align: justify;
	line-height: 2.1;
}

.modal-box .sub-section_title{
	font-size: 24px;
	margin-bottom: 15px;
	text-align: center;
}

.smalltext{
	font-size: 12px;
	line-height: 2 !important;
	display: block;
}

.modal-image{
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}



















.sub-column4-box01{
	max-width: 1200px;
	margin:0px auto;
}
.sub-column4-box01 .sub-section_ruby{
	font-size: 14px;
	text-align: center;
}
.sub-column4-box01 .sub-section_title{
	font-size: 20px;
	/* white-space: nowrap; */
	text-align: center;
}
.join-icon{
	text-align: center;
	width: 80px;
	margin: 0px auto 20px auto;
}
.join-text{
	font-size: 14px;
	line-height: 1.8;
}
.list-style03{
	display: flex;
	justify-content: space-between;
	/* gap: 32px; */
	/* padding: 32px; */
	box-sizing: border-box;
	justify-content: space-between;
	flex-wrap: wrap;
}

.list-style03 li{
	background: #d8ebf9;
	border-radius: 40px;
	/* flex: 1; */
	padding: 30px 20px;
	text-align: justify;
	width: 100%;
	margin-bottom: 30px;
}

.caption-box02{
	margin-top: 20px;
	font-size: 16px;
	line-height: 1.8;
	text-align:center;
}


.sub-section_ruby02 {
	font-weight:600;
	font-size: 20px;
	color: #199af8;
	letter-spacing: 0.05em;
}

.w100 .sub-sep02-box01-right{
	width: 100%;
}

.sub-sep02-box01.w100{
	margin-bottom:50px;
}

strong{
	color:#051551;
}

.caption-box03{
	max-width:1000px;
	font-size:18px;
	line-height:2.1;
	text-align:left;
	margin:0px auto 40px auto;
}

.ft26{font-size:26px;}



.h4style{
	margin: 24px 0 10px 0;
	font-size:18px;
	font-weight:600;
	color:#051551;
}
table.table_style {
	border-collapse: collapse;
	width: 100%;
	/* font-size: 14px; */
}
table.table_style th,
table.table_style td {
	border: 2px solid #d8ebf9;
	padding: 8px;
	text-align: left;
	font-size: 14px;
}

table.table_style th{
	background-color: #d8ebf9;
	font-weight:600;
	color:#051551;
}




.sub-sep02-box04{
	display: flex;
	gap: 25px;
	margin-bottom: 80px;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
}
.sub-sep02-box04-left{
	width: 100%;
	padding-top: 16px;
}
.sub-sep02-box04-right{
	width: 30%;
	overflow: hidden;
	margin:0px auto;
}


.sub-sep02-box04-left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50px;
}

.pt60{padding-top:60px;}



.sub-news-box{
	margin:0px auto;
	width: calc(100% - 60px);
}

#sub .news-right{
	width:100%;
	padding-bottom:60px;
}

#sub .pagenavi{
	width:100%;
	margin:0px auto;
	text-align:center;
}




.form-table {
	width: 100%;
	border-collapse: collapse;
}
.form-table th {
	width: 30%;
	text-align: left;
	padding: 8px;
}
.form-table td {
	padding: 8px;
}
.form-table .required {
	color: red;
	font-weight: bold;
}
/* 共通のテキスト入力欄 */
.form-table input[type="text"],
.form-table input[type="email"],
.form-table input[type="tel"],
.form-table textarea{
	width: 100%;
	padding: 10px 12px; /* ←内側余白 */
	border: 1px solid #ccc; /* 枠線 */
	border-radius: 4px; /* 角丸 */
	box-sizing: border-box; /* padding込みでwidth計算 */
	font-size: 16px;
	line-height: 1.5;
}

.form-table select{
	min-width:20%;
	padding: 10px 25px 10px 12px; /* ←内側余白 */
	border: 1px solid #ccc; /* 枠線 */
	border-radius: 4px; /* 角丸 */
	box-sizing: border-box; /* padding込みでwidth計算 */
	font-size: 16px;
	line-height: 1.5;
}

/* フォーカス時の見た目 */
.form-table input:focus,
.form-table textarea:focus,
.form-table select:focus {
	border-color: #199af8; /* アクセントカラー */
	outline: none; /* デフォルトの青枠を消す */
	box-shadow: 0 0 5px rgba(25, 154, 248, 0.3); /* 軽い光 */
}

/* テキストエリアだけ高さを調整 */
.form-table textarea {
	min-height: 150px;
	resize: vertical; /* ユーザーが縦方向だけ伸縮可能 */
}

/* セレクトボックスも統一感を持たせる */
.form-table select {
	appearance: none; /* ブラウザのデフォルト矢印を消す（必要に応じて） */
	background: #fff url("data:image/svg+xml;utf8,<svg fill='%23999' height='20' width='20' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,10'/></svg>") no-repeat right 10px center;
	background-size: 10px;
}


/* 送信ボタンの共通デザイン */
.form-box input[type="submit"] {
	display: inline-block;
	padding: 12px 40px;
	border: none;
	border-radius: 50px;
	background: #199af8;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
}

/* ホバー時のエフェクト */
.form-box input[type="submit"]:hover {
	background: #147dc6;
	transform: translateY(-2px);
}

/* 押したとき */
.form-box input[type="submit"]:active {
	transform: translateY(0);
	background: #10649d;
}

/* 送信ボタン & 戻るボタン共通 */
.form-box input[type="submit"],
.form-box input[type="button"],
.form-box button {
	display: inline-block;
	padding: 12px 40px;
	border: none;
	border-radius: 50px;
	background: #199af8;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
	margin-right: 8px; /* ボタンの間の余白 */
}

/* ホバー時 */
.form-box input[type="submit"]:hover,
.form-box input[type="button"]:hover,
.form-box button:hover {
	background: #147dc6;
	transform: translateY(-2px);
}

/* 押したとき */
.form-box input[type="submit"]:active,
.form-box input[type="button"]:active,
.form-box button:active {
	transform: translateY(0);
	background: #10649d;
}

.formbtn-box{
	padding: 20px 0 60px 0;
	display: flex;
	gap: 20px;
	flex-direction: column-reverse;
	max-width: 1000px;
	margin: 0px auto;
	/* width: calc(100% - 60px); */
}

.formbtn-box li{
    display: flex;
    justify-content: center;
    padding-left: 48px;
}




.free-textbox{
	max-width: 1000px;
	font-size: 16px;
	line-height: 1.8;
	text-align: left;
	margin: 0px auto 40px auto;
}

.free-textbox h2{
	font-weight: 600;
}

.free-textbox p{
	margin-bottom: 20px;
}

.free-textbox ol{
	margin-bottom: 20px;
}

.free-textbox ol li{
	list-style: auto;
	margin-left: 1.2em;
}

.free-textbox ul{
	margin-bottom: 20px;
}

.free-textbox ul li{
	list-style: auto;
	margin-left: 1.2em;
}

.ta_r{
	text-align:right;
	margin-bottom: 20px;
}


.bg_blue .form-table{
	/* max-width:1000px; */
	/* margin:0px auto; */
	/* width: calc(100% - 60px); */
}

.bg_blue .form-table td{
	background:#fff;
}



.srch-box{
	max-width: 1000px;
	margin:0px auto;
	width: calc(100% - 120px);
}
.srch-box ul{
	display:flex;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 30px 0;
	justify-content: center;
	gap: 30px;
	align-items: center;
	flex-flow: column;
}

.srch-box ul li{
	width: 100%;
	text-align: center;
}

.srch_error{
	text-align:center;
	padding:20px;
}



.ml-list{
	margin:0px auto;
	width: calc(100% - 60px);
}

.ml-list li{
	list-style: disc;
	margin-left: 27px;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iOSスムーズスクロール */
}
.member-table {
  min-width: 600px; /* 列が多いときの最小幅 */
  width: 100%;
  border-collapse: collapse;
}
.member-table th,
.member-table td {
  padding: 8px;
  text-align: center;
  white-space: nowrap; /* 折り返さない方が見やすいときに */
}

.entryform-box{
	margin:0px auto;
	width: calc(100% - 60px);
}





.sub-sep02-box05{
	display: flex;
	/* gap: 50px; */
	/* margin-bottom: 80px; */
	align-items: flex-start;
	/* width: 1000px; */
	margin: 0px auto 80px auto;
	justify-content: space-between;
	flex-flow: column;
}
.sub-sep02-box05-left{
	width: 100%;
	margin-bottom: 20px;
	overflow: hidden;
}
.sub-sep02-box05-right{
	width: 100%;
	/* padding-top: 16px; */
}

.smallnav{
	font-size:14px;
	display: flex;
	justify-content: left;
}

.pt40{padding-top:40px;}


.sub-sep02-box06{
	display: flex;
	/* gap: 50px; */
	/* margin-bottom: 80px; */
	align-items: flex-start;
	max-width: 1000px;
	margin: 0px auto 50px auto;
	justify-content: space-between;
	flex-flow: column;
	/* text-align: center; */
}
.sub-sep02-box06-left{
	width: 70%;
	overflow: hidden;
	margin:0px auto;
}
.sub-sep02-box06-right{
	width: 100%;
	padding-top: 17px;
}

.h3style02{
	background:url("../images/figure_supporter01.png") left bottom repeat-x;
	display: inline-block;
	font-size: 21px;
	font-weight: 600;
	color: #199af8;
	padding-bottom: 8px;
	background-size: 17px;
	margin-bottom: 17px;
}












.process-section {
	position: relative;
	width: calc(100% - 60px);
	margin: 0 auto;
}

.process-box{
	display:flex;
}

.process-box::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 10%;
	width: 8px;
	background-color: #d8ebf9;
	transform: translateX(-50%);
	border-radius: 50px;
	z-index: 0;
}

.process-box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 80px;
	flex-wrap: wrap;
	/* max-width: 1200px; */
	margin:0px auto;
	position: relative;
	/* min-height: 1400px; */
	flex-flow: column;
	padding: 30px 0;
}

.process-content {
	background: #fff;
	padding: 20px 25px;
	border-radius: 25px;
	/* width: 480px; */
	background: #d8ebf9;
	line-height: 1.8;
}

.process-icon{
	width: 20%;
	position: relative;
	z-index: 111;
}

.process-content > div{
	text-align:justify;
	font-size: 14px;
	line-height: 1.8;
}

.process-content > h3{
	font-size: 20px;
	font-weight:600;
	color:#00a1d0;
	margin-bottom: 0px;
}



.step-left .process-content {
	position: relative;
}



.step-left{
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 80px;
	flex-wrap: wrap;
	margin: 0px auto;
	left: 0;
	display: flex;
	flex-direction: row-reverse;
	margin-bottom: 20px;
}


.step-left .process-content{
	width: 76%;
}

.step-left .process-content:before{
	content: "";
	position: absolute;
	top: 8vw;
	bottom: 0;
	left: -10vw;
	width: 15vw;
	z-index: 1;
	height: 5px;
	background-color: #d8ebf9;
}



.step-right .process-content {
	position: relative;
}



.step-right{
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 80px;
	flex-wrap: wrap;
	margin: 0px auto;
	left: 0;
	display: flex;
	flex-direction: row-reverse;
	margin-bottom: 20px;
}


.step-right .process-content{
	width: 75%;
}

.step-right .process-content:before{
	content: "";
	position: absolute;
	top: 8vw;
	bottom: 0;
	left: -10vw;
	width: 15vw;
	z-index: 1;
	height: 5px;
	background-color: #d8ebf9;
}
