@charset "UTF-8";
/* CSS Document */

html {
	font-size: 62.5%;
}
body *{
	box-sizing: border-box;
}
body {
 	font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
	color: #231815;
	font-size: 1.6rem;
	line-height: 1.6;
	margin: 0;
	padding: 0;
}
p {
	padding-bottom: 2.5rem
}
p:last-child {
	padding-bottom: 0;
}
img {
	width: 100%;
}
/****common****/
.full-width {
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
}
.t-center {
	text-align: center;
}
.mgb50 {
	margin-bottom: 50px;
}
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}
.fade {
	animation-name: fadein;
	animation-duration: 2s;
}
@keyframes fadein{
from {
	opacity: 0;
	transform: translatey(20px);
}
to {
	opacity: 1;
	transform: translatey(0);
}
}
.fade {
	animation-name:fadeUpAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*アニメーション要素のスタイル*/
.animation{
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(30px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02{
	animation-delay: 0.5s;
}
.delay-time03{
	animation-delay: 1s;
}
.delay-time04{
	animation-delay: 1.5s;
}
.delay-time05{
	animation-delay: 2s;
}
.delay-time05{
	animation-delay: 2.5s;
}
.delay-time06{
	animation-delay: 3s;
}
.delay-time07{
	animation-delay: 3.5s;
}

/****base****/
#wrapper {
	position: relative;
}
.cont {
	clear: both;
	padding: 1.5rem;
	overflow: hidden;
}
.full-width {
width: 100vw;
margin-left: calc(-50vw + 50%);
/*	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;*/
}
.full-width img{
	max-width:100vw;
	width:100vw;
}

/****ttl****/
.ttl {
	clear: both;
	padding:  30px 0 15px;
}
.link-mark {
	padding-top: 60px;
	margin-top: -60px;
}
.ttl.full-width {
	padding-top: 20px;
	padding-bottom: 20px;
}
.ttl h2 {
	font-size: 2.2rem;
	line-height: 1.45;
	text-align: center;
	color: #fff;
	max-width:100vw;
	width:100vw;
	background-color: #f8b62d;
	padding: 1rem;
}
.ttl h2.partner {
	background-color: #ec6d65;
}
.ttl02 h2 {
	font-size: 1.8rem;
	line-height: 1.45;
	text-align: center;
	padding: 1rem;
}
.ttl02.ttl-grn {
	background-color: #dbefeb;
}
.ttl02.ttl-blu {
	background-color: #dee5f4;
}
.ttl02.ttl-pnk {
	background-color: #fce4df;
}
.ttl h3 {
	color: #38acb5;
	font-size: 22px;
	text-align: center;
	background-image: url("../img/midashi01.svg");
	background-repeat: no-repeat;
	background-position: center center;
}
/****navi****/
#nav-toggle {
	position: fixed;
	top: 10px;
	right: 10px;
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #f8b62d;
}
#nav-toggle > div {
	position: relative;
	width: 20px;
	top: 12px;
	left: 10px;
}
#nav-toggle span {
	width: 100%;
	height: 2px;
	left: 0;
	display: block;
	background: #ffffff;
	position: absolute;
	transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 7px;
}
#nav-toggle span:nth-child(3) {
	top: 14px;
}

.open #nav-toggle span {
	background: #fff;
}
.open #nav-toggle span:nth-child(1) {
	top: 7px;
	transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
	top: 14px;
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 7px;
	transform: rotate(-45deg);
}

#gloval-nav {
	background-color: #f8b62d;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	transform: translateX(100%);
	transition: opacity 0.6s ease, visibility 0.6s ease;
	height: 100vh
}

#gloval-nav a {
	display: block;
	color: #fff;
	padding: 10px 0;
	transition: color 0.6s ease;
}
#gloval-nav ul li {
	opacity: 0;
	transform: translateX(200px);
	transition: transform 0.6s ease, opacity 0.2s ease;
}
#gloval-nav ul li:nth-child(2) {
	transition-delay: 0.1s;
}
#gloval-nav ul li:nth-child(3) {
	transition-delay: 0.2s;
}
#gloval-nav ul li:nth-child(4) {
	transition-delay: 0.3s;
}
#gloval-nav ul li:nth-child(5) {
	transition-delay: 0.4s;
}
#gloval-nav ul li:nth-child(6) {
	transition-delay: 0.5s;
}
#gloval-nav ul li:nth-child(7) {
	transition-delay: 0.6s;
}
#gloval-nav ul li:nth-child(8) {
	transition-delay: 0.7s;
}
#gloval-nav ul li:nth-child(9) {
	transition-delay: 0.8s;
}

