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

/*

PCファースト
余白は上下のmarginは避けてbox内でpaddingにて完結
PC 原則rem
SP 原則vw
可変で変わる場合この限りではない
タグでの指定はしない ex) header{} x , .heading > span x

詳細度が変わるのでネストは原則NG
擬似クラスを使う際の使用はOK

========
命名規則
========
BEMをベースに命名規則
block_elem--mod


// BEEM -> OK
// 原則単語はケバブケース ex) main-view
// 冗長になる場合は省略可 ec)cta
// グローバルは大文字で [ G ]


*/

/* ===============================
            base
=============================== */

body,
html {
	width: 100%;
	max-width: 100%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 130%;
	font-family: sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: #eff0f0;
}

@media screen and (max-width: 768px) {
	body,
	html {
		overflow-x: hidden;
		font-size: 88%;
	}

	body {
		padding-bottom: 18vw;
	}
}

.br--pc {
	display: block;
}
.br--sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.br--pc {
		display: none;
	}
	.br--sp {
		display: block;
	}
}

.thin {
	font-size: 16px;
}

@media screen and (max-width: 768px) {
	.thin {
		font-size: 12px;
	}
}

/* inner - inr
===============================
--white
*/

.inr {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

/* section - sec
===============================
 elementごとのスタイルはblock/elementで
*/

.sec {
	margin-top: 3rem;
}

.sec_hdr {
	background-color: #2b4c96;
}

.sec_ttl {
	width: 75%;
	padding: 1.2em 0;
	margin: 0 auto;
	color: #fff;
	font-size: 2rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.sec_ttl {
		padding: 0.5em 0;
		font-size: 5vw;
	}
}

.sec_body {
	padding: 2rem 1.5rem;
	background-color: #fff;
}

.sec_body--colored {
	background-color: #e7eef5;
}

/*     animate fuwafuwa
===============================*/

@keyframes fuwafuwaDownward {
	0% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(0, -10px);
	}
	100% {
		transform: translate(0, 0);
	}
}

/* ===============================
          global
=============================== */

.G-ftr {
	padding: 0.3rem;
	color: #fff;
	background: #000;
}

.copy_text {
	font-size: 0.8rem;
	text-align: center;
}

/* footing btn */

.ftg_wrap {
	display: none;
	width: 100%;
	position: fixed;
	bottom: 0;
	z-index: 1000;
	transition: 0.15s ease-in;
}

.ftg_inr {
	max-width: 100%;
	width: 768px;
	margin-right: auto;
	margin-left: auto;
}

.ftg_hdr {
	background-color: #2c4b96;
}

.ftg_hdr_txt {
	padding: 0.1rem 0;
	font-size: 2.5rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
}

.ftg_body_wrap {
	background-color: #fff;
}

.ftg_body {
	padding: 0.8rem 0.5rem;
	display: flex;
	gap: 0.5rem;          /* ← 余白はここで管理 */
}

.ftg_btn {
	flex: 1 1 0%;         /* ← これで常に半々になる */
}

/* 電話ボタン：キラッ演出用（幅は指定しない） */
.ftg_btn--tel {
	position: relative;
	overflow: hidden;
}

.ftg_btn--tel::before {
	position: absolute;
	content: "";
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #fff;
	animation: shiny-btn1 3s ease-in-out infinite;
}

/* メールボタン：幅は指定しない */
.ftg_btn--mail {
	/* width は不要 */
}

/* mod */
.is-scrollEnd .ftg_wrap {
	transform: scale(0);
}

@media screen and (max-width: 768px) {
	.ftg_wrap {
		display: block;
	}

	.ftg_hdr_txt {
		padding: 1vw 0;
		font-size: 6vw;
	}

	.ftg_inr {
		width: 100%;
	}

	.ftg_body {
		padding: 1vw;
		gap: 1vw;          /* ← SPは余白もvwで揃える */
	}

	.ftg_btn_img {
		height: auto;
		width: 100%;
	}
}


/* ===============================
          block / element
=============================== */

/* header
===============================
*/

.header {
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	padding: 20px calc((100% - 820px) / 2);
	background: #fff;
}

.header-logo {
	width: 47%;
	padding-left: 2em;
}

.header .logo {
	width: 60%;
	margin-bottom: 5px;
}

.header .lead {
	/* width: 310px; */
	width: 90%;
}

.header .lead img {
	vertical-align: middle;
}

.header-tel {
	width: 53%;
	padding-right: 2em;
}

