@charset "UTF-8";

body #contents{
	padding-top:60px;/* ヘッダーボタンの縦幅 */
}

p{
	font-size: 14px;
}

.mv{
	position:relative;
	height: 300px;
	line-height: 0;
	background: url("/precia/img/faq/mv.jpg") no-repeat center center;
	background-size: cover;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.mv{
		height: 250px;
	}
}

.mv span{
	position:absolute;
	top:50%;
	left:0;
	display: block;
	width: 100%;
	padding: 20px 0;
	font-size: 30px;
	line-height: 1.4;
	font-weight: normal;
	letter-spacing: .2em;
	background: url("/precia/img/bgline-w.png") repeat 0 0;
	color: #000;
	transform: translateY(-50%);
	text-shadow: 0px 1px 2px #fff;
}
@media screen and (max-width: 768px) {
	.mv span{
		font-size:44px;
		font-size:5.7291666667vw;
	}
}

.faq{
	padding: 30px 0 100px;
	background:#eae9df;
}
@media screen and (max-width: 768px) {
	.faq{
		padding:30px 0 50px 0;
	}
}

.faq .title{
	margin-bottom: 40px;
	font-size: 23px;
	padding-right: .1em;
	letter-spacing: .1em;
	font-weight: normal;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.faq .title{
		font-size:44px;
		font-size:5.7291666667vw;
		text-align: center;
	}
}

.faq .title span{
	font-size:80%;
}

.faq .title::after{
	position:relative;
	bottom:-15px;
	content:"";
	display:block;
	width: 120px;
	height: 1px;
	margin: 0 auto;
	background: #333;
}

.btn-wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 50px 0 70px;
	gap: 20px;
	justify-content: space-between;
	text-align: center;
}

.btn-wrap a{
	width: calc((100% - 60px) / 4);
	position: relative;
	display: block;
	padding: 15px 30px 25px;
	background-color: #fff;
	border: 1px solid #696969;
	font-size: 14px;
}
@media screen and (max-width: 768px) {
	.btn-wrap a{
		width: calc((100% - 20px) / 2);
		padding: 15px 10px 25px;
		align-content: center;
		background-color: #fff;
		border: 1px solid #696969;
		font-size: 14px;
	}
}

.btn-wrap a::before {
    transform: rotate(45deg);
}
.btn-wrap a::after {
    transform: rotate(-45deg);
}
.btn-wrap a::before, .btn-wrap a::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: calc(50% - 0.5px);
    width: 1px;
    height: 13px;
    border-radius: 9999px;
    background-color: #000000;
    transform-origin: 50% calc(100% - 0.5px);
    transition: .3s;
}

.btn-wrap a:hover::before {
  transform: translateY(4px) rotate(45deg);
}
.btn-wrap a:hover::after {
  transform: translateY(4px) rotate(-45deg);
}

.category-wrap{
	margin-top: -120px;
	padding-top: 120px;
}

.category{
	margin-bottom: 80px;
}

.category-wrap h3{
	padding-bottom: 5px;
	border-bottom: 3px solid #91C8CB;
	font-size: 18px;
}

.category-wrap ul{
	display: flex;
	flex-direction: column;
	gap: 45px;
	margin: 30px 0 65px;
}
@media screen and (max-width: 768px) {
	.category-wrap ul{
		margin-bottom: 45px;
		gap: 25px;
	}
}

.category-wrap li{
	padding:0 30px;
	background-color: #fff;
}

.category-wrap li div{
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 30px 10px;
}
@media screen and (max-width: 768px) {
	.category-wrap li div{
		align-items: flex-start;
		gap: 15px;
	}
}

.category-wrap li div:first-child{
	border-bottom: 1px solid;
}

