@charset "utf-8";

/* -----------------------
module.css：共通パーツ制御
-----------------------　*/

#wrapper {
	display: relative;
}

/* header
----------------------------------- */

header {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	color: #333;
	text-align: center;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	z-index: 1000;
}

.header {
	position: absolute;
	left: 0;
	top: 0;

	width: 100%;
	background: rgba(255, 255, 255, 1);
	color: #333;
	text-align: center;
	padding: 10px 0;
	z-index: 1000;
}

header .inner,
.header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;

	width: 90%;
	margin: 0 auto;
}

header .logo,
.header .logo {
	margin: 0;
	padding: 5px 0 0 0;

	width: 250px;
	align-items: center;
}

header .btn_box,
.header .btn_box {
	text-align: right;
	display: flex;
	align-items: center;
}

header .btn_box li,
.header .btn_box li {
	margin: 0 0 0 20px;

  line-height: 1.1;
  text-align: center;
}

header .btn_box .tel._pc,
.header .btn_box .tel._pc {
	display: block;
}

header .btn_box .tel._sp,
.header .btn_box .tel._sp {
	display: none;
}

header .btn_box .tel {
	font-weight: 600;
}

header .btn_box .tel .tel_num,
.header .btn_box .tel .tel_num {
	position: relative;
	display: block;
	margin: 0 0 0 15px;

	font-size: 2em;
	font-weight: 600;
	color: #C33979;
}

header .btn_box .tel .tel_num::before,
.header .btn_box .tel .tel_num::before {
	position: absolute;

	content: "";
	background: url("../img/icon_tel.svg") no-repeat 0 0 / contain;
	width: 30px;
	height: 30px;
	margin: 5px 0 0 -25px;
}

header .btn_box .tel p,
.header .btn_box .tel p {
	margin: 0;

	font-weight: 600;
	font-size: .7em;
}

header .btn_box .btn,
.header .btn_box .btn {
	width: 250px;
	margin: -5px 0 0 0;
	padding: 15px 20px;
}

header.visible {
	opacity: 1!important;
	visibility: visible!important;
}

.hidden {
  display: none;
}


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

	.header {
		position: inherit;
		padding: 0;
	}

	header {
		display: flex;
		padding: 0;
	}

	header .inner,
	.header .inner {
		display: block;

		width: 100%;
		padding: 10px 0 0 0;
	}

	header .logo,
	.header .logo {
		display: inline-block;
		width: 200px;
	}
	.header .logo {
		padding: 0 0 5px 0;
	}
	header .logo {
		padding: 0;
	}

	header .btn_box,
	.header .btn_box {
		display: block;
		margin: 0 0 15px 0;
		padding: 0;

		vertical-align: middle;
		text-align: center;
	}
	header .btn_box li,
	.header .btn_box li {
		display: inline-block;
		margin: 0;
	}

	header .btn_box .btn,
	.header .btn_box .btn {
		width: 100%;
		font-size: .9em;
		padding: 10px 10px 10px 15px;
	}
	header .btn_box .tel,
	.header .btn_box .tel {
		width: 34%;
	}
	header .btn_box .line,
	.header .btn_box .line {
		width: 34%;
	}
	header .btn_box .mail,
	.header .btn_box .mail {
		width: 25%;
	}
	header .btn_box .mail .btn,
	.header .btn_box .mail .btn {
		padding: 10px;
	}

	header .btn_box .tel._sp,
	.header .btn_box .tel._sp {
		display: inline-block;
	}

	header .btn_box .tel._pc,
	.header .btn_box .tel._pc {
		display: none;
	}

	header .btn_box .btn {
		width: 100%;
		margin: 0;
		padding: 10px 10px 10px 15px;

		font-size: .8em;
		color: #fff;
	}

	header .btn_box .btn::before,
	.header .btn_box .btn::before {
		width: 20px;
		height: 20px;
		margin: 1px 5px 0 0;
	}



	header ._tel::before,
	.header ._tel::before {
		position: absolute;
		left: 10px;
		top: 30%;

		content: "";
		background: url("../img/icon_tel_sp.svg") no-repeat 0 0 / contain;
		width: 30px;
		height: 30px;
		margin: 5px 0 0 -25px;
	}

	header ._line::before,
	.header ._line::before {
		position: absolute;
		left: 10px;
		top: 30%;

		content: "";
		background: url("../img/icon_line.svg") no-repeat 0 0 / contain;
		width: 30px;
		height: 30px;
		margin: 5px 0 0 -25px;
	}


	header .btn_box .btn::before {
		position: absolute;
		content: "";
		left: 10px;
		width: 20px;
		height: 20px;
	}

}

@media screen and (max-width: 375px) {
	header .btn_box .btn,
	.header .btn_box .btn {
		width: 100%;
		font-size: .8em;
	}
}



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

footer {
	width: 100%;
	background: #340000;
	padding: 30px 0 110px 0;

	text-align: center;
}

footer small {
	color: #fff;
	font-size: 1em;
}

@media screen and (max-width: 768px), screen and (max-width: 1024px) , screen and (max-width: 1024px) {
	footer {
		margin: 0;
		padding: 30px 0 140px 0;
		font-size: .7em;
	}
}