.header-tel .numb {
	display: flex;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 0.1em;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.header-tel .numb img {
	width: 1.9em;
	padding-right: 0.2em;
}

.header-tel .hour {
	font-size: 1rem;
	font-weight: 600;
	white-space: nowrap;
}

@media screen and (max-width: 768px) {
	.header {
		padding: 0.5em;
	}
	.header-logo {
		width: 100%;
		padding-left: 0;
	}
	.header .logo {
		width: 30%;
		max-width: 210px;
		min-width: 150px;
		margin: 0 auto;
	}
	.header .lead {
		width: 80%;
		max-width: 310px;
		min-width: 200px;
		margin: 0 auto;
	}

	.header-tel {
		width: 50%;
		margin: 0 auto;
	}
	.header-tel {
		display: none;
	}
}

@media screen and (max-width: 500px) {
	.header .lead {
		display: none;
	}
}

/* main-view
===============================
wrap   -> bg image
content -> png
*/

.mv {
	position: relative;
	background: center top / cover no-repeat url("../images/bg/bg_mv.jpg");
	box-shadow: 0 3px 5px #666a;
	z-index: 1;
}

.mv_inr {
	position: relative;
	width: 100%;
	padding: 20px 0;
	margin: 0 auto;
	box-shadow: none;
	text-align: center;
}

.mv_ttl {
	max-width: 820px;
	width: 90%;
	margin: 0 auto 20px;
}

.mv_ttl {
	text-align: center;
}

.mv_img {
	object-position: center;
}

@media screen and (min-width: 1500px) {
	.mv_img {
		width: 100%;
		max-width: 100vw;
	}
}

/* pickup
===============================
*/

.pickup_hdr {
	border-radius: 10px;
	background-color: #c60017;
}

.pickup_inr {
	box-shadow: none;
	max-width: 820px;
	width: 90%;
}

.pickup_ttl {
	padding: 0.5rem;
}

.pickup_hdr::before,
.pickup_hdr::after {
}

.pickup_hdr::before {
	border-right-color: #c60017;
}

.pickup_hdr::after {
	border-left-color: #c60017;
}

.pickup_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 2rem;
}

.pickup_body {
	padding: 0 0 2em;
	background-color: transparent;
	text-align: center;
}

.pickup {
	width: calc((100% - 30px) / 3);
}

/* cta
===============================
*/

.cta_sec {
	margin-top: 0;
	background: url("../images/cta/cta_bg.jpg") no-repeat center center;
	-webkit-background-size: cover;
	background-size: cover;
}

.cta_inr {
	max-width: 820px;
	padding: 3em 1em;
	margin: 0 auto;
	box-shadow: none;
}

.cta_inr .sec_hdr {
	width: 65%;
	padding-left: 2em;
	margin-bottom: 10px;
	background: none;
}

.cta_inr .cta_tel {
	position: relative;
	margin-bottom: 1em;
	transition: all 0.3s;
}

.cta_inr .cta_tel a {
	position: relative;
	display: block;
	overflow: hidden;
}

.cta_inr .cta_tel:hover {
	filter: brightness(120%);
}

.cta_inr .cta_tel a::before {
	position: absolute;
	content: "";
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #fff;
	animation: shiny-btn1 3s ease-in-out infinite;
}

@keyframes shiny-btn1 {
	0% {
		transform: scale(0) rotate(45deg);
		opacity: 0;
	}
	80% {
		transform: scale(0) rotate(45deg);
		opacity: 0.5;
	}
	81% {
		transform: scale(4) rotate(45deg);
		opacity: 1;
	}
	100% {
		transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}

.cta_inr .cta_estimate {
	margin-bottom: 1em;
}

.cta_inr .cta_icon {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 30%;
	z-index: 6;
}

.cta_body {
	padding: 2rem 2rem;
	/* background: none; */
}

@media screen and (max-width: 768px) {
	.cta_inr {
		padding: 1em 4%;
	}

	.cta_inr .sec_hdr {
		padding-left: 1em;
	}

	.cta_body {
		padding: 1em;
	}
}

/* measures
===============================
*/

.measures_sec {
}
.measures_inr {
	width: 90%;
	max-width: 820px;
	box-shadow: none;
}

.measures_hdr {
	text-align: center;
	background-color: transparent;
}

.measures_ttl {
	display: inline-block;
	width: auto;
	padding: 0.3rem 2.5rem;
	background-color: #2b4c96;
	border-radius: 10px 10px 0 0;
}

@media screen and (max-width: 768px) {
	.measures_inr {
		width: 95%;
	}
}

/* about
===============================
*/

.about_sec {
	margin-top: 0;
}

.about_inr {
	width: 100%;
	background-color: #fff;
}

.about_sec .sec_body {
	width: 90%;
	max-width: 820px;
	margin: 0 auto;
}

.about_sec .sec_ttl {
	max-width: 820px;
	padding: 0.1em 0 1.2em;
	margin: 0 auto;
}

.about_hdr::before {
	border-right-color: #2b4c96;
}

.about_hdr::after {
	border-left-color: #2b4c96;
}

.about_iframe_wrap {
	margin-bottom: 2rem;
}
.about_iframe_wrap:last-child {
	margin-bottom: 0;
}

.about_text {
	margin-bottom: 3rem;
	font-size: 1.5rem;
}

.about_comment {
	margin-bottom: 1rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.about_sec .sec_ttl {
		padding: 0.1em 0 0.5em;
	}
	.about_hdr {
		margin-bottom: 3vw;
	}

	.about_inr {
		/* padding: 4vw 4.5vw 3vw; */
	}

	.about_ttl {
		padding: 0;
	}

	.about_text {
		font-size: 4.5vw;
	}
}

/* iframe */

.iframe_wrap {
	position: relative;
	width: 100%;
}

.iframe_wrap::before {
	content: "";
	display: block;
	padding-top: 56.25%;
}

.iframe_wrap .iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
}

/* feature
===============================
  productを除く
*/

/* product
===============================
*/

/* items */
.product {
	max-width: 820px;
	margin-bottom: 4rem;
	margin-left: auto;
	margin-right: auto;
}

.feature_sec {
	margin-top: 0;
}

.feature_sec .inr {
	background: #fff;
}

