@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{
	--mojibk: #464646;
	--mojibw: #734E37;
	--wh: #fff;
	--gry: #eee;
	--pk01: #FF7572;
	--pk02: #FFBCB7;
	--pk03: #FFF5EE;
	--pk04: #FF9A7B;
	--be: #F3E9DC;
	--yw: #FEFFCE;
	--dropshadow01: 6px 7px 30px rgba(193, 84, 32, 0.2);

	--zenkaku: "Zen Kaku Gothic New", sans-serif;
	--noto: "Noto Sans JP", sans-serif;
	--inter: "Inter", sans-serif;
	--montserrat: "Montserrat", sans-serif;
	--medium: 500;
	--semibold: 600;
	--bold: 700;
	--exbold: 800;
	--black: 900;

	--fs10: 0.625em;
	--fs12: 0.75em;
	--fs13: 0.8125em;
	--fs14: 0.875em;
	--fs15: 0.9375em;
	--fs18: 1.125em;
	--fs20: 1.25em;
	--fs21: 1.3125em;
	--fs22: 1.375em;
	--fs23: 1.4375em;
	--fs24: 1.5em;
	--fs28: 1.75em;
	--fs30: 1.875em;
	--fs26: 2.25em;
	--fs38: 2.375em;
	--fs50: 3.125em;
}
html{
	height: 100%;
}

body {
	font-family: var(--noto), 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(--mojibk);
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}

body.is-opening{
	overflow: hidden;
}

