@charset "utf-8";


/* Common
  ------------------------------------------------------------- */

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	background: #efefef;
}
p {
	line-height: 160%;
}
a {
	color: #5a78c8;
}

.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;
}

.left {
	text-align: left!important;
}
.right {
	text-align: right!important;
}
.center {
	text-align: center!important;
}

.red {
	color: #c00000;
}

@-webkit-keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpSmall {
	0% {
		opacity: 0;
		transform: translate3d(0, 20%, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
.animate__fadeInUpSmall {
	animation-name: fadeInUpSmall;
}


/* PC
  ------------------------------------------------------------- */

header {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #ccc;
	background: #fff;
}
header img {
	width: 36vw;
	max-width: 200px;
	padding: 1em;
}

main {
	width: 100%;
	color: #333;
}

h1 {
	margin: 0;
	padding: 0;
}
h2 {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	margin: 0;
	padding: 0;
}
p {
	font-size: 28px;
	line-height: 140%;
}

.btn a {
	display: block;
	color: #fff;
	background: #eb5505;
	border-radius: 8px;
	font-size: 36px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	padding: 1em;
}
.btn a span {
	display: block;
	font-size: 70%;
	font-weight: 400;
	margin-top: .5em;
}

section {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	padding: 0;
}
.inner {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	padding: 1.5em;
}

#mv {
	position: relative;
	overflow: hidden;
	width: 100%;
}
#mv .mv-h1 {
	position: absolute;
	top: 0;
	z-index: 1;
	animation-delay: .3s;
}
#mv .mv-card {
	position: absolute;
	bottom: 0;
	z-index: 1;
	animation-delay: .5s;
}
#mv .mv-bottom {
	position: absolute;
	bottom: 0;
	z-index: 2;
	animation-delay: .7s;
}
#mv .mv-balloon {
	position: absolute;
	top: 52%;
	right: -1%;
	width: 27vw;
	max-width: 210px;
	z-index: 2;
	animation-delay: 1.6s;
}

#period {
	width: 100%;
	background: #e3f0ff;
	overflow: hidden;
}
#period h2 {
	background: #fff;
	overflow: hidden;
}
#period span {
	font-weight: 700;
}

#flow {
	padding: 3em 0;
	background: #fff;
}

#features {
	padding: 2em 0;
	background: #e3f0ff;
	overflow: hidden;
}

#notes, #conditions, #faq {
	background: #fff;
}
#notes h2, #conditions h2, #faq h2 {
	font-size: 28px;
	color: #fff;
	background: #95bded;
	border-radius: 4px;
	padding: .5em;
}

#contact {
	background: #fff;
	padding: 2em 0 2em;
	text-align: center;
  font-size: 1.6rem;
}
#contact h2 {
  margin-bottom: .5em;
}
#contact p {
  line-height: 180%;
}

.border-bottom {
	border-bottom: 1px solid #ccc;
}

.pc-fixed {
	display: none;
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 999;
}
.pc-fixed .inner {
	background: #fff;
}
.sp-fixed {
	display: none;
}

footer {
	position: relative;
  padding: 1.5em;
	padding-bottom: 12em;
  width: 100%;
  text-align: center;
  color: #000;
  background: #fff;
  overflow: hidden;
  border-top: 1px solid #ccc;
	z-index: 5;
}
footer ul {
	display: flex;
	justify-content: center;
	flex-flow: wrap;
	margin-bottom: 1em;
}
footer ul li {
	font-size: 14px;
	line-height: 140%;
	margin-right: .5em;
	display: inline-block;
  padding: 0 1.5em 0 .5em;
  background: url(../img/icon-blank-gray.png) no-repeat right;
}
footer ul li:first-child {
	border-left: none;
}
footer ul li:last-child {
	margin-right: 0;
}
footer p.copy {
	font-size: 12px;
	line-height: 140%;
}


