@charset "utf-8";
/* CSS Document */

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
/**================================================================================
base
================================================================================**/
/**-------------------------------------
root
-------------------------------------**/
:root {
	--mc: #1e508c;
	--mc-l: #8ea7c5;
	--sc: #f0d264;
	--sc-l: #f5f3ad;
	--sc-02: #fce69c;
}

/**-------------------------------------
base
-------------------------------------**/
body {
	font-family: 'Noto Sans JP', sans-serif;
}
.Oswald {
	font-family: 'Oswald', sans-serif;
}

@media (max-width: 520px) {
	html,
	body {
		font-size: 50%;
	}
}

/**-------------------------------------
style
-------------------------------------**/
.ctr-pa {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.ctr-flex {
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 520px) {
	.ctr-flex.sp1c {
		flex-flow: column;
	}
	.ctr-flex.sp1c > * {
		margin: 10px auto;
	}
}

/**-------------------------------------
txt
-------------------------------------**/
.txtA {
	font-size: 3.5rem;
	font-weight: bold;
	text-align: center;
	color: var(--mc);
}
.mc {
	color: var(--mc);
}
.sc {
	color: var(--sc);
}
.wc {
	color: #fff;
}
.rc {
	color: red;
}
.mc-bg {
	background-color: var(--mc);
}

@media (max-width: 520px) {
	.txtA {
		font-size: 7vw;
	}
}


/**-------------------------------------
animate
-------------------------------------**/
.animate__animated {
	animation-duration: 1s;
	opacity: 0;
}
.animate__animated.show {
	opacity: 1;
}

.animate__animated.show.delay02 {
	animation-delay: .2s;
}
.animate__animated.show.delay03 {
	animation-delay: .4s;
}
.animate__animated.show.delay04 {
	animation-delay: .6s;
}


/**================================================================================
style
================================================================================**/
/**-------------------------------------
header
-------------------------------------**/
header {
	background-color: rgba(30, 80, 140, .85)
}
header .box2C {
	--b2c-w: auto;
	--box-m: 0;
	flex-wrap: nowrap;
}
header img {
	height: 35px;
}
header .btn {
	min-height: 40px;
	white-space: nowrap;
	background-color: var(--sc);
	border: 1px solid #fff;
}

@media (max-width: 520px) {
	header .box2C {
		--b2c-w: 49%;
	}
	header .box2C .ctr-flex:first-child {
		justify-content: flex-start;
	}
	header .box2C .ctr-flex:last-child {
		justify-content: flex-end;
	}
	header img {
		height: auto;
	}
	header img.m_r20,
	header .btn.m_r20 {
		margin: 5px;
	}
}


/**-------------------------------------
sec1
-------------------------------------**/
#sec1 {
	position: relative;
	height: 800px;
	background: url("../images/sec1-bg.jpg") center center / cover no-repeat;
}
#sec1 .stripe {
	position: relative;
}
#sec1 .stripe::before,
#sec1 .stripe::after {
	content: '';
	display: block;
	background: repeating-linear-gradient(-45deg, var(--sc-l), var(--sc-l) 10px, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0) 20px);
	z-index: -1;
}
#sec1 .stripe.TB::before,
#sec1 .stripe.TB::after {
	width: 100%;
	height: 15px;
}
#sec1 .stripe.RL {
	padding: 20px 30px;
}
#sec1 .stripe.RL::before,
#sec1 .stripe.RL::after {
	position: absolute;
	top: 0;
	width: 15px;
	height: 100%;
}
#sec1 .stripe.RL::before {
	right: 0;
}
#sec1 .stripe.RL::after {
	left: 0;
}
#sec1 h2 {
	width: 600px;
	padding: 20px;
	background-color: rgba(255, 255, 255, .85);
}
#sec1 .limit {
	position: absolute;
	/* top: 15%;
	right: 0; */
	left: 50%;
	bottom: 90%;
	transform: translateX(-50%);
	padding: 10px 20px;
	background-color: var(--sc);
}
#sec1 h2 .dot {
	vertical-align: super;
	letter-spacing: -10px;
}

@media (max-width: 520px) {
	#sec1 {
		height: 70vh;
	}
	#sec1 .stripe.TB::before,
	#sec1 .stripe.TB::after {
		height: 10px;
	}
	#sec1 .stripe.RL {
		padding: 10px 20px;
	}
	#sec1 .stripe.RL::before,
	#sec1 .stripe.RL::after {
		width: 10px;
	}
	#sec1 h2 {
		width: 80vw;
		padding: 10px;
	}
	#sec1 .fs30,
	#sec1 .fs35 {
		font-size: 2rem;
	}
	#sec1 .fs50 {
		font-size: 7vw;
	}
	#sec1 .fs65 {
		font-size: 4rem;
	}
}



