@charset "UTF-8";

/* =============================================
	mobile menu settings
=============================================　*/
/* Mobile Menu Button */
#menu-button{
	visibility:hidden;
	opacity:0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 900;
	top: 0;
	right: 0;
	width: 48px;
	height: 48px;
	background-color: #fafafa;
}
#menu-button.nav-on {
	visibility:visible;
	opacity:1;
}
#menu-button .ham-lines {
	position: relative;
	margin: 0 auto;
	width: 32px;
	height: 32px;
}
#menu-button .ham-lines span,
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
	position: absolute;
	display: block;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 28px;
	height: 2px;
	background-color: #111;
	border-radius: 1px;
}
#menu-button .ham-lines span {
	bottom: 15px;
	transition: all .25s .25s;
	opacity: 1;
}
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
	content: "";
}
#menu-button .ham-lines::before{
	bottom: 24px;
	animation: menu-bar01 .75s forwards;
}
#menu-button .ham-lines::after {
	bottom: 6px;
	animation: menu-bar03 .75s forwards;
}
#menu-button .ham-text {
	font-size: 12px;
	line-height: 1;
}
#menu-button.is-active .ham-lines span {
	opacity: 0;
}
#menu-button.is-active .ham-lines::before {
	animation: active-menu-bar01 .5s forwards;
}
#menu-button.is-active .ham-lines::after {
	animation: active-menu-bar03 .5s forwards;
}
@keyframes menu-bar01 {
	0% {
		transform: translateY(9px) rotate(45deg);
	}
	50% {
		transform: translateY(9px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
@keyframes menu-bar03 {
	0% {
		transform: translateY(-9px) rotate(-45deg);
	}
	50% {
		transform: translateY(-9px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
@keyframes active-menu-bar01 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(9px) rotate(0);
	}
	100% {
		transform: translateY(9px) rotate(45deg);
	}
}
@keyframes active-menu-bar03 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-9px) rotate(0);
	}
	100% {
		transform: translateY(-9px) rotate(-45deg);
	}
}
/* Mobile Menu Button end */

/* =============================================

	Common settings

============================================= */
/* table border and paddings */
table th,
table td{
	border: 1px solid #424242;
	padding: 10px;
}

.inbox{
	background: #f1f1f1;
	padding: 2%;
	margin-bottom: 15px;
	box-shadow: 1px 1px 1px 1px rgba(0,0,0,.2);
}
.inbox h5{
	padding: 0 0 0 .6em;
	border-left: 3px solid red;
}
.inbox h6::before{
	content: "・";
}
.inbox .wpcf7-form-control-wrap input{
	width: 100%;
	margin-bottom: 6px;
	background: white;
}
.inbox .wpcf7-form-control-wrap input::placeholder{ color: #ccc; }
.inbox .wpcf7-list-item{ display: block; }
.inbox .yesno-check .wpcf7-list-item{ display: inline; }
.inbox .inline-check .wpcf7-list-item{ display: inline; }
.inbox .wpcf7-form-control-wrap input[type="checkbox"]{
	width: auto;
}
.inbox .wpcf7-checkbox label{
	cursor: pointer;
}

.wpcf7 .submit_btn input[type="submit"]{
	    background: #ffb900;
    color: #333;
    /* font-weight: bold; */
    font-size: 18px;
    padding: 16px;
    width: 200px;
}

.wpcf7-list-item-label{
	font-family: sans-serif,'FontAwesome';
}
.bold .wpcf7-list-item-label{ font-weight: bold; }
.yesno-check .wpcf7-list-item.first{ color: seagreen; }
.yesno-check .wpcf7-list-item.last{ color: indianred; }
.btn-style-list .wpcf7-list-item label{
	padding: 0px 20px;
    background: #ffb900;
    border-radius: 50px;
    margin-bottom: 10px;
    display: inline-block;
    /* font-weight: bold; */
    width: 100%;
    box-sizing: border-box;
    max-width: 160px;
}

/*　ギャラリーサンプル　*/
#pagewrap .samp-gallery .gallery{
	margin: 0 auto;
	padding: 0px;
	width: 100%;
	background-color: #fff;
	column-count: 4;
	column-gap: 6px;
}
#pagewrap .samp-gallery .gallery .gallery-item{
	width: auto;
	padding: 0px;
	margin-bottom: 6px;
	page-break-inside: avoid;
	break-inside: avoid;
	transition: .6s ease;
	opacity: 0;
}
#pagewrap .samp-gallery .gallery .gallery-item.is_action{
	opacity: 1;
}
#pagewrap .samp-gallery .gallery .gallery-item img{
	padding: 0;
}
#pagewrap .samp-gallery .gallery .gallery-item.slideup{ transform: translateY(30%); }
#pagewrap .samp-gallery .gallery .gallery-item.slideup.is_action{ transform: translateY(0); }
#pagewrap .samp-gallery .gallery .gallery-item.slidedown{ transform: translateY(-30%); }
#pagewrap .samp-gallery .gallery .gallery-item.slidedown.is_action{ transform: translateY(0); }
#pagewrap .samp-gallery .gallery .gallery-item.slideleft{ transform: translateX(-30px); }
#pagewrap .samp-gallery .gallery .gallery-item.slideleft.is_action{ transform: translateX(0); }
#pagewrap .samp-gallery .gallery .gallery-item.slideright{ transform: translateX(30px); }
#pagewrap .samp-gallery .gallery .gallery-item.slideright.is_action{ transform: translateX(0); }
#pagewrap .samp-gallery .gallery .gallery-item.flipy{ transform: rotateY(90deg); }
#pagewrap .samp-gallery .gallery .gallery-item.flipy.is_action{ transform: rotateY(0deg); }
#pagewrap .samp-gallery .gallery .gallery-item.flipx{ transform: rotateX(90deg); }
#pagewrap .samp-gallery .gallery .gallery-item.flipx.is_action{ transform: rotateX(0deg); }
#pagewrap .samp-gallery .gallery .gallery-item.flipz{ transform: rotateZ(360deg); }
#pagewrap .samp-gallery .gallery .gallery-item.flipz.is_action{ transform: rotateZ(0deg); }

