/*
Title: new_year_myhome_fair
Last Updated: 2024-12-
Author: Ryu
*/

@charset "utf-8";

/*----------------------------------------
	全体
----------------------------------------*/

html{
	font-family: "Noto Sans JP";
	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;
	image-rendering: -webkit-optimize-contrast;
}
a{
	color: #933c1e;
}
a:hover{
	color: #b95634;
}

/*----------------------------------------
	layout
----------------------------------------*/

#container{
	overflow: hidden;
	background-color: #e2cfcf;
}
.main_frame{
	width: 100%;
	position: relative;
	box-sizing: border-box;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}
#bk{
	position: relative;
}

#frame{
	position: relative;
	z-index: 2;
	background: #fff;
	box-shadow: 0 0 30px 0px rgb(0 0 0 / 30%);
}

@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: 768px){

	.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: 20px;
	font-size: 1.9rem;
}
.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);
}

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

	.drawer ul{
		padding-top: 50px;
	}
	.drawer ul li{
		font-size: 1.6rem;
		margin-bottom: 15px;
	}

}/*END*/

.btn_menu{
	position: fixed;
	width: 36px;
	height: 26px;
	right: calc(50% - 220px);
	top: 22px;
	cursor: pointer;
	transition: all 0.5s;
	z-index: 99;
}
.btn_menu span{
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background: #3c3c3c;
	transition: all 0.4s;
}
.btn_menu span:nth-child(1){
	top: 0;
}
.btn_menu span:nth-child(2){
	top: 50%;
	margin-top: -1px;
}
.btn_menu span:nth-child(3){
	bottom: 0;
}
.open .btn_menu span:nth-child(1){
	transform: rotate(45deg);
	top: 15px;
	background: #fff;
}
.open .btn_menu span:nth-child(2){
	opacity: 0;
}
.open .btn_menu span:nth-child(3){
	transform: rotate(-45deg);
	top: 15px;
	background: #fff;
}

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

	.btn_menu{
		top: 16px;
	}
	.btn_menu span:nth-child(2){
		top: 11px;
	}
	.open .btn_menu span:nth-child(1){
		top: 20px;
	}
	.open .btn_menu span:nth-child(3){
		top: 20px;
	}
	.btn_menu{
		width: 46px;
		height: 41px;
		right: 10px;
		top: 13px;
	}
	.btn_menu span{
		width: 70%;
		left: 15%;
	}
	.btn_menu span:nth-child(1){
		top: 8px;
	}
	.btn_menu span:nth-child(2){
		top: 19px;
	}
	.btn_menu span:nth-child(3){
		top: 32px;
	}

}/*END*/


/*----------------------------------------
	btn
----------------------------------------*/

.catalog{
	position: relative;
}
.catalog a{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: calc((636/800)*100%);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 8%;
}
.op{
	transition: all 0.4s;
}
.op:hover{
	opacity: 0.7;
}

/*----------------------------------------
	form
----------------------------------------*/

.form_frame{
	background: #e2e1be;
	width: 100%;
	box-sizing: border-box;
	padding-left: 4.5%;
	padding-right: 4.5%;
}
.form_frame p{
	line-height: 2;
	font-size: 1.6rem;
}
.hissu,
.nini{
	line-height: 1;
	display: inline-block;
	font-size: 1.4rem;
	padding: 2px 4px;
	margin-left: 10px;
	vertical-align: 0;
	font-weight: normal;
	border-radius: 3px;
}
.hissu{
	background: #db5c3f;
	color: #fff;
}
.nini{
	background: #fff;
	color: #000;
}
.contact{
	width: 100%;
	line-height: 2;
}
.contact th,
.contact td{
	text-align: left;
	box-sizing: border-box;
	font-weight: normal;
	font-size: 1.6rem;
}
.privacy_check{
	font-size: 1.5rem;
	letter-spacing: -1px;
	line-height: 1.2;
}
.privacy_check label{
	line-height: 1.2;
}
.contact th{
	background: #3c3c3c;
	padding: 4px 10px;
	color: #fff;
}
.contact td{
	padding: 15px 0 30px 0;
}
.form_submit a{
	display: block;
	width: calc((616/800)*100%);
	margin-left: auto;
	margin-right: auto;
}