/* .cta
----------------------------------- */

.cta {
	background: #FFFBED;
	background-size: cover;

	color: #222;
	padding: 0;
}

.cta._first h2 .big_txt {
	display: block;
	margin: 0 0 10px 0;

	font-size: 1.6em;
	color: #fff;
}

.cta .cta_ttl {
	background: url("../img/bg_cta_ttl.png") 50% 0 / cover;
	padding: 20px;
	overflow: hidden;

	text-align: center;
	color: #fff;
}

.cta._first .cta_ttl {
	padding: 60px 0 40px 0;
}

.cta .cta_ttl span {
	font-size: 1.2em;
	color: #FFF500;
}

.cta .inner {
	position: relative;
	width: 1200px;

	margin: 0 auto;
	padding: 20px 0 10px 0;
}

.cta .inner .btn_wrap {
	margin: 0 auto;
}

.cta .inner .left,
.cta .inner .right {
	display: inline-block;
	vertical-align: middle;
}

.cta .inner .left {
	width: 330px;
	margin: 0 20px -15px 0;
	text-align: center;
}

.cta .inner .right {
	width: 800px;
}

.cta .inner .right .ttl {
	display: block;
	margin: 0 0 10px 0;
	padding: 0;
}

.cta .inner .right .contact {
	display: flex;
	margin: 20px 0 0 0;
}

.cta .inner .right .contact .tel_box {
	margin: 0 20px 0 0;
	text-align: center;
}

.cta .inner .right .contact .tel_box .cta_tel_ttl {
	font-size: 1em;
	font-weight: 600;
}
.cta .inner .right .contact .tel_box .cta_tel_number a {
	font-size: 2.4em;
	font-weight: 600;
	color: #C33979;
}
.cta .inner .right .contact .tel_box .cta_tel_time {
	font-size: .8em;
	font-weight: 600;
	margin: 0 0 15px 0;
}

.cta .inner .right .contact .tel_box small {
	display: block;

	line-height: 1.6;
	font-size: .7em;
}

.cta .inner .right .contact .btn_box {
	width: 320px;
}

.cta .inner .right .contact .btn_box li,
.cta .inner .right .contact .btn_box .btn {
	width: 100%;
	margin: 0 0 10px 0;
}



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

	.cta {
		padding: 0;
	}
	.cta .cta_ttl {
		padding: 20px 10px;

		font-size: .7em;
	}
	.cta._first .cta_ttl {
		padding: 40px 0 20px 0;
	}
	.cta._first h2 .big_txt {
		margin: 0;
	}
	.cta .inner {
		width: 100%;
		margin: 0;
		padding: 0;
	}
	.cta .inner .left,
	.cta .inner .right .tel_box {
		display: none;
	}
	.cta .inner .right {
		position: relative;
		width: 100%;
	}
	.cta .inner .right h3,
	.cta .inner .right h3 picture,
	.cta .inner .right h3 img {
		width: 100%;
	}
	.cta .inner .right h3 {
		margin: 0 0 -10px 0;
	}
	.cta .inner .right .contact {
		position: absolute;
		right: 20px;
		bottom: 0;
	}
	.cta .inner .right .contact .btn_box {
		width: 235px;
	}
	.cta .inner .right .contact .btn_box ._sp {
		display: none;
	}
	.cta .tel_box {
		background: #390403;
		padding: 20px;

		text-align: center;
		color: #fff;
	}

	.cta .tel_box ._cta_tel::before {
		position: absolute;
		left: 25px;
		top: 16px;

		content: "";
		background: url("../img/icon_cta_tel.svg") no-repeat 0 0 / contain;
		width: 30px;
		height: 30px;
		margin: 0;
	}
	.cta .tel_box .btn._cta_tel {
    padding: 10px 30px 10px 50px;
	}

	.cta .tel_box .cta_tel_ttl {
		margin: 0 0 20px 0;

		font-weight: 600;
		font-size: 1.2em;
	}
	.cta .tel_box .cta_tel_number {
		margin: 0 0 20px 0;
		font-size: 1.4em;
	}
	.cta .tel_box .cta_tel_time {
		font-weight: 600;
	}

	.cta .tel_box small {
		display: block;
		margin: 15px 0 0 0;

		line-height: 1.6;
		font-size: .75em;
	}

}

/* tablet */
@media screen and (width: 1024px) and (height: 1366px),
screen and (width: 853px) and (height: 1280px),
screen and (width: 1024px) and (height: 600px) {

	.cta .inner .right .contact .tel_box {
		display: block;
		margin: 0 20px 20px 20px;
		padding: 0;
	}

	.cta .tel_box {
		display: none;
	}

	.cta .inner .right .contact {
		position: inherit;
		right: inherit;
		bottom: 0;
	}

	.cta .tel_box {
		background: none;
		color: #222;
	}

	.cta .inner .right .contact .btn_box {
		width: 400px;
	}

	.cta .inner .right .contact .tel_box .cta_tel_number a {
		font-size: 1.4em;
	}

	.cta .tel_box .cta_tel_number,
	.cta .tel_box .cta_tel_ttl {
		margin: 0;
	}

}