/* open */
.open {
	overflow: hidden;
}
.open #gloval-nav {
	visibility: visible;
	transform: translateX(0);
	transition: transform 0.6s;
}
.open #gloval-nav li {
	opacity: 1;
	transform: translateX(0);
	transition: transform 1s ease, opacity 0.9s ease;
}

#nav-toggle {
	z-index: 100;
}

#gloval-nav {
	z-index: 10;
}

/****footer****/
#footer {
	clear: both;
	font-size: 1.2rem;
	background-color: #f8b62d;
	color: #ffffff;
	text-align: center;
	padding: 6px 0;
}
.icon-box {
	display: flex;
	justify-content: space-between;
	width: 250px;
	margin: 10px auto 20px;
}
.ico-form {
	width: 28px;
}
.ico-blog {
	width: 26px;
}
.ico-insta {
	width: 28px;
}
.ico-fb {
	width: 28px;
}
.ico-line {
	width: 30px;
}
.f-logo {
	width:  182px;
}
#footer p {
	margin-top: 10px;
}
/****header****/
#header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #fff;
	-webkit-filter:drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.1));
	-moz-filter:drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.1));
	-ms-filter:drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.1));
	filter:drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.1));
}
.logo-box {
	width: 150px;
	margin: 10px 0 10px 10px;
}
.header-inn {
	padding: 1rem;
	margin: 0 auto;
}

/****top****/