/* designer hearing sheet */
#body .wpcf7-form .inline-forms{
display: inline-block;
    width: 3em;
    padding: 5px;
    margin: 0;
    text-align: right;
}
#body .inline-checks .wpcf7-list-item{
	display: inline-block; width: auto;
}
#body .form-image-wrap{
    display: flex;
    column-gap: 30px;
    justify-content: space-between;
    padding: 1em;
    border: 1px solid;
    background: white;
	margin: 0 auto 1em;
}
#body .coupon-text{ max-height: 120px; }
#body .inline-cal{
	display: inline-block;
	width: 40%;
	margin: 0 .6em 15px;
}
#body .inline-text-points{ display: inline-block; width: 200px; margin: 0 0 15px; }

/* password fields */
/* パスワード調整用 */
.openpassbtn:hover{
  cursor: pointer;
  opacity: .7;
}
.openpassbtn::before{
  font: var(--fa-font-solid);
  content: "\f06e";
}
.openpassbtn.eye-off::before{
  font: var(--fa-font-solid);
  content: "\f070";
}
.loginbox label{
  display: relative;
}
.loginbox label .openpassbtn{
  position: absolute;
  line-height: 36px;
}

#wpcf7-f1354-p1355-o1 .submit-btn input,
#wpcf7-f1431-p1432-o1 .submit-btn input{
	margin: 0 auto;
    padding: 15px 30px;
    font-size: 18px;
    background: darkorange;
	font: var(--fa-font-solid);
}