/**-------------------------------------
reserve
-------------------------------------**/
.reserve {
	position: relative;
	padding: 30px;
	background-color: var(--sc);
	z-index: 1;
}
.reserve::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: repeating-linear-gradient(-45deg, var(--sc-l), var(--sc-l) 10px, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0) 20px);
	mix-blend-mode: multiply;
	z-index: -1;
}
.reserve .w980 {
	border: 2px solid var(--mc);
	background-color: #fff;
}
.reserve .btn {
	--btn-br: 40px;
	display: inline-flex;
	position: relative;
}
.reserve .btn::after {
	content: "\e941";
	display: block;
	font-size: 5rem;
  font-family: 'Material Icons';
	line-height: 1;
	color: #fff;
}
.reserve .btn .icon {
	position: relative;
	--icon: 70px;
	width: var(--icon);
	height: var(--icon);
	background-color: #fff;
	border-radius: 500px;
}
.reserve .btn .icon img {
	width: 70%;
}

@media (max-width: 520px) {
	.reserve {
		padding: 5%;
	}
	.reserve .p_20 {
		padding: 10px;
	}
	.reserve .fs40 {
		font-size: 7vw;
	}
	.reserve .fs24 {
		font-size: 4vw;
	}
	.reserve .btn .icon {
		--icon: 40px;
	}
	.reserve .m_a20 {
		margin: auto;
	}
}

/**-------------------------------------
sec2
-------------------------------------**/
#sec2,
#sec4 {
	position: relative;
	padding: 80px 0;
	z-index: 1;
}
#sec2::before,
#sec4::before {
	display: block;
	position: absolute;
	top: 0;
	font-size: 16rem;
	font-family: 'Oswald', sans-serif;
	line-height: 0.8;
	color: #ededed;
	z-index: -1;
}
#sec2::before {
	content: "BENEFITS";
	right: 0;
}
#sec2 h2 {
	position: relative;
	margin-bottom: 50px;
}
#sec2 h2::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 4px;
	background-color: var(--sc);
}
#sec2 .sec2-img {
	padding: 10px;
	background-color: var(--sc);
}
#sec2 img.homare {
	height: 2em;
}
#sec2 img.karimoku {
	width: 300px;
}

/* benefits */
#sec2 .benefits {
	position: relative;
	padding: 50px;
	border: 1px solid var(--mc);
	outline: 1px solid var(--mc);
	outline-offset: 10px;
	margin: 10px;
}
#sec2 .benefits::before,
#sec2 .benefits::after {
	content: "";
	display: block;
	position: absolute;
	width: 150px;
	height: 1px;
	background-color: var(--mc);
}
#sec2 .benefits::before {
	top: 20px;
	left: 20px;
	transform: translateX(-50%) rotate(-45deg);
}
#sec2 .benefits::after {
	right: 20px;
	bottom: 20px;
	transform: translateX(50%) rotate(-45deg);
}
#sec2 .benefits h3 {
	position: relative;
}
#sec2 .benefits h3::before,
#sec2 .benefits h3::after {
	content: "";
	display: block;
	width: 110px;
	height: 0.8em;
	margin: auto 20px;
	background: repeating-linear-gradient(90deg, var(--mc-l), var(--mc-l) 10px, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0) 25px);
}
#sec2 .benefits ul {
	counter-reset: number 0;
}
#sec2 .benefits ul li {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px dotted #b2aba4;
}
#sec2 .benefits ul li::before {
	counter-increment: number 1;
	content: counter(number, decimal-leading-zero) " ";
	display: block;
	margin: 0 40px 0 20px;
	font-size: 5.6rem;
	font-weight: bold;
	font-family: 'Oswald', sans-serif;
	line-height: 1;
	color: var(--mc-l);
}
#sec2 .benefits ul li .liner {
	font-size: 2.6rem;
	font-weight: bold;
	background: linear-gradient(transparent 40%, var(--sc-02) 0%);
}

