@charset "UTF-8";

/* ==========================================================================
 * Font face
 * ========================================================================== */
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}

.zen-maru-gothic-regular {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
}

/* ==========================================================================
 * Root
 * ========================================================================== */
*,
::before,
::after {
	background-repeat: no-repeat;
	box-sizing: border-box;
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif, "Yu Gothic", "Hiragino Kaku Gothic Pro", Meiryo, Osaka;
	font-size: 1.6em;
	font-size: 1.6rem;
	line-height: 1.5;
	background-color: #fff;
}

.inner-width {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}

/* ==========================================================================
 * HTML5 display definitions
 * ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

/* ==========================================================================
 * Anchor
 * ========================================================================== */
a:link,
a:visited {
	background-color: transparent;
	color: #479cd7;
	text-decoration: none;
}

a:active,
a:hover {
	outline: 0;
}

/* ==========================================================================
 * Embedded
 * ========================================================================== */
img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}

svg:not(:root) {
	overflow: hidden;
}

/* ==========================================================================
 * Grouping
 * ========================================================================== */
figure {
	margin: 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	border: none;
	border-top: 1px solid #bbb;
}

dd {
	margin-left: 0;
}

/* ==========================================================================
 * List
 * ========================================================================== */
ul,
ol {
	padding: 0;
}

ul {
	margin: 0;
	list-style: none;
}

ul.list-disc {
	margin-left: 1.55em;
	list-style: disc;
}

ul.list-annotation {
	margin-left: 1.3em;
}

ul.list-annotation li::before {
	margin-left: -1.3em;
	content: "※\0020";
}

ol {
	margin-left: 1.3em;
	list-style: none;
}

ol.list-annotation {
	margin-left: 2em;
	padding: 0;
	counter-reset: number;
	list-style: none;
}

ol.list-annotation li::before {
	margin-left: -2em;
	counter-increment: number;
	content: "※" counter(number)"\0020";
}

ul.list-disc li+li,
ul.list-annotation li+li,
ol li+li {
	margin-top: 8px;
}

/* ==========================================================================
 * Text
 * ========================================================================== */
b,
strong {
	font-weight: bold;
}

mark {
	background: #ff0;
	color: #000;
}

small,
.txt-small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

address {
	font-style: normal;
}

h1,
.h1 {
	font-size: 3.2rem;
	line-height: 1.2;
	margin: 0;
}

h2,
.h2 {
	font-size: 2.4rem;
	line-height: 1.2;
	margin: 0;
}

h3,
.h3 {
	font-size: 1.8rem;
	line-height: 1.2;
	margin: 0;
}

h4,
.h4 {
	font-size: 1.6rem;
	line-height: 1.2;
	margin: 0;
}

p {
	margin: 0;
}

p+p {
	margin-top: .5em;
	margin-bottom: 0;
}

.txt-left {
	text-align: left;
}

.txt-center {
	text-align: center;
}

.txt-right {
	text-align: right;
}

.txt-unbold {
	font-weight: normal;
}

.txt-bold {
	font-weight: bold;
}

.txt-emphasis {
	color: #e74c3c;
}

.txt-notes {
	color: #7f8c8d;
}

/* ==========================================================================
 * Table
 * ========================================================================== */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/* ==========================================================================
 * Common
 * ========================================================================== */
#page__container {
	max-width: 750px;
	margin: 0 auto;
}

/* ==========================================================================
 * Responsive
 * ========================================================================== */

/*PCのみ表示(640px以下非表示)*/
@media screen and (max-width: 640px) {
	.visible-pc {
		display: none !important;
	}
}

/*SPのみ表示(641px以上非表示)*/
@media screen and (min-width: 641px) {
	.visible-sp {
		display: none !important;
	}
}

/*PCのみ非表示(640px以上非表示)*/
@media screen and (min-width: 640px) {
	.hidden-pc {
		display: none !important;
	}
}

/*SPのみ非表示(641px以下非表示)*/
@media screen and (max-width: 641px) {
	.hidden-sp {
		display: none !important;
	}
}

/* ==========================================================================
 * header
 * ========================================================================== */
.navi {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 4%;
	position: fixed;
	background: #fff;
	filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.2));
	z-index: 100;
}

.header_logo {
	padding-right: 5vw;
}

/* ==========================================================================
 * fv
 * ========================================================================== */
.fv {
	padding-top: 12%;
}

.fv_menu {
	background-color: #f5f0e8;
	/* ベージュ背景 */
	padding: 5vw 10px;
	padding-bottom: 50px;
}

