/*
Title: 劇的リフォームビフォーアフター
Last Updated: 2026-02-25
Author: zeal
*/

@charset "utf-8";

/*----------------------------------------
	全体
----------------------------------------*/
html{
	font-family:'游ゴシック体', 'Yu Gothic', YuGothic,'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ ゴシック',sans-serif;
	font-size:62.5%;
	color: #000;
	-webkit-text-size-adjust:100%;
	line-height:1.5;
	font-weight: 500;
}
body{
	font-size:1.4rem;
	font-size: 1.4em;
}
img{
	vertical-align: bottom;
}
a{
	color: #000;
}
a:hover{
	opacity: .8;
}
.text_bold{
	font-weight: bold;
}
.center{
	text-align: center;
}
.text_red{
	color: #af1a21;
}
.text_13{
	font-size: 1.3rem;
}
.text_15{
	font-size: 1.5rem;
}
.text_16{
	font-size: 1.6rem;
}
.text_20{
	font-size: 2rem;
}


/*----------------------------------------
	layout
----------------------------------------*/
#container{
	overflow: hidden;
}
.main_frame{
	width: 100%;
	position: relative;
	box-sizing: border-box;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}
#bk{
	position: relative;
}
#bk:before{
	content: "";
	position: fixed;
	width: 100%;
	height: 100%;
	background-size: contain;
	z-index: 1;
	background-color: #fff;
	background-image: repeating-linear-gradient( 0deg,#f1f1f1 0px 1px, transparent 1px 20px), repeating-linear-gradient( 90deg,#f1f1f1 0px 1px, transparent 1px 20px);
}
#frame{
	position: relative;
	z-index: 2;
	background: #fff;
	box-shadow: 0 0 30px 0px rgb(0 0 0 / 30%);
	overflow: hidden;
}

@media screen and (min-width: 750px){
	.lp_frame{
		width: 84%;
		margin-right: auto;
		margin-left: auto;
	}
	#frame{
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
}/*END*/


/*----------------------------------------
	footer
----------------------------------------*/
.sp_menu{
	width: 100%;
	position: fixed;
	bottom: -100px;
	left: 0;
	box-sizing: border-box;
	z-index: 100;
	transition: all 0.4s;
}
.sp_menu a{
	display: block;
}
.sp_menu a:hover{
	opacity: 1 !important;
}
.sp_menu ul{
	display: flex;
	width: 100%;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 749px){
	.sp_menu ul{
		max-width: 768px;
	}
}/*END*/


/*----------------------------------------
	header
----------------------------------------*/
header{
	position: relative;
}
.drawer{
	position: fixed;
	background: rgba(0, 0, 0, 0.8);
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	color: #d0c077;
	display: flex;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transform: translateX(100%);
	transition: 0.5s ease-in-out;
	z-index: 50;
}
.drawer ul{
	text-align: center;
	padding-top: 100px;
}
.drawer ul li{
	position: relative;
	transform: translateX(-150px);
	transition: transform 0.5s ease;
	line-height: 1.4;
	margin-bottom: 10px;
	font-size: 1.6rem;
}
.drawer ul li a{
	display: inline-block;
	color: #fff;
	text-decoration: none;
	padding: 6px 0;
}
.drawer ul li a:hover{
	animation: drawer 1.4s;
	color: #C1C1C1;
}
@keyframes drawer{
	0%{
		filter: none;
	}
	30%{
		filter: blur(0.8px);
	}
	100%{
		filter: none;
	}
}
.open .drawer{
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}
.open .drawer ul li{
	transform: translateX(0);
}
.drawer ul li:nth-child(2){ transition-delay: 0.15s; }
.drawer ul li:nth-child(3){ transition-delay: 0.20s; }
.drawer ul li:nth-child(4){ transition-delay: 0.25s; }
.drawer ul li:nth-child(5){ transition-delay: 0.3s; }
.drawer ul li:nth-child(6){ transition-delay: 0.35s; }
.drawer ul li:nth-child(7){ transition-delay: 0.4s; }
.drawer ul li:nth-child(8){ transition-delay: 0.45s; }
.drawer ul li:nth-child(9){ transition-delay: 0.5s; }
.drawer ul li:nth-child(10){ transition-delay: 0.55s; }
.drawer ul li:nth-child(11){ transition-delay: 0.6s; }
.drawer ul li:nth-child(12){ transition-delay: 0.65s; }
.drawer ul li:nth-child(13){ transition-delay: 0.7s; }
.drawer ul li:nth-child(14){ transition-delay: 0.75s; }
.drawer ul li:nth-child(2){
	line-height: 1.5;
}

@media screen and (max-width: 749px){
	.drawer ul{
		padding-top: 50px;
	}
	.drawer ul li{
		font-size: 1.6rem;
		margin-bottom: 15px;
	}
}/*END*/