@media (max-width: 520px) {
	#sec2,
	#sec4 {
		padding: 50px 0;
	}
	#sec2::before,
	#sec4::before {
		font-size: 20vw;
	}
	#sec2 .benefits {
		width: 80%;
		margin: 10px auto;
		padding: 10px;
	}
	#sec2 .benefits::before,
	#sec2 .benefits::after {
		width: 120px;
	}
	#sec2 .benefits h3::before,
	#sec2 .benefits h3::after {
		display: none;
	}
	#sec2 .benefits ul li {
		flex-flow: column;
	}
	#sec2 .benefits ul li::before {
		margin: 10px auto;
	}
}

/**-------------------------------------
covid
-------------------------------------**/
.covid {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 160px;
	margin: 50px auto;
	padding: 20px;
	background-color: #f6f6ee;
	border: 1px solid #a0a0a0;
}
.covid > * {
	padding: 0 40px;
}
.covid p {
	position: relative;
	font-size: 2rem;
	font-weight: bold;
}
.covid p::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 120px;
	background-color: #a0a0a0;
}

@media (max-width: 520px) {
	.covid {
		flex-flow: column;
		height: auto;
		padding: 20px 10px;
	}
	.covid.w980 {
		width: 90%;
	}
	.covid > * {
		padding: 0;
	}
	.covid p {
		margin-bottom: 10px;
		padding-bottom: 10px;
	}
	.covid p::after {
		top: 100%;
		right: auto;
		transform: none;
		width: 100%;
		height: 1px;
	}
	.covid .fs14 {
		font-size: 1.6rem;
		padding-left: calc(1em);
    text-indent: calc(-1em);
	}
}

/**-------------------------------------
sec3
-------------------------------------**/
#sec3 {
	position: relative;
	z-index: 1;
}
#sec3::before,
#sec3::after {
	content: "";
	display: block;
	position: absolute;
	width: 500px;
	height: 600px;
	mix-blend-mode: multiply;
	z-index: -1;
}
#sec3::before {
	top: 0;
	left: 0;
	background: url("../images/deco01.svg") top left / contain no-repeat;
}
#sec3::after {
	right: 0;
	bottom: 0;
	background: url("../images/deco02.svg") right bottom / contain no-repeat;
}

@media (max-width: 520px) {
	#sec3::before,
	#sec3::after {
		width: 80%;
	}
	#sec3 .gallery.m_50a {
		margin-bottom: 0;
	}
}

/**-------------------------------------
sec4
-------------------------------------**/
#sec4::before {
	content: "ACCESS";
	left: 0;
}
#sec4 .map iframe {
	height: 100%;
}
#sec4 .address img {
	width: 100%;
}
#sec4 .route {
	padding: 30px;
	border: 1px solid #000;
}
#sec4 .route .train {
	border-bottom: 1px dotted #b2aba4;
}
#sec4 .offer img {
	width: 200px;
}

/* question */
#sec4 .question h3 {
	position: relative;
	padding: 70px 0 30px;
	font-size: 2.4rem;
	z-index: 1;
}
#sec4 .question h3::before,
#sec4 .question h3::after {
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	line-height: 0.8;
	z-index: -1;
}
#sec4 .question h3::before {
	content: "QUESTION";
	font-size: 8rem;
	font-family: 'Oswald', sans-serif;
	color: var(--sc-02);
}
#sec4 .question h3::after {
	content: "インテリアほまれならお答えできます！";
	top: 30px;
	font-size: 1.5rem;
	font-weight: bold;
	color: #000;
	white-space: nowrap;
}

#sec4 .question ul {
	counter-reset: number 0;
}
#sec4 .question ul li {
	margin: 20px auto;
}
#sec4 .question ul li .qa-item {
	padding: 20px;
	font-size: 2rem;
	border-radius: 0;
}
#sec4 .question ul li .q-area,
#sec4 .question ul li .a-area {
	--qaIcon-size: 100px;
}
#sec4 .question ul li .q-area::before {
	counter-increment: number 1;
	content: "Q" counter(number) ".";
	font-size: 3rem;
	font-family: 'Oswald', sans-serif;
	color: var(--mc);
	background: none;
}
#sec4 .question ul li .a-area::before {
	display: none;
}


#sec4 .question ul li .q-area .toggleBtn {
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
}
#sec4 .question ul li .q-area .toggleBtn:before {
	display: block;
	content: "\e5cf";
	transition: 0.3s;
  font-family: 'Material Icons';
}

#sec4 .question ul li .q-area.selected .toggleBtn:before {
	content: "\e5ce";
}