.feature_sec .feature_togglebtn {
	position: relative;
	width: 100%;
	max-width: 820px;
	padding: 0.5em 0;
	margin: 0 auto;
	/* background: #c50818; */
	background: url("../images/product/clickline.png") no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: right center;
	font-size: 35px;
	color: #fff;
	font-weight: 800;
	font-style: italic;
	text-align: center;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	cursor: pointer;
}

.feature_sec .feature_togglebtn .arw {
	padding-left: 0.5em;
}

.feature_sec .feature_togglebtn .hand {
	position: absolute;
	right: calc(50% - 8em);
	top: 50%;
	width: 80px;
	animation: 3s float infinite;
	z-index: 999;
}

@keyframes float {
	0% {
		top: 50%;
	}
	50% {
		top: 30%;
	}
	100% {
		top: 50%;
	}
}

.feature_sec .sec_ttl {
	max-width: 820px;
}

.feature_sec .sec_body {
	width: 100%;
	padding: 1em max(20px, calc((100% - 820px) / 2));
}

.feature_togglebtn + .sec_body {
	display: none;
}

@media screen and (max-width: 768px) {
	.feature_sec .feature_togglebtn {
		font-size: 5vw;
	}
	.feature_sec .sec_body {
		padding: 5vw 3vw 1vw;
	}
}

@media screen and (max-width: 600px) {
	.feature_sec .feature_togglebtn .hand {
		right: calc(50% - 8.5em);
		width: 50px;
	}
}

/* hdr */

.product_hdr {
	display: inline-block;
	width: auto;
	padding: 0.5rem 1rem 0;
	color: #fff;
	font-weight: bold;
	font-size: 1.5rem;
	border-radius: 10px 10px 0 0;
	background-color: #df2020;
}
.feature_hdr_img {
	margin-top: -0.5rem;
	height: 2rem;
	vertical-align: middle;
	transform: rotate(-3deg);
}

/* main layer */

.product_body {
	border: 4px solid #df2020;
	border-bottom-style: none;
	background: center / cover no-repeat url(../images/bg/bg_product.jpg);
}

.product_body:last-child {
	border-bottom-style: solid;
}

/* in top layer */

.product_term {
	padding: 0.3rem 1rem;
	background-color: #f7f7f8;
}

.feature_term {
	display: flex;
	align-items: center;
}
.feature_maker {
	width: 40%;
}

.lineup_term {
}
.lineup_maker {
	display: inline-block;
	width: auto;
	padding: 0.3rem 1rem;
	border: 2px solid;
	line-height: 1;
}

.product_ttl {
	font-size: 1.2rem;
	font-weight: normal;
}
.feature_ttl {
	width: 60%;
}

/* in middle layer */
.product_inr {
	padding: 1rem 1rem 3rem;
}

.lineup_inr {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 0 1.5rem;
}

.lineup_inr,
.product_inr {
	max-width: 768px;
	margin-left: auto;
	margin-right: auto;
}

.feature_row {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	padding: 40px 0 100px;
}

.feature_row::before {
	position: absolute;
	content: "";
	display: block;
	width: 25%;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	padding-top: 13.7%;
	background: center / cover no-repeat url(../images/product/parts/product_arrow.png);
}
.feature_thumb {
	width: 50%;
	text-align: center;
}

.feature_thumb img {
	width: 100%;
	max-width: 350px;
}

.feature_bullets_wrap {
	width: 50%;
	padding: 1rem;
	margin-top: 1rem;
	font-size: 1.2rem;
	background-color: #fff;
	border: 3px solid #000;
}

.feature_bullets {
	font-size: 20px;
}

.lineup_thumb {
	width: 30%;
}

@media screen and (max-width: 580px) {
	.feature_thumb img,
	.lineup_thumb img {
		max-width: 250px;
	}
}

.lineup_col {
	width: 70%;
}

.product_fixed-price {
	display: inline-block;
	width: auto;
	position: relative;
	font-size: 1.4rem;
	font-weight: bold;
}
.feature_fixed-price {
	margin-left: 2rem;
}
.lineup_fixed-price {
	margin-bottom: 2rem;
}

.product_fixed-price::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: -0.5rem;
	left: 0;
	transform: rotate(-5deg);

	background: linear-gradient(#df2020, #df2020);
	background-position: 0 50%;
	background-size: 100% 4px;
	background-repeat: repeat-x;
	text-decoration: none;
}
.product_fixed-price .big {
	font-size: 2.8rem;
	letter-spacing: -0.1rem;
	line-height: 1;
}
.product_fixed-price .thin {
	font-size: 1rem;
}

.lineup_price_before {
	display: inline-block;
	width: auto;
	padding: 0.2rem 1rem 0.15rem;
	color: #fff;
	line-height: 1;
	font-weight: bold;
	background-color: #53a50a;
	border-radius: 5px;
}

.product_price_wrap {
	position: relative;
	display: flex;
	justify-content: center;
	font-weight: bold;

	font-family: "Open Sans", sans-serif;
	color: #eb2700;
	font-weight: 900;
	line-height: 1;
	-webkit-text-stroke: 3px white;

	/*  text-shadow:
    -2px -2px 3px black,
     2px -2px 3px black,
     2px  2px 3px black,
    -2px  2px 3px black;*/

	z-index: 1;
}

.feature_price_wrap {
	margin-top: 1rem;
	align-items: center;
}

