@charset "utf-8";

.small {
	font-size: 18px;
}

.right {
	text-align: right;
}

.mt1em {
	margin-top: 1em!important;
}
.mt2em {
	margin-top: 2em!important;
}
.mb1em {
	margin-bottom: 1em!important;
}
.mb2em {
	margin-bottom: 2em!important;
}
.my1em {
	margin: 1em 0!important;
}
.my2em {
	margin: 2em 0!important;
}
.pb1em {
	padding-bottom: 1em!important;
}
.pb2em {
	padding-bottom: 2em!important;
}
.pb3em {
	padding-bottom: 3em!important;
}

main {
	width: 100%;
	color: #333;
}

h1 {
	display: flex;
	justify-content: center;
	overflow: hidden;
}
h1.guide_title {
	display: flex;
	justify-content: center;
	background: #4588cc;
	overflow: hidden;
}
h2 img {
	justify-content: center;
	margin:0 auto;
}
p, .fs-default {
	font-size: 24px;
	line-height: 140%;
}
p.lead {
	font-size: 34px;
	font-weight: 700;
	line-height: 140%;
	text-align: center;
	padding: .5em 0;
}

.wrapper {
	margin: 1.5em;
}

section {
	/*max-width: 670px;*/
	margin: auto;
	margin-bottom: 3em;
}
.inner {
	max-width: 700px;
	margin: auto;
}

.significance {
	background: #eef6ff;
	border-radius: 12px;
	padding: 1em;
}
.significance p {
	margin-bottom: .5em;
}
.significance p:last-child {
	margin-bottom: 0;
}
.significance p.head {
	display: flex;
	align-items: center;
	font-weight: 700;
}
.significance p.head::before {
	display: inline-block;
	content: "";
	background: url("../img/icon-info.png") no-repeat;
	background-size: contain;
	width: 3vw;
	max-width: 30px;
	height: 3vw;
	max-height: 30px;
	margin: .1em .3em 0 0;
}
.significance p:nth-child(2) {
	margin-left: 5%;
}
.significance p a {
	color: #5a78c8;
}

.content {
	margin: 10% 0;
}
#howto h3 {
	font-size: 28px;
	font-weight: 700;
}

#regularly {
	background: #f5f6ff;
	margin-bottom: -80px;
}
#regularly .wrapper {
	margin-bottom: 0;
	padding-bottom: 7em;
}
#regularly h2{
	display: flex;
	justify-content: center;
	background: #4588cc;
}
#regularly h3 {
	font-size: 28px;
	font-weight: 700;
	margin: 2.4em 0 1em 0;
}

#faq h2 {
	display: flex;
	align-items: center;
	font-size: 28px;
	font-weight: 700;
}
#faq h2::before {
	display: inline-block;
	content: "";
	background: url("../img/icon-info2.png") no-repeat;
	background-size: contain;
	width: 5vw;
	max-width: 30px;
	height: 5vw;
	max-height: 30px;
	margin: .2em .3em 0 0;
}

/*
footer {
	display: none;
	position: fixed;
	bottom: 0;
	width: 100%;
	background: #fff;
	border-top: 1px solid #ccc;
	z-index: 999;
}
footer .inner {
	width: 100%;
	max-width: 700px;
	margin: auto;
	padding: 1em;
}
footer .btn a {
	display: block;
	width: 100%;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	background: #eb5505;
	border-radius: 8px;
	padding: 1em;
}
*/
.link {
	padding: 24px 0px;
	text-align: right;
}
.link p a {
	color: #5a78c8;
}


/* Accordion
------------------------------------------------------------------------------------------------ */

ul.accordion {
  width: 100%;
  margin: 1em 0;
}
ul.accordion li {
  list-style: none;
	border-bottom: 1px solid #ccc;
}
ul.accordion li.noline {
  list-style: none;
	border-bottom: none;
	margin-bottom:5px;
}
ul.accordion li.noline ul li {
	border-bottom: none;
}
ul.accordion .ac-head {
  position: relative;
  margin: 0;
	display: flex;
	align-items: center;
  padding: .8em 0;
  cursor: pointer;
	transition: .2s;
}
ul.accordion .ac-head:hover {
	opacity: .8;
	transition: .2s;
}
ul.accordion .ac-head::after {
  content: "";
  position: absolute;
  right: .8em;
  top: 32%;
  transition: all 0.2s ease-in-out;
  display: flex;
	width: 2vw;
  max-width: 10px;
	height: 2vw;
  max-height: 10px;
  border-top: solid 2px #666;
  border-right: solid 2px #666;
  transform: rotate(135deg);  
}
ul.accordion .ac-head p {
  padding-right: 40px;
}
ul.accordion .ac-head img {
  width: 6vw;
	max-width: 30px;
	height: 6vw;
	max-height: 30px;
	margin: .2em .5em 0 0;
}

