@charset "UTF-8";

html {
	margin: 0;
	padding: 0;
	font-size: 62.5%;
}

body {
	margin: 0;
	padding: 0;
}

body * {
	box-sizing: border-box;
	position: relative;
}

a {
	color: #0C0C0C;
	text-decoration: none;
	transition: all .3s;
}

a:hover {
	opacity: .6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	height: auto;
}

p,
ul,
dl,
dt,
dd,
figure {
	margin: 0;
	padding: 0;
}

ul li {
	padding: 0;
	list-style-type: none;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

@media (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

.flex {
	display: flex;
}

/* ここから下に追記してください */

body {
	font-family: "Noto Serif JP", serif;
	line-height: 1.3;
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 0.1em;
	color: #0C0C0C;
}



#mv, section, footer {
	width: 780px;
	margin: 0 auto;
	max-width: 100%;
}


.f-btn {
	display: none;
}

@media (max-width: 780px) {
	.f-btn {
		display: block;
		position: fixed;
		bottom: 0;
		z-index: 10;
		width: 100%;
		padding-bottom: 10px;
	}

	.f-btn:before {
		content:'';
		position: absolute;
		bottom: 0 ;
		left: 0;
		background-color: #fff;
		width: 100%;
		opacity: 0.8;
		display: block;
		height: 110%;
	}

	.f-btn a {
		display: flex;
		justify-content: center;
	}

	.f-btn picture {
		width: 78%;
		margin: 0 auto;
		z-index: 10;
	}
}

.btn {
	width: 78%;
	position: absolute;
	left: 50%;
	top: 64%;
	transform: translateX(-50%);
}

.blog-btn, .insta-btn {
	width: 89%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.blog-btn {
	top: 18%;
}

.insta-btn {
	top: 73%;
}

#voice {
	background: #FDFAFD;
}

footer {
	background: #F9DCEF;
	height: 200px;
	padding: 20px;
}

@media (max-width: 780px) {
	footer {
	height: 200px;
 }
}

.copyright {
	color: #5E605F;
	text-align: center;
}


#resolution {
	background-color: #FFFCE8;
}

/* アクセス　*/

.map {
	width: 100%;
	padding: 5%;
	margin: 0 auto;
	position: absolute;
	top: 12%;
}


/* よくあるご質問　*/

.accordion-box {
	margin: 0 auto 52px;
	width: 90%;
}

@media (max-width: 780px) {
	.accordion-box {
	margin: 0 auto 36px;
}
}

#faq .box {
	width: 100%;
	margin-bottom: 16px;
}

#faq .box:nth-of-type(8) {
	margin-bottom: 0;
}

#faq .faq-question {
	padding: 20px 30px;
	cursor: pointer;
	background-color: #F9DCEF;
	border-radius: 5px;
	cursor: pointer;
}

#faq .faq-question.active {
	border-radius: 5px 5px 0 0;
}


#faq .faq-answer {
	display: none;
	padding: 20px 30px;
	border: 1px solid #F9DCEF;
	border-radius: 0 0 5px 5px; 
}

#faq p {
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 29px;
	padding-left: 3em;
	text-align: left;
}

#faq .faq-question p {
	padding-right: 1em;
}

#faq .faq-question p:before {
	content: '';
	background: url('images/question.png') no-repeat center / contain;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

#faq .faq-question:before, #faq .faq-question:after {
	position: absolute;
	content: '';
	top: 0px;
	right: 15px;
	bottom: 0;
	width: 24px;
	height: 2px;
	margin: auto;
	background: #fff;
}

#faq .faq-question::after {
	transform: rotate(-90deg);
	transition: transform 0.3s;
}

.faq-question.active::after {
	transform: rotate(0deg)!important;
}


#faq .faq-answer {
	border-top: dashed 2px #fff;
	padding-bottom: 20px;
}

#faq .faq-answer:before {
	content: '';
	background: url('images/answer.png') no-repeat center / contain;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 20px;
	left: 30px;
	z-index: 1;
}

