﻿@charset "utf-8";
html {
	scroll-padding-top: 130px;
	font-size: 62.5%;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif, "Helvetica Neue", Arial;
}
body {
	background-color: #fff;
	color: #333;
	font-size: 1.6rem;
	line-height: 1.5;
}
h2 {
	padding-top: 30px;
	margin-bottom: 50px;
	font-size: 3.8rem;
	font-weight: 900;
	text-align: center;
}
img {
	vertical-align: bottom;
}
a {
	text-decoration: none;
	color: #ea6d02;
}
a:hover {
	color: #ea6d02;
	text-decoration: underline;
}
.content_inner {
	width: 1000px;
	margin: 0 auto;
	padding: 60px 0 80px 0;
	box-sizing: border-box;
}
.serchArea {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	align-items: center;
}
.serchArea .serch_comment {
	width: 464.3091px;
	height: 22.9941px;
}
.serchArea .serch_btn {
	width: 560px;
	height: 100px;
	border-radius: 20px;
	margin-top: -3px;
	filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.3));
}
.serchArea .serch_btn a:hover img {
	opacity: 0.9;
}

.fc-orage {
	color: #ea6d02;
}
.bg-gray {
	background-color: #eee;
}
.is_pc {
	display: block;
}
.is_sp {
	display: none;
}

/* #l-header
**********************/
.l-header {
	min-width: 1240px;
	position: sticky;
	top: 0;
	z-index: 2;
	background-color: #fff;
	box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .2);
}
.l-header_inner {
	position: relative;
	z-index: 3;
	width: 1240px;
	min-width: 1240px;
	height: 90px;
	margin: 0 auto;
	padding: 0 0 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}
.l-header .logo {
	width: 880px;
	margin: 0;
}
.l-header .logo img {
	width: 280px;
}
.l-header .h-serch_btn img {
	width: 230px;
	height: 50px;
	filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.3));
}
.l-header .h-serch_btn a:hover img {
	opacity: 0.8;
}
.l-header .h-serch_btn ul {
	display: flex;
	gap: 20px;
}
/*トグル クローズ時*/
.l-header .h-menu-toggle {
	cursor: pointer;
	position: relative;
	right: 5px;
	z-index: 10;
	width: 70px;
	height: 70px;
	border:none;
}
.l-header .h-menu-toggle span {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	margin: auto;
	border-radius: 2px;
	background-color: #ea6d02;
}
.l-header .h-menu-toggle span::after, .l-header .h-menu-toggle span::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	margin: auto;
	border-radius: 2px;
	background-color: #ef6d22;
	transition: all .2s ease-in-out;
}
.l-header .h-menu-toggle span::before {
	transform: translateY(-10px);
}
.l-header .h-menu-toggle span::after {
	transform: translateY(10px);
}
.l-header-nav {
	position: absolute;
	z-index: 5;
	top: -5px;
	left: 0;
	width: 100%;
	min-width: 1240px;
	box-sizing: border-box;
	background: #fff;
	border: 5px solid #ea6d02;
	border-image: linear-gradient(to bottom, #fff 0%, #ea6d02 100%);
	border-image-slice: 1;
	padding: 0 0 50px 0;
	opacity: 0;
	overflow-y: auto;
	transition: all .2s ease-in-out;
	transform: translateY(-5px);
	-webkit-overflow-scrolling: touch;
	visibility: hidden;
	overflow: hidden;
}
.l-header-nav ul {
	width: 800px;
	margin: 0 auto;
}
.l-header-nav li a {
	display: block;
	padding: 20px 0 20px 250px;
	font-size: 1.8rem;
	font-weight: 700;
	background: url(../img/manu_arrow.svg) 220px center no-repeat;
	background-size: 17px 17px
}
.l-header-nav li + li {
	border-top: 1px solid #ea6d02;
}
#js-hamburger-menu {
	background: #fff;
}
.l-header-nav .h-serch_navi_btn {
	display: none;
}