.feature_price_wrap::after {
	width: 10rem;
	height: 10rem;
	top: -7rem;
	right: 0;
}

.lineup_price_wrap {
	position: relative;
	font-size: 7rem;
	letter-spacing: -0.4rem;
	z-index: 1;
}

.lineup_price_wrap::after {
	width: 8rem;
	height: 8rem;
	top: -6rem;
	right: 1rem;
}

.product_price {
	padding-left: 0.5rem;
	width: 70%;
	height: 6.5rem;
	position: relative;
	padding-left: 0;
	z-index: 1;
}
.feature_price {
	font-size: 5.5rem;
}

.lineup_price {
	position: relative;
	width: 100%;
	height: 150px;
	margin-left: -1rem;
	padding-left: 0;
	font-size: 5rem;
	letter-spacing: 0;
	z-index: 1;
}

.product_price_after {
	position: relative;
	width: auto;
	margin-bottom: -2rem;
	line-height: 1;
	letter-spacing: 0;
	z-index: 1;
}

.lineup_price_after {
	margin-right: 1.5rem;
}

.product_price_after-top,
.product_price_after-bottom {
	text-align: center;
	line-height: 1;
	font-family: "Noto Sans JP", sans-serif;
}

.product_price_after-top {
	font-size: 1rem;
	margin-bottom: 0.3rem;
	text-align: center;
	color: #000;
	-webkit-text-stroke: 1px white;
	text-shadow: -1px -1px 1px white, 1px -1px 1px white, 1px 1px 1px white, -1px 1px 1px white, -2px -2px 3px black, 2px -2px 3px black, 2px 2px 3px black, -2px 2px 3px black;
}
.lineup_price_after-top {
}

.product_price_after-bottom {
	font-size: 3rem;
}

.product_ftr {
	margin-top: 1rem;
	padding: 1rem;
	background-color: #fff;
	font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
	.lineup_hdr {
		width: 60vw;
		max-width: 300px;
		padding-top: 1vw;
		padding-bottom: 1vw;
	}
	.lineup_hdr_img {
		vertical-align: middle;
	}
	.lineup_term {
		padding: 2vw;
	}
	.lineup_maker {
		margin-bottom: 1vw;
	}
	.product_ttl {
		font-size: 14px;
	}

	.lineup_inr {
		flex-wrap: wrap;
		padding: 0 0 30px;
	}

	.feature_row {
		flex-wrap: wrap-reverse;
		padding-top: 20px;
		padding-bottom: 20%;
	}

	.feature_row::before {
		width: 40%;
		padding-top: 22%;
	}

	.feature_thumb,
	.feature_bullets_wrap,
	.lineup_thumb,
	.lineup_col {
		width: 100%;
		margin-top: 0;
		text-align: center;
	}

	.feature_thumb,
	.lineup_thumb {
		padding: 20px 40px;
	}

	.lineup_col {
		padding: 0 5vw;
	}

	.feature_bullets {
		width: auto;
		font-size: 14px;
	}

	.feature_bullets p {
		text-align: center;
		display: inline-block;
	}

	.feature_bullets p:not(:first-child) {
		padding-right: 0.5rem;
	}

	.product_fixed-price {
		width: 100%;
		margin-left: 0;
		margin-bottom: 2vw;
		font-size: 3.5vw;
	}

	.product_fixed-price::before {
		width: 55vw;
	}

	.lineup_fixed-price::before {
		right: 0;
	}

	.lineup_fixed-price .product_fixed-price p {
	}

	.product_fixed-price {
		margin-left: 0;
		font-size: 3.5vw;
	}

	.product_fixed-price .big {
		font-size: 7.8vw;
	}
	.product_fixed-price .thin {
		font-size: 3vw;
		letter-spacing: -0.3vw;
	}

	.product_fixed {
	}

	.feature_price_wrap {
		width: 106%;
		margin-left: -3%;
	}
	.feature_price_wrap::after {
		width: 23vw;
		height: 23vw;
		top: -20vw;
		right: 2vw;
	}

	.lineup_price_wrap {
		letter-spacing: 0;
	}
	.lineup_price_wrap::after {
		width: 15vw;
		height: 15vw;
		top: -12vw;
		right: 1vw;
	}

	.feature_price_before {
		width: 7%;
		margin-left: 2vw;
	}
	.lineup_price_before {
		font-size: 4vw;
	}

	.product_price {
		font-size: 15vw;
		margin-left: 0;
		margin-bottom: 4vw;
	}

	.feature_price {
		height: 15.5vw;
	}

	.lineup_price {
		width: 75%;
		height: auto;
		padding-left: 0;
	}

	.product_price_after {
		width: 12vw;
		margin-bottom: 0;
	}

	.product_price_after-top {
		margin-bottom: 0;
		font-size: 7vw;
		color: #000;
		-webkit-text-stroke: 0.1vw white;
		text-shadow: -2px -2px 3px white, 2px -2px 3px white, 2px 2px 3px white, -2px 2px 3px white, -3px -3px 3px black, 3px -3px 3px black, 3px 3px 3px black, -3px 3px 3px black;

		white-space: nowrap;
		transform: translate(-3vw, 1vw) scale(0.5);
		transform-origin: 0;
	}

	.product_price_after-bottom {
		-webkit-text-stroke: 2px white;
		font-size: 8vw;
	}

	.product_ftr {
		margin-top: 2vw;
		font-size: 2.6vw;
	}
}