.fv_menu .slick-list {
	padding: 0 !important;
}

.fv_menu .slick-slide {
	padding: 0 4px;
	/* 画像間の隙間 */
}

.fv_menu .slick-slide img {
	border-radius: 8px;
	display: block;
	width: 100%;
}

.fv_menu .slick-prev {
	left: 8px;
}

.fv_menu .slick-next {
	right: 8px;
}

.fv_menu .slick-prev:before,
.fv_menu .slick-next:before {
	font-size: 18px;
	opacity: 1;
}

.fv_menu .slick-prev,
.fv_menu .slick-next {
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 2;
  transform: translateY(-50%);
}
.fv_menu .slick-prev {
  left: 8px;
  background-image: url('../images/arrow_left@2x.png') !important;
}
.fv_menu .slick-next {
  right: 8px;
  background-image: url('../images/arrow_right@2x.png') !important;
}
.fv_menu .slick-prev:before,
.fv_menu .slick-next:before {
  content: '' !important;
  display: none;
}
.fv_menu .slick-prev:hover,
.fv_menu .slick-next:hover {
  background-color: transparent !important;
  opacity: 0.8;
}

@media screen and (max-width: 550px) {
	.fv {
		padding-top: 15%;
	}
	.fv_menu .slick-prev,
	.fv_menu .slick-next {
	top: 44%;
	}
}

/* ==========================================================================
 * cta
 * ========================================================================== */
.cta__list {
	position: relative;
}

.cta__btn {
	position: absolute;
	bottom: 68%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	width: 85%;
	animation: pulse 1.5s ease-in-out infinite;
	/* この行を追加 */
}

.cta_tel_btn {
	position: absolute;
	bottom: 17.6%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	width: 85%;
}

/* アニメーション定義を追加 */
@keyframes pulse {

	0%,
	100% {
		transform: translateX(-50%) scale(1);
	}

	50% {
		transform: translateX(-50%) scale(1.05);
	}
}

/* trouble */
.trouble_cause1 {
	margin: -15% 0 0;
}

.trouble_cause2 {
	margin: -10% 0 0;
	position: relative;
}

.trouble_cause2 .video__tl {
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 1;
	width: 100%;
}

.trouble_cause2 .video__tl img {
	margin: 0 0 0 4%;
	width: 80%;
}

.trouble_cause2 .video__ct {
	background: #000;
	padding: 3%;
	position: absolute;
	top: 13%;
	left: 50%;
	transform: translateX(-50%);
	width: 94%;
}

.trouble_cause2 .video__ct video {
	height: 100%;
	width: 100%;
}

.focus__ct {
	margin: -15% 0 0;
}

.focus__ct {
	position: relative;
}

.focus__movie {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translateX(-50%);
	width: 84%;
}

.focus__movie video {
	clip-path: inset(0 2px 0 0);
	height: 100%;
	width: 100%;
}

/* explanation */
.explanation {
	margin: -10% 0 0;
	position: relative;
	z-index: 1;
}

.explanation__ct2 {
	margin: -5% 0 0;
	position: relative;
	z-index: 1;
}

/* ==========================================================================
 * menu
 * ========================================================================== */
.menu {
	background-color: #efe5c2;
	/* ベージュ背景 */
}

.menu__ttl {
	padding: 0 10%;
	padding-top: 50px;
}

.menu__subttl {
	padding: 30px 10%;
}

.menu__list li:nth-child(n+2) {
	margin-top: 40px;
}

.menu__more li {
	margin-top: 40px;
}

.menu__toggle {
	text-align: center;
	padding: 20px 0 40px;
}

.menu__toggle__btn {
	background-color: #fff;
	color: #333;
	border: 2px solid #333;
	border-radius: 30px;
	padding: 12px 40px;
	font-size: 1.6rem;
	font-family: inherit;
	cursor: pointer;
	position: relative;
	padding-right: 50px;
}

.menu__toggle__btn::after {
	content: '▼';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.2rem;
	transition: transform 0.3s;
}

.menu__toggle__btn.is-open::after {
	transform: translateY(-50%) rotate(180deg);
}

/* ==========================================================================
 * voice
 * ========================================================================== */