.top {
	width: 100%;
	padding-top: 70px;
}
.lead-box {
	text-align: center;
	margin-bottom: 10px;
}
.lead-box p {
	font-size: 2.8rem;
	line-height: 1.8;
	background: linear-gradient(transparent 70%, #f8b62d 0%);
	display: inline;
	padding: 0 2px 4px;
}
.lead-box p span {
	font-size: 3.4rem;
}
h1 {
	margin-bottom: 30px;
}
.girl-wrap {
	width: 100%;
	margin: 0 auto;
}
.girl-inner {
	width: 100%;
	display: flex;
	justify-content: center;
}
.main-girl {
	width: 280px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	background-image: url("../img/img01.svg");
	background-repeat: no-repeat;
	background-size: 122px auto;
	background-position: right bottom;
	min-height: 98px;
}
.main-girl.girl02 {
	width: 100%;
	background-image: url("../img/img02.svg");
	background-size: 132px auto;
	background-position: left bottom;
	min-height: 102px;
	float: left;
	padding-left: 80px;
}
.main-girl.girl03 {
	width: 260px;
	background-image: url("../img/img03.svg");
	background-size: 110px auto;
	background-position: right bottom;
	min-height: 94px;
	float: right;
	margin-bottom: 30px;
}
ul.list01 {
	clear: both;
	max-width: 345px;
	margin: 0 auto 30px;
	font-size: 1.8rem;
	padding-left: 0;
}
ul.list01 li {
	padding-left:1em;
	text-indent:-1em;
	margin-bottom: 6px;
}
ul.list01 li:before {
	content: "□";
	margin-right: 0.2em;
}
ul.list01.header {
	max-width: 345px;
}
ul.list01.support {
	width: 100%;
}
.lead-box2 {
	text-align: center;
	margin-bottom: 10px;
}
.lead-box2 p {
	font-size: 2rem;
}
.sup {
	vertical-align: super;
	font-size: smaller;
}

/****support****/
.support-box {
	width: 90%;
	margin: 30px auto 20px;
	background-image: url("../img/img04.svg");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 160px;
	padding-bottom: 40px;
}
.support-box p {
	font-size: 1.8rem;
}
ul.list02 {
	list-style: disc;
	margin: 20px 2rem 30px;
}

/****できること****/
.point-ttl {
	font-size: 2rem;
	padding: 0 .8rem;
	
}
.point-ttl p:before {
	content: "□";
	margin-right: 0.2em;
}
.point-box {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 15px;
	background-color: aqua;
	margin-bottom: 20px;
}
.point-box.point01 {
	background-image: url("../img/img05@2x.jpg");
}
.point-box.point02 {
	background-image: url("../img/img06@2x.jpg");
}
.point-box.point03 {
	background-image: url("../img/img07@2x.jpg");
	margin-bottom: 0;
}
.point-box p {
	background:rgba(255,255,255,0.5);
	padding: 15px 20px;
}


/****ボタン****/
.btn {
	color: #fff;
	display: inline-block;
	border-radius: 100vh;
	padding: 0.5rem 4rem;
	font-size: 20px;
}
a.btn {
	background-color: #f39800;
	border-radius: 100vh;
	padding: 1.5rem 7rem;
}
.btn-wrap {
	text-align: center;
	padding: 3rem 1.5rem 3rem;
}
.btn-wrap.kaiin {
	background-image: url("../img/img08.svg");
	background-repeat: no-repeat;
	background-position: right 1.5rem top 3.5rem;
	background-size: 65px;
	padding-bottom: 5rem;
}
.border-dott {
	border-top: 5px #ec6d65 dotted;
}
dl.history dt {
	padding: 1rem 1rem 0;
}
dl.history dd {
	padding: 1rem;
}
dl.history dt:nth-of-type(odd),
dl.history dd:nth-of-type(odd) {
	background-color: #d7edea;
}

dl.company dt {
	font-size: 1.4rem;
	padding: 1rem 1rem 0;
	color: #38acb5;
}
dl.company dd {
	padding: 1rem;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
}

/****私たちがサポートします****/
.img-member {
	display: block;
	width: 80%;
	margin: 0 auto 3rem;
}
.member01 {
	margin-bottom: 1rem;
}


@media screen and (min-width: 520px) {
	/* 520px以上に適用されるCSS（タブレット用） */
	body {
		font-size: 1.6rem;
	}
	.girl-wrap {
		width: 500px;
	}
	.btn-wrap.kaiin {
		background-position: right 6rem top 0.5rem;
		background-size: 85px;
	}
	dl.history {
		display: flex;
		flex-wrap: wrap;
	}
	dl.history dt {
		width: 30%;
		padding: 1rem;
	}
	dl.history dd {
		width: 70%;
		padding: 1rem;
	}
	dl.history dt:nth-of-type(odd),
	dl.history dd:nth-of-type(odd) {
		background-color: #d7edea;
	}
	dl.company {
		display: flex;
		flex-wrap: wrap;
	}
	dl.company dt {
		width: 30%;
		padding: 1rem;
		font-size: 1.6rem;
		color: #231815;
	}
	dl.company dd {
		width: 70%;
		padding: 1rem;
		margin-bottom: 0;
		border-bottom: none;
	}
	dl.company dt:nth-of-type(odd),
	dl.company dd:nth-of-type(odd) {
		background-color: #d7edea;
	}

}
@media screen and (min-width: 700px) {
	/* 700px以上に適用されるCSS（PC用） */
	.cont {
		width: 600px;
		margin: 0 auto;
	}
	br.pc-none {
		display: none;
	}
	br.pc-disp {
		display: block;
	}
	.btn-wrap.kaiin {
		background-position: right 16rem top 0.5rem;
		background-size: 85px;
		padding-bottom: 5rem;
	}
	ul.list01.support {
		min-width: 550px;
	}
	.support-box {
		width: 500px;
		margin: 30px auto 20px;
		background-position: right top;
		padding-bottom: 40px;
		padding-top: 45px;
	}
	.girl-wrap {
		width: 700px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-end;
		margin-bottom: 50px;
	}
	.girl-wrap p {
		font-size: 1.8rem;
	}
	.main-girl {
		width: 320px;
		margin: 0;
	}
	.main-girl.girl02 {
		width: 387px;
	}
	.main-girl.girl03 {
		width: 284px;
		margin-bottom: 0;
	}
}
@media screen and (min-width: 800px) {
	/* 800px以上に適用されるCSS（PC用） */
	#nav-toggle {
		height: 44px;
		width: 44px;
}
	#nav-toggle > div {
		width: 30px;
		left: 7px;
	}

	#nav-toggle span {
		height: 3px;
	}
	#nav-toggle span:nth-child(2) {
		top: 9px;
	}
	#nav-toggle span:nth-child(3) {
		top: 18px;
	}

	.fade-layer{
		background-image: url("../img/main01-pc.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: bottom 1.8rem center;
	}
	.top {
		background-size: 40% auto, 22.5% auto;
	}
	.header-inn {
		width: 800px;
		margin: 0 auto;
	}
	.ttl.full-width {
		padding-top: 40px;
	}
	.cont-wrap {
		width: 800px;
		margin: 0 auto;
	}
}

@media screen and (min-width: 960px) {
	/* 960px以上に適用されるCSS（PC用） */
	.logo-box {
		width: 190px;
	}
	#nav-toggle {
		top: 13px;
	}
	.lead-box p {
	    font-size: 3.4rem;
	}
	.lead-box p span {
	    font-size: 4rem;
	}
	.ttl h2:before {
		width: 24rem;
	}
	ul.list01 {
		font-size: 1.8rem;
	}
	.full-width {
		max-width: 1100px;
	}
}

@media screen and (min-width: 1300px) {
	/* 1300px以上に適用されるCSS（PC用） */
	.fade-layer{
		background-size: contain;
	}
	.lead-box p {
	    font-size: 4rem;
	}
	.lead-box p span {
	    font-size: 4.8rem;
	}

}