@media screen and (max-width: 400px) {
	.product_price_wrap {
		padding-top: 0;
	}
}

/* reason
===============================
*/

.reason_sec {
	width: 100%;
}

.reason_sec .sec_body {
	padding: 0;
}

.reason {
	position: relative;
	padding: 2rem;
	background: url("../images/bg/bg_mizutama.jpg") no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

/* .reason_label {
  position: absolute;
  top: 0;
  left: 3rem;
} */

.reason_thumb {
	width: 50%;
	max-width: 500px;
	margin: 0 auto 1em;
}

/* .reason_label span {
  position: absolute;
  color: #FFF;
  font-size: 3rem;
  top: 1.5rem;
  left: 2rem;
} */

/* .reason_text {
  margin-top: 2rem;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
} */

/* .reason_text .thin {
  font-size: 1.5rem;
} */

@media screen and (max-width: 768px) {
	.reason_thumb {
		width: 95%;
	}
}

/* area
===============================
*/

.area_sec {
	margin-top: 0;
}

.area_sec .sec_ttl {
	max-width: 820px;
}

.area_sec .sec_body {
	max-width: 820px;
	padding: 2em 0;
	margin: 2rem auto;
	background: #fff;
	-webkit-box-shadow: 0px 3px 5px 2px #bbb;
	box-shadow: 0px 3px 5px 2px #bbb;
}

.svg_wrap {
	padding: 0 1em 2em;
	background: #fff;
}

.area_list {
	display: flex;
	align-items: flex-start;
	width: calc(100% - 2em);
	padding: 0.5rem 0;
	margin: 0 auto;
	border-bottom: 1px dashed #000;
	font-size: 1.3rem;
}
.area_term {
	min-width: 6rem;
	padding: 0 0.8rem;
	text-align: center;
	font-weight: bold;
	color: #fff;
	border-radius: 5px;
}
.area_term.green {
	background-color: #468b08;
}
.area_term.org {
	background-color: #ff8600;
}
.area_term.blue {
	background-color: #687cb2;
}
.area_term.gray {
	color: #000;
	background-color: #dadada;
}

.area_desc {
	padding-left: 1rem;
}
.area_ftr {
	margin: 0.5rem 1em 0 0;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.svg_wrap {
		padding: 0 1em;
	}

	.area_list {
		display: block;
		font-size: 3.5vw;
		text-align: center;
		padding: 4vw 0px;
	}

	.area_term {
		display: inline-block;
		margin-bottom: 2vw;
	}

	.area_desc {
		text-align: center;
	}

	.area_ftr {
		font-size: 2vw;
	}

	.st7 {
		/* 県内文字 */
		fill: #ffffff;
	}

	.map_item--jakuka {
		/* 弱化エリア */
		fill: #5e7eb5;
		stroke: #000000;
		stroke-width: 1.391;
		stroke-linejoin: round;
		stroke-miterlimit: 10;
	}

	.map_item--kyouka {
		/*強化エリア*/
		fill: #2b4c96;
		stroke: #000000;
		stroke-width: 1.391;
		stroke-linejoin: round;
		stroke-miterlimit: 10;
	}
}

/* svg map
===============================
*/

.map_default,
.map_item--jakuka,
.map_item--kyouka {
	/* 県外エリア */
	fill: #dadada;
	stroke: #cccccc;
	stroke-width: 1.8638;
	stroke-miterlimit: 10;
	transition: 0.3s;
}

.map_item--kyouka,
.map_item--jakuka {
	fill: #468b08;
}

.map_stroke {
	/* 県外ストローク */
	fill: none;
	stroke: #cccccc;
	stroke-width: 1.8638;
	stroke-miterlimit: 10;
}
.map {
	/* 基本文字色 */
	fill: #636363;
	font-weight: bold;
	font-size: 0.9rem;
}
.map:hover .map_text {
	/* 県内文字 */
	fill: #ffffff;
}

.map_stroke--strong {
	/* 対応エリア 外周ストローク */
	fill: none;
	stroke: #555555;
	stroke-width: 4;
	stroke-miterlimit: 10;
}
.map_stroke--strong.bold {
	stroke-width: 6;
}

.map:hover .map_item--jakuka {
	/* 弱化エリア */
	fill: #5e7eb5;
	stroke: #999;
	stroke-width: 1.391;
	stroke-linejoin: round;
	stroke-miterlimit: 10;
}

.map:hover .map_item--kyouka {
	/*強化エリア*/
	/* fill: #2B4C96; */
	fill: #ff8600;
	stroke: #777;
	stroke-width: 1.391;
	stroke-linejoin: round;
	stroke-miterlimit: 10;
}

@media screen and (max-width: 768px) {
	.map {
		font-size: 3vw;
	}
}

@media screen and (max-width: 500px) {
	.map {
		font-size: 4.5vw;
	}
}

/* flow
===============================
*/

.flow_sec .sec_ttl {
	max-width: 820px;
}

.flow_sec .sec_body {
	padding: 2em calc((100% - 1130px) / 2);
	background: url("../images/bg/mizutama_bg.gif") no-repeat;
	background-size: cover;
	text-align: center;
}

.flow_sec .sec_body img {
	width: 100%;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 768px) {
	.flow_sec .sec_body {
		padding: 2em 0;
	}
}

/* problem
===============================
*/

.problem_sec .sec_ttl {
	max-width: 820px;
}

.problem_sec .sec_body {
	padding: 3rem calc((100% - 820px) / 2);
	background: url("../images/bg/mizutama_bg.gif") no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

@media screen and (max-width: 768px) {
	.problem_sec .sec_body {
		padding: 2em 0;
	}
}

/* faq
===============================
*/

.faq_sec {
	margin-top: 0;
}

.faq_sec .inr {
	padding-bottom: 2em;
	background: #eaeaea;
}

.faq_sec .sec_ttl {
	max-width: 820px;
}

.faq_sec .sec_body {
	max-width: 820px;
	padding-bottom: 2em;
	margin: 2em auto 0;
	background: #eaeaea;
	/* -webkit-box-shadow: 1px 1px 1px 1px #bbb;
  box-shadow: 2px 2px 0 0 #bbb; */
}

.faq {
	font-size: 1.25rem;
	background-color: #fff;
	margin-bottom: 1rem;
}

.faq:last-child {
	margin-bottom: 0;
}

.faq_term {
	position: relative;
	padding: 0.3rem 3rem 0.3rem 1rem;
	transition: 0.3s;
	cursor: pointer;
	font-size: 1rem;
}
.faq_term::after {
	content: "＋";
	position: absolute;
	display: flex;
	align-items: center;
	height: 100%;
	top: 0;
	right: 1.5rem;
	text-align: center;
	transition: 0.3s;
}

.faq_term.active::after {
	color: #fff;
}

.faq_term.active::after {
	content: "ー";
	transform: rotate(720deg);
}

@media screen and (min-width: 769px) {
	.faq_term:hover::after {
		content: "ー";
		transform: rotate(720deg);
	}
}

.faq_term .colored {
	color: #2b4c96;
}

.faq_term.active {
	color: #fff;
	background-color: #5f76ab;
}

.faq_term.active .colored {
	color: #fff;
}

.faq_desc {
	display: none;
	padding: 0.3rem 3rem 0.3rem 3.5rem;
	font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
	.faq_sec .sec_body {
		padding-bottom: 0;
		margin: 0;
		box-shadow: none;
	}
	.faq {
		font-size: 3.5vw;
	}

	.faq_term,
	.faq_desc {
		font-size: 16px;
	}

	.faq_term::after {
		right: 4vw;
	}

	.faq_desc {
		padding: 2vw 10.5vw 2vw 11vw;
	}
}

/* contact
===============================
*/

.contact_sec {
	margin-top: 0;
}

.contact_sec .inr {
	padding-bottom: 2em;
	background: #eaeaea;
}

.contact_sec .sec_ttl {
	max-width: 820px;
}

.contact_sec .sec_body {
	width: 90%;
	max-width: 820px;
	margin: 2em auto;
	background: #fff;
	-webkit-box-shadow: 0px 3px 5px 2px #bbb;
	box-shadow: 0px 3px 5px 2px #bbb;
}

@media screen and (min-width: 769px) and (max-width: 820px) {
	.contact_sec .sec_body {
		min-width: 100%;
	}
}

.form_remove:checked + .form_img_show {
	display: none;
}

/* form */

.form {
	font-size: 1rem;
}

.form_wrap:not(.is-active) {
	display: none;
}

.form .red {
	color: #f00;
}

.form .thin {
	font-size: 0.8rem;
}

.form_message {
}

.form_row {
	position: relative;
	display: flex;
	align-items: stretch;
	border: 1px solid #000;
	border-top: none;
	background-color: #e3edd9;
}
.form_row:first-child {
	border-top: 1px solid #000;
}

.form_row_item {
	flex: 0 0 auto;
}

.form_is-required {
	width: 4rem;
}
.form_desc {
	width: calc(100% - 230px - 4rem);
}

@media screen and (max-width: 768px) {
	.form_term {
		width: calc(100% - 4rem);
	}

	.form_is-required {
		width: 4rem;
	}

	.form_desc {
		width: 100%;
	}
}

.form_term {
	width: 230px;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	padding: 1rem 0.3rem 1rem 1rem;
	line-height: 1;
}

.form_term--absolute {
	position: relative;
	background-color: transparent;
}

.form_term_add {
	margin-top: 1em;
}
.form_term_upload {
	margin-top: 1em;
	font-size: 0.7rem;
	line-height: 1.2;
}

@media screen and (min-width: 769px) {
	.form_term_upload {
		font-size: clamp(12px, 4vw, 16px);
	}
}

.form_is-required {
	margin-top: -0.25rem;
	padding: 1rem 1rem 0 calc(0.5rem - 0.3rem);
	text-align: center;
}

.form_is-required_item {
	display: inline-block;
	max-width: 2.5rem;
	padding: 0.2rem;

	text-align: center;
	color: #fff;
	font-size: 0.7rem;
	font-weight: bold;
	line-height: 0.8rem;
	text-shadow: 1px 1px 2px #555;
	border-radius: 5px;
	vertical-align: top;
}
.form_required {
	background-color: #e23a20;
}
.form_option {
	background-color: rgb(50, 50, 160);
}

.form_desc {
	padding: 0.3rem 0.8rem;
	border-left: 1px solid #000;
	word-wrap: break-word;
	background-color: #fff;
}

.form_smooth_text {
	position: absolute;
	left: -100%;
	opacity: 0;
	font-size: 0.8rem;
	transition: all 0.5s, left 0s;
}

@media screen and (min-width: 769px) and (max-width: 820px) {
	.form_smooth_text {
		font-size: 0.7rem;
	}
}

.form_smooth_text.show {
	position: static;
	left: 0;
	opacity: 1;
}

.form_error {
	font-size: 0.8rem;
	color: #f00;
}
.form_upload_txet:not(:first-child) {
	margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
	.form_row {
		flex-wrap: wrap;
		position: relative;
	}

	.form_term,
	.form_desc {
		width: 100%;
		max-width: none;
		padding: 2.5vw 1.5vw;
		font-size: 4.5vw;
		border-left: 0;
	}

	.form_is-required {
		position: absolute;
		width: auto;
		right: 0;
		padding-top: 2.5vw;
		background-color: transparent;
		/* border-bottom: 1px solid #000 */
	}

	.form_is-required_item {
		max-width: none;
		padding: 1vw 1vw;
		font-size: 3vw;
		line-height: 3vw;
	}

	.form_desc select,
	.form_desc label,
	.form_desc input {
		font-size: 4.5vw;
	}

	.form_term {
		border-right: 0;
		border-bottom: 1px solid #000;
	}

	.form_term_upload {
		font-size: 3vw;
	}

	.form_desc {
		font-size: 4.5vw;
	}

	.form_desc textarea {
		font-size: 4.5vw;
	}

	.form_smooth_text {
		font-size: 3vw;
	}
}

.privacy {
	margin-top: 2rem;
	text-align: center;
}

.privacy_term {
	font-size: 0.9rem;
}
.privacy_desc {
	height: 200px;
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	border: 1px solid #ccc;
	overflow: scroll;
}

.form_submit {
	margin-top: 2rem;
	text-align: center;
}

/* form parts */
.input_text,
.textarea {
	width: 100%;
}

.input_text,
.select,
.textarea,
.form_btn--submit {
	padding: 0.5rem;
	border: 2px solid #ccc;
}

::placeholder {
	color: #bbb;
}
::-ms-input-placeholdercolor {
	color: #bbb;
} /* Edge */
:-ms-input-placeholder {
	color: #bbb;
} /* IE */

.input_text,
.select,
.textarea,
.form_btn {
	font-size: 1.25rem;
	background-color: transparent;
}

input[type="file"] {
	margin-left: min(12vw, 3.2rem);
	font-size: 0.7rem;
}

.radio {
	margin-right: 0.5rem;
}
.textarea {
	display: block;
	min-height: 8rem;
}

.form_label {
	margin-right: 1rem;
}

.form_btn {
	padding: 0.5rem 3rem;
	border: none;
	border-radius: 10px;
	cursor: pointer;
}

.form_btn {
	color: #fff;
	font-weight: bold;
	background-color: #aaaaaa;
	text-decoration: none;
}

.form_btn--submit {
	background-color: #468b08;
}

/* contact
===============================
*/
.company_sec {
	margin-top: 0;
}

.company_sec {
}

.company_sec .sec_body {
	max-width: 820px;
	margin: 3em auto 200px;
	-webkit-box-shadow: 0 0 5px 3px #bbb;
	box-shadow: 0 0 5px 3px #bbb;
}

.company_sec .sec_ttl {
	width: 60%;
	max-width: 820px;
}

.company_thumb {
	margin-bottom: 1rem;
	text-align: center;
}
.company {
	display: flex;
	flex-wrap: wrap;
	font-size: 1rem;
}

.company_term {
	display: flex;
	align-items: center;
	width: 30%;
	padding: 1rem;
	background-color: #f8f8f8;
	border-bottom: 1px solid #ccc;
}

.company_desc {
	width: 70%;
	max-width: 768px;
	padding: 1rem;
	border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
	.company_sec .sec_body {
		margin: 2em auto 30px;
	}
	.company {
		font-size: 4.5vw;
	}
	.company_term,
	.company_desc {
		font-size: 4.5vw;
	}
}

/*  ===============================
            modifier
===============================*/

/* svg gradient
===============================
*/

.svg_text_wrap {
	overflow: visible;
	top: 0;
}

.svg_text_wrap--yen {
	width: 1.5em;
	height: 1.4em;
}
.svg_text_wrap--price {
	position: absolute;
	width: 100%;
	font-family: "Open Sans", sans-serif;
	margin-left: auto;
	right: 0;
}

.feature_price .svg_text_wrap--price {
	margin: auto;
	left: -2rem;
}

.svg_gradient {
	position: absolute;
	z-index: -1;
	top: 0;
}

.svg_text {
	transform: translate(1rem, 1em);
}

#gradient {
	transform: translate(1rem, 1em);
}

.text_front {
}

.text_middle {
	stroke: #fff;
	stroke-width: 1rem;
}

.text_back {
	stroke: #000;
	stroke-width: 1.5rem;

	text-shadow: 2px 2px 3px #000;
}

defs {
	width: 100%;
}

@media screen and (max-width: 768px) {
	.svg_text_wrap--price {
		transform: translate(0, 0);
	}

	.svg_text--yen {
		transform: translate(0, 1em);
	}

	.text_middle {
		stroke-width: 2vw;
	}

	.text_back {
		stroke-width: 4vw;
		text-shadow: 0.1vw 0.1vw 0.12vw #000;
	}

	#gradient {
		transform: translate(1rem, 1.2em);
	}
}