#sec4 .question ul li .a-area .aside {
	margin-top: 20px;
	padding: 20px;
	background-color: #fff;
	border: 3px solid var(--mc);
}

@media (max-width: 520px) {
	#sec4 .map iframe {
		height: 30vh;
	}
	#sec4 .addres .fs16 {
		font-size: 1.8rem;
	}
	#sec4 .route {
		padding: 20px;
	}
	#sec4 .offer .fs14 {
		font-size: 1.6rem;
	}
	#sec4 .question ul li .qa-item {
		padding: 10px;
		font-size: 1.8rem;
	}
	#sec4 .question ul li .q-area,
	#sec4 .question ul li .a-area {
		--qaIcon-size: 25px;
	}
	#sec4 .question ul li .q-area {
		padding-right: 40px;
	}
	#sec4 .question ul li .a-area {
		margin-top: 10px;
	}
}


/**-------------------------------------
entry
-------------------------------------**/
#entry .req,
#entry .opt {
	display: inline-block;
	margin: 0 10px;
	padding: 3px 13px;
	font-size: 0.75em;
	/* font-weight: bold; */
	font-weight: normal;
	line-height: 1.5;
}
#entry .req {
	color: #000;
	background-color: #fff;
}
#entry .opt {
	color: #fff;
	background-color: rgba(255, 255, 255, 0);
	border: 1px solid #fff;
}

#entry .table tr > * {
	padding: 15px;
}
#entry .table tr th {
	vertical-align: top;
}
#entry form input[type="text"] {
	height: 50px;
	padding: 5px 20px;
}
#entry .purpose > * {
	display: block;
	margin: 5px 0;
}
#entry .post {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
#entry .post input[type="text"] {
	width: auto;
}
#entry .furniture .box2C {
	--box-m: 5px 0;
}

#entry .wrap {
	padding: 20px 40px;
	border: 1px solid #fff;
}
#entry .form .frame {
	width: 90%;
	height: 150px;
	margin: 30px auto;
	padding: 15px;
	color: #000;
	background: #fff;
	overflow: auto;
}
#entry .btn {
	width: 400px;
	height: 80px;
	font-size: 2.4rem;
	font-weight: bold;
	color: var(--mc);
	border-radius: 500px;
	border: none;
}

@media (max-width: 520px) {
	#entry form.p_tb50 {
		padding-top: 0;
	}
	#entry .table tr > * {
		padding: 0;
	}
	#entry .table tr th {
		margin: 10px 0;
		padding: 10px;
		text-align: left;
		background-color: #286db2;
	}
	#entry .purpose label {
		padding-left: calc(1em + 20px);
    text-indent: calc(-1em - 20px);
	}
	#entry .wrap {
		padding: 10px;
	}
	#entry .form .frame {
		width: 100%;
	}
	#entry .btn {
		height: 60px;
		border-radius: 500px;
	}
}


/**-------------------------------------
thanks
-------------------------------------**/
#entry.form-check .btn,
#entry.form-comp .btn {
	color: #fff;
	background-color: var(--mc);
}

#entry .gold{
	background: url("../images/thanks-bg.jpg") center center / 100% 100% no-repeat;
	max-width: 800px;
	margin: 50px auto 20px;
	padding: 30px 0;
	font-size: 1.2em;
}
#entry .gold h2{
	margin: 20px auto;
}
#entry .notes{
	width: 90%;
	border: 1px solid #412402;
	padding: 20px;
	text-align: left;
	margin: 20px auto;
	background: rgba(255,255,255,0.3);
	box-shadow: 0 0 0 5px rgba(255,255,255,0.3);
}
#entry .notes li{
	margin: 5px 0;
	padding-left: 1em;
	text-indent: -1em;
}
#entry .notes li.red{
	color: #cc0000;
}


@media screen and (max-width:768px) {
	#entry.w980 > * {
		width: 100%;
	}
	#entry .gold{
		max-width: 95%;
		margin: 20px auto 20px;
		padding: 15px 5px 1px;
		font-size: 0.9em;
	}

	#entry .gold h2{
		margin: 10px auto 0;
		font-size: 6vw;
	}

	#entry .notes{
		width: 90%;
		padding: 5px;
		margin: 10px auto;
		font-size: 0.9em;
	}
	#entry .notes li{
		margin: 3px 0;
	}

	#entry.p_tb50 {
		padding: 20px 0;
	}
	#entry .m_50a {
		margin: 20px auto;
	}
}