.date_td input{
	float: left;
	width: 49%;
}
.date_td select{
	float: right;
	width: 49%;
}
.kind label{
	margin-right: 30px;
}

div.error{
	position: relative;
	background: #e70000;
	color: #fff;
	padding-top: 12px;
	line-height: 1;
	padding: 5px 6px;
	margin-top: 15px;
	border-radius: 2px;
}
div.error:after{
	content: "";
	width: 0;
	height: 0;
	border-bottom: 17px solid #e70000;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	position: absolute;
	left: 30px;
	top: -10px;
}
.date_td .clearfix{
	overflow: hidden;
}
.date_error{
	clear: both;
	margin-top: 40px !important;
}
.comolete_tel{
	font-size: 2rem !important;
	text-align: center;
}


/*フォーム基本設定*/
select,
textarea,
input[type="text"],
input[type="number"],
input[type="url"],
input[type="email"],
input[type="tel"]{
	border: none;
	padding: 10px 15px;
	box-sizing: border-box;
	font-family: "Noto Sans JP";
	-webkit-appearance: none;
	transition: all 0.4s;
	border: 1px solid #fff;
	background: #fff;
	line-height: 1;
	font-size: 1.6rem;
}
select{
	padding: 14px 15px;
}

textarea{
	line-height: 1.4;
}
input[type="button"]{
	font-family: "Noto Sans JP";
	-webkit-appearance: none;
	background: #ebebeb;
}
button,
input[type="submit"]{
	-webkit-appearance: none;
	transition: all 0.4s;
}

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 #11b5a3;
}

.form1{ width: 150px; }
.form2{ width: 250px; }
.form3{ width: 350px; }
.form4{ width: 500px; }
.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: inline-block;
	position: relative;
	cursor: pointer;
	margin-left: 12px;
	padding-left: 22px;
	line-height: 3;
}
.radio label:before,
.check label:before{
	position: absolute;
	content: "";
	top: 50%;
	left: -10px;
	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{
	position: absolute;
	content: "";
	box-sizing: border-box;
	top: 50%;
	left: -4px;
	width: 12px;
	height: 12px;
	margin-top: -5px;
	border-radius: 50%;
	background: #11b5a3;
}
.check input[type="checkbox"]:checked + label:after{
	content: "";
	position: absolute;
	top: 50%;
	box-sizing: border-box;
	display: block;
	left: -7px;
	width: 18px;
	height: 10px;
	margin-top: -6px;
	border-left: 4px solid #11b5a3;
	border-bottom: 4px solid #11b5a3;
	-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 #11b5a3;
}


/*----------------------------------------
	sp btn
----------------------------------------*/

.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: 100%;
	}

}/*END*/


/*----------------------------------------
	footer
----------------------------------------*/

footer{
	background: #e2e1be;
	text-align: center;
	font-size: 1.5rem;
	padding: 50px 0;
	font-family: "Noto Sans JP";
}


/*----------------------------------------
	privacy
----------------------------------------*/

.privacy_text_frame{
	background: rgba(255,255,255,0.2);
	padding: 25px 20px;
	border: 1px solid #d4d3a0;
}
.form_frame p.privacy_text1{
	font-size: 1.5rem;
	line-height: 1.6 !important;
}
.form_frame p.privacy_text2{
	font-size: 1.4rem;
	line-height: 1.4 !important;
}

/*----------------------------------------
	yoyaku btn
----------------------------------------*/

.btn_yoyaku{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: calc((700/800)*100%);
	margin-bottom: 80px;
}
.yoyaku_model .btn_yoyaku{
	margin-bottom: 0;
}
.yoyaku_model{
	background: #3c3c3c;
	padding-bottom: 80px;
}