/* balloon */

.balloon {
	position: relative;
	width: 100%;
}

.balloon::before,
.balloon::after {
	display: block;
	content: "";
	position: absolute;
	z-index: 1;
}

.balloon--upward::before {
	bottom: 100%;
	left: 15%;
	top: -1.4vw;
	content: "";
	height: 3vw;
	width: 3vw;
	background-color: #fff;
	transform: rotate(45deg);
}

.balloon--small::before {
	left: 9%;
}

.balloon--downward {
}

.balloon--downward::before,
.balloon--downward::after {
	width: 50%;
	bottom: -15px;
	border-bottom: 15px solid transparent;
}
.balloon--downward::before {
	border-right-width: 15px;
	border-right-style: solid;
	left: 0;
}

.balloon--downward::after {
	border-left-width: 15px;
	border-left-style: solid;
	right: 0;
}

/* ===============================
            common
=============================== */

/* 汎用スタイル
===============================
できる限り使わないこと
*/

.w--auto {
	width: auto;
}
.w1r {
	width: 1rem;
}
.w2r {
	width: 2rem;
}
.w3r {
	width: 3rem;
}
.w4r {
	width: 4rem;
}
.w5r {
	width: 5rem;
}

.h--auto {
	height: auto;
}

/* margin-top */
.mt1r {
	margin-top: 1rem;
}
.mt2r {
	margin-top: 2rem;
}
.mt3r {
	margin-top: 3rem;
}
.mt4r {
	margin-top: 4rem;
}
.mt5r {
	margin-top: 5rem;
}

