@charset "UTF-8";

/*/////////////////////////////
基本設定
////////////////////////////*/

html{
	overflow-y:scroll;
	background: #eee;
}

body{
	position: relative;
	width: 100%;
	font-size: 16px;
	line-height: 1.6em;
	color: #3b3b3b;
/* 	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'Noto Sans JP', sans-serif; */
	font-family: 'Noto Sans JP', sans-serif;
	background-color: #fff;
	margin: 0 auto;
	box-shadow: 0 0 8px gray;
	overflow: hidden;
}

#wrapper{
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

*:focus{
	outline: none;
}

a,button,div{
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

img {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;
	vertical-align:bottom;
	font-size: medium;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

p{
	margin-bottom: 1rem;
}

/*注釈*/
.note_cmt_text{
	font-size: 14px;
	line-height: 1.3em;
	margin: 0.5rem 0 0;
}

.note_cmt_text a{
	word-wrap:break-word;
}

/*注釈 数字あり*/
.note_cmt{
	font-size: 14px;
	line-height: 1.5em;
	margin: 0.5rem 0 0 0;
	text-align: left;
	max-width: 750px;
}

.note_cmt p{
	padding-left: 1rem;
	text-indent: -18px;
	margin-bottom: 0.5em;
}

.note_cmt p::before{
	content: "*";
}

/*注釈 数字なし*/
.note_cmt1{
	font-size: 14px;
	line-height: 1.5em;
	margin: 0.5rem 0 0 14px;
	text-align: left;
	max-width: 750px;
}

.note_cmt1 p{
	text-indent: -14px;
	margin-bottom: 0.5em;
}

.note_cmt1 p::before{
	content: "※";
}

/*注釈 数字なし*/
.note_cmt2{
	font-size: 14px;
	line-height: 1.5em;
	margin: 0.5rem 0 0 14px;
	text-align: left;
	max-width: 750px;
}

.note_cmt2 p{
	text-indent: -14px;
	margin-bottom: 0.5em;
}

.note_cmt2 p::before{
	content: "・";
}

/* ★注釈 数字あり*/
.note_cmt3{
	font-size: 14px;
	line-height: 1.5em;
	margin: 0.5rem 0 0 0;
	text-align: left;
	max-width: 750px;
}

.note_cmt3 p{
	padding-left: 1rem;
	text-indent: -18px;
	margin-bottom: 0.5em;
}

.note_cmt3 p::before{
	content: "★";
}

/*indent*/
.indent_box{
	padding-left: 1rem;
	margin-top: 0.5rem;
}

.indent{
	text-indent: -1rem;
}

.red{
	color:#FF5050;
}

.blue{
	color:#0080e5;
}

.link{
	text-decoration: underline;
	color: #0080e5;
}

.bold{
	font-weight: bold;
}

.bold_none{
	font-weight:normal;
}

.center{
	display: block;
	text-align: center;
}

.pdf{
	display: block;
	height: 1.5rem;
	width: auto;
	padding-bottom: 3px;
}

/*画面サイズ別表示*/

.sp_only{
	display: block;
}

.pc_only {
	display: none;
}


@media screen and (min-width:768px){
	.sp_only{
		display: none;
	}

	.pc_only{
		display: block;
	}

	body{
		font-size: 22px;
	}

	.small{
		font-size: 1rem;
	}

	.note_cmt{
		font-size: 1rem;
	}

	.note_cmt1,
	.note_cmt2{
		font-size: 1rem;
	}

	.note_cmt_text{
		font-size: 0.8rem;
	}

	.pdf{
		height: 22px;
		margin-bottom: 7px;
	}
}/*ipad*/

@media screen and (min-width:1024px){
	body{
		font-size: 18px;
	}
	.small{
		font-size: 0.9rem;
	}

	.note_cmt{
		font-size: 0.9rem;
	}

	.note_cmt1,
	.note_cmt2{
		font-size: 0.9rem;
	}

	.pdf{
		height: 18px;
		margin-bottom: 5px;
	}
}/*PC*/


/*/////////////////////////////
コンテンツ共通
////////////////////////////*/

#main{
	position: relative;
	margin: 0 auto;
	z-index: 1;
	background-color: #fff;
}

.content_wrapper{
	overflow: hidden;
	width: 100%;
	margin: 0;
}

.content{
	overflow: hidden;
	padding: 1.5rem 0.7rem;
	width: 100%;
}

.content_inner{
	padding: 0 1rem 2rem;
	margin: 0 auto;
	width: 100%;
	max-width: 700px;
	background-color: #fff;
}

.content_title{
	position: relative;
	padding: 1rem 0.5rem;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 1.2rem;
}

.item_wrapper{
	padding-top: 1rem;
}

.item_inner{
	padding-bottom: 2rem
}


@media screen and (min-width:768px){
	.content{
		padding: 2rem 1.5rem 50px;
	}
	
	.content_inner{
		padding: 2rem 2rem 1rem;
	}

	.content_title::before{
		font-size: 18px;
		width: 200px;
	}

	.item_wrapper{
		padding-top: 2rem;
	}
}/*ipad*/

@media screen and (min-width:1024px){

}/*PC*/


/*/////////////////////////////
メインビジュアル	
////////////////////////////*/

#mainvisual{
	width: 100%;
	height: auto;
	background: #fff;
}

