@charset "UTF-8";
* {
	padding: 0;
	margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ol, ul, dl {
	list-style: none;
	padding: 0;
}

.display-inlineblock {
	display: inline-block;
}
.oh {
	overflow: hidden;
}
.sp-block {
	display: block;
}
.sp-del {
	display: none;
}
img {
	-webkit-backface-visibility: hidden;
}

@media screen and (min-width: 960px) { /* pc */
	/* hover img alpha */
	a img.alpha {
		transition: all 0.2s ease 0s;
	}
	a:hover img.alpha {
		opacity: 0.8;
		filter: alpha(opacity=80);
		-ms-filter: "alpha( opacity=80 )";
	}
}

@media screen and (min-width: 768px) { /* tab pc */
	.pc-ib {
		display: inline-block;
	}
}

.container img {
	max-width: 100%;
	width: /***/ auto; /* IE8用 */
	height: auto;
	border: none;
	vertical-align: middle;
}
.container .indent {
	text-indent: 1em;
}
.container .indent05 {
	text-indent: 0.5em;
}
.container .indent-ico {
	text-indent: -1em;
	margin-left: 1em;
}

.container .indent *,
.container .indent05 *,
.container .indent-ico *{
	text-indent: 0;
}
.container a, .container a * {
	transition: all 0.2s ease 0s;
}
.container .pd4per {
	padding: 0 4%;
}
.container .bold {
	font-weight: bold;
}
.container .italic {
	font-style: italic;
}
.container .mb1em {
	margin-bottom: 1em;
}

.container h1, .container h2, .container h3, .container h4, .container p, dl, dt, dd {
	padding: 0;
	margin: 0;
}

.container {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 100%;
	line-height: 1.6;
}

.font-mincho{
	font-family: 'Noto Serif JP', serif;
}

.container .mw1000px {
	max-width: 1000px;
	margin: 0 auto;
}
.container .mw900px {
	max-width: 900px;
	margin: 0 auto;
}
.container .mw640px {
	max-width: 640px;
	margin: 0 auto;
}

.container .ta-c {
	text-align: center;
}

.container .ta-r {
	text-align: right;
}

/* bg color */
.container .bg-white{
	background-color: #fff;
}
.container .bg-blue-box{
	background-color: #0078D4;
}
.container .bg-blue-box .bg-padding-top{
	padding-top: 4vw;
}
.container .bg-blue-box .bg-padding-side{
	padding-left: 4vw;
	padding-right: 4vw;
}
@media screen and (min-width: 768px) { /* tab pc */
 	div.container .bg-blue-box{
	}
	div.container .bg-blue-box .bg-padding-top{
		padding-top: 50px;
	}
	div.container .bg-blue-box .bg-padding-side{
		padding-left: 50px;
		padding-right: 50px;
	}
}

/* head */
.head-box {
}

/* head series */
.head-box .series-title-box{
	border-bottom: 2px solid #0078D4;
	padding: 16px;
	text-align: center;
}

.head-box .series-title-box .logo-box{
	padding: 0 4%;
}

.head-box .series-title-box .item-box + .item-box{
	margin-top: 8px;
}

.head-box .h1-box{
	line-height: 1.3;
	padding: 24px 4%;
	text-align: center;
	font-size:min(4.8vw,50px);
}

.head-box .h1-box h1{
	font-size: 1em;
}

.head-box .h1-box .sub{
	font-size: calc((40/50) * 1em);
	margin-bottom: 0.2em;
	display: inline-block;
}

.head-box .h1-box .num{
	margin-left: 0.1em;
	width: 1.2em;
	height: 1.2em;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	
	background-color: #0078D4;
	color: #fff;
	border-radius: 50%;
	padding-bottom: 0.1em;
}

@media screen and (min-width: 768px) { /* tab pc */
	div.head-box .series-title-box{
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		
		column-gap: 3%;
		padding: 16px 5%;
		line-height: 1;
	}
	div.head-box .series-title-box .logo-box{
		padding: 0;
	}

	div.head-box .series-title-box .item-box + .item-box{
		margin-top: 0;
	}
}

/* head catch */
.head-box .head-catch-box{
	background-color: #0078D4;
	color: #fff;
	text-align: center;
	font-size: min(4.4vw,40px);
}

/* head kv */
.head-box .kv-box{
	text-align: center;
	line-height: 1;
}

.head-box .kv-box img{
	width: 100%;
}

/* lead */
.lead-box {
	background-color: #F2F2F2;
	padding: 1em 4% 1em;
}

.lead-box .inner-box div.logo-box{
	width: 50%;
	margin: 0;
	padding: 0;
	text-align: left;
}

.lead-box .inner-box div.logo-box + div{
	margin-top: 8px;
	
	font-size:min(4vw,16px);
}

@media screen and (min-width: 768px) { /* tab pc */
	div.lead-box {
		font-size: calc((18/16) * 1em);
	}
	div.lead-box .inner-box {
		max-width: 640px;
		margin: 0 auto;
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		
		column-gap: 4%;
	}
	div.lead-box .inner-box div.logo-box{
		width: auto;
	}
	div.lead-box .inner-box div.logo-box + div{
		margin-top: 0;
	}
}

/* sec common */
.sec{

}

.p2 .sec1,
.container .sec + .sec {
	margin-top: 64px;
}
.container .sec-sub + .sec-sub {
	margin-top: 40px;
}
.container .sec-sub2 {
	margin-top: 24px;
}

@media screen and (min-width: 768px) { /* tab pc */
	div.p1 .sec1,
	div.container .sec + .sec {
		margin-top: 64px;
	}
	div.container .sec-sub + .sec-sub {
		margin-top: 40px;
	}
	div.container .sec-sub2 {
		margin-top: 24px;
	}
}

/* sec title */
.container .sec .sec-ttl-box {
	line-height: 1.3;
	margin-bottom: 40px;
}

.container .sec .sec-ttl-box h2 {
	font-size:min(6vw,18px);
	font-weight: bold;
	line-height: 1.3;

	text-align: center;
}

@media screen and (min-width: 768px) { /* tab sp */
	div.container .sec .sec-ttl-box {
		margin-bottom: 40px;
	}
	div.container .sec .sec-ttl-box h2 {
		font-size: calc((24/16) * 1em);
	}
}

/* sec img */
.sec-img-box{
	text-align: center;
}

.sec-img-box .img-title{
	text-align: center;
	margin-bottom: 1em;
	font-size: 125.00%; /* 20px */
	font-weight: bold;
}

.img-note-box{
	margin-top: 1em;
	font-size: 0.75em;
}

.note-box{
	margin-top: 0.5em;
	font-size: 0.75em;
}

.fs10px{
	font-size: 10px;
}

.container .sec-txt-box p {
	text-align: justify;
}
.container .sec-txt-box p + p{
	margin-top: 1.5em;
}

/* p1 */
.p1 .p1-img01-box .item-box + .item-box{
	margin-top: 32px;
}

@media screen and (min-width: 768px) { /* tab sp */
	div.p1 .p1-img01-box{
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		
		column-gap: 4%;
	}
	div.p1 .p1-img01-box .item-box{
		flex: 1;
	}
	div.p1 .p1-img01-box .item-box + .item-box{
		margin-top: 0;
	}
}


/* p2 */
.p2 .p2-img01-box .item-box + .item-box{
	margin-top: 32px;
}

@media screen and (min-width: 768px) { /* tab sp */
	div.p2 .p2-img01-box{
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		
		column-gap: 4%;
	}
	div.p2 .p2-img01-box .item-box{
		flex: 1;
	}
	div.p2 .p2-img01-box .item-box + .item-box{
		margin-top: 0;
	}
}


/* p2 cta */
.p2 .cta-box{
}

.p2 .cta-box .item-box + .item-box{
	margin-top: 16px;
}

.p2 .cta-box a{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	
	background-color: #0078D4;
	color: #fff;
	padding: 8px;
	text-decoration: none;
	font-weight: bold;
	font-size:min(5vw,18px);
}

@media screen and (min-width: 768px) { /* tab pc */
	div.p2 .cta-box{
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;

		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;

		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		
		column-gap: 4%;
	}
	div.p2 .cta-box .item-box{
		flex: 1;
	}
	div.p2 .cta-box .item-box + .item-box{
		margin-top: 0;
	}
	div.p2 .cta-box a{
		font-size: calc((20/16) * 1em);
	}
}

@media screen and (min-width: 960px) { /* pc */	
	div.p2 .cta-box a:hover,
	div.p2 .cta-box a:hover span{
		text-decoration: underline;
	}
}

.longurl {
	word-break: break-all;
}

/* next page */
.next-page-box{
	overflow: hidden;
	font-size:min(6vw,125.00%); /* 20px */
}

.next-page-box a{
	color: #000;
	text-decoration: none;
	line-height: 1.3;
}

.next-page-box a .flex-box{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	
	column-gap: 1em;
}

.next-page-box a .icon {
	line-height: 1;
	
	font-size: calc((24 / 20) * 1em);
	color: #113961;
	margin-bottom: 8px;
}

.next-page-box a .text{
	font-weight: bold;
	text-align: center;
}

@media screen and (min-width: 768px) { /* tab pc */
	div.next-page-box{
		font-size: 1em;
	}
	div.next-page-box a .icon{
		font-size: 20px;
	}
	div.next-page-box a .text{
		font-size: calc((22/16)* 1em);
		
		margin-bottom: 8px;
	}
}

@media screen and (min-width: 960px) { /* pc */	
	div.next-page-box{
	}
	div.next-page-box a:hover,
	div.next-page-box a:hover .hov-line{
		text-decoration: underline;
	}
}

@media screen and (max-width: 414px) { /* small sp */
	div.next-page-box a .text{
		font-size: 5vw;
	}
}

/* thanks */
.container .thanks-box{
	text-align: center;
}

.container .thanks-box .title-box {
	text-align: center;
	font-weight: bold;
	margin-bottom: 1.6em;
}

.container .thanks-box a{
	text-decoration: none;
}

.container .thanks-box .bottom-logo-box a{
	max-width: 280px;
	margin: 0 auto;
	display: block;
}

.container .thanks-box .data-box {
}

.container .thanks-box .data-box .name{
	font-weight: bold;
}

.container .thanks-box .data-box + .logo-box{
	margin-top: 64px;
}

.container .thanks-box .logo-flex-box{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	margin-bottom: 16px;
}

.container .thanks-box .logo-flex-box .item-box{
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
}

.container .thanks-box .logo-flex-box .item-box + .item-box{
	border-left: 1px solid #000;
	padding-left: 2%;
}

.container .thanks-box .logo-flex-box .name{
	font-weight: bold;
	margin-top: 0.5em;
}

@media screen and (min-width: 768px) { /* tab pc */
	/* thanks */
	div.container .thanks-box{
		padding: 0;
	}
	
	div.container .thanks-box .bottom-logo-box {
		padding: 0 8%;
	}
}

@media screen and (min-width: 960px) { /* pc */
	/* hover img alpha */	
	div.container .thanks-box a,
	div.container .bottom-logo-box a{
		transition: all 0.2s ease 0s;
	}
	div.container .thanks-box a:hover,
	div.container .thanks-box a:hover *,
	div.container .bottom-logo-box a:hover,
	div.container .bottom-logo-box a:hover *{
		text-decoration: underline;
	}
}

/* bottom logo */
.container .bottom-logo-box {
	text-align: center;
	padding: 0 4% 0;
	margin-bottom: 1.5em;
}

.container .bottom-logo-box a{
	color: #000;
	text-decoration: none;
}

/* pager */
.pager-box {
	padding: 0 2%;
	text-align: center;
	color: #fff;
	font-size: 175.00%; /* 28px */
	font-weight: bold;
	
	background-color: #0078D4;
}
.pager-box ul {
	margin: 0;
	padding: 0;
}
.pager-box ul li {
	list-style: none;
	display: inline-block;
	width: 1.6em;
	height: 1.6em;
	margin: 0;
}
.pager-box ul li a {
	text-decoration: none;
	color: #fff;
	display: block;
	width: 1.6em;
	height: 1.6em;
}
.pager-box ul li.current {
	color: #fff;
	text-decoration: underline;
}
div.pager-box ul li.txt {
	margin: 0 8px;
}
div.pager-box ul li.txt, div.pager-box ul li.txt a {
	width: auto;
	text-decoration: none;
	border-color: transparent;
}

@media screen and (min-width: 960px) { /* pc */
	div.pager-box ul li a:hover,
	div.pager-box ul li.current {
		color: #fff;
		text-decoration: underline;
	}
}

/* cryptnote */
.cryptnote{
	text-align: center;
	font-size: calc((12/16) * 1em);
}


/* ------------------------------ *
	SNSボタン
 * ------------------------------ */
div.snsWrap{
	text-align: center;
	padding-top: 40px;
	padding-bottom: 5px;
}
.social_buttons{ list-style-type: none; text-align: left; margin: 0; padding: 0; *zoom: 1; display: inline-block;}
.social_buttons:before, .social_buttons:after{ content: ""; display: table; clear: both; }
.social_buttons li{ float:left; margin-left: 0; margin-right: 10px; font-size:12px; }
.social_buttons li:last-child{ margin-right: 0; }
.social_buttons li .fb_iframe_widget > span{ vertical-align: baseline; }