/* margin-bottom */
.mb1r {
	margin-bottom: 1rem;
}
.mb2r {
	margin-bottom: 2rem;
}
.mb3r {
	margin-bottom: 3rem;
}
.mb4r {
	margin-bottom: 4rem;
}
.mb5r {
	margin-bottom: 5rem;
}

/* padding-top */
.pt1r {
	padding-top: 1rem;
}
.pt2r {
	padding-top: 2rem;
}
.pt3r {
	padding-top: 3rem;
}
.pt4r {
	padding-top: 4rem;
}
.pt5r {
	padding-top: 5rem;
}

/* padding-bottom */
.pb1r {
	padding-bottom: 1rem;
}
.pb2r {
	padding-bottom: 2rem;
}
.pb3r {
	padding-bottom: 3rem;
}
.pb4r {
	padding-bottom: 4rem;
}
.pb5r {
	padding-bottom: 5rem;
}

/* font-size */
.text--micro {
	font-size: 0.7em;
}
.text--small {
	font-size: 0.85em;
}
.text--big {
	font-size: 1.15em;
}
.text--exbig {
	font-size: 1.5em;
}

/* position */
.pos--relative {
	position: relative;
}
.pos--absolute {
	position: absolute;
}
.pos--fixed {
	position: fixed;
}
.pos--statick {
	position: static;
}