/*トグル オープン時*/
.is-menu-open .l-header .h-menu-toggle span {
	visibility: hidden;
}
.is-menu-open .l-header .h-menu-toggle span::before {
	visibility: visible;
	width: 30px;
	transform: translateX(-1px) rotate(45deg);
}
.is-menu-open .l-header .h-menu-toggle span::after {
	visibility: visible;
	width: 30px;
	transform: translateX(-1px) rotate(-45deg);
}
.is-menu-open .l-header .l-header-nav {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}
body.is-menu-open::after {
    content: '';
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}

/* #l-footer
**********************/
.l-footer {
    padding: 56px 0;
    background: #36332f;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.5;
	min-width: 1240px;
}
.l-footer_inner {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0 24px 0;
	width: 1240px;
	box-sizing: border-box;
}
.f-cont-link-items {
	display: flex;
	margin-bottom: 20px;
}
.f-cont-link-items li::after {
	content: "｜";
	margin-left: 10px;
	margin-right: 10px;
}
.f-cont-link-items li:last-child::after {
	content: "";
}
.f-cont-link-items li a {
	color: #fff;
}
.f-cont-link-items li a:hover {
	text-decoration: underline;
}
.f-cont-txt{
	margin-bottom: 30px;
}
.f-link-box {
	order: 2;
	width: 340px;
}
.f-link-item.f-link-lixil a {
    display: block;
    padding: 0 24px;
    height: 48px;
    line-height: 48px;
    background: #ffffff;
    text-decoration: none;
    font-size: 14px;
    color: #ed6c00;
    position: relative;
	box-sizing: border-box;
}
.f-logo-lixil img {
    margin: 0 12px 0 0;
    vertical-align: middle;
}
.ic-blank-org {
    display: block;
    width: 15px;
    height: 12px;
    background: url(https://lixil-reformshop.jp/images/ic_blank_org.svg) no-repeat center center;
    position: absolute;
    right: 24px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.f-serch_btn {
	display: none;
}
/* l-mvArea
**********************/
.l-mvArea {
	background: #eee url(../img/main_img_pc.jpg) top center no-repeat;
	min-height: 640px;
	min-width: 1240px;
}
.l-mvArea .content_inner {
	width: 1240px;
	position: relative;
	padding: 0;
}
.l-mvArea .mv_badge {
	position: absolute;
	top: 20px;
	right: 50px;
}
.l-mvArea .mv_badge ul li {
	filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.3));
}
.l-mvArea .mv_badge ul li img {
	margin-bottom: 10px;
}
.l-mvArea h1 {
	text-align: center;
	padding-top: 50px;
}
.l-mvArea h1 img {
	width: 654.4px;
	height: 103.32px;
}
.l-mvArea .mv_link ul {
	display: flex;
	gap: 30px;
	justify-content: center;
	margin-top: 60px;
}
.l-mvArea .mv_link ul li a:hover img {
	opacity: 0.9;
}
.l-mvArea .serchArea {
	margin-top: 30px;
}
.l-mvArea .mv_note {
	padding-top: 100px;
	text-align: right;
	color: #fff;
	font-size: 1.2rem;
	margin-top: 10px;
}

/* l-problemArea
**********************/
.l-problemArea_list {
	text-align: center;
}
.l-problemArea_list ul {
	display: inline-block;
}
.l-problemArea_list li {
	text-align: left;
	font-size: 2.2rem;
	font-weight: 700;
	background: url(../img/check.svg) center left no-repeat;
	background-size: 23px 20.8px;
	padding-left: 30px;
}
.l-problemArea_list li + li {
	margin-top: 18px;
}
.l-problemArea_list p {
	text-align: right;
	width: 720px;
	font-size: 2.0rem;
	font-weight: 700;
}

