@charset "utf-8";

/* Common
  ------------------------------------------------------------- */

html {
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
a {
	color: #0e0d6a;
}

@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 {
	position: relative;
	width: 100%;
	padding: 1em;
	line-height: 100%;
	background: #fff;
	border-bottom: 1px solid #ccc;
	z-index: 999;
}
header img {
	width: 36vw;
	max-width: 140px;
	margin: auto;
}

main {
	width: 100%;
	color: #333;
	background: #fff;
}

h1 {
	font-size: 36px;
	font-weight: 700;
	line-height: 140%;
	text-align: center;
	padding: 1em 0;
}

p {
	font-size: 28px;
	line-height: 140%;
}

section {
	width: 100%;
	margin: 0;
	padding: 0;
}
.inner {
	position: relative;
	max-width: 750px;
	margin: 0 auto;
	padding: 1em;
}

#mv {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	background: #fff;
}

#overview {
	position: relative;
	max-width: 750px;
	margin: 2em auto;
	padding: 1em;
}
#overview .inner {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #f7f7f7;
	border-radius: 1em;
	margin: 0;
	padding: 0;
}
#overview .img2 {
	position: absolute;
	top: 40%;
	animation-delay: .6s;
}
#overview .img3 {
	position: absolute;
	bottom: 0;
	animation-delay: .6s;
}
#overview .img4 {
	position: absolute;
	bottom: 0;
	animation-delay: .9s;
}

#faq {
	position: relative;
	max-width: 750px;
	margin: 2em auto 12em;
	padding: 1em;
}
#faq .inner {
	padding: 0;
}

#fixed {
	position: fixed;
	bottom: 0;
	background: #fff;
	border-top: 1px solid #ccc;
	z-index: 998;
}

.btn a {
	display: block;
	color: #fff;
	width: 100%;
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	background: #eb5505;
	margin: 0;
	padding: 1em;
	border-radius: .5em;
	text-decoration: none;
	cursor: pointer;
	transition: .5s;
}
.btn a:hover {
	opacity: .8;
	transition: .2s;
}

button {
	width: 100%;
	border: 0;
	border-radius: .5em;
	padding: 16px 20px;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	background: #eb5505;
	cursor: pointer;
	transition: .5s;
}
button:hover {
	opacity: .8;
	transition: .2s;
}

#error {
	position: absolute;
	min-height: 100svh;
	top: -3em;
	text-align: center;
	display: block grid;
  place-items: center;
}
#error img {
	margin: auto;
	width: 25%;
}

#faq {
	color: #333;
	padding-bottom: 1em;
}
#faq a {
	text-decoration: none;
	color: currentColor;
	display: block;
	padding: .8em 0;
}
#faq h2 {
	font-size: 44px;
	font-weight: 700;
	line-height: 100%;
	background: none;
}

/* Accordion */

ul.accordion {
  width: 100%;
  margin: 1em 0 0 0;
}
ul.accordion li {
  list-style: none;
	border-bottom: 2px solid #ccc;
	padding: 0;
}
ul.accordion .ac-head {
  position: relative;
	color: currentColor;
	font-weight: 400;
  margin: 0;
	display: flex;
	align-items: center;
  padding: 1.2em 0;
  cursor: pointer;
	transition: .2s;
}
ul.accordion .ac-head:hover {
	opacity: .8;
	transition: .2s;
}
ul.accordion .ac-head::after {
 position: absolute;
	top: 40%;
	right: .5em;
	display: inline-block;
	content: "";
  border-top: 3px solid currentColor;
	border-right: 3px solid currentColor;
	width: 16px;
	height: 16px;
  transform: rotate(135deg);
	margin-top: -.5em;
	transition: .2s;
}
ul.accordion .ac-head p {
	position: relative;
	font-size: 28px;
	line-height: 120%;
	left: .5em;
	padding-right: 3em;
}
/*ul.accordion .ac-head p::before {
	position: absolute;
  content: "Q : ";
	left: -1.5em;
}*/

ul.accordion .ac-head.open::after {
  transform: rotate(-45deg);
	margin-top: 0;
}
ul.accordion .ac-content {
	font-size: 28px;
	margin: 0;
  padding: 0 0 1.2em .1em;
	width: 100%;
}
ul.accordion .ac-content p {
	position: relative;
	font-size: 28px;
	line-height: 150%;
	left: .4em;
	padding-right: 1em;
	width: 100%;
	box-sizing: border-box;
}
ul.accordion .ac-content p.answer::before {
	position: absolute;
  content: "A : ";
	left: -1.5em;
	/*left: -1.5em;*/
}
.ac-content ul.disk {
	margin: .5em 0 1em .5em;
}
.ac-content ul.disk li {
	position: relative;
	line-height: 150%;
	border-bottom: none;
	left: 1em;
	padding-right: 1.5em;
}
.ac-content ul.disk li::before {
	position: absolute;
	content: "・";
	left: -1em;
}
.ac-content ul li {
	margin: 0 0 .5em;
	padding: 0;
	line-height: 140%;
}
.ac-content ul li:last-child {
	margin-bottom: 0;
}


/* SP
  ------------------------------------------------------------- */

@media (max-width: 750px) {
	
	h1 {
		font-size: 5vw;
	}
	p {
		font-size: 3.7vw;
	}
	.btn a {
		font-size: 4.3vw;
	}
	button {
		font-size: 4.3vw;
	}
	#overview {
		margin: 2% auto;
	}
	#error {
		top: 0;
	}
	#faq {
		margin: 2% auto 28vw;
	}
	#faq h2 {
		font-size: 6.2vw;
	}
	
	/* Accordion */
	
	ul.accordion .ac-head {
		padding: 1em 0;
	}
	
	ul.accordion .ac-head p {
		font-size: 3.8vw;
	}
	ul.accordion .ac-content {
		font-size: 3.6vw;
		padding: 0 .2em 1.5em;
	}
	ul.accordion .ac-head::after {
		content: "";
		display: flex;
		align-items: center;
		border-top: 2px solid currentColor;
		border-right: 2px solid currentColor;
		width: 2.4vw;
		height: 2.4vw;
		transform: rotate(135deg);
		margin-top: -.2em;
	}
	ul.accordion .ac-head.open::after {
		transform: rotate(-45deg);
		margin-top: .2em;
	}
	/*ul.accordion .ac-content {
		width: 100%;
	}*/
	ul.accordion .ac-content p.answer {
		font-size: 4vw;
		left: 1.2em;
	}
	ul.accordion .ac-content p.answer::before {
		left: -1.5em;
	}
	ul.accordion .ac-content p {
		font-size: 3.4vw;
		line-height: 160%;
	}
	.ac-content ul.disk {
		margin: .5em 0 1em .5em;
	}
}

@media (min-width: 980px) {
	
	h1 {
		font-size: 4vw;
	}
	img {
		width: 100%;
	}
	.inner {
		max-width: 100%;
	}
	#overview, #faq {
		max-width: 100%;
	}
}