/* display */
.dis--block {
	display: block;
}
.dis--inline {
	display: inline;
}
.dis--inline-block {
	display: inline-block;
}
.dis--flex {
	display: flex;
}

/* float */
.float--left {
	float: left;
}

/* white-space */
.w--wrap {
	white-space: pre-wrap;
}
.w--no-wrap {
	white-space: nowrap;
}

/* overflow */
.ovf--hidden {
	overflow: hidden;
}
.ovf--scroll {
	overflow: scroll;
}
.ovf--visible {
	overflow: visible;
}

.ovf-x--hidden {
	overflow-x: hidden;
}
.ovf-x--scroll {
	overflow-x: scroll;
}
.ovf-x--visible {
	overflow-x: visible;
}

.ovf-y--hidden {
	overflow-y: hidden;
}
.ovf-y--scroll {
	overflow-y: scroll;
}
.ovf-y--visible {
	overflow-y: visible;
}

/* text-align */
.tac {
	text-align: center;
}
.tal {
	text-align: left;
}
.tar {
	text-align: right;
}

.stock form {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
}

.stock form input[type="number"] {
	border: none;
	border-bottom: #707070 2px solid;
	text-align: center;
}

.stock table.variation3 {
	background: none;
	border: none;
}

.stock .variation3 th {
	background: none;
	border: none;
}

.stock .variation3 td {
	border: none;
}

.huwa {
	transition: 0.75s;
}

.huwa:not(.is-show) {
	opacity: 0;
}

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

  .price_block {
    display: block;
    max-width: 480px;   /* PCでの横幅上限。必要なら調整 */
    width: 100%;
    height: auto;
    margin: 0 auto;     /* 真ん中に置きたい場合。左寄せにしたいなら消す */
}

@media screen and (max-width:768px) {
    .price_block {
        max-width: 90vw; /* スマホ用の見た目調整。必要なら80vwとかにする */
    }
}

/* PCだけの重なり順調整 */
@media screen and (min-width: 769px) {

    /* 価格ブロック（新しく追加した画像）は必ず最前面 */
    .product_price_wrap,
    .price_block {
        position: relative;
        z-index: 50;
    }

    /* 赤い「今月限定価格」バッジはその下に回す */
    .feature_hdr_img,
    .lineup_hdr_img {
        position: relative; /* もともとabsoluteなら消してOK。z-indexだけ残してもいい */
        z-index: 1;
    }
}