/* Accordion */
ul.accordion {
  width: 100%;
  margin: 0;
}
ul.accordion li {
  list-style: none;
}
ul.accordion li.noline {
  list-style: none;
	border-bottom: none;
}
ul.accordion li.noline ul li {
	border-bottom: none;
}
ul.accordion li ul li {
	border-bottom: none;
}
ul.accordion .ac-head {
	border-bottom: 2px solid #ff7656;
  position: relative;
  margin: 0 0 0em 0;
	display: flex;
	align-items: center;
  padding: 0;
  cursor: pointer;
	transition: .2s;
}
ul.accordion .ac-head:hover {
	opacity: .8;
	transition: .2s;
}
ul.accordion .ac-head::after {
	line-height: 100%;
  content: "＋";
  position: absolute;
  right: -1em;
  top: auto;
  transition: all 0.2s ease-in-out;
  display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 34px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	background: #ff7656;
	border-radius: 50%;
	margin: .0em 1em 0 0;
}
ul.accordion .ac-head p {
	position: relative;
	left: 1.5em;
  padding: .5em 0em .5em 0;
	margin-right: 3.5em;
}
ul.accordion .ac-head p::before {
	position: absolute;
	left: -1.5em;
  content: "Q";
	font-weight: 700;
	color: #ff7656;
}

ul.accordion .ac-head.open::after {
	content: "－";
	transition: .2s;
  transform: rotate(-180deg);
  /*top: 45%;*/
}
ul.accordion .ac-content {
	margin: 0;
  padding: 0 0 1em 0;
}
ul.accordion .ac-content p {
	position: relative;
	left: 1.5em;
  padding: .5em 0em .5em 0;
	margin-right: 2em;
}
ul.accordion .ac-content p::before {
	position: absolute;
	left: -1.4em;
  content: "A";
	font-weight: 700;
	color: #ff7656;
}


/* Swiper  */
.swiper {
	position: relative;
	overflow: hidden;
	margin-bottom: 3em!important;
	padding: 0em 0 3em 0;
}
.swiper-wrapper {
	padding-bottom: 2em!important;
}
.swiper-pagination {
	position: relative;
	bottom: 0;
	display : flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	z-index: 100;
}
.swiper-pagination-bullet {
	display: block;
	background: #ccc;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	margin: 0 1em!important;
	padding: .6em;
	cursor: pointer;
	transition: .2s;
}
.swiper-pagination-bullet-active {
	background: #eb5505!important;
	transition: .2s;
}


/* SP
  ------------------------------------------------------------- */

@media (max-width: 750px) {
	
	h2 {
		font-size: 4.4vw;
	}
	p {
		font-size: 3.7vw;
	}
	.btn a {
		display: block;
		color: #fff;
		background: #eb5505;
		border-radius: 8px;
		font-size: 5vw;
		font-weight: 700;
		text-decoration: none;
		text-align: center;
		padding: 1em;
	}
	.inner {
		padding: 1em;
	}
	#flow {
		padding: 2em 0 0 0;
		background: #fff;
	}
	#notes h2, #conditions h2, #faq h2 {
		font-size: 3.8vw;
	}
	#contact {
		padding: 5% 0 30%;
	}
	ul.accordion .ac-head::after {
		width: 5vw;
		height: 5vw;
		font-size: 3vw;
		margin: .0em 1em 0 0;
		padding: 0 0 0 0.01em;
	}
	
	/* Swiper  */
	.swiper {
		margin-bottom: 1.5em!important;
		padding: 0 0 1em 0;
	}
	.swiper-pagination-bullet {
		margin: 0 .5em!important;
		padding: 1.2vw;
	}
	
	.pc-fixed {
		visibility: hidden;
	}
	
	.sp-fixed {
		display: none;
		position: fixed;
		bottom: 0;
		width: 100%;
		z-index: 999;
	}
	.sp-fixed .inner {
		background: #fff;
	}
}