.btn_menu{
	display: none;
	background: #fff;
	border-bottom-left-radius: 45px;
	border-bottom-right-radius: 45px;
	width: 74px;
	height: 55px;
	position: fixed;
	right: calc(50% - 240px);
	top: 0;
	z-index: 99;
	cursor: pointer;
	transition: all 0.5s;
}
.btn_menu span{
	background: #666;
	position: absolute;
	right: 21px;
	width: 42%;
	height: 2px;
	transition: all 0.4s;
}
.btn_menu span:nth-child(1){
	top: 16px;
}
.btn_menu span:nth-child(2){
	top: 46%;
}
.btn_menu span:nth-child(3){
	bottom: 19px;
}
.open .btn_menu {
	background: transparent;
}
.open .btn_menu span:nth-child(1),
.open .btn_menu span:nth-child(3){
	background: #fff;
	top: 25px;
}
.open .btn_menu span:nth-child(1){
	transform: rotate(45deg);
}
.open .btn_menu span:nth-child(2){
	opacity: 0;
}
.open .btn_menu span:nth-child(3){
	transform: rotate(-45deg);
}
@media screen and (max-width: 749px){
	.btn_menu{
		border-bottom-left-radius: 40px;
		border-bottom-right-radius: 40px;
		width: 68px;
		height: 50px;
		right: 0;
	}
	.btn_menu span{
		right: 19px;
	}
	.btn_menu span:nth-child(1){
		top: 15px;
	}
	.btn_menu span:nth-child(3){
		bottom: 17px;
	}
}/*END*/


/*----------------------------------------
	contents
----------------------------------------*/
.plan_slider{
	position: relative;
	background: #dcd1bf;
	padding-bottom: 80px;
}
.swiper-button-prev{
	/* background: url("../images/prev.png"); */
	width: 50px;
	height: 50px;
	position: absolute;
	left: 3%;
	top: 50%;
	transform: translateY(-50%);
}
.swiper-button-next{
	/* background: url("../images/next.png"); */
	width: 50px;
	height: 50px;
	position: absolute;
	right: 3%;
	top: 50%;
	transform: translateY(-50%);
}
.swiper-button-prev:after,
.swiper-button-next:after{
	content: none;
}
.swiper-pagination{
	bottom: 40px !important;
}
.swiper-pagination-bullet{
	width: 12px !important;
	height: 12px !important;
	background: #fff !important;
	opacity: 1 !important;
	margin-left: 6px !important;
	margin-right: 6px !important;
}
.swiper-pagination-bullet-active{
	background: #40464a !important;
}

/*----------------------------------------
	form
----------------------------------------*/
.form_frame {
    background: #e6e6e6;
    width: 100%;
    box-sizing: border-box;
    padding-left: 5%;
    padding-right: 5%;
    color: #000;
    font-size: 1.6rem;
    padding-bottom: 80px;
}
.form_frame p{
	line-height: 2;
}
.contact{
	width: 100%;
	line-height: 2;
}
.contact th,
.contact td{
	text-align: left;
	box-sizing: border-box;
	font-size: 1.6rem;
}
.contact th{
	padding: 15px 10px 5px 0;
}
.contact td{
	padding: 10px 0;
}
.form_submit a{
	display: block;
	width: calc((650/800)*100%);
	margin-left: auto;
	margin-right: auto;
}
.hissu:after,
.nini:after{
	display: inline-block;
	padding: 5px;
	line-height: 1;
	margin-left: 10px;
	border-radius: 5px;
	vertical-align: 1px;
	font-size: 1.4rem;
	font-weight: bold;
}
.hissu:after{
	content: "必須";
	display: inline-block;
	background: #c80000;
	border-color: #c80000;
	color: #fff;
}
.nini:after{
	content: "任意";
	display: inline-block;
	color: #000;
	border-color: #dad8cd;
	background: #dad8cd;
}
td.error{
	background: #ffe0e2;
}
td div.error{
	color: #ff000e;
	line-height: 1.3;
	padding-top: 10px;
	padding-left: 5px;
}
.privacy .error{
	color: #ff000e;
	line-height: 1.3;
	padding: 10px;
	background: #ffe0e2;
	margin-top: 12px;
}
.comolete_tel{
	font-size: 2rem !important;
	font-weight: bold;
}

/*フォーム基本設定*/
select,
textarea,
input[type="text"],
input[type="number"],
input[type="url"],
input[type="email"],
input[type="tel"]{
	padding: 16px 15px;
	box-sizing: border-box;
	font-family:'游ゴシック体', 'Yu Gothic', YuGothic,'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ ゴシック',sans-serif;
	-webkit-appearance: none;
	transition: all 0.4s;
	border: 1px solid #fff;
	background: #fff;
	line-height: 1;
	font-size: 1.6rem;
}
select{
	padding: 20px 15px;
	width: 100%;
}
textarea{
	line-height: 1.4;
}
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus{
	outline: none;
	border: 1px solid #ccc;
}
.form1{
	width: 200px;
}
.form_all{
	width: 100%;
}


