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

/*最終更新 2025/11/11 15:40*/

:root{
	--color-01-main: #EC6D56;
	--color-01-back: #FDF2F7;
	--color-02-main: #00A0E9;
	--color-02-back: #d8effc;
	--color-03-main: #FBDAC8;
	--color-03-back: #FFFDE5;
	--color-04-main: #E85298;
	--color-05-main: #EC6D56;
}

body{font-family: 'Zen Maru Gothic', sans-serif; color: #231815; font-weight: 500; font-style: normal; font-size: 14px; line-height: 1.8; word-wrap: break-word; margin: 0; padding: 0;}

div, section, article, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, span, small, a, blockquote, th, td, figure{margin: 0; padding: 0; box-sizing: border-box;}
table{border-collapse: collapse;}
th, td{word-break: break-all;}
img{border: 0; vertical-align:bottom;}
ul, ol{list-style: none; margin: 0; padding: 0;}

a{color: #00a0e9;}
a:hover img{opacity: 0.7;}



/*------------------------------------------------------*/
/* wrap */
/*------------------------------------------------------*/
.wrap{
	width: 100%;
	position: relative;
}
@media only screen and (max-width:600px){
	.show-pc{display: none;}
}
@media only screen and (min-width:601px){
	.show-sp{display: none;}
}

/* apply__sticky */
.apply__sticky{
	display: block;
	position: fixed;
	top: 50%;
	right: 0;
}
.apply__sticky img{
	height: auto;
	width: 121px;
}
@media only screen and (max-width:600px){
	.apply__sticky img{
		width: 64px;
	}
}



/*------------------------------------------------------*/
/* header */
/*------------------------------------------------------*/
.header__wrap{
	height: 816px;
	width: 100%;
	min-width: 950px;
	font-size: 0;
	text-align: center;
	background-image: url(../image/logo_back_pc.png);
	background-repeat: no-repeat;
	background-size: 1080px 816px;
	background-position: center 0;
	margin: 20px auto;
	position: relative;
}
.header__head{
	height: auto;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.header__logo{
	height: auto;
	margin: auto;
	position: absolute;
	top: 80px;
	left: 0;
	right: 0;
}
.header__inner{
	margin: auto;
	position: absolute;
	top: 330px;
	left: 50%;
	transform: translateX(-50%);
}
.header__text{
	color: #727171;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
}
.header__text.header__text--date strong{font-size: 40px;}
.header__text.header__text--period{font-size: 20px;}
.header__label{
	color: #fff;
	font-size: 17px;
	font-weight: normal;
	line-height: 1;
	background: #727171;
	border-radius: 12px;
	margin-right: 8px;
	padding: 4px 10px;
	display: block;
}
.header__text.header__text--date .header__label{
	padding: 16px 10px;
}
.header__text.header__text--period .header__label{
	font-size: 12px;
	border-radius: 9px;
}
@media only screen and (max-width:600px){
	.header__wrap{
		height: 130vw;
		min-width: auto;
		background-image: url(../image/logo_back_sp.png);
		background-size: 100% auto;
	}
	.header__head{
		width: 89%;
	}
	.header__logo{
		width: 82%;
		top: 13vw;
	}
	.header__inner{
		top: 45vw;
	}
	.header__text{
		font-size: 16px;
		margin-bottom: 8px;
	}
	.header__text.header__text--period{font-size: 11px;}
	.header__text.header__text--date strong{font-size: 22px;}
	.header__label{
		padding: 2px 8px;
	}
	.header__text.header__text--date .header__label{
		font-size: 10px;
		border-radius: 7px;
	}
	.header__text.header__text--period .header__label{
		font-size: 10px;
		border-radius: 7px;
	}
}

.header__text p{
	line-height: 1;
	text-align: left;
}
.header__note{
	font-size: 16px;
}
.header__second{
	margin: auto;
	padding-left: 300px;
	position: absolute;
	bottom: 230px;
	left: 0;
	right: 0;
}
@media only screen and (max-width:600px){
	.header__inner{
		left: 6vw;
		transform: none;
	}
	.header__second{
		width: 24vw;
    height: auto;
		padding: 0;
		top: 45vw;
		bottom: auto;
		right: 6vw;
		left: auto;
	}
	.header__text.header__text--date .header__label{
			padding: 10px 8px;
	}
	.header__note{
		font-size: 10px;
	}
}



/*------------------------------------------------------*/
/* footer */
/*------------------------------------------------------*/
.footer__wrap{
	margin-top: 30px;
	padding: 30px 0;
}
.footer__inner{
	text-align: center;
}
.footer__inquiry{
	font-size: 14px;
	text-align: center;
	margin-bottom: 16px;
}
.footer__inquiry a{
	font-size: 16px;
}
.footer_banner__wrap{
	margin: 38px 0;
	display: flex;
	justify-content: center;
	gap: 20px;
}
.copyright{
	font-size: 11px;
	text-align: center;
	margin: 10px 0 0;
}
@media only screen and (max-width:600px){
	.footer__wrap{
		margin: 0;
		padding: 0 0 24px;
	}
	.footer_banner__wrap{
		margin: 32px 0;
		flex-direction: column;
		gap: 20px;
	}
	.footer__inquiry{
		font-size: 11px;
	}
	.footer__inquiry a{
		font-size: 12px;
	}
}



/*------------------------------------------------------*/
/* content */
/*------------------------------------------------------*/
.content{
	width: 100%;
}
.content--back{
	background: var(--color-02-back);
	margin: 60px 0;
	padding: 55px 0;
}
.content__inner{
	width: 950px;
	margin: 0 auto;
}
.content--point .content__inner{
	width: 860px;
}
.content--qa{
	margin: 47px 0;
}
.content--qa .content__inner{
	width: 770px;
	text-align: center;
}
.content--entry .content__inner{
	text-align: center;
}
.content__title{
	font-size: 0;
	text-align: center;
	margin-bottom: 40px;
}
@media only screen and (max-width:600px){
	.content--back{
		margin: 35px 0;
		padding: 31px 0;
	}
	.content__inner{
		width: 100%;
	}
	.content--point .content__inner{
		width: 100%;
	}
	.content--point .content__title img{
		height: auto;
		width: 93%;
	}
	.content--apply .content__title{
		margin-bottom: 13px;
	}
	.content--apply .content__title img{
		height: auto;
		width: 61%;
	}
	.content--company .content__title{
		margin-bottom: 19px;
	}
	.content--company .content__title img{
		height: auto;
		width: 76%;
	}
	.content--qa .content__inner{
		width: 100%;
	}
}



/* point */
.point__wrap{
	display: flex;
	justify-content: space-between;
}
.point__item{
	width: 269px;
	text-align: center;
	background: var(--color-01-back);
	border: 4px solid var(--color-01-main);
	border-radius: 16px;
	padding:  33px 15px 16px 15px;
	position: relative;
}
.point__head{
	height: auto;
	width: 140px;
	margin: auto;
	display: block;
	position: absolute;
	top: -29px;
	left: 0;
	right: 0;
}
.point__media{
	height: 4.8em;
	font-size: 21px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.point__text{
	font-size: 21px;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}
.point__img{
	height: auto;
	width: 217px;
	margin-top: 12px;
}
.point__note{
	font-size: 11px;
	text-align: left;
	line-height: 1.5;
	margin-top: 15px;
}
@media only screen and (max-width:600px){
	.point__wrap{
		flex-direction: column;
		align-items: center;
	}
	.point__item{
		width: 88%;
		margin-bottom: 44px;
	}
	.point__item:last-of-type{
		margin-bottom: 0;
	}
	.point__head{
		width: 170px;
		top: -34px;
	}
	.point__media{
		height: auto;
		display: block;
	}
	.point__text{
		font-size: 20px;
	}
	.point__img{
		width: 250px;
	}
	.point__note{
		margin-top: 12px;
	}
}

/* apply */
.apply__head{
	font-size: 27px;
}
.apply_period__wrap{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.apply_period__label{
	color: var(--color-02-main);
	font-size: 22px;
	font-weight: normal;
	line-height: 1;
	background: #fff;
	border: 1px solid var(--color-02-main);
	border-radius: 20px;
	margin: 25px 0 0;
	padding: 8px 24px;
  display: inline-block;
}
.apply_period__text{
	width: 700px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	line-height: 1.3;
	background: var(--color-02-main);
	border-radius: 42px;
	margin: 0 auto;
	padding: 0 24px 8px 24px;
}
.apply_period__text span{
	font-size: 0.8em;
}
.apply_period__text strong{
	font-size: 1.3em;
}
.apply_list__wrap{
	margin-top: 42px;
}
.apply_list__item{
	width: 700px;
	background: #fff;
	border-radius: 16px;
	margin: 16px auto 0;
	padding: 35px 24px 24px 106px;
	position: relative;
}
.apply_list__label{
	position: absolute;
	top: 24px;
	left: 24px;
}
.apply_list__heading{
	color: var(--color-02-main);
	font-size: 26px;
	line-height: 1.5;
	margin-bottom: 35px;
}
.apply_list__heading img{
	margin: 0 8px;
	vertical-align: sub;
}
.apply_list__title{
	font-size: 14px;
}
.apply_list__title--large{
	font-size: 21px;
	margin: 8px 0;
}
.apply_list__attention{
	color: #fff;
	font-size: 19px;
	line-height: 1;
	background: var(--color-04-main);
	border-radius: 18px;
	margin-left: 16px;
	padding: 4px 16px;
	display: inline-block;
}
.apply_list__attention small{
	font-size: 0.6em;
}
.apply_list__text{
	font-size: 14px;
	word-break: break-all;
	padding-left: 1.5em;
}
.apply_list__text a{
	word-wrap: break-word;
}
.apply_list__text--indent{
	text-indent: -1em;
}
.apply_list__img{
	position: absolute;
	top: 27px;
	right: 31px;
}
@media only screen and (max-width:600px){
	.apply__head{
		font-size: 16px;
	}
	.apply_period__label{
		font-size: 10px;
		margin: 16px 0 0;
		padding: 4px 8px;
	}
	.apply_period__text{
		width: 89%;
		font-size: 20px;
		padding: 4px 16px;
	}
	.apply_list__wrap{
		margin-top: 28px;
	}
	.apply_list__item{
		width: 89%;
		padding: 12px 16px 12px 28px;
	}
	.apply_list__label{
		height: auto;
		width: 36px;
		top: 12px;
		left: 12px;
	}
	.apply_list__heading{
		width: 75%;
		font-size: 18px;
		margin-bottom: 21px;
		padding-left: 27px;
	}
	.apply_list__heading img{
		height: auto;
		width: 79px;
	}
	.apply_list__title{
		font-size: 11px;
	}
	.apply_list__title--large{
		font-size: 13px;
	}
	.apply_list__text{
		font-size: 11px;
	}
	.apply_list__img{
		height: auto;
		width: 62px;
		top: 11px;
		right: 16px;
	}
	.apply_list__attention{
		font-size: 14px;
		margin-left: 0;
	}
}

.apply__flex{
	width: 700px;
	margin: 0 auto 16px;
	display: flex;
	justify-content: space-between;
	align-items: end;
}
@media only screen and (max-width:600px){
	.apply__flex{
		width: 100%;
		margin: 0 auto 8px;
		display: block;
		position: relative;
	}
	.apply__second{
		height: auto;
		width: 90px;
		position: absolute;
		right: 7vw;
		bottom: -20px;
	}
}

/* company */
.company__head{
	width: 759px;
	margin: 0 auto;
	display: block;
}
.company__wrap{
	width: 916px;
	margin: 0 auto;
}
.company_list__item{
	width: 310px;
	background: var(--color-03-back);
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
}
.company_list__img{
	height: auto;
	width: 260px;
	margin: 0 auto;
	display: block;
}
.company_list__title{
	height: 2.8em;
	font-size: 21px;
	line-height: 1.4;
	margin: 19px 0;
	display: flex;
	align-items: center;
}
.company_list__title > *{
	font-size: 21px;
}
.company_list__text{
	font-size: 14px;
	line-height: 1.6;
	border-top: 1px solid #231815;
	padding-top: 15px;
	flex-grow: 2;
}
.company_list__btn{
	width: 164px;
	color: #231815;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	line-height: 1;
	background: var(--color-03-main);
	border-radius: 11px;
	margin:  40px auto 0;
	padding: 4px 0;
	display: block;
}
@media only screen and (max-width:600px){
	.company__head{
		height: auto;
		width: 92%;
		margin: 0 auto 22px;
		display: block;
	}
	.company__wrap{
		width: 92%;
		margin: 0 auto;
	}
	.company_list__item{
		width: 264px;
		padding: 21px;
	}
	.company_list__img{
		width: 223px;
	}
	.company_list__title{
		margin: 8px 0;
	}
	.company_list__title > *{
		font-size: 18px;
	}
	.company_list__text{
		font-size: 12px;
		padding-top: 10px;
	}
	.company_list__btn{
		font-size: 12px;
		margin-top: 16px;
	}
}

.company_list_arrow__wrap{
	width: 100%;
	position: absolute;
  top: 50%;
	z-index: 2;
}
.company_list_arrow__item{
	position: absolute;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}
.company_list_arrow__item:disabled{
	display: none;
}
.company_list_arrow__item--prev{
	transform: rotate(180deg);
	left: 30px;
}
.company_list_arrow__item--next{
	right: 30px;
}
@media only screen and (max-width:600px){
	.company_list_arrow__item{
		width: 46px;
	}
	.company_list_arrow__item img{
		height: auto;
		width: 46px;
	}
	.company_list_arrow__item--prev{
		left: 16px;
	}
	.company_list_arrow__item--next{
			right: 16px;
	}
}

/* qa */
.qa__link{
	display: inline-block;
}
.qa__text{
	width: 100%;
	font-size: 10px;
	text-align: left;
	margin-top: 20px;
}
@media only screen and (max-width:600px){
	.qa__link{
		width: 46%;
	}
	.qa__link img{
		height: auto;
		width: 100%;
	}
	.qa__text{
		width: 89%;
		margin: 23px auto 0;
		display: block;
	}
}

/* entry */
.entry__link{
	display: inline-block;
}
@media only screen and (max-width:600px){
	.entry__link{
		width: 88%;
	}
	.entry__link img{
		height: auto;
		width: 100%;;
	}
}