.voice {
	background: repeating-linear-gradient(135deg, #f7f1e5, #f7f1e5 20px, #fbf8f2 20px, #fbf8f2 40px);
	text-align: center;
	padding-bottom: 50px;
}

.voice__ttl {
	padding: 30px 25%;
	padding-top: 50px;
}

.voice__list li {
	filter: drop-shadow(0px 6px 3px rgba(0, 0, 0, 0.1));
}

.voice__list li:nth-child(n+2) {
	margin-top: 40px;
}

/* ==========================================================================
 * flow
 * ========================================================================== */
.flow {
	background: url("../images/flow_bg@2x.jpg") no-repeat center top / cover;
	text-align: center;
	padding-bottom: 50px;
}

.flow__ttl {
	text-align: center;
	padding: 30px 16%;
	padding-top: 50px;
}

.flow__list li {
	filter: drop-shadow(0px 6px 3px rgba(0, 0, 0, 0.1));
}

.flow__list li:nth-child(n+2) {
	margin-top: 40px;
}

/* ==========================================================================
 * Faq
 * ========================================================================== */
#faq ul {
	margin-top: 30px;
}

#faq ul li+li {
	margin-top: 30px;
}

.faq__qaList dt {
	background: url("../images/sp/faq_icon_q@2x.png") 5% 50%/4% no-repeat;
	font-size: 2.7rem;
	font-weight: bold;
	color: #003055;
	padding: 30px 35px 30px 120px;
	position: relative;
	cursor: pointer;
}

.faq__qaList dt.open::before {
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 10%;
	right: 5%;
	width: 25px;
	height: 25px;
	border-top: 3px solid #003055;
	border-right: 3px solid #003055;
	transform: rotate(135deg);
}

.faq__qaList dt.close::after {
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: -10%;
	right: 5%;
	width: 25px;
	height: 25px;
	border-top: 3px solid #003055;
	border-right: 3px solid #003055;
	transform: rotate(-45deg);
}

.precautions {
	background-color: #eaeaea;
	text-align: center;
	padding: 25px;
	margin-top: 30px;
}

.precautions strong {
	font-size: 2.7rem;
}

.precautions__txt {
	text-align: justify;
}

.faq {
	background-color: #fff;
	padding: 50px 0;
}

.faq__ttl {
	text-align: center;
	margin-bottom: 8%;
	font-size: 4em;
	font-weight: bold;
	color: #333;
}

#faq ul {
	margin-top: 6%;
}

#faq ul li+li {
	margin-top: 30px;
}

.faq__qaList dt {
	border-radius: 10px;
	background: #8a643e;
	font-size: 2em;
	font-weight: bold;
	color: #fff;
	padding: 5%;
	padding-right: 11%;
	position: relative;
	cursor: pointer;
}

.faq__qaList dt.open::before {
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 10%;
	right: 0.9em;
	width: 12px;
	height: 12px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(135deg);
}

.faq__qaList dt.close::after {
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: -10%;
	right: 0.9em;
	width: 12px;
	height: 12px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(-45deg);
}

.faq__qaList dd {
	color: #333333;
	font-size: 2em;
	font-weight: bold;
	padding: 10px;
	display: none;
	text-align: justify;
}

.precautions {
	background-color: #eaeaea;
	text-align: center;
	padding: 5%;
	margin-top: 10%;
}

.precautions strong {
	font-size: 5vw;
}

.precautions__txt {
	text-align: justify;
}

.footer {
	background-color: #fcf9f7;
	text-align: center;
	padding: 20px 0;
	font-size: 1.4rem;
}

.footer__link__list li {
	margin: 4px 0;
	font-size: 3em;
}

.copy {
	padding-top: 20px;
}
@media screen and (max-width: 640px) {
.faq__ttl {
	font-size: 9vw;
}
.faq__qaList dt {
	font-size: 5vw;
}
.faq__qaList dd {
	font-size: 5vw;
}
.footer__link__list li {
	font-size: 5vw;
}
}
/*-------------------- Back to Top --------------------*/
a.backtotop {
	position: fixed;
	bottom: 30px;
	right: 5%;
	width: 40px;
	height: 40px;
	padding: 38px 0 0;
	background-color: #ccc;
	color: #fff;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	opacity: .5;
	border-radius: 50%;
	z-index: 100;
}

a.backtotop::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 17.3px 10px;
	border-color: transparent transparent #ffffff transparent;
}

@media screen and (max-width: 640px) {
	a.backtotop {
		position: fixed;
		bottom: 10%;
		right: 5%;
		width: 40px;
		height: 40px;
		padding: 38px 0 0;
		background-color: #ccc;
		color: #fff;
		text-align: center;
		font-size: 14px;
		cursor: pointer;
		opacity: .5;
		border-radius: 50%;
	}

	a.backtotop::before {
		content: "";
		position: absolute;
		top: 10px;
		left: 10px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 10px 17.3px 10px;
		border-color: transparent transparent #ffffff transparent;
	}
}