@media screen and (max-width: 768px) {

    /* A（答え）を閉じる */
    .category-wrap li div:last-child {
        display: none;
    }

    /* 開いたとき */
    .category-wrap li.active div:last-child {
        display: flex;
    }

    /* Q部分をクリックできるように */
    .category-wrap li div:first-child {
        position: relative;
        cursor: pointer;
        padding-right: 40px;
		border-bottom: none;
    }

    /* ＋アイコン */
    .category-wrap li div:first-child::after {
        content: "+";
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        font-weight: bold;
        transition: 0.3s;
    }

    /* 開いたら－に変化 */
    .category-wrap li.active div:first-child::after {
        content: "−";
    }

    /* 開いてるとき少し色変える（任意） */
    .category-wrap li.active div:first-child {
		border-bottom: 0.7px solid;
    }
}


.question{
	color: #91C8CB;
	font-size: 32px;
	line-height: 0.8;
}

.answer{
	color: #E9ACBB;
	font-size: 32px;
	line-height: 0.8;
}

.btn-area{
	display: flex;
	justify-content: center;
    gap: 70px;
}
@media screen and (max-width: 768px) {
	.btn-area{
		width: fit-content;
		flex-direction: column;
		margin: 0 auto;
		gap: 20px;
	}
}

.btn-area a{
	width: 250px;
	position: relative;
	display: inline-block;
	text-align: center;
	align-content: center;
	border: 1px solid #696969;
	font-size: 14px;
}

.connection{
	padding: 20px 40px 20px 30px;
}

.connection .sankaku{
	position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 0.3rem solid #222;
    border-top: 0.3rem solid transparent;
    border-bottom: 0.3rem solid transparent;
    transition: transform 0.3s ease;
}

.connection:hover .sankaku {
	transform: translateY(-50%) translateX(5px);
}

.tel{
	padding: 20px 30px;
	align-content: center;
}

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

.tel.pc span{
	display: block;
	font-size: 18px;
}

.tel.sp{
	display: none;
}
@media screen and (max-width: 768px) {
	.tel.sp{
		display: block;
	}
}

.btn-box {
	padding-top: unset;
	padding-bottom: 50px;
    border-bottom: 1px solid #9f9f9f;
}

@media screen and (max-width: 768px) {
    .btn-box a {
        width: 80%;
        margin: 0 auto;
    }
}

/*.swiper-slide{
	width: calc((100% - 60px) / 3)!important;
}*/

.tips{
	padding-bottom: 40px;
    text-align: center;
    font-size: 18px;
}

.reel-area{
	padding: 40px 0;
	border-top: 4px dotted #26c6da66;
	border-bottom: 4px dotted #26c6da66;
	margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
	.reel-area{
		margin-bottom: 45px;
	}
}

.reel{
	margin: 0 auto;
}

.sp{
	display: none;
}
@media screen and (max-width: 768px) {
	.sp{
		display: block;
	}
}

.swiper-button-next, .swiper-button-prev {
    color: #6ff3fb;
}

#contact {
	margin-top: -110px;
    padding: 160px 10px 20px;
    text-align: center;
}

#contact h2 {
    margin-bottom: 10px;
    font-size: 18px;
}

#contact .contact-tel {
    margin-bottom: 10px;
    font-size: 50px;
    line-height: 1em;
}

#contact .contact-tel .freedial {
    margin-right: 10px;
}
@media screen and (max-width: 768px) {
    #contact .contact-tel .freedial {
        width: 40px;
    }
}

#contact .contact-tel a{
    font-size: 50px;
}
@media screen and (max-width: 768px) {
	#contact .contact-tel a{
    	font-size: 36px;
	}
}

#contact .contact-time {
    font-size: 14px;
}

#contact .notes {
    background: #f4f4f4;
    margin-top: 10px;
    padding: 2px 5px;
    font-size: 10px;
    letter-spacing: 0.05em;
}

.call {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 768px) {
	.call {
		flex-direction: column;
    	align-items: flex-start;
	}
}

.call img{
	width: 30px;
}

.call a {
    display: flex;
    align-items: center;
	gap: 5px;
    font-size: 24px;
}

@media screen and (max-width: 768px) {
	.time{
		margin-left: -8px;
	}
}

@media screen and (max-width: 768px){
	span.notes{
		display: block;
		margin-bottom: 10px;
		font-size: 11px;
		line-height: 1;
	}
	
	#contact h2{
		font-size: 16px;
	}
	
	#contact .notes{
		margin-top: unset;
	}
}