#body .inline-checks-colors .wpcf7-list-item{
    display: inline-block;
    width: auto;
    padding: 0.6em;
    border: 1px solid gray;
    border-radius: 50px;
    margin-bottom: .6em;
    background: white;
}
#body .inline-checks-colors .wpcf7-list-item .wpcf7-list-item-label::after{
	content: '';
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    border: 1px solid lightgray;
    vertical-align: sub;
    margin-left: .3em;
	background: rgb(255,255,255);
	background: linear-gradient(125deg, rgba(255,255,255,1) 0%, rgba(221,211,227,1) 100%);
}
.box-white,
#body .inline-checks-colors .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label::after{
	background: rgb(255,255,255);
	background: linear-gradient(125deg, rgba(255,255,255,1) 0%, rgba(221,211,227,1) 100%);
}
.box-black,
#body .inline-checks-colors .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label::after{
	background: rgb(94,94,94);
	background: linear-gradient(125deg, rgba(94,94,94,1) 0%, rgba(50,50,50,1) 100%);
}
.box-red,
#body .inline-checks-colors .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label::after{
	background: rgb(255,118,118);
	background: linear-gradient(125deg, rgba(255,118,118,1) 0%, rgba(222,0,0,1) 100%);
}
.box-pink,
#body .inline-checks-colors .wpcf7-list-item:nth-child(4) .wpcf7-list-item-label::after{
	background: rgb(255,205,238);
	background: linear-gradient(125deg, rgba(255,205,238,1) 0%, rgba(255,137,226,1) 100%);
}
.box-blue,
#body .inline-checks-colors .wpcf7-list-item:nth-child(5) .wpcf7-list-item-label::after{
	background: rgb(104,128,255);
	background: linear-gradient(125deg, rgba(104,128,255,1) 0%, rgba(0,11,255,1) 100%);
}
.box-yellow,
#body .inline-checks-colors .wpcf7-list-item:nth-child(6) .wpcf7-list-item-label::after{
	background: rgb(253,255,204);
	background: linear-gradient(125deg, rgba(253,255,204,1) 0%, rgba(251,255,0,1) 100%);
}
.box-orange,
#body .inline-checks-colors .wpcf7-list-item:nth-child(7) .wpcf7-list-item-label::after{
	background: rgb(255,175,116);
	background: linear-gradient(125deg, rgba(255,175,116,1) 0%, rgba(255,151,0,1) 100%);
}
.box-green,
#body .inline-checks-colors .wpcf7-list-item:nth-child(8) .wpcf7-list-item-label::after{
	background: rgb(185,255,174);
	background: linear-gradient(125deg, rgba(185,255,174,1) 0%, rgba(0,159,4,1) 100%);
}
.box-gray,
#body .inline-checks-colors .wpcf7-list-item:nth-child(9) .wpcf7-list-item-label::after{
	background: rgb(207,207,207);
	background: linear-gradient(125deg, rgba(207,207,207,1) 0%, rgba(111,111,111,1) 100%);
}
.box-purple,
#body .inline-checks-colors .wpcf7-list-item:nth-child(10) .wpcf7-list-item-label::after{
	background: rgb(212,122,255);
	background: linear-gradient(125deg, rgba(212,122,255,1) 0%, rgba(192,94,255,1) 100%);
}
.box-brown,
#body .inline-checks-colors .wpcf7-list-item:nth-child(11) .wpcf7-list-item-label::after{
	background: rgb(209,123,81);
	background: linear-gradient(125deg, rgba(209,123,81,1) 0%, rgba(180,92,22,1) 100%);
}
.box-golden,
#body .inline-checks-colors .wpcf7-list-item:nth-child(12) .wpcf7-list-item-label::after{
	background: rgb(255,215,0);
	background: linear-gradient(125deg, rgba(255,215,0,1) 30%, rgba(255,250,222,1) 50%, rgba(255,215,0,1) 70%);
}

#body .write-timing p{ margin-bottom: 0; }

/* =============================================

	Media Query

============================================= */
@media screen and (max-width: 1400px) { /* for iPad pro landscapes */

}

@media screen and (max-width: 1180px) { /* for tablet landscapes */

	#pagewrap {
		position: relative;
		padding-bottom: 51px;
	}

	#header.header {
		padding-top: 0;
	}

	/* module menu button visible */
	#menu-button{
		visibility:visible;
		opacity:1;
	}
	
	/* Mobile Menu Container ここを調整すると、メニューボタンクリック後の動作を調整できる */
	#main-menu-container {
		position: fixed;
		z-index: 700;
		top: 0;
		left: -100vw;
		right: auto;
		bottom: auto;
		overflow-y: auto;
		background-color: #f1f1f1;
		display:block;
		width: 100vw;
		height: 100vh;
		transition: .3s linear;
	}
	#main-menu-container.is-active{
		left: 0;	
	}
	/* Mobile Menu Container ここを調整すると、メニューボタンクリック後の動作を調整できる */

}

@media screen and (max-width: 1024px) { /* for tablet landscape */

	/* style for contact forms, if do not use to delete please
	コンタクフォームのテーブル調整　不要なら消す*/
/* 	.wpcf7 table tr th,
	.wpcf7 table tr td{
		width:100%;
		display:block;
		padding: 10px 0px;
	}
	.wpcf7 table tr th{
		padding-bottom:0;
	} */
	/* style for contact forms, if do not use to delete please
	コンタクフォームのテーブル調整　不要なら消す*/

}

@media screen and (max-width: 980px) { /* for mobile landscape */
	#pc-backtop {
		display: none;
	}
	#footer .sp-footer-icons-container {
		display: flex;
	}
}

@media screen and (max-width: 820px) { /* for tablet portrate */
	#pc-backtop {

	}
	#footer .sp-footer-icons-container {

	}
}

@media screen and (max-width: 768px) { /* for mobile  */
	.typedatewrap{
		display: block;
		position: relative;
	}
	.typedatewrap::after{
		content: "";
		width: 22px;
		height: 22px;
		background: url(../../uploads/icon_cal.png) center center no-repeat;
		background-size: contain;
		/* font-family: "Font Awesome 6 Free",FontAwesome;
		font-weight: 900; */
		display: block;
        position: absolute;
        top: 13px;
        right: 13px;
	}
	.typedatewrap input{
		color: white;
		min-height: 50px;
	}
}

@media screen and (max-width: 460px) { /* for mobile small  */
	

}

/*murata*/
.inbox-fix p{
	display:flex;
	justify-content:space-evenly;
}
.inbox-fix.inbox-fix-left .intxt{
	justify-content:left;
}
@media screen and (max-width: 460px) { /* for mobile small  */
	body .inbox-fix p {
    display: block;
}