@charset "UTF-8";
/******************** CSS RESET ********************/
*, *:before, *:after {
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body{line-height: 1;}
ol, ul{list-style: none;}
img{
	max-width: 100%;
	vertical-align: bottom;
}
hr{
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
blockquote, q{
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after{
	content: '';
	content: none;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
td{
	vertical-align:middle;
}
address{
	font-style: normal;
}
input:not([type="radio"]):not([type="checkbox"]), button, textarea{
	margin: 0;
	padding: 2px 3px;
	background: none;
	border: 1px solid #767676;
	border-radius: 2px;
	outline: 0;
	/* -webkit-appearance: none; */
}
input{
	vertical-align: middle;
}
input[type="submit"]{
	cursor: pointer;
}


/******************** 共通設定 ********************/
:root{
	--sb: #C0E4EB;
	--bl: #0767B3;
	--bl02: #10436C;
	--bbl: #E8F5FF;
	--pk: #F66494;
	--pk02: #E01E5E;
	--or: #F4862C;
	--bor: #FFEDE0;
	--gr: #3CB6AB;
	--bgr: #E4F4F5;
	--yw: #F3E55B;
	--byw: #FFF8AF;
	--bk: #464646;
	--wh: #fff;
	--gry: #eee;
	--zenkaku: "Zen Kaku Gothic New", sans-serif;
	--noto: "Noto Sans JP", sans-serif;
	--inter: "Inter", sans-serif;
	--medium: 500;
	--bold: 700;
	--exbold: 800;
	--black: 900;
	--pc20: 1.11111111em;
	--pc34: 1.88888889em;
	--pc40: 2.22222222em;
}
html{
	height: 100%;
}

body {
	font-family: var(--zenkaku), arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
	font-weight: 500;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: var(--bk);
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}
/* @media screen and (min-width: 769px){
	body{
		min-width: 1200px;
	}
} */
@media screen and (min-width: 501px){
	body{
		font-size: 1.125rem;
	}
}
@media print {
	body{
		width: 1080px!important;
	}
}

/* リンク */
a {color: var(--bk);}
a:hover{text-decoration: none;}
a:focus{transition: none;}
a, a::before, a::after{transition: 0.2s;}

a[href^="tel:"] {
    cursor: default;
    color: var(--bk);
    text-decoration: none;
}
@media only screen and (max-width: 768px){
	a[href^="tel:"] {
		cursor: pointer;
		color: var(--bk);
/*		text-decoration: underline;*/
	}
}


/* NoHeading */
.noHeading{
	padding: 0;
    margin: 0;
    height: 0;
    border: 0;
    position: relative;
    z-index: -1;
}

/* clearfix */
.clear::after{
	content: "";
	display: block;
	clear: both;
}

/* loading-animation */
#loading{
	width: 100vw;
	height: 100dvh;
	transition: all 1s;
	background-color: var(--sb);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.loaded {
	opacity: 0;
	visibility: hidden;
}
.loading_img{
	width: 15vw;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	.loading_img{
		width: 200px;
	}
}

/* inner */
.inner{
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	max-width: 1240px;
}
@media screen and (max-width: 768px){
	.inner{
		padding-inline: 30px;
	}
}
@media screen and (max-width: 500px){
	.inner{
		padding-inline: 20px;
	}
}

/* button */
.btn{
	text-align: center;
	margin-top: 2.5em;
}
.btn a{
	text-decoration: none;
	text-align: center;
	display: inline-block;
	color: var(--wh);
	background-color: var(--bk);
	border: 1px solid var(--bk);
	min-width: 290px;
	border-radius: 5px;
	font-size: 1.25em;
	font-weight: 700;
	padding-block: 0.875em;
}
.btn a:hover{
	background-color: var(--wh);
	color: var(--hover02);
	border-color: var(--hover01);
}
.btn a[target=_blank] span{
	padding-right: 1.15rem;
	background: url(../img/icon_btn_blank.svg) no-repeat center right / auto 0.9375rem;
}
.btn a[target=_blank]:hover span{
	background-image: url(../img/icon_btn_blank_hover.svg);
}

/* animation */
/* fadeIn */
.js-show{
	opacity: 0;
	transform: translateY(40px);
}
.js-show.is-animated{
	animation: fadeup 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes fadeup {
	0%{
		transform: translateY(40px);
		opacity: 0;
	}
	100%{
		transform: translateY(0);
	}
	80%,100%{
		opacity: 1;
	}
}

.js-text-item,
.js-text-item > span{
	display: block;
}
.js-text-item{
	overflow: hidden;
	opacity: 0;
}
.js-text-item > span{
	opacity: 0;
	transform: matrix(1, 0, 0, 1, 0, 100);
	transition: transform 1.2s cubic-bezier(0, 0.55, 0.45, 1);
}
.js-text.is-animated .js-text-item{
	opacity: 1;
}
.js-text.is-animated .js-text-item > span{
	opacity: 1;
	transform: matrix(1, 0, 0, 1, 0, 0);
}

@media print {
	.js-show{
		opacity: 1;
		transform: none;
	}
	.js-show.is-animated{
		animation: none;
	}
}

/* ▼▼▼ Header ▼▼▼ */
header{
	position: relative;
	padding-block: 36px 2.22em;
	/* padding-inline: 30px; */
}

header::before ,header::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 24px;
	background: url(../img/naname_line.svg) repeat-x top left / contain;
	left: 0;
}
header::before{
	top: 0;
	z-index: 1;
}
header::after{
	bottom: 0;
}
.head_top{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	padding: 36px 30px 0;
}
.head_top_in{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
}
.head_logo{
	/* margin: 30px 0 0 30px; */
	width: 100%;
	max-width: 125px;
	height: 125px;
	position: relative;
}
.head_logo::before,
.head_logo::after{
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	background: url(../img/radius_shape.svg) no-repeat top left / contain;
}
.head_logo::before{
	top: 0;
	right: -15px;
}
.head_logo::after{
	left: 0;
	bottom: -15px;
}

.head_linkBtn{
	position: fixed;
	top: 50px;
	right: 50px;
}
.head_linkBtn a{
	display: block;
	text-align: center;
	text-decoration: none;
	padding-block: var(--pc20) 1em;
	min-width: 200px;
	background-color: var(--pk);
	color: var(--wh);
	font-weight: var(--bold);
	border-radius: 100px;
	box-shadow: 0 6px 0 0 var(--pk02);
	/* font-size: 0.88888889em; */
	line-height: 1.7;
	transition: 0.3s;
}
.head_linkBtn a:hover{
	transform: translateY(6px);
	box-shadow: none;
	background-color: var(--pk02);
}
.head_linkBtn a span{
	display: block;
}

.head_main{
	position: relative;
	padding-inline: 30px;
}
.head_Mv{
	position: relative;
	height: calc(100vh - 11.4em);
	min-height: calc(50vw - 11.4em);
	background-color: var(--sb);
	border-radius: 30px;
	padding-inline: 4vw;
	overflow: hidden;
}
.head_Mv_in{
	position: relative;
	width: 100%;
	height: 100%;
}
.head_catchTxt{
	background-color: var(--wh);
	border-radius: 20px;
	padding-block: 30px;
	padding-inline: 40px;
	position: absolute;
	bottom: 56.7961165%;
	left: 0;
}
.head_catchTxt span{
	display: inline-block;
	transform: translateY(1.2em);
	animation: txtMove 1s forwards;
	opacity: 0;
}
.head_catchTxt span:nth-child(1){animation-delay: 0.1s;}
.head_catchTxt span:nth-child(2){animation-delay: 0.13s;}
.head_catchTxt span:nth-child(3){animation-delay: 0.16s;}
.head_catchTxt span:nth-child(4){animation-delay: 0.19s;}
.head_catchTxt span:nth-child(5){animation-delay: 0.22s;}
.head_catchTxt span:nth-child(6){animation-delay: 0.25s;}
.head_catchTxt span:nth-child(7){animation-delay: 0.28s;}
.head_catchTxt span:nth-child(8){animation-delay: 0.31s;}
.head_catchTxt span:nth-child(9){animation-delay: 0.34s;}
.head_catchTxt span:nth-child(10){animation-delay: 0.37s;}
.head_catchTxt span:nth-child(11){animation-delay: 0.4s;}
.head_catchTxt span:nth-child(12){animation-delay: 0.43s;}
.head_catchTxt span:nth-child(13){animation-delay: 0.46s;}
.head_catchTxt span:nth-child(14){animation-delay: 0.49s;}
.head_catchTxt span:nth-child(15){animation-delay: 0.52s;}
.head_catchTxt span:nth-child(16){animation-delay: 0.55s;}
.head_catchTxt span:nth-child(17){animation-delay: 0.58s;}
.head_catchTxt span:nth-child(18){animation-delay: 0.61s;}
.head_catchTxt span:nth-child(19){animation-delay: 0.64s;}
.head_catchTxt span:nth-child(20){animation-delay: 0.67s;}
.head_catchTxt span:nth-child(21){animation-delay: 0.7s;}
.head_catchTxt span:nth-child(22){animation-delay: 0.73s;}
.head_catchTxt span:nth-child(23){animation-delay: 0.76s;}
.head_catchTxt span:nth-child(24){animation-delay: 0.79s;}
.head_catchTxt span:nth-child(25){animation-delay: 0.82s;}
.head_catchTxt span:nth-child(26){animation-delay: 0.85s;}
.head_catchTxt span:nth-child(27){animation-delay: 0.88s;}

@keyframes txtMove{
	0%{
		transform: translateY(1.2em);
		opacity: 0;
	}
	100%{
		transform: translateY(0);
		opacity: 1;
	}
}

.head_Mv_main{
	position: absolute;
	bottom: 0;
	right: 0;
	width: min(65.4vw, 981px);
}
.head_Mv_deco{
	width: 100%;
	height: 100%;
	position: relative;
}
.head_Mv_deco .Mv_deco{
	position: absolute;
}
.head_Mv_deco .Mv_deco01{
	bottom: 50%;
	left: 50%;
	transform: translateX(-50%);
	width: min(24.46666667vw, 367px);
}
.head_Mv_deco .Mv_deco02{
	bottom: 31.18932039%;
	left: calc((100% - min(85.8vw ,1287px)) / 2);
	width: min(16.4vw, 246px);
}
.head_Mv_deco .Mv_deco03{
	bottom: 84.34466019%;
	left: calc((100% - min(71.93333333vw ,1079px)) / 2);
	width: min(6.4vw, 96px);
}
.head_Mv_deco .Mv_deco04{
	bottom: 62.5%;
	right: calc((100% - min(89.06666667vw, 1336px)) / 2);
	width: min(6.13333333vw, 92px);
}

.head_title_sub{
	position: absolute;
	bottom: -1px;
	left: 30px;
}
.head_title_sub_in{
	display: inline-block;
	background-color: var(--wh);
	padding-inline: 1rem 1.75em;
	padding-block: 0.75em 0.25em;
	border-radius: 0 20px 0 0;
	position: relative;
	font-size: min(1.867vw ,1.56em);
	letter-spacing: 0.05em;
}
.head_title_sub_in::before,
.head_title_sub_in::after{
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	background: url(../img/radius_shape.svg) no-repeat top left / contain;
	transform: rotate(-90deg);
}
.head_title_sub_in::before{
	left: 0;
	top: -15px;
}
.head_title_sub_in::after{
	bottom: 0;
	right: -15px;
}
.head_title_main{
	background-color: var(--wh);
	padding-inline: 30px;
	padding-top: 1em;
}
.head_title_main h1{
	font-size: min(4.53vw ,3.78em);
	letter-spacing: 0.05em;
	padding-left: 1rem;
}

@media screen and (max-width: 768px) {
	header{
		padding-block: 40px;
	}
	header::before, header::after{
		height: 22px;
	}
	.head_top{
		padding-inline: 20px;
	}
	.head_logo{
		max-width: 100px;
		height: 100px;
	}
	.head_linkBtn{
		top: 25px;
		right: 20px;
	}
	.head_linkBtn a{
		font-size: 0.875em;
		min-width: 146px;
	}
	.head_main{
		padding-inline: 20px;
	}
	.head_Mv{
		border-radius: 20px;
		padding-inline: 0;
		height: calc(100vh - 8.75em);
	}
	.head_Mv_main{
		width: 100%;
	}
	/* deco */
	.head_Mv_deco .Mv_deco01{
		width: calc(176 / 375 * 100vw);
		bottom: 27.9%;
		transform: none;
		left: calc(148 / 375 * 100vw);
	}
	.head_Mv_deco .Mv_deco02{
		width: calc(119 / 375 * 100vw);
		bottom: 71.3%;
	}
	.head_Mv_deco .Mv_deco03{
		width: calc(47 / 375 * 100vw);
		bottom: 42.48%;
		left: calc(25 / 375 * 100vw);
	}
	.head_Mv_deco .Mv_deco04{
		width: calc(45 / 375 * 100vw);
		bottom: 70.23%;
		right: calc(27 / 375 * 100vw);
	}

	.head_catchTxt{
		left: 50%;
		transform: translateX(-50%);
		border-radius: 10px;
		text-align: center;
		bottom: 59%;
		width: max-content;
	}
	.head_title_sub{
		left: 20px;
	}
	.head_title_sub_in{
		font-size: var(--pc20);
		border-top-right-radius: 12px;
		padding-top: 1em;
	}
	.head_title_main{
		padding-inline: 20px;
		padding-top: 0.5em;
	}
	.head_title_main h1{
		font-size: var(--pc40);
	}
	.head_title_main h1 span{
		display: inline-block;
	}
}
@media screen and (max-width: 500px) {
	header{
		padding-top: 32px;
	}
	header::before, header::after{
		height: 18px;
	}
	.head_top{
		padding-top: 32px;
	}
	.head_Mv{
		height: calc(100vh - 12em);
	}
	.head_Mv_deco .Mv_deco01{
		width: calc(176 / 375 * 100vw);
	}
	.head_catchTxt{
		bottom: 50.23%;
		padding: 20px;
	}
	.head_title_sub_in{
		font-size: 1em;
		padding-top: 1.25em;
		padding-left: 0;
	}
	.head_title_main h1{
		font-size: 1.875em;
		padding-left: 0;
	}
}
@media print {
	.head_linkBtn{
		position: static;
	}
	.head_Mv{
		transform: scale(1.0);
		height: 618px;
		min-height: auto;
	}
}

/* ▼▼▼ Footer ▼▼▼ */
footer{
	padding-top: 80px;
}
/* Contact button */
.contactBtn{
	position: relative;
	padding-bottom: 80px;
}
.contactBtn::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	background: url(../img/dot-line_yoko.svg) repeat-x top left / contain;
	bottom: 0;
	left: 0;
}
.contact_linkBtn a{
	display: block;
	background-color: var(--bl);
	color: var(--wh);
	text-decoration: none;
	border-radius: 150px;
	box-shadow: 0 8px 0 0 var(--bl02);
	padding-inline: 4.44em 3.33em;
	padding-block: 4.44em;
}
.contact_linkBtn a:hover{
	background-color: var(--bl02);
	box-shadow: none;
	transform: translateY(8px);
}
.contact_linkBtn_in{
	position: relative;
}
.contact_linkBtn .btnArrow{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.contact_linkBtn .btnArrow span{
	position: relative;
	display: block;
	background-color: var(--wh);
	border-radius: 50%;
	width: 4.33em;
	height: 4.33em;
}
.contact_linkBtn .btnArrow span::before{
	content: "";
	position: absolute;
	width: 2.22em;
	height: 1.44em;
	background: url(../img/btn_arrow.svg) no-repeat top center / contain;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.contact_linkBtn_flexArea{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75em 2.22em;
}
.contact_linkBtn_flexArea_l{
	padding-right: 3.89em;
	position: relative;
}
.contact_linkBtn_flexArea_l::before{
	content: "";
	position: absolute;
	width: 1.67em;
	height: 1.67em;
	background-color: var(--wh);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.contact_linkBtn_enTxt{
	font-family: var(--inter);
	font-weight: var(--exbold);
	font-size: 4.44em;
}

.contact_linkBtn_flexArea-r{
	margin-right: 4.33em;
	}
.contact_linkBtn_mTxt{
	font-size: 1.78em;
	font-weight: var(--black);
	margin-bottom: 0.5em;
}
.contact_linkBtn_sTxt{
	font-size: 1.11em;
}

/* Foot IDArea */
.foot_idArea{
	padding-block: 50px;
}
.foot_idArea_in{
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	row-gap: 3em;
}
.foot_idArea .cr{
	font-size: 0.67em;
}

@media screen and (max-width: 768px) {
	footer{
		padding-block: 50px 30px;
	}
	.contactBtn{
		padding-bottom: 60px;
	}
	.contact_linkBtn a{
		padding-inline: 1.5em;
		padding-block: 42px;
	}
	.contact_linkBtn_enTxt{
		font-size: 3em;
	}
	.contact_linkBtn_flexArea{
		flex-direction: column;
	}
	.contact_linkBtn_flexArea_l{
		padding: 0 0 1.125em 0;
	}
	.contact_linkBtn_flexArea_l::before{
		width: 1.25em;
		height: 1.25em;
		right: 50%;
		top: auto;
		bottom: 0;
		transform: translate(50%, 0);
	}
	.contact_linkBtn_flexArea-r{
		padding-inline: 0.5em;
		margin-right: 0;
	}
	.contact_linkBtn_flexArea-r p{
		text-align: center;
		margin-bottom: 0.3em;
	}
	.contact_linkBtn_mTxt{
		font-size: 1.125em;
	}
	.contact_linkBtn_sTxt{
		font-size: 0.875em;
	}
	.contact_linkBtn .btnArrow span{
		width: 2.375em;
		height: 2.375em;
	}
	.contact_linkBtn .btnArrow span::before{
		width: 1.25em;
		height: 0.8125em;
	}
	.foot_idArea_in{
		flex-direction: column;
	}

}
@media screen and (max-width: 500px) {
	.contact_linkBtn a{
		padding-inline: 1em;
	}
}

/* ▼▼▼ Main ▼▼▼ */
.mainArea{
	margin-top: 100px;
}
@media screen and (max-width: 768px) {
	.mainArea{
		margin-top: 3em;
	}
}
/* Section01 */
.sec01{
	padding-bottom: 5em;
}
.sec01 .sec01_title{
	text-align: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	row-gap: 1.11em;
	margin-bottom: 1.67em;
}
.sec01 .sec01_title span{
	font-size: 1.11em;
}
.sec01 .sec01_title h2{
	background-color: var(--bl);
	color: var(--wh);
	border-radius: 99px;
	padding: 0.5em 2.8125em;
	font-size: 1.77777778em;
	line-height: 1.7;
	position: relative;
}
.sec01 .sec01_title h2::before,
.sec01 .sec01_title h2::after{
	content: "";
	position: absolute;
	width: 2.59375em;
	height: 2.59375em;
	background-repeat: no-repeat;
	background-position: top left;
	background-size: contain;
	top: -0.59375em;
}
.sec01 .sec01_title h2::before{
	background-image: url(../img/sec01_h2_img02.png);
	left: -0.75em;
}
.sec01 .sec01_title h2::after{
	background-image: url(../img/sec01_h2_img01.png);
	right: -0.75em;
}

.sec01 .sec01_list{
	display: flex;
}
.sec01_list li.sec01_liWrap{
	padding: 2.78em 2em;
	background-color: var(--bgr);
	border-radius: 20px;
	position: relative;
	flex: 1;
	min-height: 330px;
}
.sec01_list li.sec01_liWrap::before{
	content: "";
	position: absolute;
	width: 3px;
	height: calc(100% - 1em);
	background: url(../img/dot-line.svg) repeat-y center left / contain;
	top: 0.5em;
	right: 0;
}
.sec01_list li.sec01_liWrap:last-child:before{
	display: none;
}
.sec01_list li.sec01_liWrap:nth-child(2){
	background-color: var(--bbl);
}
.sec01_list li.sec01_liWrap:nth-child(3){
	background-color: var(--bor);
}
.sec01_list li.sec01_liWrap h3{
	font-family: var(--inter);
	font-weight: var(--exbold);
	font-size: 1.78em;
	text-align: center;
	margin-bottom: 0.9375em;
	color: var(--gr);
}
.sec01_list li.sec01_liWrap:nth-child(2) h3{
	color: var(--bl);
}
.sec01_list li.sec01_liWrap:nth-child(3) h3{
	color: var(--or);
}
.sec01_list li.sec01_liWrap li{
	padding-left: 1em;
	position: relative;
	margin-bottom: 1em;
}
.sec01_list li.sec01_liWrap li::before{
	content: "";
	position: absolute;
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	left: 0;
	top: 0.5em;
	background-color: var(--gr);
}
.sec01_list li.sec01_liWrap:nth-child(2) li::before{
	background-color: var(--bl);
}
.sec01_list li.sec01_liWrap:nth-child(3) li::before{
	background-color: var(--or);
}

@media screen and (max-width: 768px) {
	.sec01 .sec01_title h2{
		font-size: 1.56em;
	}
	.sec01 .sec01_list{
		flex-wrap: wrap;
	}
	.sec01_list li.sec01_liWrap{
		flex: none;
		width: 100%;
		min-height: auto;
		padding: 2.25em  1.25em 2.5em;
	}
	.sec01_list li.sec01_liWrap::before{
		width: calc(100% - 28px);
		height: 3px;
		background: url(../img/dot-line_yoko.svg) repeat-x center / contain;
		top: auto;
		right: auto;
		bottom: 0;
		left: 14px;
	}
}
@media screen and (max-width: 500px) {
	.sec01 .sec01_title{
		row-gap: 0.5em;
	}
	.sec01 .sec01_title span{
		font-size: 0.875em;
	}
	.sec01 .sec01_title h2{
		font-size: 1.25em;
		padding-inline: 1.25em;
	}
	.sec01 .sec01_title h2::before,
	.sec01 .sec01_title h2::after{
		width: 2.125em;
		height: 2.125em;
	}
}

/* Section02 */
.sec02_bgArea{
	background-color: var(--sb);
	position: relative;
}
.sec02_bgArea::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 11.53333333vw;
	background: url(../img/sec02_bg_shape.svg) no-repeat top center / 100% auto;
	top: 0;
	left: 0;
	right: 0;
}
.sec02{
	padding-block: 120px 60px;
	text-align: center;
	overflow: hidden;
}
.sec02 h2{
	display: inline-block;
	background-color: var(--wh);
	border-radius: 15px;
	font-size: 1.89em;
	padding-inline: 1.176em;
}
.sec02 h2 span{
	background: url(../img/sec02_h2_bg.svg) no-repeat center / 2.35em auto;
	display: inline-block;
	padding-block: 1em;
}
.sec02 .sec02_catchArea{
	margin-top: 80px;
}
.sec02 .sec02_catchTitle{
	font-size: var(--pc34);
	font-weight: var(--bold);
	line-height: 1.7;
	margin-bottom: 50px;
}
.sec02 .sec02_catchTitle span{
	display: inline-block;
}
.sec02 .sec02_catchTxt{
	line-height: 2;
}
.sec02_catchTxt span{
	display: block;
}
.sec02_in{
	position: relative;
	width: 100%;
	height: 100%;
	padding-bottom: 105px;
}
.sec02_txtArea{
	position: relative;
	z-index: 1;
}

.sec02_bgImg{
	position: absolute;
}
.sec02_bgImg01{
	width: min(17.2vw ,258px);
	top: 33.48664569%;
}
.sec02_bgImg02{
	width: min(20.93333333vw ,314px);
	bottom: 0;
	right: 0;
}
.sec02_bgImg03{
	width: min(5.86666667vw ,88px);
	left: 0;
	top: 8.06907125%;
}
.sec02_bgImg04{
	width: min(5.73333333vw ,86px);
	left: min(7.93333333vw, 119px);
	/* bottom: 12.2380914%; */
	top: 81.49761962%;
}
.sec02_bgImg05{
	width: min(5.26666667vw ,79px);
	right: 0;
	top: 18.02092579%;
}

@media screen and (max-width: 1024px) {
	.sec02_in{
		padding-bottom: 203px;
	}
	/* bg_img */
	.sec02_bgImg01{
		width: 147px;
		top: auto;
		bottom: 0;
	}
	.sec02_bgImg02{
		width: 178px;
	}
	.sec02_bgImg03{
		width: 57px;
		top: 11.68341709%;
	}
	.sec02_bgImg04{
		width: 57px;
		top: 60.1758794%;
		left: 0;
	}
	.sec02_bgImg05{
		width: 51px;
		top: 36.93467337%;
	}

}
@media screen and (max-width: 768px) {
	.sec02 .sec02_catchArea{
		margin-top: 40px;
	}
	.sec02{
		padding-block: 90px 40px;
	}
	.sec02 h2{
		font-size: 1.125em;
		padding-inline: 15px;
	}
	.sec02 .sec02_catchTitle{
		font-size: 1.25em;
		margin-bottom: 36px;
	}
	.sec02_catchTxt span{
		display: inline;
	}
}
@media screen and (max-width: 500px) {
	.sec02 .sec02_catchArea{
		margin-top: 30px;
	}
	.sec02 .sec02_catchTitle{
		margin-bottom: 24px;
	}
}

/* Secton03 */
.sec03{
	overflow: hidden;
}
.wrapper{
	display: flex;
	height: 100%;
	width: 300%;
}
.slide-scroll {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100vh;
}
.slide-scroll-01{background-color: var(--gr);}
.slide-scroll-02{background-color: var(--bl);}
.slide-scroll-03{background-color: var(--or);}

.scroll_item_container{
	width: 100%;
	max-width: 1200px;
	height: 100%;
	background-color: var(--wh);
	border-radius: 1000px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px 2.22em;
	padding-inline: 9.33vw 6.67vw;
    padding-block: 70px;
}
.sec03 .slide-scroll .point_num{
	font-family: var(--inter);
	font-weight: var(--exbold);
	font-size: 1.78em;
}
.sec03 .slide-scroll-01 .point_num{color: var(--gr);}
.sec03 .slide-scroll-02 .point_num{color: var(--bl);}
.sec03 .slide-scroll-03 .point_num{color: var(--or);}

.sec03 .slide-scroll h3{
	font-size: 1.78em;
	line-height: 1.7;
	margin-bottom: 0.67em;
}

.sec03 .container_l{
	width: calc(100% - min(29.33vw ,440px));
}
.sec03 .container_r{
	width: min(29.33vw ,440px);
}

@media screen and (max-width: 768px) {
	.sec03 .wrapper{
		display: block;
		width: 100%;
	}
	.sec03 .slide-scroll{
		height: auto;
		width: 100%;
	}
	.sec03 .scroll_item_container{
		flex-direction: column;
		padding-block: calc(120 / 375 * 100vw) calc(40 / 375 * 100vw);
	}
	.sec03 .slide-scroll .point_num{
		font-size: 1.375em;
		margin-bottom: 4px;
	}
	.sec03 .slide-scroll h3{
		font-size: 1.5em;
	}
	.sec03 .container_l{
		width: 100%;
	}
	.sec03 .container_r{
		width: calc(280 / 375 * 100vw);
	}
}

/* Section04,Section05 Background */
.bgWrapper_b{
	background-color: var(--sb);
	padding-bottom: 100px;
}

/* Section04 */
.sec04{
	padding-block: 80px;
	position: relative;
}
.sec04_decoImg{
	position: absolute;
	top: 6.64%;
}
.sec04_deco01{
	width: min(8.27vw ,124px);
	left: min(7.33vw ,110px);
}
.sec04_deco02{
	width: min(8.8vw ,132px);
	right: min(7.33vw ,110px);
}

/* deco_animation */
.sec04_deco01{
	animation: kirakira01 2s steps(2) infinite;
}
@keyframes kirakira01{
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(-20deg);
	}
}
.sec04_deco02{
	animation: kirakira02 2s steps(2) infinite;
}
@keyframes kirakira02{
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(20deg);
	}
}

.sec04 h2{
	text-align: center;
	font-size: 1.78em;
	background: url(../img/sec04_h2_img.png) no-repeat bottom center / contain;
	width: 100%;
	min-height: 6.03em;
	padding-block: 3.1875em 1.25em;
}
.sec04 span{
	display: inline-block;
}
.sec04 ul li{
	background-color: var(--wh);
	border-radius: 30px;
	position: relative;
	display: flex;
	align-items: center;
	gap: 1.5em 4.87vw;
	padding: 40px 2.67vw 40px 4vw;
}
.sec04 ul li::before{
	content: "";
	position: absolute;
	width: calc(100% - 46px);
	height: 4px;
	background: url(../img/dot-line_yoko.svg) repeat-x top center / contain;
	bottom: -2px;
	left: 23px;
	right: 0;
	z-index: 1;
}
.sec04 ul li:last-child::before{
	display: none;
}
.sec04 ul li h3{
	font-size: 1.56em;
	color: var(--bl);
	padding-bottom: 1em;
}
.sec04 .sec04_listTxt{
	width: calc(100% - min(38.47vw ,577px));
}
.sec04 .sec04_listImg{
	width: min(38.47vw ,577px);
}

@media screen and (max-width: 768px) {
	.sec04{
		padding-top: 100px;
	}
	.sec04_decoImg{
		top: 35px;
	}
	.sec04_deco01{
		width: 86px;
		left: 0;
	}
	.sec04_deco02{
		width: 100px;
		right: 0;
	}
	.sec04 h2{
		min-height: auto;
		padding-block: calc(26 / 375 * 100vw) calc(16 / 375 * 100vw);
		font-size: calc(30 / 768 * 100vw);
	}
	.sec04 h2 span{
		display: block;
	}
	.sec04 ul li{
		flex-wrap: wrap;
		border-radius: 20px;
		padding: 40px 20px 50px;
	}
	.sec04 .sec04_listTxt,
	.sec04 .sec04_listImg{
		width: 100%;
	}
	.sec04 ul li h3{
		padding-bottom: 0.5em;
	}
}

@media screen and (max-width: 500px) {
	.sec04{
		padding-bottom: 50px;
	}
	.sec04 h2{
		font-size: 1.375em;
		background-image: url(../img/sec04_h2_img_sp.png);
		padding-block:  22px 12px;
	}
	.sec04_deco01{
		width: calc(75 / 375 * 100vw);
	}
	.sec04_deco02{
		width: calc(82 / 375 * 100vw);
	}
	.sec04 ul li h3{
		font-size: 1.375em;
	}
}

/* Section05 */
.sec05{
	max-width: 740px;
	margin-inline: auto;
	padding-inline: 20px;
}
.sec05 h2{
	background-color: var(--byw);
	border-radius: 20px 20px 15px 15px;
	font-size: 1.56em;
	padding-block: 1.29em 1.07em;
	position: relative;
	text-align: center;
}
.sec05 h2::before{
	content: "";
	position: absolute;
	width: calc(100% - 34px);
	height: 4px;
	background: url(../img/dot-line_yoko.svg) repeat-x top left / contain;
	bottom: -2px;
	left: 17px;
}
.sec05_txtArea{
	background-color: var(--byw);
	border-radius: 15px 15px 20px 20px;
	padding: 2.22em;
}
.sec05_txtArea > p{
	text-align: center;
}
.sec05_txtArea .sec05_spacArea{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1em 2.22em;
	background-color: var(--wh);
	border-radius: 15px;
	padding: 1.44em 2em;
	margin-top: 2.11em;
}
.sec05_txtArea .sec05_spacArea li{
	display: flex;
	align-items: center;
	column-gap: 0.67em;
	font-weight: var(--black);
	font-size: 1.11em;
}
.sec05_spacArea li .label{
	color: var(--wh);
	border-radius: 99px;
	padding: 0.35em 1.2em;
	background-color: var(--or);
	text-align: center;
}
.sec05_spacArea li:nth-child(2) .label{
	background-color: var(--gr);
}

@media screen and (max-width: 500px) {
	.sec05 h2{
		font-size: 1.375em;
		padding-block: 1em;
	}
	.sec05_txtArea{
		padding: 35px 20px 40px;
	}
	.sec05_txtArea .sec05_spacArea{
		justify-content: flex-start;
		padding: 20px 36px;
	}
	.sec05_txtArea .sec05_spacArea li{
		font-size: 1em;
	}
	.sec05_spacArea li .label{
		min-width: calc(100 / 375 * 100vw);
	}
}

/* Section06 Background */
.bgWrapper_y{
	background: url(../img/bg_y_img01.svg) top left / 1.61em auto, var(--yw);
	padding-block: 100px 80px;
}

@media screen and (max-width: 768px) {
	.bgWrapper_y{
		padding-bottom: 20vw;
	}
}
@media screen and (max-width: 500px) {
	.bgWrapper_y{
		padding-block: 12vw 30vw;
	}
}

/* Section06 */
.sec06{
	padding-inline: 50px;
}
.sec06 h2{
	font-size: 1.67em;
	padding-bottom: 0.8em;
}
.sec06_imgArea{
	padding: 1.67em;
	border-radius: 30px;
	background-color: var(--wh);
}
.sec06 .modalArea_sp{
	display: none;
	text-align: center;
	margin-top: 30px;
}
.sec06 .modalArea_sp .dialog::backdrop{
	background-color: rgba(0, 0, 0, .5);
}
.sec06 .modalArea_sp .dialog{
	border: none;
	border-radius: 20px;
	padding: 30px 20px 20px;
}
.sec06 .modalArea_sp #modalOpen,
.sec06 .modalArea_sp #modalClose{
	font-size: 0.875rem;
	font-weight: var(--bold);
	font-family: var(--zenkaku);
	border: none;
	padding: 10px 20px;
	border-radius: 20px;
}
.sec06 .modalArea_sp #modalOpen{
	color: var(--wh);
	background-color: var(--bl);
}
.sec06 .modalArea_sp #modalClose{
	margin-top: 1.5em;
	background-color: var(--gry);
	color: var(--bk);
}
@media screen and (max-width: 768px) {
	.bgWrapper_y{
		overflow: hidden;
	}
	.sec06{
		padding-inline: 0;
		overflow: hidden;
	}
	.sec06 h2{
		font-size:  1.375em;
		padding-inline: 20px;
	}
	.sec06_imgArea{
		border-radius: 20px;
		margin-inline: 20px;
	}
	.horizontal_scroll {
		overflow: visible;
	}
	.itemOuter{
		position: relative;
		height: 152vw;
	}
	.itemInner {
		display: flex;
		width: max-content;
		will-change: transform;
		position: absolute;
		left: 0;
		top: 0;
	}
	.scrollItem {
		flex-shrink: 0;
	}
	.sec06_imgArea {
		width: 180vw;
		height: 100%;
	}
	.sec06 .modalArea_sp{
		display: block;
	}
}
@media screen and (max-width: 500px) {
	.sec06_imgArea {
		width: 240vw;
	}

}

@media print {
	.gsap-marker-start,
	.gsap-marker-end,
	.pin-spacer {
		position: static !important;
		top: auto !important;
		left: auto !important;
		height: auto !important;
		width: auto !important;
		transform: none !important;
		padding: 0!important;
	}
	.wrapper{
		display: block!important;
		width: 100%!important;
		height: 100%!important;
		position: static!important;
		transform: none!important;
	}
	.slide-scroll{
		transform: none!important;
		height: auto!important;
	}

}

