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%;
	font: inherit;
	font-weight: normal;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1.5;
	font-family: Yugothic, Hiragino Kaku Gothic ProN,Hiragino Sans,BIZ UDPGothic,Meiryo,sans-serif;
  color: #3d3f42;
  font-size: 16px;

}
p{
	    letter-spacing: .1em;
        line-height:1.8;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
}
a:link, a:visited, a:hover, a:active {
  color: inherit;
}
*,*::after,*::before {
	box-sizing: border-box;
	box-sizing: border-box;
	word-wrap: break-word;
}

img {
		width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
@media screen and (max-width: 768px){
	body{
		font-size: 14px;
	}
}
/*common*/
.sp-area{
  display: none;
}

section{
  width: 100%;
}
@media screen and (max-width: 768px){
  section{
    width: 100%;
    margin:auto;
		padding: 0;
  }
  .sp-area{
    display: block;
  }
  .pc-area{
    display: none;
	}
	p.text-title{
		font-size: 20px;
	}
}
a{
  text-decoration:none;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
a:hover{
  opacity: .8;
}
a:visited{
	color: inherit;
}

.annotation{
  font-size: 12px;
  font-weight: normal;
}

.tryBtn{
  position: relative;
  width: 90%;
  margin: 0px auto 10px;
  max-width: 400px;

}

.tryBtn .img_06{
  position: absolute;
  width: 20%;
  left: -25px;
  top: -27px;
  z-index: 1;
}

.tryBtn a{
  display: block;
	text-align: center;
  padding: 15px;
  background: #D62228;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  font-size: 1.2em;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 10%);
}
@media screen and (max-width: 768px){
	.tryBtn .img_06{
	  left: 5px;
	}
}
.d-block{
	display: block;
}
/*flex-css*/
.flex{
  display: flex;
}
.wrap{
  flex-wrap: wrap;
}
.start{
  justify-content: start;
}
.between{
  justify-content: space-between;
}
.around{
	justify-content: space-around;
}
.center{
	justify-content: center;
}

.align-right{
	text-align: right;
}
.align-left{
	text-align: left;
}
.align-center{
	text-align: center;
}
@media screen and (max-width: 768px){
	.s_align-center{
		text-align: center;
	}
	.s_align-right{
		text-align: right;
	}
	.s_d-block{
		display: block!important;
	}
}
/*header*/
.header{
  text-align: center;
}
.header h1{
    display: flex;
    min-width: 50%;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 15px 0;
}
.header h1 img.logo{
    height: 50px;
    width: auto;
}
.header h1 img.batsu{
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0 40px;
}

@media screen and (max-width: 768px){
  .header h1{
    width: 90%;
  }
  .header h1 img.batsu{
    width: 15px;
    height: 15px;
    margin: 0 10px;
  }
	.header img{
	 	width: 100%;
		padding-top:0px;
		padding-bottom:0px;
	}
  .header h1 img.logo{
    height: auto;
    width: 100px;
  }

}


/*grid*/
.grid3_2{
	width:100%;
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 2%;
}
.grid2_3{
	width:100%;
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 2%;
}
.grid1_1{
	width:100%;
	display: grid;
	grid-template-columns:1fr 1fr;
	gap: 2%;
}
.grid1_3{
	width:100%;
	display: grid;
	grid-template-columns:1fr 3fr;
	gap: 2%;
}
.grid1_1_1{
	width:100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2%;
}

.grid11_1_11_1_11{
	width:100%;
	display: grid;
	grid-template-columns: 11fr 1fr 11fr 1fr 11fr;
	gap: 1%;
	align-items: center;
}
.align-items-center{
	align-items: center;
}
.align-items-self-end{
	align-items:self-end;
}
.d_block{
  display: block;
}
.d-flex{
	display: flex;
}
.align-items-start{
align-items: flex-start;
}
@media screen and (max-width: 768px){
.s_grid1_1{
  width:100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2%;
}
.s_d_block{
  display: block;
}
}

/*font*/
.t-title{
	font-size:2em;
	font-weight: bold;
	position: relative;
	text-align: center;
}
.t-bottom::after{
	content: '';
  width: 54px;
  height: 2px;
  display: inline-block;
  background-color: #3d3f42;
  position: absolute;
  bottom: -15px;
  left: calc(50% - 27px);
}
.t-large{
	font-size: 1.3rem;
}
.t-large2{
	font-size: 1.2rem;
}

.t-bold{
	font-weight: bold;
}
.t-subtitle{
	font-size: 1.3rem;
}
.t-body{
	font-size: 1.1rem;
}
.t-body2{
	font-size: 0.8rem;
}
.t-body3{
	font-size: 0.9rem;
}

.t-underline{
	text-decoration: underline;
}
.t-annotation{
	font-size: .6rem;
}
.t-through{
text-decoration: line-through;
}
.t-pink{
	color: #E85298!important;
}
.t-blue{
	color: #1EB3EA!important;
}
.t-red{
	color: #DE003F!important;
}
.t-gray{
	color: #949495!important;
}

.t-back-blue{

background-position: left -100% center;
padding-bottom: 0.6em;
font-weight: bold;
background-size: 200% 0.6em;
background-repeat: repeat-x;
background-image: linear-gradient(to right, rgba(211, 237, 251, 0) 50%, rgb(211, 237, 251) 50%);
transition: background-position 2s ease 0.1s;
}
.t-under_Bpink{
 border-bottom:2px solid #E85298;
}
.back-yellow{
	background: #FBF5DC;
}
.back-gray{
	background: #F1F1F2;
}
.back-pink{
	background: #FFF4F4;
}
.back-white{
	background: #FFFFFF;
}

@media screen and (max-width: 728px){
	.t-title{
		font-size: 1.5rem;
	}
	.t-subtitle{
		font-size: 1rem;
	}
	.s_t-bolder{
		font-size: 20px;
	}
	.s_t-body2{
	font-size: 0.8rem;
	}
	.s_t-body3{
		font-size: 1.2rem;
	}
}
/*WIDTH*/
.w-10 {
width: 10%;
}
.w-15 {
width: 15%;
}
.w-20 {
width: 20%;
}
.w-25 {
width: 25%;
}
.w-30 {
width: 30%;
}
.w-35 {
width: 35%;
}
.w-38 {
width: 38%;
}
.w-40 {
width: 40%;
}
.w-45 {
width: 45%;
}
.w-50 {
width: 50%;
}
.w-55 {
width: 55%;
}
.w-60 {
width: 60%;
}
.w-65 {
width: 65%;
}
.w-70 {
width: 70%;
}
.w-75{
	width: 75%;

}
.w-80 {
width: 80%;
}
.w-90{
  width: 90%;
}
.w-100 {
width: 100%;
}

.w-auto {
width: auto;
}

.h-auto {
height: auto!important
}
.max-1100{
	max-width: 1100px;
}
@media screen and (max-width: 768px){
	.s_w-100{
	width: 100%;
	}
	.s_w-95{
	width: 95%;
	}
.s_w-90{
width: 90%;
}
.s_w-80{
width: 80%;
}
.s_w-70{
width: 70%;
}
.s_w-60{
width: 60%;
}
.s_w-50{
width: 50%;
}
.s_w-40{
width: 40%;
}
.s_w-47{
width: 47%;
}
.s_w-30{
width: 30%;
}
.s_w-25{
width: 25%;
}
.s_w-20{
width: 20%;
}
.s_w-100{
width: 100%;
}

}
/*margin-padding*/
.m-30{
	margin: 30px;
}
.m-auto{
margin: auto;
}
.m-1p{
	margin: 1%;
}

.mb-8{
	margin-bottom: 8px;
}
.mb-16{
	margin-bottom: 16px;
}
.mb-30{
	margin-bottom: 30px;
}
.mb-50{
	margin-bottom: 50px;
}
.mb-64{
	margin-bottom: 64px;
}
.mb-104{
	margin-bottom: 104px;
}
.mt-16{
	margin-top:16px;
}
.mt-30{
	margin-top:30px;
}
.mt-64{
	margin-top:64px;
}
.mt-104{
	margin-top:104px;
}
.mt-150{
	margin-top:150px;
}
.mt--50{
	margin-top: -50px;
}

.ml-5{
	margin-left: 5%;
}
.mr-5{
	margin-right: 5%;
}
.ml-32{
	margin-left: 32px;
}
.ml-10p{
	margin-left: 10%;
}
.ml-130{
	margin-left: 130px;
}
.mr-32{
	margin-right: 32px;
}
.mr--30{
	margin-right: -30px;
}
.mr-2p{
	margin-right: 2%;
}
.p-8{
	padding: 8px;
}
.p-10{
	padding: 10px;
}
.p-16{
	padding: 16px;
}
.p-32{
	padding: 32px;
}
.p-5p{
	padding: 5%;
}
.pt-24{
	padding-top: 24px;
}
.pt-32{
	padding-top: 32px;
}
.pt-64{
	padding-top: 64px;
}
.pb-32{
	padding-bottom: 32px;
}
.pb-64{
	padding-bottom: 64px;
}
.pb-48{
	padding-bottom: 48px;
}
@media screen and (max-width: 768px){


/*sp-margin*/
.s_m-auto{
margin: auto;
}
.s_m-20{
	margin:0 20%;
}
.s_ml-30p{
	margin-left: 30%;
}
.s_mt-16{
	margin-top: 16px;
}
.s_mt-64{
	margin-top: 64px;
}
.s_mt--20{
	margin-top: -20px;
}
.s_mt--30{
	margin-top: -30px;
}
.s_mb-16{
	margin-bottom: 16px;
}
.s_mb-40{
	margin-bottom: 40px;
}
.s_mb--50{
	margin-bottom: -50px;
}
.s_mb-80{
	margin-bottom: 80px;
}
.s_p-16{
	padding: 16px;
}
.s_ptb-48{
	padding-top: 48px;
	padding-bottom: 48px;
}
.s_p-15{
	padding: 1.5%;
}
.s_p-5{
	padding: 5%;
}

}

/*position*/
.p-re{
	position: relative;
}
.p-ab{
	position: absolute;
}
/*footer*/
.footer{
	text-align: center;
	font-size: 14px;
}
.footer .logo_alice{
	display: block;
    width: 200px;
    margin: auto;
}
.footer .logo_alice img{
    width: 200px;
}
.footer .link{
	margin: 20px auto;
    width: 300px;
    align-items: center;
    justify-content: space-evenly;
}
.footer .info{
margin: 20px auto;
    width: 400px;
    align-items: center;
    justify-content: space-evenly;
}
@media screen and (max-width: 768px){
.footer .info{
width:100%;
}
}

/**/
.blue-box01{
    background: #06B4EA;
    color: #FFF;
    outline: 2px solid rgb(255, 255, 255);
    outline-offset: -9px;
}
/*nayami*/
.hukidashi_black{
	position: relative;
color: #fff;
margin: 0 auto;
padding: 16px 0;
background: #3E3A39;
}
.hukidashi_black::before{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	bottom: -26px;
	left: calc(50% - 13px);
	border-top: 26px solid #3E3A39;
	border-left: 16px solid transparent;
	border-right: 16px solid transparent;
}

@media screen and (max-width: 768px){
}

/*Btn*/

.Btn{
	background: #E72410;
    border-radius: 30px;
    text-align: center;
}
.Btn a{
	padding: 10px;
	justify-content: center;
	display: flex;
	text-align: center;
	color: #fff;
	cursor: pointer;
}
.Btn .poly{
	width: 10px;
	height: auto;
}
.Btn_white{
	background: #fff;
}
.Btn_white a{
	color: #3d3f42;

border: 1px solid #3d3f42;
border-radius: 30px;
}
/*title-container*/
.title-container{
	max-width:550px;
}

/*who-container*/
.who-double_block{
	display: inline-block;
  position: relative;
  padding: 5px;
  border: solid 1px #E85298;
  border-radius: 6px;
	min-height: 220px;
  place-content: center;
	  z-index: -1;
}
.who-double_block::before {
	content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -6px;
  right: -6px;
  border: solid 2px #E85298;
  z-index: -1;
  border-radius: 10px;
}
.who-container__under--backImg{
	background: url(../images/who_02.webp);
    background-size: 100%;
		height: 150px;
			background-repeat: round;
}
.who-container__under--block{
 background: #FBF5DC;
}

@media screen and (max-width: 768px){
	.who-double_block{
		min-height: 170px;
	}
	.who-container .alice_01{
		width: 60%;
		position: absolute;
		right: -50%;
		bottom: 0;
		}
	.who-container .alice_02{
		width: 60%;
		position: absolute;
		left: -65%;
		bottom: 0;
	}
	.who-container .alice_03{
		width: 60%;
		position: absolute;
		right: -50%;
		bottom: 0;
	}
	.who-container__under--backImg{
		background: url(../images/who_02_sp.webp);
		background-repeat: round;
        padding-top: 40px;
        margin-top: 60px;
				height: 100px;
	}
	.who-container__under--block{
		margin-top: -10px;
	}
}
/*howto-container*/


@media screen and (min-width:769px) and ( max-width:1100px) {

}
@media screen and (max-width: 768px){

}
/*plan*/
@media screen and (max-width: 768px){

}

@media screen and (min-width:769px) and (max-width:1000px) {

}
@media screen and (max-width: 768px){

}