ul.accordion .ac-head.open::after {
  transform: rotate(-45deg);
  top: 45%;
}
ul.accordion .ac-content {
	margin: 0;
  padding: 1em 0 2em 0;
}


/* Swiper 
  ------------------------------------------------------------- */
.swiper {
	position: relative;
	overflow: hidden;
	margin:  0;
	padding: 1em 0 3em 0;
}
.swiper-slide::after {
	position: absolute;
	right: -12%;
	top: 50%;
	content: "";
  display: inline-block;
  width: 8%;
  height: 8%;
  background: url(../img/slide-arrow1.png) no-repeat;
  background-size: contain;
	z-index: 10;
}
.style2 .swiper-slide::after {
  position: absolute;
	right: -12%;
	top: 50%;
	content: "";
  display: inline-block;
  width: 8%;
  height: 8%;
  background: url(../img/slide-arrow2.png) no-repeat;
  background-size: contain;
	z-index: 10;
}
.style3 .swiper-slide::after {
  position: absolute;
	right: -12%;
	top: 50%;
	content: "";
  display: inline-block;
  width: 8%;
  height: 8%;
  background: url(../img/slide-arrow3.png) no-repeat;
  background-size: contain;
	z-index: 10;
}
.swiper-slide:last-child::after {
  background: none;
}
.swiper-pagination {
	position: relative;
	bottom: -2em;
	display : flex;
	justify-content: center;
	width: 100%;
	margin: 0;
}
.swiper-pagination-bullet {
	display: block;
	background: #ccc;
	width: 16px;
	height: 16px;
	border-radius: 100%;
	margin: 0 10px;
	cursor: pointer;
	transition: .2s;
}
.swiper-pagination-bullet-active {
	background: #eb5505!important;
	transition: .2s;
}


/* Returm to top 
  ------------------------------------------------------------- */
.returmtop {
  display: none;
  position: fixed;
  bottom: 1em;
  right: 1em;
}

.returmtop a {
  display: block;
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.returmtop a:hover, .returmtop a:active {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: all .3s ease;
}



@media (max-width: 750px) {
	
	.small {
		font-size: 80%!important;
	}
	
	.wrapper {
		margin: 2em 1em;
	}
	
	p, .fs-default {
		font-size: 3.8vw;
	}
	p.lead {
		font-size: 4.3vw;
		font-weight: 700;
		line-height: 140%;
		text-align: center;
	}
	
	section {
		margin-bottom: 2em;
	}
	
	#howto h3 {
		font-size: 4.2vw;
	}
	
	#regularly .wrapper {
		margin-bottom: 0;
		padding-bottom: 20%;
	}
	#regularly h3 {
		font-size: 4.2vw;
	}
	
	#faq h2 {
		font-size: 4.5vw;
	}
	#faq h2::before {
		width: 5vw;
		max-width: 30px;
		height: 5vw;
		max-height: 30px;
	}
	#faq .ac-conten p {
		font-size: 3.3vw;
		padding: 0 0 1em 0;
	}
	
	/*footer .inner {
		width: 100%;
		max-width: 700px;
		margin: auto;
		padding: 1em;
	}

	footer .btn a {
		display: block;
		width: 100%;
		color: #fff;
		font-size: 4.2vw;
		font-weight: 700;
		text-align: center;
		text-decoration: none;
		background: #eb5505;
		border-radius: 8px;
		padding: 1em;
	}*/
	
}

#about,#service{
	margin-bottom:50px;
}
#about img.guide{
	display:block;
	margin:0 auto;
}
#service img.guide{
	display:block;
	margin:0 auto;
}
#howto img.guide{
	display:block;
	margin:0 auto;
}
#regularly img.guide{
	display:block;
	margin:0 auto;
}