/*----------------------------------------
	checkbox radiobtn
----------------------------------------*/
.radio input[type="radio"],
.check input[type="checkbox"]{
	position: absolute;
	height: 1px;
	width: 1px;
	clip: rect(0, 0, 0, 0);
}
.radio label,
.check label{
	display: block;
	cursor: pointer;
	line-height: 3.5;
	background: #fff;
	margin-bottom: 10px;
	padding-left: 50px;
	position: relative;
}
.radio label:before,
.check label:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 15px;
	width: 22px;
	height: 22px;
	margin-top: -11px;
	border-radius: 50%;
	border: 1px solid #aeaeae;
	background: #fff;
}
.check label:before{
	border-radius: 0;
}
.radio label,
.check label{
	margin-left: 0\9;
	padding: 11px\9;
}
.radio label:not(:target),
.check label:not(:target){
	margin-left: 10px\9;
	padding: 11px 0 11px 25px\9;
}
.radio label:before,
.check label:before{
	display: none\9;
}
.radio label:not(:target):before,
.check label:not(:target):before{
	display: inline-block\9;
}
.radio input[type="radio"]:checked + label:after{
	content: "";
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: -4px;
	width: 12px;
	height: 12px;
	margin-top: -5px;
	border-radius: 50%;
	background: #93ab2f;
}
.check input[type="checkbox"]:checked + label:after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 18px;
	box-sizing: border-box;
	width: 18px;
	height: 10px;
	margin-top: -6px;
	border-left: 4px solid #d95a5a;
	border-bottom: 4px solid #d95a5a;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.radio input[type="radio"]:focus + label:before,
.check input[type="checkbox"]:focus + label:before{
	box-shadow: 0 0 3px 0 #d95a5a;
}
@media screen and (max-width: 749px){
	.privacy label::before{
		left: 15px !important;
	}
	.privacy label::after{
		left: 18px !important;
	}
}/*END*/

@media screen and (max-width: 599px){
	.kind,
	.privacy {
		font-size: 1.4rem !important;
	}
}

/*----------------------------------------
	sp btn
----------------------------------------*/
.sp_menu{
	width: 100%;
	position: fixed;
	bottom: -100px;
	left: 0;
	box-sizing: border-box;
	z-index: 10;
	transition: all 0.4s;
}
.sp_menu a{
	display: block;
}
.sp_menu a:hover{
	opacity: 1 !important;
}
.sp_menu ul{
	display: flex;
	width: 100%;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 749px){
	.sp_menu ul{
		max-width: 100%;
	}
}/*END*/


/*----------------------------------------
	カレント表示ナビゲーション
----------------------------------------*/
.target_nav {
	display: none;
	position: fixed;
	z-index: 100;
	top: 50%;
	right: 50%;
	transform: translate(calc(-50% + 300px),-50%);
	z-index: 49;
	opacity: 0.3;
}
.header__link {
	display: block;
	width: 6px;
	height: 32px;
	background-color: transparent;
	border: 1px solid #000;
	margin-top: 20px;
}
.header__link.is-active {
	background-color: #000;
}
li.header__item {
	position: relative;
}
/*横の文字調整*/
.t_nav_tex{
	display: block;
	width: 28px;
	text-align: center;
	position: absolute;
	top: 50%;
	color: #000;
	transform: translate(15%, -50%);
}
@media screen and (max-width: 768px){
	.target_nav {
		right: 5%;
		transform: translate(0,-50%);
	}
	.header__link {
		width: 4px;
		height: 24px;
		margin-top: 15px;
	}
	/*横の文字調整*/
	.t_nav_tex{
		width: 20px;
	}
}/*END*/
@media screen and (max-width: 599px){
	.target_nav{
		display: none !important;
	}
}/*END*/



/*----------------------------------------
	datepicker
----------------------------------------*/
#ui-datepicker-div{
	max-width: 100%;
	width: 370px;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active{
	padding: 15px;
}
.ui-datepicker .ui-datepicker-header{
	padding: 8px 0;
}


/*----------------------------------------
	btn
----------------------------------------*/
.rela{
	position: relative;
}
.btn{
    width: 80%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.btn img {
	width: 100%;
}
.btn._01 {
    bottom: 3%;
}
.btn._02 {
    bottom: 3%;
}
.btn._03 {
    bottom: 3.3%;
}
.btn._04 {
    bottom: 1.8%;
}
.btn._05 {
    bottom: 4%;
}

.mapbtn {
	position: absolute;
	top: 46.7%;
	right: 21%;
}
@media screen and (max-width: 494px){
	.mapbtn {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 396px){
	.mapbtn {
		font-size: 1.4rem;
	}
}


/*----------------------------------------
	map
----------------------------------------*/
.map {
    position: absolute;
	width: 75%;
    height: 30%;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}
.map iframe {
	width: 100%;
	height: 100%;
}/*END*/