/* l-aboutArea
**********************/
.l-aboutAreas {
	background: #F1F1F0 url(../img/bg_img1.png) top 920px center no-repeat;
	min-width: 1240px;
}
.l-aboutAreas section:first-child {
	margin-bottom: 40px;
	margin-top: 0;
}
.l-aboutAreas section:last-child {
	margin-bottom: 80px;
}
.l-aboutAreas section {
	margin-bottom: 40px;
	margin-top: 80px;
}
.l-aboutArea_list {
	display: flex;
	gap: 50px;
	width: 100%;
	justify-content: space-between;
	margin-top: 30px;
}
.l-aboutArea_list li {
	width: calc(900px / 3);
}
.l-aboutArea_list li a {
	display: block;
	text-decoration: none;
	color: #333;
}
.l-aboutArea_list li a:visited {
	color: #333;
}
.l-aboutArea_list li a:hover {
	opacity: 0.7;
}
.l-aboutArea_list_title {
	margin-bottom: 15px;
	font-size: 3.2rem;
	font-weight: 700;
	text-align: center;
	color: #ef6d22;
}
.l-aboutArea_list_title img {
	width: 60px;
	height: 60px;
}
.l-aboutArea_list_img {
	margin-bottom: 15px;
}
.l-aboutArea_list_comment {
	font-size: 1.9rem;
	font-weight: 700;
}