.mainvisual_wrapper{
	top: 0;
	width: 100%;
	max-width: 900px;
	height: auto;
	padding-bottom: 10px;
	margin: 0 auto;
	background-image: url(../img/bg.png);
	background-repeat: no-repeat;
	background-size:  110%;
	background-position: top;
	filter:brightness(1.1);
	z-index: 2;
}

.toptitle-01{
	filter:brightness(0.9);
	margin: 0 auto;
	padding: 2rem 1rem 1.5rem;
	width: 95%;
	height: auto;
}

.top_title{
	filter: drop-shadow(5px 5px 5px #CCCCCC);
}


@media screen and (min-width:768px){
	.mainvisual_wrapper{
		padding: 1rem 1rem 3.5rem;
	}

	.toptitle-01{
		padding-top: 1rem;
		width: 75%;
	}
}/*ipad*/

@media screen and (min-width:1024px){

}/*PC*/


/*/////////////////////////////
その他
////////////////////////////*/

#info-01{
	padding-top: 1.5rem;
}

.title-01{
	font-size: 1.1rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
	line-height: 1.6em;
	padding: 10px 0 25px;
}

.bg_box{
	padding: 15px;
	margin: 1.2rem auto;
}

.double{
	border: 7px double #0E77BC;
	border-radius: 15px;
}

.bg_yellow{
	background-color: rgba(255,247,233,1);
}

.marker{
  background: linear-gradient(transparent 60%, #F9F5B6 0%);
  display: inline;
  padding: 0 1px 0px;
}

.checklist{
	padding-left: 1.5rem !important;
}

.checklist li{
	position: relative;
	margin-bottom: 10px;
	vertical-align: middle;
}

.checklist li::before{
	content: '';
	position: absolute;
	background-image: url(../img/check.png);
	background-repeat: no-repeat;
	background-size: cover;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	margin: -3px 0.6em 0 -1.8rem;
}


#info-02{
	background-color: #59BBD8;
	padding-top: 3rem;
	padding-bottom: 3rem;
}

#info-02 .content_inner{
	border-radius: 15px;
}

.cmp{
	padding-top: 2rem;
}

.title-02{
	font-size: 1.3rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
	line-height: 1.4em;
	font-style: italic;
	text-align: center;
	padding: 10px 0;
	color: #0E77BC;
}

.list_indent{
	padding-left: 1.5rem !important;
}

.list_indent ul li{
	position: relative;
	text-indent: -1em;
	margin-bottom: 1rem;
	vertical-align: middle;
}

.list_indent ul li::before{
	display:inline-block; 
	vertical-align: middle;
	content:'';
	width: 0.6em;
	height: 0.6em;
	background: #0E77BC;
	border-radius: 50%;
	margin: 0 0.6em 0 -5px;
}

.list_indent ul li:last-of-type{
	margin-bottom: 0;
}

.product{
	border: 1px solid #333;
	padding: 10px 5px;
	margin: 2rem auto 1.5rem;
}

.product p{
	margin-bottom: 5px;
}

.item_box{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex: 1;
}

.item{
	text-align: center;
}

.item .img_wrap{
	position: relative;
	overflow: hidden;
	width: 102px;
	height: 160px;
	margin: 0 auto;
}

.item .img_wrap img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#info-03{
	padding-top: 0rem;
}

.text_inner{
	padding: 0 5px;
}

.text_title{
	font-weight: 600;
	font-size: 120%;
	max-width: 900px;
	height: auto;
	margin: 0 auto 1rem;
	padding: 10px;
	background-color: rgba(234,234,234,0.8);
	border-radius: 10px;
}

.item_box1{
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 1.5rem 0 1rem;
	flex: 1;
	gap: 0 12px;
}

.item_box1 .item{
	text-align: center;
}

.item_box1 .item .img_wrap{
	position: relative;
	overflow: hidden;
	width: 60px;
	height: 60px;
	margin: 0 auto;
}

.item_box1 .item .img_wrap img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;

}