@media screen and (min-width: 769px){
	body{
		min-width: 1200px;
	}
}
@media screen and (max-width: 500px) {
	body{
		font-size: var(--fs14);
	}
}
@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 */
.inner1000{
	max-width: 1040px;
	margin-inline: auto;
	padding-inline: 20px;
	width: 100%;
}
.inner1200{
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	max-width: 1240px;
}
/* h2 */
h2{
	color: var(--mojibw);
}
h2.h2_common{
	display: flex;
	row-gap: var(--fs12);
	flex-direction: column;
	margin-bottom: var(--fs20);
}
.h2_common-en{
	position: relative;
	font-size: var(--fs18);
	padding-left: var(--fs20);
	line-height: 1;
	font-family: var(--montserrat);
	font-weight: var(--semibold);
}
.h2_common-en::before{
	content: "";
	position: absolute;
	width: 0.55555556em;
	height: 0.55555556em;
	background-color: var(--pk01);
	border-radius: 50%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
h2.h2_common span:not(.h2_common-en){
	font-size: var(--fs38);
}

@media screen and (max-width: 500px) {
	h2.h2_common{
		row-gap: 0.375rem;
	}
	.h2_common-en{
		font-size: 0.75rem;
	}
	h2.h2_common span:not(.h2_common-en){
		font-size: 1.25rem;
	}
}

/* Button */
.link_btn a{
	text-decoration: none;
	background-color: var(--pk01);
	color: var(--wh);
	display: block;
	border-radius: 99px;
	box-shadow: var(--dropshadow01);
	line-height: 1.7;
	text-align: center;
	font-size: var(--fs18);
	padding: var(--fs18);
	width: 100%;
	transition: .2s;
}
.link_btn a span{
	position: relative;
	display: block;
	padding-right: var(--fs30);
}
.link_btn a span::before{
	content: "";
	position: absolute;
	width: var(--fs30);
	height: var(--fs30);
	background-color: var(--wh);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.link_btn a span::after{
	content: "";
	position: absolute;
	width: var(--fs12);
	height: var(--fs12);
	background: url(../img/btn_arrow.svg) no-repeat center / contain;
	top: 50%;
	transform: translateY(-50%);
	right: calc((var(--fs30) - var(--fs12)) / 2);
}
.link_btn a:hover{
	box-shadow: none;
	background-color: #ef5a57;
}

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

/* 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;
	}
}

/* background_ellipse */
.ellipse_wrap{
	position:absolute;
	left:50%;
	bottom:-20vw;
	transform:translateX(-50%);
	z-index: 1;
}
.ellipse{
	display: block;
	width: 120vw;
	height: 32vw;
	background-color: var(--yw);
	border-radius: 50%;
	transform-origin: center bottom;
}

@media screen and (max-width: 500px) {
	.ellipse_wrap{
		bottom: -10vw;
	}
}

/* ▼▼▼ Header ▼▼▼ */
.bgArea-01{
	background: url(../img/bgimg01_05.png) no-repeat top center / 100% auto;
	background-color: #FFD6D6;
	position: relative;
	overflow: hidden;
}
.opening_bg{
	width: 100%;
	height: 100%;
	background-color: var(--pk03);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	/* opacity: 0; */
}

.bg_item{
	position: absolute;
}
.bg_item.item1{
	top: 12.07%;
	left: calc((82 / 1500) * 100vw);
	width: 19.7%;
}
.bg_item.item2{
	top: 0;
	right: 0;
	width: 47.8%;
}
.bg_item.item3{
	top: 42.21%;
	left: 0;
	width: 56.9%;
}
.bg_item.item4{
	top: 55.5%;
	right: 0;
	width: 22.5%;
}
.bg_item img{
	width: 100%;
}


header{
	position: relative;
}
.head_in{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-block: 280px 220px;
	min-height: 840px;
}
.head_in h1{
	background-color: var(--pk03);
	border-radius: 9999px;
	padding: 100px 80px 80px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: var(--fs24);
	/* width: max(620px, 41.33333333vw); */
	width: 620px;
	position: relative;
	z-index: 99999;
}
.head_in h1 .subtitle{
	font-size: var(--fs21);
}
.head_in h1 .logo{
	width: 444px;
}
header .link_btn{
	position: fixed;
	top: 30px;
	right: 30px;
	z-index: 99999;
}
header .link_btn a{
	padding: 24px 40px 24px 50px;
}
header .link_btn a span{
	padding-right: var(--fs50);
}
header .head_illust{
	position: absolute;
	/* animation-name: top-img_move;
	animation-duration: 0.3s;
	animation-timing-function: ease-in-out;
	animation-delay: 0.5s;
	animation-fill-mode: backwards; */
	z-index: 1;
}
header .head_illust01{
	top: -48px;
	left: calc((333 / 1500) * 100vw);
	width: max(150px, 10vw);
	transform-origin: center top;
	animation-name: yura2;
	animation-duration: 3.2s;
	animation-timing-function: ease-in-out;
	animation-delay: 3.9s;
	animation-iteration-count: infinite;
}
header .head_illust02{
	top: max(199px, 13.27vw);
	left: calc((1120 / 1500) * 100%);
	width: max(190px, 12.66666667vw);
}
header .head_illust03{
	top: max(653px, 43.5vw);
	left: calc((150 / 1500) * 100vw);
	width: max(149px, 9.93333333vw);
}

/* @keyframes top-img_move {
	0%{
		opacity: 0;
		transform: translateY(50%);
	}
	50%{
		opacity: 1;
		transform: translateY(-25%);
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
} */

@keyframes yura2 {
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(7deg);
	}
	100%{
		transform: rotate(0deg);
	}
}

@media screen and (max-width: 768px) {
	.bgArea-01{
		background-image: url(../img/bgimg01_05_sp.png);
	}
	header .head_illust01{
		width: max(78px, 19.40298507vw);
		left: calc((83 / 402) * 100vw);
		top: -24px;
	}
	header .head_illust02{
		width: max(96px, 23.88059701vw);
		top: 22.45%;
		right: calc((49 / 402) * 100vw);
	}
	header .head_illust03{
		width: max(75px, 18.65671642vw);
		top: 81.42%;
		right: 20px;
	}
	.head_in{
		padding-block: 60vw 30vw;
		min-height: auto;
	}
	.head_in h1{
		width: auto;
		padding-inline: 10vw;
		padding-block: 11vw 10vw;
		row-gap: var(--fs12);
	}
	.head_in h1 .logo{
		width: max(258px, 64.17910448vw);
	}

}
@media screen and (max-width: 500px) {
	header .link_btn{
		top: 20px;
		right: 10px;
	}
	header .link_btn a{
		padding-block: 1em;
		padding-inline: 30px 20px;
	}
	.head_in h1{
		padding-inline: 40px;
		padding-block: 44px 41px;
	}
	.head_in h1 .subtitle{
		font-size: var(--fs13);
	}
}

@media print {
	.opening_bg{
		display: none;
	}
	header .link_btn{
		position: absolute;
	}
	.head_in h1{
		transform: scale(0.8);
	}
	header .head_illust02{
		right: 54px;
	}
	.head_in h1,
	.head_illust,
	.head_in .link_btn,
	.sec_intro,
	.bg_item {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* ▼▼▼ Footer ▼▼▼ */
footer{
	background-color: var(--yw);
	background-image: repeating-linear-gradient(90deg, #734e37, #734e37 2px, transparent 2px, transparent 6px);
	background-position: left top;
	background-repeat: repeat-x;
	background-size: 100% 1px;
	padding-block: var(--fs20) var(--fs14);
}
footer .foot_logo{
	width: 194px;
}
footer .cr{
	font-family: var(--inter);
	font-weight: 400;
	font-size: var(--fs12);
	margin-top: 35px;
}

@media screen and (max-width: 500px) {
	footer .foot_logo{
		width: 149px;
	}
}

/* ▼▼▼ Main ▼▼▼ */
/* Section Introduction */
.bgArea-01 .inner1000{
	position: relative;
	z-index: 10;
}
.sec_intro{
	background-color: var(--be);
	padding: 60px;
	position: relative;
	border-radius: 40px;
	display: grid;
	grid-template-columns: 34% 1fr;
	gap: 30px 20px;
}
.sec_intro::before{
	content: "";
	position: absolute;
	background: url(../img/illist_tanpopo.png) no-repeat center / contain;
	width: 140px;
	height: 60px;
	bottom: 0;
	left: 40px;
}
.sec_intro h2{
	background-color: var(--wh);
	border-radius: 15px;
	padding: 1rem;
	font-size: var(--fs24);
	letter-spacing: 0;
}
.sec_intro .intro_txt{
	grid-area: 2 / 2;
	line-height: 2;
}

@media screen and (max-width: 768px) {
	.sec_intro{
		display: flex;
		flex-direction: column;
		border-radius: 28px;
		row-gap: 1em;
		padding-inline: 28px ;
		padding-block: 40px calc((40 / 402) * 100vw);
	}
	.sec_intro h2{
		align-self: flex-start;
	}
	.sec_intro::before{
		left: auto;
		right: 30px;
		width: calc((84 / 402) * 100vw);
		height: calc((36 / 402) * 100vw);
	}
}
@media screen and (max-width: 500px) {
	.sec_intro h2{
		font-size: 1rem;
		padding: 0.625em 0.5em;
		border-radius: 0.5em;
	}
}

/* Section01 */
.bgArea-02{
	position: relative;
	background-color: var(--yw);
}

.sec-01{
	padding-block: 100px;
}
.sec-01 h2{
	text-align: center;
	font-size: var(--fs28);
	margin-bottom: var(--fs38);
}
.sec-01 ul{
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}
.sec-01 ul li{
	width: calc((100% - 60px) / 3);
	background-color: var(--wh);
	border-radius: 40px;
	box-shadow: var(--dropshadow01);
	padding: 30px 24px;
	display: flex;
	flex-direction: column;
	gap: var(--fs12)
}
.sec-01 ul li img{
	width: 45px;
	height: 45px;
}
.sec-01 ul li p{
	line-height: 1.7;
}

.sec-01_answer{
	position: relative;
	margin-top: 94px;
	text-align: center;
}
.sec-01_answer::before{
	content: "";
	position: absolute;
	width: 0.5em;
	height: 2.75em;
	background: url(../img/sec-01_itemimg06.svg) no-repeat center / contain;
	left: 50%;
	transform: translateX(-50%);
	top: -4em;
}
.sec-01_answer p{
	display: inline-block;
	background-color: var(--pk01);
	color: var(--wh);
	padding: 30px 60px;
	border-radius: 99px;
	font-size: var(--fs30);
}
.bgArea-03{
	position: relative;
	background-color: var(--be);
	padding-bottom: 100px;
}
.bgArea-03_img{
	position: absolute;
	z-index: 0;
}
.bgArea-03_img04{
	width: 100%;
	top: 0;
	right: 0;
}
.bgArea-03_img02{
	top: 10vw;
	right: 0;
}
.bgArea-03_img03{
	top: 714px;
	left: 0;
}
.bgArea-03_img05{
	top: 1390px;
	right: 0;
}
.bgArea-03_img06{
	top: 2104px;
	left: 0;
}
.bgArea-03_img07{
	bottom: 368px;
	right: 0;
}

@media screen and (max-width: 768px){
	.sec-01{
		padding-block: 80px;
	}
	.sec-01 h2{
		margin-bottom: var(--fs30);
	}
	.sec-01 ul{
		gap: 1rem;
	}
	.sec-01 ul li{
		padding: 28px 20px;
	}
	.sec-01_answer p{
		font-size: var(--fs22);
		padding: 24px 50px;
	}
	.bgArea-03_img02{
		width: 69%;
	}
	.bgArea-03_img03{
		width: 69%;
		top: 16%;
		/* top: calc((792 / 402) * 100vw); */
	}
	.bgArea-03_img05{
		width: 63%;
		top: 40%;
		/* top: calc((1987 / 402) * 100vw); */
	}
	.bgArea-03_img06{
		width: 76%;
		top: auto;
		bottom: 24%;
		/* bottom: calc((1167 / 402) * 100vw); */
	}
	.bgArea-03_img07{
		width: 69%;
		bottom: 10%;
		/* bottom: calc((516 / 402) * 100vw); */
	}
}
@media screen and (max-width: 500px) {
	.sec-01{
		padding-block: 50px 60px;
	}
	.sec-01 h2{
		font-size: 1.125rem;
		margin-bottom: 1.39em;
	}
	.sec-01 ul li{
		width: calc(50% - 0.5rem);
		border-radius: 20px;
		padding: 15px;
	}
	.sec-01 ul li img{
		width: 30px;
		height: 30px;
	}
	.sec-01_answer{
		margin-top: 57px;
	}
	.sec-01_answer p{
		font-size: 1rem;
		padding: 0.9375em 1.875em;
	}
	.sec-01_answer::before{
		height: 1.375rem;
		top: -2rem;
	}
}

@media print {
	.bgArea-03_img{
		transform: none!important;
		width: 500px;
	}
	.sec-01{
		break-before: page;
	}

}

/* Section02_features */
.sec-02{
	padding-block: 115px;
	position: relative;
	z-index: 1;
}
.sec-02 ul{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}
.sec-02 ul li{
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(5px);
	box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
	border-radius: 40px;
	/* min-height: 320px; */
	position: relative;
	/* display: flex;
	align-items: end; */
}
.sec-02 .features-num{
	position: absolute;
	top: 0;
	right: 0;
	background: linear-gradient(to bottom, #FF9A7B 36%, #FFD3C6);
	width: 118px;
	height: 115px;
	color: var(--wh);
	border-radius: 0 40px 0 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--montserrat);
	font-size: 3.625em;
}
.sec-02 .features-num span{
	-webkit-text-stroke: 1px var(--pk04);
	paint-order: stroke;
}
.features-content{
	padding-block: 0 var(--fs30);
	padding-inline: var(--fs30);
	margin-top: 162px;
}
.sec-02 ul li h3{
	font-size: var(--fs24);
	margin-bottom: 0.75em;
}

@media screen and (max-width: 768px) {
	.sec-02 ul{
		gap: 24px;
		grid-template-columns: repeat(2, 1fr);
	}
	.sec-02 .features-num{
		font-size: 3em;
	}
}
@media screen and (max-width: 500px) {
	.sec-02{
		padding-block: 50px 60px;
	}
	.sec-02 ul{
		gap: 0.75rem;
	}
	.sec-02 ul li{
		border-radius: 18px;
		min-height: auto;
	}
	.sec-02 .features-num{
		width: 55px;
		height: 53px;
		border-radius: 0 18px 0 18px;
		font-size: 1.75rem;
	}
	.features-content{
		margin-top: 60px;
		padding: 0 15px 15px;
	}
	.sec-02 ul li h3{
		font-size: 1rem;
	}
	.features-content{
		font-size: 0.8125rem;
	}

}

/* Secton03 */
.sec-03{
	position: relative;
}
.system-content{
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(5px);
	box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
	border-radius: 40px;
	padding-block: 60px 70px;
	padding-inline: 60px;
	margin-bottom: 60px;
}
.system-content h3{
	color: var(--mojibw);
	font-size: var(--fs30);
	margin-bottom: 0.66666667em;
}
.system-content .content-txt{
	margin-bottom: var(--fs28);
}
.system-content ul{
	display: grid;
}
.system-content ul li .img{
	overflow: hidden;
	border-radius: 15px;
}


/* System-content01 */
.system-content01 ul{
	gap: 30px;
	grid-template-columns: repeat(3, 1fr);
}
.system-content01 ul li{
	background-color: var(--yw);
	border-radius: 40px;
	box-shadow: var(--dropshadow01);
	flex: 1;
	padding: 30px;
}
.system-content01 ul li .txt{
	margin-top: var(--fs18);
}

/* System-content02 */
.system-content02 ul{
	gap: 50px 35px;
	grid-template-columns: repeat(2, 1fr);
}
.system-content02 ul li .img{
	box-shadow: var(--dropshadow01);
}
.system-content02 ul li p.txt{
	border-radius: 12px;
	background-color: var(--be);
	padding: var(--fs15) var(--fs12);
	margin-top: var(--fs15);
}

/* System-content03 */
.system-content03 ul{
	gap: 19px;
	grid-template-columns: repeat(4, 1fr);
}
.system-content03 ul li{
	display: flex;
	gap: 10px;
	align-items: center;
	background-color: var(--yw);
	box-shadow: var(--dropshadow01);
	border-radius: 20px;
	padding: 30px 15px;
}
.system-content03 ul li .txt span{
	display: inline-block;
	font-weight: 400;
	font-size: var(--fs14);
	color: #555;
	margin-top: 0.36em;
}

.requirements{
	background-color: var(--pk02);
	border-radius: 40px;
	padding: 40px 60px 50px;
}
.requirements h3{
	text-align: center;
	color: var(--mojibw);
	font-size: var(--fs24);
	margin-bottom: var(--fs23);
}
.requirements ul{
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, 1fr);
}
.requirements ul li{
	display: flex;
	gap: 30px;
	align-items: center;
	background-color: var(--pk03);
	border-radius: 15px;
	padding: 20px 30px;
}
.requirements ul li:last-child{
	grid-column: 1 / 3;
}
.requirements ul li .list-title{
	width: max(130px, 8.66666667vw);
	position: relative;
}
.requirements ul li .list-title::before{
	content: "";
	position: absolute;
	width: 4px;
	height: 30px;
	background-image: radial-gradient(circle, #ff7572 2px, transparent 2px);
	background-position: right top;
	background-repeat: repeat-y;
	background-size: 4px 8px;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.requirements ul li p:not(.list-title){
	flex: 1;
}

@media screen and (max-width: 768px) {
	.bgArea-03{
		padding-bottom: 60px;
	}
	.system-content{
		padding-block: 30px 40px;
		padding-inline: 32px;
		border-radius: 28px;
		margin-bottom: 40px;
	}
	.system-content .content-txt{
		margin-bottom: var(--fs20);
	}
	.system-content01 ul,
	.system-content02 ul{
		gap: 24px;
		grid-template-columns: repeat(2, 1fr);
	}
	.system-content01 ul li{
		border-radius: 28px;
	}
	.system-content03 ul{
		gap: 1em;
		grid-template-columns: repeat(2, 1fr);
	}
	.system-content03 ul li{
		padding-block: var(--fs24);
	}
	.requirements{
		border-radius: 28px;
		padding-inline: 30px;
		padding-block: 30px 40px;
	}
	.requirements ul{
		gap: 1em;
		grid-template-columns: 1fr;
	}
	.requirements ul li{
		border-radius: 12px;
		padding: 1em var(--fs20);
	}
	.requirements ul li:last-child{
		grid-column: auto;
	}
}
@media screen and (max-width: 500px) {
	.system-content{
		padding: 1.875rem;
		padding-bottom: 2.5rem;
	}
	.system-content h3{
		font-size: 1.125rem;
	}
	.system-content .content-txt{
		margin-bottom: 1.5rem;
	}
	.system-content01 ul,
	.system-content02 ul,
	.system-content03 ul{
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.system-content01 ul li{
		padding-block: 2.25rem 1.875rem;
		padding-inline: 1.5rem;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.system-content01 ul li .img{
		width: 234px;
	}
	.system-content01 ul li .txt,
	.system-content02 ul li .txt{
		font-size: 0.8125rem;
	}
	.system-content01 ul li p.txt{
		margin-top: 1.25rem;
	}
	.system-content02 ul li p.txt{
		padding: 1em;
	}
	.system-content03 ul li{
		padding: 1.25rem 1.125rem;
		border-radius: 15px;
	}
	.requirements{
		padding: 40px 24px;
	}
	.requirements ul li{
		gap: 16px;
		padding: 16px 14px;
		border-radius: 10px;
	}
	.requirements ul li .list-title{
		width: 110px;
	}
	.requirements ul li p:not(.list-title){
		font-size: 0.8125rem;
	}
}
@media print {
	.requirements{
		break-before: page;
	}
}


/* Section04 */
.sec-04{
	margin-block: 100px 80px;
	position: relative;
	z-index: 10;
}

/* Section05_Contact */
.sec-05{
	position: relative;
}
.contact .wrap{
	position: relative;
	background-color: var(--be);
	border-radius: 40px;
	padding: 60px 70px;
	color: var(--mojibw);
	z-index: 1;

}
.contact .img{
	position: absolute;
	bottom: -53px;
	right: -35px;
	width: 129px;
}
.contact .flexArea{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 36px var(--fs20)
}
.contact .flex-r .link_btn a{
	padding-block: 24px;
	padding-inline: 50px 40px;
}
.contact .link_btn a span{
	padding-right: 50px;
}
.contact p{
	margin-top: var(--fs30);
}
@media screen and (max-width: 1200px) {
	.contact .img{
		right: 0;
	}
}
@media screen and (max-width: 768px) {
	.sec-04{
		margin-block: 60px;
	}
	.contact .wrap{
		border-radius: 28px;
		padding: 45px 40px;
	}
	.contact .flexArea{
		flex-direction: column;
		align-items: flex-start;
	}
	.contact p{
		margin-top: var(--fs20);
	}
}
@media screen and (max-width: 500px) {
	.sec-04{
		margin-block: 40px;
	}
	.contact .wrap{
		padding: 40px 24px 50px;
	}
	.contact .img{
		width: 80px;
		bottom: -29px;
	}
	.contact .flex-r .link_btn a{
		padding-block: 1em;
		padding-inline: 30px 20px;
	}
}

/* ▼▼▼ Background05・06 ▼▼▼ */
.bgArea-05{
	background-color: var(--yw);
	padding-bottom: 246px;
	background-image: url(../img/bgimg05.png);
	background-repeat: repeat-x;
	background-position: bottom center;
	background-size: auto 246px;
	position: relative;
}
.bgArea-05 .img{
	display: block;
	position: absolute;
	bottom: 39px;
	left: calc(50% - 435px);
	width: 186px;
	/* width: min(186px, 12.4vw); */
	animation: toko2 6s linear infinite;
}

@keyframes toko2{
	0%{
		transform: translate(0, 0) scale(1, 1);
	}
	4%{
		transform: translate(-5px, 3px) scale(1, 1);
	}
	8%{
		transform: translate(-10px, 0) scale(1, 1);
	}
	12%{
		transform: translate(-15px, 3px) scale(1, 1);
	}
	16%{
		transform: translate(-20px, 0) scale(1, 1);
	}
	20%{
		transform: translate(-25px, 3px) scale(1, 1);
	}
	24%{
		transform: translate(-30px, 0) scale(1, 1);
	}
	28%{
		transform: translate(-35px, 3px) scale(1, 1);
	}
	32%{
		transform: translate(-40px, 0) scale(1, 1);
	}
	36%{
		transform: translate(-45px, 3px) scale(1, 1);
	}
	40%{
		transform: translate(-50px, 0) scale(1, 1);
	}
	44%{
		transform: translate(-50px, 0) scale(1, 1);
	}
	48%{
		transform: translate(-50px, 0) scale(1, 1);
	}
	50%{
		transform: translate(-50px, 0) scale(-1, 1);
	}
	52%{
		transform: translate(-50px, 0) scale(-1, 1);
	}
	56%{
		transform: translate(-45px, 3px) scale(-1, 1);
	}
	60%{
		transform: translate(-40px, 0) scale(-1, 1);
	}
	64%{
		transform: translate(-35px, 3px) scale(-1, 1);
	}
	68%{
		transform: translate(-30px, 0) scale(-1, 1);
	}
	72%{
		transform: translate(-25px, 3px) scale(-1, 1);
	}
	76%{
		transform: translate(-20px, 0) scale(-1, 1);
	}
	80%{
		transform: translate(-15px, 3px) scale(-1, 1);
	}
	84%{
		transform: translate(-10px, 0) scale(-1, 1);
	}
	88%{
		transform: translate(-5px, 3px) scale(-1, 1);
	}
	92%{
		transform: translate(0, 0) scale(-1, 1);
	}
	96%{
		transform: translate(0, 0) scale(-1, 1);
	}
	100%{
		transform: translate(0, 0) scale(1, 1);
	}
}


.bgArea-06{
	position: relative;
	overflow: hidden;
	padding-bottom: 133px;
}

/* Section06 */
.about-sora{
	background-color: #fff;
	border-radius: 40px;
	box-shadow: var(--dropshadow01);
	padding: 60px;
}
.about-sora .flexArea{
	display: flex;
	gap: 30px 20px;
	align-items: center;
}
.about-sora .flex-l{
	width: min(518px, calc((518 / 1500) * 100vw));
	/* width: calc((518 / 1500) * 100vw); */
}
.about-sora .flex-r{
	text-align: center;
}
.about-sora .flex-r .subtitle{
	text-align: center;
	background-color: #E7F2FF;
	color: #3C7CC7;
	border-radius: 8px;
	padding: 15px 30px 17px;
	margin-bottom: var(--fs24);
}
.about-sora .flex-r span{
	display: inline-block;
	border: 1px solid #528CD1;
	padding: 0.5em var(--fs30);
	border-radius: 99px;
	margin-bottom: 2px;
}
.about-sora .flex-r .wb{
	font-weight: var(--bold);
	font-size: var(--fs22);
}
.about-sora .flex-r .title img{
	width: 476px;
}
.about-sora .link_btn{
	display: flex;
	justify-content: center;
	margin-top: var(--fs30);
}
.about-sora .link_btn a{
	background-color: #3C7CC7;
	width: max(529px, 35.26666667vw);
	box-shadow: none;
}
.about-sora .link_btn a br{
	display: none;
}
.about-sora .link_btn a:hover{
	background-color: #2a609d;
}
.about-sora .link_btn a span::after{
	background-image: url(../img/btn_arrow_sora.svg);
}

@media screen and (max-width: 768px) {
	.bgArea-05{
		padding-bottom: 166px;
		background-size: auto 166px;
	}
	.bgArea-05 .img{
		width: 130px;
		left: calc((90 / 375) * 100vw);
	}
	.bgArea-06{
		padding-bottom: 150px;
	}
	.about-sora{
		border-radius: 38px;
		padding: 40px;
	}
	.about-sora .flexArea{
		flex-direction: column-reverse;
	}
	.about-sora .flex-l{
		width: 80%;
	}
	.about-sora .flex-r .subtitle{
		margin-bottom: var(--fs20);
	}
	.about-sora .flex-r .title img{
		width: min(400px, 52.08333333vw);
	}
}
@media screen and (max-width: 500px) {
	.bgArea-05{
		padding-bottom: 220px;
		background-image: url(../img/bgimg05_sp.png);
		background-size: contain;
	}
	.bgArea-05 .img{
		width: 99px;
		bottom: 56px;
	}
	.bgArea-06{
		padding-bottom: 80px;
	}
	.about-sora{
		padding: 36px 24px;
	}
	.about-sora .flex-r .subtitle{
		font-size: 0.75rem;
		padding-inline: 1em;
	}
	.about-sora .flex-r .subtitle span{
		padding-inline: 1rem;
	}
	.about-sora .link_btn a{
		width: 100%;
		text-align: left;
		padding-inline: 26px 20px;
	}
	.about-sora .link_btn a br{
		display: block;
	}
}

@media print {
	.about-sora{
		break-before: page;
	}
}