/* .l-point
**********************/
.l-point_title {
	display: flex;
	gap: 40px;
	align-items: center;
	margin-bottom: 50px;
}
.l-point_title img {
	width: 120px;
	height: 120px;
}
.l-point_title h4 {
	font-size: 3.6rem;
	font-weight: 900;
}
.l-point_txt {
	margin-left: 150px;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 60px;
}
/* .l-point1
**********************/
.l-point1_list {
	width: 1000px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.l-point1_list li {
	width: calc(970px / 4);
	font-size: 2.0rem;
	font-weight: 700;
	text-align: center;
}
.l-point1_list li {
	margin-bottom: 20px;
}
 /* .l-point2
**********************/
.l-point2 {
	position: relative;
}
.shop_map {
	width: 800px;
	height: 659.4859px;
	position: absolute;
	top: 0;
	right: 0;
}
.shop_map text {
	fill: #fff;
	font-weight: 700;
}
.shop_map .btn-none {
	fill: #333;
}
.shop_map .cls-1{fill:#d6b361;}
.shop_map .cls-1,.shop_map .cls-2,.shop_map .cls-3,.shop_map .cls-4,.shop_map .cls-5,.shop_map .cls-6,.shop_map .cls-7,.shop_map .cls-8,.shop_map .cls-9{stroke:#e6e6e6;stroke-miterlimit:10;}
.shop_map .cls-2{fill:#a9ae59;}
.shop_map .cls-3{fill:#749e75;}
.shop_map .cls-4{fill:#7cbcb6;}
.shop_map .cls-5{fill:#d8d8d7;}
.shop_map .cls-6{fill:#d8a69e;}
.shop_map .cls-7{fill:#ce8883;}
.shop_map .cls-8{fill:#66a9b7;}
.shop_map .cls-9{fill:#dc9967;}
.btn:hover {
  fill-opacity: 0.7;
}

.shop-area-items{
	margin-top: 420px;
}
.shop-area-item-inner-pc {
	display: block;
}
.shop-area-item-inner-sp {
	display: none;
}
.shop-area-item {
	display: flex;
	border-radius: 10px;
	padding: 10px 10px 10px 30px;
	align-items: center;
}
.shop-area-item.hokkaido {
	background-color: #7FC3D0;
}
.shop-area-item.koshinetsu {
	background-color: #8DB78F;
}
.shop-area-item.kanto {
	background-color: #96D4CF;
}
.shop-area-item.tokai {
	background-color: #C2C872;
}
.shop-area-item.kinki {
	background-color: #EFCC7A;
}
.shop-area-item.chugoaku {
	background-color: #F5B180;
}
.shop-area-item.shikoku {
	background-color: #F1BFB8;
}
.shop-area-item.kyushu {
	background-color: #E6A19C;
}
.shop-area-item + .shop-area-item {
	margin-top: 10px;
}
.shop-pref-items {
	display: flex;
	gap: 10px;
}

.shop-pref-item a {
	width: calc(630px / 7);
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #333;
	padding: 9px 8px 9px 12px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
}
.shop-pref-item a::before {
	content:"■";
	color: #ef6d22;
	font-size: 0.8rem;
	padding-right: 5px;
}
.shop-pref-item a:hover {
	opacity: 0.7;
}
.shop-area-lb-pc {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	width: 130px;
}
.shop-area-lb-sp {
	display: none;
}

/* .l-point3
**********************/
.l-point3_list {
	display: flex;
	gap: 40px;
}
.l-point3_list li {
	width: calc(920px / 3);
}
.l-point3_listTitle {
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	margin: 10px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
}
/* .l-point4
**********************/
.l-point4_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 70px;
	background: #fff;
	border-radius: 10px;
	padding-top: 50px;
	padding-bottom: 50px;
}
.l-point4_btn a:hover img {
	opacity: 0.9;
}


/* .l-hojokinArea
**********************/
.l-hojokin_wrap {
	width: 850px;
	margin: 0 auto;
	display: flex;
	gap: 50px;
	margin-bottom: 30px;
	box-sizing: border-box;
}
.l-hojokin_inner {
	position: relative;
	width: calc(800px / 2);
	max-width: 400px;
	border: 5px solid;
	border-radius: 30px;
	box-sizing: border-box;
	overflow: hidden;
	display: inline-block;
	margin: 0 auto;
}
.l-hojokin_inner h3{
	font-size: 3.2rem;
	font-weight: 400;
	text-align: center;
	padding: 20px;
	border-bottom-left-radius: 1000px 250px;
	border-bottom-right-radius: 1000px 250px;
	margin-bottom: 10px;
	margin-left: -100px;
	margin-right: -100px;
	padding-left: 100px;
	padding-right: 100px;
	color: #fff;
}
.l-hojokin_inner.type1 {
	border-color: #77CC00;
	background-image: linear-gradient(to bottom, #77CC00 19%, #fff 19%, #fff 70%, #FAFAFA 70%);
}
.l-hojokin_inner.type1 h3{
	background: #77CC00;
}
.l-hojokin_inner.type2 {
	border-color: #3FAAFA;
	background-image: linear-gradient(to bottom, #3FAAFA 19%, #fff 19%, #fff 70%, #FAFAFA 70%);
}
.l-hojokin_inner.type2 h3{
	background: #3FAAFA;
}
.l-hojokin_img {
	text-align: center;
}
.l-hojokin_img img {
	width: 100%;
}
.l-hojokin_yoken {
	border-radius: 20px;
	text-align: center;
	padding: 6px 12px;
	margin: 0 auto 20px auto;
	width: 100px;
	color: #fff;
}
.l-hojokin_inner.type1 .l-hojokin_yoken {
	background: #77CC00;
}
.l-hojokin_inner.type2 .l-hojokin_yoken {
	background: #3FAAFA;
}
.l-hojokin_kingaku {
	display: flex;
	gap: 20px;
	justify-content: center;
	text-align: center;
	font-size: 2.0rem;
}
.l-hojokin_kingaku {
	display: flex;
	gap: 20px;
	min-height: 80px;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.l-hojokin_inner.type1 .l-hojokin_kingaku .kingaku_color {
	color: #77CC00;
}
.l-hojokin_inner.type2 .l-hojokin_kingaku .kingaku_color {
	color: #3FAAFA;
}
.l-hojokin_kingaku .kingaku_type {
	font-size: 1.6rem;
}
.l-hojokin_kingaku .kingaku_fsize {
	font-size: 4.2rem;
	line-height: 1;
}
.l-hojokin_content{
	background: #FAFAFA;
}
.l-hojokin_comment {
	margin: 20px;
}
.l-hojokin_note {
	font-size: 1.3rem;
	width: 850px;
	margin: 0 auto;
}
.l-hojokin_otoku {
	width: 850px;
	text-align: center;
	margin: 60px auto 30px auto;
	font-weight: 700;
}
.l-hojokin_otoku .otoku_fukidashi {
	position: relative;
	display: inline-block;
	padding: 0 25px;
	font-size: 3.0rem;
}
.l-hojokin_otoku .otoku_fukidashi::before,
.l-hojokin_otoku .otoku_fukidashi::after{
	content: "";
	display: inline-block;
	background: #ea6d02;
	width: 1px;
	position: absolute;
	height: 60px;
	bottom: 3px;
}
.l-hojokin_otoku .otoku_fukidashi::before{
	left: 0;
	transform: rotate(-30deg);
}
.l-hojokin_otoku .otoku_fukidashi::after{
	right: 0;
	transform: rotate(30deg);
}
.otoku_fukidashi_fsize {
	font-size: 4.6rem;
}
.l-hojokin_contact {
	margin: 0 auto 80px auto;
}
.l-hojokin_contact li {
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 auto;
	text-indent: -1em;
	padding-left: 1em;
}

/* .l-btnArea
**********************/
.l-btnArea {
	min-width: 1240px;
}


/* .l-faqArea
**********************/
.l-faqArea {
	background: #eee url(../img/bg_img2.png) top center no-repeat;
	min-width: 1240px;
}
.l-faqArea .details {
	width: 850px;
	margin: 0 auto;
}
.l-faqArea .details-summary {
	position: relative;
	display: block;
	padding: 20px 35px 20px 60px;
	font-size: 2.2rem;
	font-weight: 700;
	background: url(../img/icon_q.svg) top 12px left no-repeat;
	background-size: 48px 48px;
}
.l-faqArea .details-summary:hover {
	cursor: pointer;
	opacity: 0.8;
}
.l-faqArea .details-summary .btn {
	position: absolute;
	top: 37%;
	right: 0;
	width: 25px;
	height: 25px;
	transform-origin: center center;
	transition-duration: 0.2s;
}
.l-faqArea .details-summary .btn:before,
.l-faqArea .details-summary .btn:after {
	content: "";
	background-color: #333;
	border-radius: 10px;
	width: 25px;
	height: 2px;
	position: absolute;
	top: 12px;
	left: 0;
	transform-origin: center center;
}
.l-faqArea .details-summary .btn:before {
	width: 2px;
	height: 25px;
	top: 0;
	left: 12px;
}
.l-faqArea .details-summary.is-active .btn {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.l-faqArea .details-summary.is-active .btn:before {
	content: none;
}

.l-faqArea .details-summary::-webkit-details-marker {
	display: none;
}

.l-faqArea .details-content {
	padding: 20px 30px;
	margin-bottom: 30px;
	background: #fff;
	border-radius: 10px;
}
.l-faqArea .serchArea {
	margin-top: 80px;
}
/* .l-referArea
**********************/
.l-referArea_inner {
	text-align: center;
}
.l-referArea_txt {
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.6;
	margin: 10px 0 0 0;
	display: inline-block;
	text-align: left;
}


/* SP
**********************/
@media only screen and (max-width: 767px) {
	html {
		scroll-padding-top: 100px;
	}
	h2 {
		padding-top: 10px;
		margin-bottom: 50px;
		font-size: 2.3rem;
	}
	.content_inner {
		width: 94%;
		padding: 60px 0;
	}
	.serchArea .serch_comment {
		width: 80%;
		height: auto;
		max-width: 380px;
	}
	.serchArea .serch_btn {
		width: 560px;
		height: auto;
		margin-top: -12px;
		max-width: 400px;
	}
	.is_pc {
		display: none;
	}
	.is_sp {
		display: block;
	}
}

/* #l-header
**********************/
@media only screen and (max-width: 767px) {
	.l-header {
		min-width: 100%;
	}
	.l-header_inner {
		width: 100%;
		min-width: 100%;
		height: 70px;
		margin: 0;
		padding: 0 0 0 18px;
	}
	.l-header .logo {
		width: 220px;
	}
	.l-header .logo img {
		width: 220px;
	}
	.l-header .h-serch_btn {
		display: none;
	}
	/*トグル クローズ時*/
	.l-header .h-menu-toggle {
		width: 98px;
		height: 70px;
	}
	.l-header .h-menu-toggle span {
		width: 35px;
		height: 2px;
	}
	.l-header .h-menu-toggle span::after, .l-header .h-menu-toggle span::before {
		width: 35px;
		height: 2px;
	}
	.l-header .h-menu-toggle span::before {
		transform: translateY(-10px);
	}
	.l-header .h-menu-toggle span::after {
		transform: translateY(10px);
	}
	.l-header-nav {
		min-width: 100%;
		padding: 0 0 50px 0;
	}
	.l-header-nav .l-header_inner {
		padding: 0 0 0 13px;
	}
	.l-header-nav ul {
		width: 90%;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.l-header-nav li a {
		padding: 20px 25px;
		font-size: 1.8rem;
		background: url(../img/manu_arrow.svg) 0 center no-repeat;
		background-size: 17px 17px;
		font-size: 1.6rem;
	}
	.l-header-nav .h-serch_btn {
		display: block;
		width: 230px;
		margin: 0 auto;
	}
	.l-header-nav .h-serch_btn {
		display: none;
	}
	.l-header-nav .h-serch_navi_btn {
		display: block;
		width: 250px;
		margin: 0 auto;
	}

	/*トグル オープン時*/
	.is-menu-open .l-header .h-menu-toggle span::before {
		width: 35px;
	}
	.is-menu-open .l-header .h-menu-toggle span::after {
		width: 35px;
	}
}
/* #l-footer
**********************/
@media only screen and (max-width: 767px) {
	.l-footer {
		padding: 0 0 60px 0;
		min-width: 100%;
	}
	.l-footer_inner {
		width: 100%;
		flex-direction: column-reverse;
		padding: 0;
	}
	.f-cont-link-items {
		justify-content: center;
		margin-top: 20px;
	}
	.f-cont-copy {
		text-align: center;
	}
	.f-cont-txt{
		margin-bottom: 30px;
		padding: 0 3%;
	}
	.f-link-box {
		width: 100%;
	}
	.f-link-item.f-link-lixil a {
		width: 100%;
	}
	.f-serch_btn {
		display: block;
		position: sticky;
		bottom: 0;
		background: #fff;
		padding: 10px 10px;
	}
	.f-serch_btn ul {
		display: flex;
		gap: 10px;
	}
	.f-serch_btn ul img {
		width: 100%;
	}
}
/* l-mvArea
**********************/
@media only screen and (max-width: 767px) {
	.l-mvArea {
		background: #eee url(../img/main_img_sp.jpg) top center no-repeat;
		min-height: auto;
		min-width: 100%;
	}
	.l-mvArea .content_inner {
		width: 100%;
	}
	.l-mvArea .mv_badge {
		position: static;
	}
	.l-mvArea .mv_badge ul {
		display: flex;
		justify-content: center;
		padding-top: 15px;
	}
	.l-mvArea .mv_badge ul li + li {
		margin-left: -5px;
	}
	.l-mvArea .mv_badge ul li img {
		width: 115px;
	}
	.l-mvArea h1 {
		padding-top: 5px;
	}
	.l-mvArea h1 img {
		width: 317.69px;
		height: 129.63px;
	}
	.l-mvArea .mv_link {
		margin-bottom: 20px;
	}
	.l-mvArea .mv_link ul {
		gap: 0px;
	}
	.l-mvArea .mv_link ul li {
		width: 170px;
	}
	.l-mvArea .mv_link ul li img {
		width: 100%;
	}
	.l-mvArea .mv_note {
		margin: 20px;
		margin-right: 3%;
		padding-bottom: 20px;
	}
}

/* l-problemArea
**********************/
@media only screen and (max-width: 767px) {
	.l-problemArea_list li {
		font-size: 1.6rem;
	}
	.l-problemArea_list li + li {
		margin-top: 10px;
	}
	.l-problemArea_list p {
		font-size: 1.6rem;
		width: 100%;
	}
}
/* l-aboutArea
**********************/
@media only screen and (max-width: 767px) {
	.l-aboutAreas {
		background: #F1F1F0 url(../img/bg_img1.png) -150px 1000px no-repeat;
		min-width: 100%;
	}
	.l-aboutAreas h3 {
		max-width: 500px;
		margin: 0 auto;
	}
	.l-aboutArea_list {
		gap: 20px;
		flex-flow: column;
	}
	.l-aboutArea_list li {
		width: 100%;
	}
	.l-aboutArea_list li a {
		display: grid;
		grid-template-columns: 47% 50%;
		grid-template-rows: 30px auto;
		gap: 3%;
	}
	.l-aboutArea_list_title {
		grid-row: 1 / 2;
		grid-column: 2 / 3;
	}
	.l-aboutArea_list_img {
		grid-row: 1 / 3;
		grid-column: 1 / 2;
	}
	.l-aboutArea_list_img img {
		width: 100%;
	}
	.l-aboutArea_list_comment {
		grid-row: 2 / 3;
		grid-column: 2 / 3;
		font-size: 1.6rem;
		line-height: 1.6;
	}
	.l-aboutArea_list_title {
		margin-bottom: 0;
		font-size: 1.8rem;
		text-align: left;
		display: flex;
		gap: 5px;
		max-height: 20px;
	}
	.l-aboutArea_list_title img {
		width: 28px;
		height: 28px;
	}
}
/* .l-point
**********************/
@media only screen and (max-width: 767px) {
	.l-point_title {
		gap: 20px;
		margin-bottom: 30px;
	}
	.l-point_title img {
		width: 80px;
		height: 80px;
	}
	.l-point_title h4 {
		font-size: 2.2rem;
	}
	.l-point_txt {
		margin-left: 0;
		font-size: 1.6rem;
		margin-bottom: 30px;
	}
}
/* .l-point1
**********************/
@media only screen and (max-width: 767px) {
	.l-point1_list {
		width: 100%;
		gap: 3%;
	}
	.l-point1_list li {
		width: 48.5%;
		font-size: 1.6rem;
	}
	.l-point1_list li img {
		width: 100%;
	}
}
 /* .l-point2
**********************/
@media only screen and (max-width: 767px) {
	.shop_map {
		display: none;
	}
	.shop-area-items{
		margin-top: 0;
	}
	.shop-area-item-inner-pc {
		display: none;
	}
	.shop-area-item-inner-sp {
		display: block;
	}
	.shop-area-item {
		flex-direction: column;
		border-radius: 0;
		padding: 0;
		align-items: unset;
	}
	.shop-area-item.hokkaido, .shop-area-item.koshinetsu, .shop-area-item.kanto, .shop-area-item.tokai, .shop-area-item.kinki,.shop-area-item.chugoaku, .shop-area-item.shikoku, .shop-area-item.kyushu {
		background: none;
	}
	.shop-area-lb-pc {
		display: none;
	}
	.shop-area-lb-sp {
		display: block;
		padding: 10px 20px;
		border-radius: 8px;
		font-size: 1.8rem;
		font-weight: 700;
		color: #fff;
		box-sizing: border-box;
		cursor: pointer;
		opacity: 0.8;
		position: relative;
		transition : 1s;
	}
	.shop-area-lb-sp.is-active {
		border-radius: 8px 8px 0 0;
	}
	.hokkaido .shop-area-lb-sp {
		background-color: #7FC3D0;
	}
	.koshinetsu .shop-area-lb-sp {
		background-color: #8DB78F;
	}
	.kanto .shop-area-lb-sp {
		background-color: #96D4CF;
	}
	.tokai .shop-area-lb-sp {
		background-color: #C2C872;
	}
	.kinki .shop-area-lb-sp {
		background-color: #EFCC7A;
	}
	.chugoaku .shop-area-lb-sp {
		background-color: #F5B180;
	}
	.shikoku .shop-area-lb-sp {
		background-color: #F1BFB8;
	}
	.kyushu .shop-area-lb-sp {
		background-color: #E6A19C;
	}
	.shop-pref-items {
		flex-direction: column;
		align-items: unset;
		gap: 0;
		border-right: 1px solid;
		border-left: 1px solid;
		border-bottom: 1px solid;
		border-radius: 0 0 10px 10px;
	}
	.shop-pref-item a {
		padding: 9px 20px 10px 20px;
		border-radius: 0;
		box-shadow: none;
		width: 100%;
		box-sizing: border-box;
		border-bottom: 1px solid;
		font-size: 1.7rem;;
	}
	.shop-pref-item:last-child a {
		border-bottom: none;
		border-radius: 0 0 10px 10px;
	}
	.shop-pref-item a::before {
		content:"";
		padding-right: 0;
	}
	.hokkaido .shop-pref-items {
		border-color: #7FC3D0;
	}
	.koshinetsu .shop-pref-items {
		border-color: #8DB78F;
	}
	.kanto .shop-pref-items {
		border-color: #96D4CF;
	}
	.tokai .shop-pref-items {
		border-color: #C2C872;
	}
	.kinki .shop-pref-items {
		border-color: #EFCC7A;
	}
	.chugoaku .shop-pref-items {
		border-color: #F5B180;
	}
	.shikoku .shop-pref-items {
		border-color: #F1BFB8;
	}
	.kyushu .shop-pref-items {
		border-color: #E6A19C;
	}
	.hokkaido .shop-pref-item a {
		border-color: #7FC3D0;
	}
	.koshinetsu .shop-pref-item a {
		border-color: #8DB78F;
	}
	.kanto .shop-pref-item a {
		border-color: #96D4CF;
	}
	.tokai .shop-pref-item a {
		border-color: #C2C872;
	}
	.kinki .shop-pref-item a {
		border-color: #EFCC7A;
	}
	.chugoaku .shop-pref-item a {
		border-color: #F5B180;
	}
	.shikoku .shop-pref-item a {
		border-color: #F1BFB8;
	}
	.kyushu .shop-pref-item a {
		border-color: #E6A19C;
	}
	.shop-area-lb-sp .btn {
		position: absolute;
		top: 11px;
		right: 15px;
		width: 25px;
		height: 25px;
		transform-origin: center center;
		transition-duration: 0.2s;
	}
	.shop-area-lb-sp .btn:before,
	.shop-area-lb-sp .btn:after {
		content: "";
		background-color: #fff;
		border-radius: 10px;
		width: 25px;
		height: 2px;
		position: absolute;
		top: 12px;
		left: 0;
		transform-origin: center center;
	}
	.shop-area-lb-sp .btn:before {
		width: 2px;
		height: 25px;
		top: 0;
		left: 12px;
	}
	.shop-area-lb-sp.is-active .btn {
		-webkit-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}
	.shop-area-lb-sp.is-active .btn:before {
		content: none;
	}
	.shop-area-item .js-details-content {
		display: none;
	}
}

/* .l-point3
**********************/
@media only screen and (max-width: 767px) {
	.l-point3_list {
		flex-direction: column;
		gap: 20px;
	}
	.l-point3_list li {
		width: 100%;
		text-align: center;
	}
	.l-point3_list li +li {
		margin-top: 20px;
	}
	.l-point3_listComment p {
		text-align: left;
	}
}
/* .l-point4
**********************/
@media only screen and (max-width: 767px) {
	.l-point4_wrap {
		flex-direction: column;
		gap: 20px;
		padding-top: 40px;
		padding-bottom: 30px;
	}
	.l-point4_btn img {
		width: 100%;
	}
}

/* .l-hojokinArea
**********************/
@media only screen and (max-width: 767px) {
	.l-hojokin_wrap {
		width: 100%;
		flex-direction: column;
		gap: 50px;
		margin-bottom: 30px;
	}
	.l-hojokin_inner {
		width: 100%;
	}
	.l-hojokin_otoku {
		width: 96%;
	}
	.l-hojokin_otoku .otoku_fukidashi {
		padding: 0 15px;
		font-size: 2.0rem;
	}
	.otoku_fukidashi_fsize {
		font-size: 3.2rem;
	}
	.l-hojokin_otoku .otoku_fukidashi::before,
	.l-hojokin_otoku .otoku_fukidashi::after{
		height: 40px;
	}
	.l-hojokin_contact li {
		text-align: left;
		font-size: 1.6rem;
	}
	.l-hojokin_note {
		width: 96%;
	}
}
/* .l-btnArea
**********************/
@media only screen and (max-width: 767px) {
	.l-btnArea {
		min-width: 100%;
	}
}
/* .l-faqArea
**********************/
@media only screen and (max-width: 767px) {
	.l-faqArea {
		min-width: 100%;
	}
	.l-faqArea .details {
		width: 100%;
	}
	.l-faqArea .details-summary {
		font-size: 2.0rem;
		background: url(../img/icon_q.svg) top 22px left no-repeat;
		background-size: 48px 48px;
	}
	.l-faqArea .details-content {
		padding: 20px;
	}
			
}
/* .l-referArea
**********************/
@media only screen and (max-width: 767px) {
	.l-referArea {
		min-width: 100%;
	}
	.l-referArea_txt {
		font-size: 1.6rem;
	}
}