.item_box1 .item p{
	display: block;
	padding: 10px 5px;
	margin-top: 1rem;
	font-size: 0.9rem;
	line-height: 1.3em;
	text-align: left;
	border: 1.5px solid #0E77BC;
	border-radius: 3%;
}
.item_box1 .item2 p{
	display: block;
	padding: 10px 10px;
	margin-top: 1rem;
	font-size: 1.5rem;
	line-height: 1.3em;
	text-align: left;
	border: 2.5px solid #0E77BC;
	border-radius: 3%;
}


.item_box2{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex: 1;
	gap: 0 12px;
}

.item_box2 .item{
	text-align: center;
}

.item_box2 .item .img_wrap{
	position: relative;
	overflow: hidden;
	width: 60px;
	height: 60px;
	margin: 0 auto;
}

.item_box2 .item .img_wrap img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;

}

.item_box2 .item p{
	display: block;
	padding: 5px 5px;
	font-size: 0.9rem;
	line-height: 1.3em;
	text-align: left;
	border: 1.5px solid #0E77BC;
	border-radius: 3%;
}

.ever_free{
	display: block;
	padding: 5px 0px;
	margin: 0 auto;
	width: 30%;
	height: 30%;
}

.triangle_below{
	margin: 0 auto;
	display: block;
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #0E77BC;
}

.list_indent1{
	padding-left: 1rem !important;
}

.list_indent1 li{
	text-indent: -1.2rem;
	margin-bottom: 1rem;
}

#info-05 .list_indent1 li:first-letter{
	font-size: 1.2rem;
	font-weight: 800;
	color: #0E77BC;
}

.list_indent1 li .note_cmt1{
	margin-top: 0;
}

.img_mg{
	margin: 15px auto;
}

#attention .img_mg{
	display: block;
	border: 2px solid #0E77BC;
}

@media screen and (min-width:768px){
	#info-01 .content_inner{
		padding-top: 0;
	}

	.title-02{
		font-size: 180%;
		padding: 20px 0;
	}
	.bg_box{
		padding: 20px 15px;
	}

	.item_box1{
		padding: 2.5rem 0 1.5rem;
		gap: 0 30px;
	}

	.item_box1 .item p{
		display: block;
		padding: 15px;
		margin-top: 2rem;
		font-size: 1rem;
		line-height: 1.5em;
	}

	.list_indent1 li{
		text-indent: -1.5rem;
	}

	#info-05 .list_indent1 li:first-letter{
		font-size: 1.5rem;
	}

	#info-02 .content_inner{
		padding: 3rem 2rem;
	}

	.cmp{
		padding-top: 0;
	}
}/*ipad*/

@media screen and (min-width:1024px){

}/*PC*/


/*/////////////////////////////
ご注意事項
////////////////////////////*/

.text_subtitle{
	padding: 1rem 0 0.5rem;
}

#attention ul li{
	margin-bottom: 1rem;
}

#attention .content_inner .text_inner:first-of-type > .list_indent1 ul li:first-of-type{
	text-indent: 0;
}

@media screen and (min-width:768px){
}/*ipad*/

@media screen and (min-width:1024px){
}/*PC*/


/*/////////////////////////////
下部エリア
////////////////////////////*/

#applyBtn_area{
	background: #F9F9F9;
	padding-top: 0;
}

#applyBtn_area .content_inner{
	background: #F9F9F9;
}

.btn_area{
	margin: 2rem auto;
	padding: 0 0.5rem;
	text-align: center;
}

/* ボタン */
.float_btn{
	position: relative;
	display: inline-block;
	width: 280px;
	padding:12px 0;
	color:#fff;
	background-color: #FFB200;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -.5px;
	border-radius: 5px;
	text-align:center;
	cursor: pointer;
	border: none;
	box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
	-webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
	transition: 0.5s;
}

.float_btn:disabled {
	border: 1px solid #BFBFBF;
  background-color: #cccccc;
  color: #666666;
	box-shadow:none;
}

input[type=checkbox] {
	transform: scale(1.3);
	margin-right: 5px;
}

@media screen and (min-width:768px){
	.btn_area{
		margin: 1.5rem auto 1rem;
	}

	.float_btn{
		width: 600px;
		max-width: 80%;
		padding: 15px 0;
		font-size: 120%;
	}

	input[type=checkbox] {
		transform: scale(1.8);
		margin-right: 10px;
	}
}/*ipad*/

@media screen and (min-width:1024px){
	
}/*PC*/


/*/////////////////////////////
フッター
////////////////////////////*/

footer{
	width:100%;
	background-color:#666666;
	text-align: center;
}

#footer_inner {
	padding: 5%;
	text-align: center;
}

#copyright{
	display: block;
	font-size:10px;
	color:#fff;
	letter-spacing: .5px;
}

@media screen and (min-width:768px){
	#footer_inner {
		padding: 5%;
	}
	#copyright{
		font-size: 1rem;
	}
}/*ipad*/

@media screen and (min-width:1024px){

}/*PC*/