@charset "utf-8";
/* ----------------------------------------------------------------------
 * RESET
 * ---------------------------------------------------------------------- */
input,
textarea,
select,
option {
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	font-weight: 500;
	margin: 0;
	padding: 0;
}

a {
 cursor: pointer;
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}



/* ----------------------------------------------------------------------
 * GLOBAL - UTILITY
 * ---------------------------------------------------------------------- */
.u-content {
	margin: 0 0 130px;
	padding: 130px 0 0;
	background-color: transparent;
}

.u-font__serif {
	font-family: 'Noto Serif JP';
}



/* ----------------------------------------------------------------------
 * GLOBAL - Font
 * ---------------------------------------------------------------------- */
.u-font-colorBlue {
	color: #295aa6;
}

.u-font-colorGold2 {
	color: #c4aa65;
}

.u-font-colorGray {
	color: #888;
}

.u-font-small {
 font-size: 78% !important;
}

.u-align-center  {
 text-align: center;
}

.u-align-left  {
 text-align: left;
}

.u-align-right  {
 text-align: right;
}

.u-float-right {
	float: right;
}

.u-float-left {
	float: left;
}

.u-title__hi {
	text-align: center;
	padding: 140px 0 0;
	position: relative;
	z-index: 10;
}

.u-title__hi + * {
	margin-top: 60px;
}

.u-title__hi:before {
	content: url("../img/title-01.png");
	position: absolute;
	top: 140px;
	left: 50%;
	transform: translate(-50%,-100%);
}

.u-title__hi:after {
	content: '';
	width: 100%;
	height: 2px;
	margin: 0 0 .75em;
	display: block;
	background: #c0a643;
	position: absolute;
	bottom: 0;
	left: 0;
}

.u-title__hi em {
	font-size: 3.6rem;
	font-weight: 700;
	letter-spacing: 0;
	padding: 0 .75em;
	background: #fff;
	position: relative;
	z-index: 10;
}

.u-text {
	line-height: 2;
}

/* ----------------------------------------------------------------------
 * Global Title
 * ---------------------------------------------------------------------- */
.u-content-title {
 text-align: center;
 margin-bottom: 40px;
}

.u-content-head {
 font-size: 2.4rem;
 line-height: 1.25;
 margin-bottom: 20px;
}

.u-content-lead {
 font-size: 1.8rem;
 line-height: 2;
 margin-bottom: 20px;
}

.u-content-note {
 font-size: 1.4rem;
 line-height: 1.8;
}

.u-cover {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: .2s;
}

.c-zoom-image {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 110;
	opacity: 0;
	visibility: hidden;
	transition: .2s;
}

.c-zoom-image__inner {
	padding: 40px;
	background: #fff;
	border-radius: 20px;
}

.c-zoom-image__close {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #a49e7e;
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(50%,-50%) rotate(45deg);
	cursor: pointer;
	transition: .2s;
}

.c-zoom-image__close:hover {
	transform: translate(50%,-50%) rotate(405deg);
}

.c-zoom-image__close:before,
.c-zoom-image__close:after {
	content: '';
	width: 20px;
	height: 2px;
	display: block;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.c-zoom-image__close:after {
	transform: translate(-50%,-50%) rotate(90deg);
}

body.is-modal {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

body.is-modal .u-cover,
body.is-modal .c-zoom-image {
	opacity: 1;
	visibility: visible;
}



.u-button > * {
	color: #725a5a;
	font-size: 1.7rem;
	font-weight: 700;
	min-width: 360px;
	padding: 1.5em 4em;
	display: inline-block;
	border: 1px solid #73828f;
	border-radius: 10px;
	position: relative;
	cursor: pointer;
	transition: .2s;
}

.u-button > *:hover,
.u-button > .is-open {
	color: #fff;
	background: #725a5a;
	border-color: #725a5a;
	opacity: 1;
}

.u-button > *:after,
.u-button > .is-open:after {
	content: '';
	width: 18px;
	height: 8px;
	background: url(../img/arrow-02.png) no-repeat center / 100% 100%;
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%) rotate(-90deg);
}

.u-button--arrow-bottom > *:after,
.u-button--arrow-bottom > .is-open:after {
	top: auto;
	bottom: 10px;
	right: auto;
	left: 50%;
	transform: translate(-50%,0);
}

.u-button > *:hover:after,
.u-button > .is-open:hover:after {
	background-image: url("../img/arrow-03.png");
}

.u-flex {
	display: flex;
	flex-wrap: wrap;
}

.u-flex__center {
	justify-content: center;
}

.u-flex__right {
	justify-content: flex-end;
}

.u-flex__middle {
	align-items: center;
}

.u-flex__bottom {
	align-items: flex-end;
}

.u-flex__reverse {
	flex-direction: row-reverse;
}

.u-flex__between {
	justify-content: space-between;
}

.u-flex__column--2 > * {
	width: calc(100% / 2);
}

.u-flex__column--2-1 > *:nth-child(1) {
	width: calc((100% / 3) * 2);
}

.u-flex__column--2-1 > *:nth-child(2) {
	width: calc(100% / 3);
}

.u-flex__column--3 > * {
	width: calc(100% / 3);
}

.u-flex__column--4 > * {
	width: calc(100% / 4);
}

.u-flex__column--5 > * {
	width: calc(100% / 5);
}

.u-flex__column--6 > * {
	width: calc(100% / 6);
}

.u-flex__column--7 > * {
	width: calc(100% / 7);
}

.u-flexChildWrap {
	margin-right: -12px;
	margin-left: -12px;
}

.u-flexChild {
	padding-right: 12px;
	padding-left: 12px;
}

.u-flexChild.u-flexChildWrap {
	margin-right: 0;
	margin-left: 0;
	padding-right: 0;
	padding-left: 0;
}

.u-mgt__125 { margin-top: 125px !important; }
.u-mgt__120 { margin-top: 120px !important; }
.u-mgt__115 { margin-top: 110px !important; }
.u-mgt__110 { margin-top: 110px !important; }
.u-mgt__105 { margin-top: 100px !important; }
.u-mgt__100 { margin-top: 100px !important; }
.u-mgt__95 { margin-top: 95px !important; }
.u-mgt__90 { margin-top: 90px !important; }
.u-mgt__85 { margin-top: 85px !important; }
.u-mgt__80 { margin-top: 80px !important; }
.u-mgt__75 { margin-top: 75px !important; }
.u-mgt__70 { margin-top: 70px !important; }
.u-mgt__65 { margin-top: 65px !important; }
.u-mgt__60 { margin-top: 60px !important; }
.u-mgt__55 { margin-top: 55px !important; }
.u-mgt__50 { margin-top: 50px !important; }
.u-mgt__45 { margin-top: 45px !important; }
.u-mgt__40 { margin-top: 40px !important; }
.u-mgt__35 { margin-top: 35px !important; }
.u-mgt__30 { margin-top: 30px !important; }
.u-mgt__25 { margin-top: 25px !important; }
.u-mgt__20 { margin-top: 20px !important; }
.u-mgt__15 { margin-top: 15px !important; }
.u-mgt__10 { margin-top: 10px !important; }
.u-mgt__5 { margin-top: 5px !important; }
.u-mgt__0 { margin-top: 0 !important; }
.u-mgt__-5 { margin-top: -5px !important; }
.u-mgt__-10 { margin-top: -10px !important; }
.u-mgt__-20 { margin-top: -20px !important; }
.u-mgt__-30 { margin-top: -30px !important; }


/* ----------------------------------------------------------------------
 * LAYOUT
 * ---------------------------------------------------------------------- */
.g-container {
	font-size: 16px;
	font-size: 1.6rem;
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	font-weight: 400;
	-webkit-font-feature-settings: 'pkna';
	-moz-font-feature-settings: 'pkna';
	font-feature-settings: 'pkna';
	line-height: 1;
	letter-spacing: .05em;
	background-color: #fff;
	position: relative;
	top: 124px;
	padding-bottom: 124px;
	overflow: hidden;
}


/* ----------------------------------------------------------------------
 * KEY VISUAL
 * ---------------------------------------------------------------------- */
.c-kv {
	padding: 41.75% 0 0;
	position: relative;
	overflow: hidden;
}

.c-kv__title {
	text-align: center;
	width: 100%;
	margin: 12.5% 0 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.c-kv__title img {
	width: 42.15%;
}

.c-kv__image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.c-kv__image img {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
}



/* ----------------------------------------------------------------------
 * MENU
 * ---------------------------------------------------------------------- */
.c-menu {
	text-align: center;
	background: #d2cec8;
}

.c-menu-items {
	padding: 15px 0;
	display: flex;
}

.c-menu-item {
	width: calc(100% / 5);
	height: 90px;
	position: relative;
}

.c-menu-item a {
	width: calc(100% - 10px);
	height: 100%;
	display: block;
	border-radius: 5px;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: 0 5px 10px 0 rgba(0,0,0,0);
}

.c-menu-item a:hover {
	opacity: 1;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,.1);
	transform: translate(0,-2px);
}

.c-menu-item a:after {
	content: '';
	width: 18px;
	height: 8px;
	background: url("../img/arrow-01.png") no-repeat center / 100% 100%;
	display: block;
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translate(-50%,0);
}

.c-menu-item a span {
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
	text-align: center;
	width: 100%;
	display: block;
	position: absolute;
	top: calc(50% - .25em);
	left: 0;
	transform: translate(0,-50%);
}


.c-actionButton {
	margin: 7px 0 0;
	padding: 60px 0 40px;
	background: #877468;
}

.c-actionButton__text {
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: .1em;
}

.c-actionButton__text b {
	color: #877468;
	margin: 0 .25em;
	padding: .5em 1em;
	background: #fff;
	display: inline-block;
	transform: translate(0,-.5em);
}

.c-actionButton__button {
	color: #877468;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	margin: 20px 0 0;
}

.c-actionButton__button a {
	color: #877468;
	min-width: 610px;
	padding: 30px 0;
	display: inline-block;
	background: #fff;
	border-radius: 100px;
}

.c-actionButton__button a em {
	padding: 0 0 0 60px;
	display: inline-block;
	position: relative;
}

.c-actionButton__button a em:before {
	content: '';
	width: 36px;
	height: 36px;
	display: inline-block;
	background: url("../img/icon-calender.png") no-repeat center / 100% 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}

.c-accordion {
	margin: 70px 0 0;
}

.c-accordion__title {
	color: #432323;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.35;
	padding: 1em 1.5em;
	display: flex;
	background: #d4c1c1;
	position: relative;
	cursor: pointer;
	transition: all .2s;
}

.c-accordion__title:hover {
	opacity: .8;
}

.c-accordion__title > span {
	padding: 0 15px 0 0;
	position: relative;
}

.c-accordion__title > span img {
	margin: -55px 0 -10px;
}

.c-accordion__toggle {
	width: 28px;
	height: 28px;
	display: block;
	position: absolute;
	top: 50%;
	right: 1.5em;
	transform: translate(0,-50%);
}

.c-accordion__toggle:before,
.c-accordion__toggle:after {
	content: '';
	width: 100%;
	height: 6px;
	background: #f8f0f0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: all .2s;
}

.c-accordion__toggle:after {
	transform: translate(-50%,-50%) rotate(90deg);
}

.is-open > .c-accordion__toggle:after {
	transform: translate(-50%,-50%) rotate(180deg);
}

.c-accordion__inner {
	padding: 1.5em 2em;
	background: #f8f0f0;
}

.c-accordion__inner .u-float-right {
	margin-top: .5em;
	margin-left: 30px;
	margin-bottom: 20px;
}





.c-prologue {
	position: relative;
}

.c-prologue:after {
	content: '';
	width: 100%;
	height: 900px;
	display: block;
	background: linear-gradient(to bottom, #fff 0%, #ede7dc 100%);
	position: absolute;
	bottom: 0;
	left: 0;
}

.c-prologue__inner {
	margin-top: 70px;
	padding: 0 0 70px;
	position: relative;
	z-index: 10;
}

.c-prologue p {
	position: relative;
}

.c-prologue p span {
	margin: -30px -70px 0 0;
	position: absolute;
	top: 0;
	right: 0;
}

.c-prologue__image {
	text-align: right;
	background: #ede7dc;
	position: relative;
}

.c-prologue__image > img {
	max-width: 75%;
}

.c-prologue__image figure {
	width: 37%;
	margin: 0 0 0 -25%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.c-prologue__induction {
	padding: 3em 0;
	background: linear-gradient(to bottom, #fff 0%, #ede7db 100%);
}

.c-prologue__induction p {
	color: #363636;
	font-size: 2.25vw;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	text-shadow: 0 2px 0 #fff;
	letter-spacing: .1em;
	margin: .5em 0 0;
}

.c-prologue__induction p b {
	font-size: 3.8vw;
	vertical-align: baseline;
}

.c-prologue__induction p em {
	color: #a23924;
}




.c-difference__title,
.c-after-mainte__title {
	margin: 80px 0 0;
	display: flex;
	align-items: center;
}

.c-difference__title + *,
.c-after-mainte__title + * {
	margin-top: 30px;
}

.c-difference__title em,
.c-after-mainte__title em {
	color: #955454;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: 0;
	padding: 0 0 0 1em;
}

.c-difference .u-text {
	font-size: 1.8rem;
}

.c-difference__main-image {
	margin: 40px 0 -30px;
}

.c-difference__ideal {
	margin: 1em 0 .5em;
	padding: 1em 1.5em 2.5em;
	background: #fff;
}

.c-difference__ideal h4 {
	text-align: center;
	margin: 25px 0 0;
}

.c-difference__ideal h4 em {
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	display: inline-block;
	background: #725a5a;
	padding: .5em 2em;
	border-radius: 10em;
}

.c-difference__ideal h4 + * {
	margin-top: 30px;
}

.c-difference__ideal figure {
	text-align: center;
	margin: 20px 0 0;
}



.c-pitta__title {
	background: #f1efd8;
	margin: 0 0 2px;
	padding: 0 0 5px;
	cursor: pointer;
	transition: .2s;
}

.c-pitta__title:hover {
	opacity: .8;
}

.c-pitta__title h3 {
	padding: 42px 0 0 20px;
}

.c-pitta__title h3 em {
	text-align: right;
	margin: 10px;
	display: block;
}

.c-pitta__title h3 em i {
	color: #606640;
	font-size: 1.5rem;
	font-weight: 700;
	padding: .75em 3em .75em 2em;
	background: #fff;
	display: inline-block;
	border-radius: 10em;
	position: relative;
	transition: .2s;
}

.c-pitta__title:hover h3 em i {
	color: #fff;
	background: #606640;
}

.c-pitta__title h3 em i:after {
	content: '';
	width: 18px;
	height: 8px;
	background: url("../img/arrow-04.png") no-repeat center / 100% 100%;
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%);
	transition: .2s;
}

.c-pitta__title:hover h3 em i:after {
	background-image: url("../img/arrow-03.png");
}

.c-pitta__title.is-open h3 em i:after {
	transform: translate(0,-52.5%) scale(1,-1);
}

.c-pitta__wrap {
	background: #f1efd8;
}

.c-pitta__inner {
	padding: 30px 20px;
}

.c-pitta__wrap .u-flex > div:nth-child(1) {
	width: 390px;
}

.c-pitta__wrap .u-flex > div:nth-child(2) {
	width: calc(100% - 370px);
	margin-left: -20px;
}




.c-product-data {
	color: #3f3f43;
	margin: 100px 0 0;
	background: #f3f1ee;
}

.c-product-data p {
	font-size: 1.5rem;
	line-height: 1.35;
}

.c-product-data p sup {
	vertical-align: top;
}

.c-product-data p small {
	font-size: 1.2rem;
	text-indent: -1em;
	padding: 0 0 0 1em;
	display: block;
}

.c-product-data hr {
	margin: 15px 0;
	display: block;
	border-top: 2px solid #fff;
	border-right: 0;
	border-bottom: 0;
	border-left: 0;
}

.c-product-data__inner {
	padding: 20px;
	display: flex;
	position: relative;
}

.c-product-data__inner:nth-child(n + 2):after {
	content: '';
	width: calc(100% - 70px);
	height: 1px;
	background: #a19fa9;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
}

.c-product-data__image {
	width: calc(100% / 2);
	padding: 25px;
}

.c-product-data__spec {
	width: calc(100% / 2);
	padding: 25px;
}

.c-product-data__name em {
	font-size: 2.2rem;
	line-height: 1.35;
	white-space: nowrap;
	display: block;
}

.c-product-data__name small {
	font-size: 1.6rem;
	margin: .5em 0 0;
	display: block;
}

.c-product-data table {
	letter-spacing: 0;
	width: 100%;
	background: #fff;
	border: 2px solid #f3f1ee;
}

.c-product-data table th {
	font-size: 1.5rem;
	vertical-align: middle;
	padding: .5em;
	border: 2px solid #f3f1ee;
}

.c-product-data table td {
	font-size: 1.5rem;
	text-align: center;
	vertical-align: middle;
	padding: .5em;
	border: 2px solid #f3f1ee;
}

.c-product-data table td small {
	font-size: 1.1rem;
	vertical-align: baseline;
}

.c-product-data__jba {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 10px;
	background: rgba(255,255,255,.5);
}

.c-product-data__jba figure {
	width: 50px;
}

.c-product-data__jba p {
	font-size: 1.3rem;
	width: calc(100% - 50px);
	padding: 0 0 0 10px;
}






.c-richline-head p {
	font-size: 2.1rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: .1em;
	margin: 1em 0 0;
}

.c-richline-head ul {
	margin: 1.5em 0 .5em;
}

.c-richline-head ul li {
	color: #fff;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	min-width: 230px;
	margin: 0 10px;
	padding: .25em 0 .5em;
	border-radius: 10em;
	background: #8b906b;
}


.c-richline__items {
	margin: 40px -25px 0;
	display: flex;
	flex-wrap: wrap;
}

.c-richline__item {
	width: calc(100% / 2);
	padding: 30px 25px 0;
}


.c-richline-pickup {
	padding: 0 0 60px;
	background: #f2f2f2;
}

.c-richline-pickup__title {
	text-align: center;
	padding: 45px 0 0;
}

.c-richline-pickup__title + * {
	margin: 40px 0 0;
}

.c-richline-pickup h4 {
	color: #787b39;
	font-size: 5rem;
	font-weight: 500;
	letter-spacing: .1em;
	margin: 35px 0 0;
	text-shadow: 0 2px 0 #fff;
	transform-origin: left top;
	transform: scale(.95,1);
}

.c-richline-pickup p {
	font-size: 1.8rem;
	margin: 30px 0 0;
}

.c-richline__title {
	margin: 100px 0 0;
	padding: 0 0 0 35px;
	display: flex;
	align-items: center;
	overflow: hidden;
	position: relative;
}

.c-richline__title:after {
	content: '';
	width: 46px;
	height: 46px;
	display: block;
	border-radius: 50%;
	background: #decdc2;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-50%,-50%);
}

.c-richline__title + * {
	margin: 35px 0 0;
}

.c-richline__title span:before {
	content: '機能';
	color: #877468;
	font-size: 3.2rem;
	font-weight: 900;
	margin: .55em .15em 0 0;
	display: inline-block;
}

.c-richline__title--point span:before {
	display: none;
}

.c-richline__title em {
	padding: 0 0 0 25px;
}

.c-richline__title em b {
	color: #fff;
	font-size: 3rem;
	font-weight: 700;
	padding: .375em 2em .35em;
	display: inline-block;
	background: #877468;
	border-radius: 10em;
}

.c-richline__title + .u-text {
	font-size: 1.8rem;
}

.c-richline-ex__items {
	margin: 30px 0 0;
}

.c-richline-ex__item {
	margin: 10px 0 0;
	padding: 20px 20px 20px 0;
	display: flex;
	align-items: center;
}

.c-richline-ex__item > figure {
	text-align: center;
	width: 250px;
}

.c-richline-ex__item > div {
	width: calc(100% - 250px);
}

.c-richline-ex__item h4 {
	font-size: 2.6rem;
	font-weight: 700;
}

.c-richline-ex__item h5 {
	font-size: 2.1rem;
	font-weight: 700;
	margin: .5em 0 0;
}

.c-richline-ex__item p {
	font-size: 1.8rem;
	line-height: 1.5;
	margin: .5em 0 0;
}

.c-richline-ex__item:nth-child(1) {
	background: #f4ece3;
}

.c-richline-ex__item:nth-child(1) h4 {
	color: #864a3d;
}

.c-richline-ex__item:nth-child(1) h5 {
	color: #864a3d;
}

.c-richline-ex__item:nth-child(2) {
	background: #eae9ec;
}

.c-richline-ex__item:nth-child(2) h4 {
	color: #565462;
}

.c-richline-ex__item:nth-child(2) h5 {
	color: #565462;
}

.c-richline-detail--2 .problem {
	position: relative;
}

.c-richline-detail--2 .problem:after {
	content: '';
	width: 0;
	height: 0;
	margin: 0 0 -35px;
	border-style: solid;
	border-width: 40px 65px 0 65px;
	border-color: #877468 transparent transparent transparent;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,100%);
}

.c-richline-detail--2 .main-photo + .u-text {
	font-size: 1.8rem;
}

.c-richline-detail--2 .main-photo + .u-text small {
	text-indent: -1em;
	margin: .25em 0 0;
	padding: 0 0 0 1em;
	display: block;
}

.c-richline-detail--3 .main-photo {
	position: relative;
}

.c-richline-detail--3 .main-photo p {
	font-size: 1.8rem;
	line-height: 2;
	width: 35.25%;
	margin: 3% 3% 0 0;
	padding: 1em;
	border: 14px solid rgba(135,116,104,.5);
	background: #fff;
	border-radius: 6px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
}

.c-richline-detail--3 .main-photo p b {
	color: #966140;
	text-decoration: underline;
}

.c-richline-detail--3 .c-product-data__image img {
	width: calc(100% + 40px);
	max-width: none;
	margin: -40px -40px 0 0;
}



.c-richline-detail--3 .c-accordion h4 {
	display: flex;
	position: relative;
}

.c-richline-detail--3 .c-accordion h4 em {
	color: #935050;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
	text-indent: -.5em;
	white-space: nowrap;
	margin: 7% 0 0 23%;
	position: absolute;
	top: 0;
	left: 0;
}

.c-richline-detail--3 .c-accordion h5 {
	color: #432323;
	font-size: 3rem;
	font-weight: 700;
}

.c-richline--premium .c-richline-pickup {
	padding-bottom: 0;
}

.c-richline--premium .c-richline-pickup__title {
	padding-top: 100px;
}



.c-richline-parts__items {
	margin: 50px 0 0;
	display: flex;
}

.c-richline-parts__item {
	width: calc(100% / 3);
	padding: 0 40px;
}

.c-richline-parts__item em {
	color: #2c2a35;
	font-weight: 700;
	text-align: center;
	padding: .25em 0;
	background: #d0cfd6;
	border-radius: 10em;
	margin: 1em 0 0;
	display: block;
}

.c-richline-parts__item span {
	line-height: 1.5;
	margin: 1em 0 0;
	display: block;
}


.c-after-mainte .u-text {
	font-size: 1.8rem;
}

.c-after-mainte-adjust {
	margin: 140px 0 0;
	padding: 50px 40px 40px;
	background: #f5f0f0;
}

.c-after-mainte-adjust__title {
	text-align: center;
	padding: 0 0 .75em;
	border-bottom: 1px solid #9c7474;
	position: relative;
}

.c-after-mainte-adjust__title + * {
	margin-top: 20px;
}

.c-after-mainte-adjust__title span {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	width: 210px;
	height: 132px;
	padding: 2.5em 0 0;
	display: block;
	background: url("../img/title-07.png") no-repeat center / 100% 100%;
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translate(-50%,-100%);
}

.c-after-mainte-adjust__title em {
	font-size: 3rem;
	font-weight: 700;
}

.c-after-mainte-adjust--1 .u-flex figure {
	padding: 20px 5px 0;
}

.c-after-mainte-adjust--1 .u-align-right {
	font-size: 1.6rem;
	margin: 20px 0 0;
}

.c-after-mainte-adjust--3 .u-flex > div:nth-child(1) {
	width: 55%;
}

.c-after-mainte-adjust--3 .u-flex > div:nth-child(2) {
	width: calc(100% - 55%);
	padding: 0 25px;
}

.c-after-mainte-adjust--3 .u-flex > div:nth-child(2) .u-text {
	font-size: 1.6rem;
	line-height: 1.35;
}

.c-after-mainte-adjust--3 small {
	font-size: 1.6rem;
	margin: 20px 0 0;
	display: block;
}

.c-after-mainte__corner--2 note {
	margin: 20px 0 0;
	display: block;
}








.l-faq {
	padding-top: 60px;
}

.l-other-block {
	margin-top: 80px
}

.l-other-head {
	font-size: 3.0rem;
	letter-spacing: 0.1em;
	position: relative;
	margin-bottom: 50px;
}

.l-other-head:before {
	background: #c4aa65;
	content: "";
	height: 3px;
	width: 80px;
	position: absolute;
	left: -100px;
	top: 50%;
}

.l-other-head + .l-faq-block {
	margin-top: 10px;
}
.l-faq-block {
	margin-top: 80px;
}

.l-faq-block {
	margin-top: 80px;
}

.l-faq-title {
	border-left: 10px solid #427abe;
	font-size: 2.4rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.5;
	padding: 0.3em 0 0.3em 30px;
}

.l-faq-qa .e-title {
	font-weight: bold;
	line-height: 1.5;
	border-bottom: 1px solid #eee;
	padding: 40px 30px;
	position: relative;
	cursor: pointer;
}

.l-faq-qa .e-title p {
	padding-left: 60px;
	position: relative;
}

.l-faq-qa .e-title p:before {
	color: #c4aa65;
	font-size: 1.8rem;
	line-height: 38px;
	text-align: center;
	border: 1px solid #c4aa65;
	border-radius: 40px;
	content: "Q";
	display: block;
	height: 40px;
	width: 40px;
	position: absolute;
	left: 0;
	top: -0.5em;
}

.l-faq-qa .e-title span:before {
	background: #ccc;
	content: "";
	width: 16px;
	height: 2px;
	position: absolute;
	top: 0.5em;
	right: 0;
	transition: all .3s ease-in-out;
	transform: rotate(90deg);
}

.l-faq-qa .e-title span:after {
	background: #ccc;
	content: "";
	width: 16px;
	height: 2px;
	position: absolute;
	top: 0.5em;
	right: 0;
	transition: all .2s ease-in-out;
}

.l-faq-qa .e-title.open span:before {
	transform: rotate(180deg);
}

.l-faq-qa .e-title.open span:after {
	opacity: 0;
}

.l-faq-qa .e-content {
	line-height: 2;
	background: #ffefc3;
	position: relative;
	margin-top: -1px;
	padding: 40px 30px;
}

.l-faq-qa .e-content p {
	padding-left: 60px;
	position: relative;
}

.l-faq-qa .e-content p:before {
	color: #fff;
	font-size: 1.8rem;
	line-height: 40px;
	text-align: center;
	background: #c4aa65;
	border-radius: 40px;
	content: "A";
	display: block;
	height: 40px;
	width: 40px;
	position: absolute;
	left: 0;
	top: -0.5em;
}

.l-faq-qa .e-content p.iconNone:before {
	display: none;
}

.l-faq-qa .e-content p > b {
	margin: 2em 0 0;
	display: block;
}








.c-prevention {
	padding: 50px 0 40px;
	background: #d9f1db;
}

.c-prevention__text {
	color: #525252;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: .15em;
}

.c-prevention__items {
	margin: 20px 0 0;
	padding: 0 100px;
	display: flex;
}

.c-prevention__item {
	width: calc(100% / 3);
	display: flex;
	align-items: center;
}

.c-prevention__item figure {
	width: 80px;
}

.c-prevention__item em {
	color: #48974e;
	font-size: 1.8rem;
	font-weight: 700;
	white-space: nowrap;
	padding: 0 0 0 20px;
	display: inline-block;
}

/* SHOP LP */
.g-header--shop,
.g-footer--shop {
	display: none;
}

.g-footer {
	position: relative;
}

.c-shoplpHeader__name {
	color: #765b3b;
	font-size: 3.4rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: .1em;
	width: 100%;
	padding: 0 260px;
	display: none;
	position: absolute;
	top: calc(50% - .1em);
	left: 0;
	transform: translate(0,-50%);
}

.is-scroll .c-shoplpHeader__name {
	font-size: 2.4rem;
	padding: 0 210px;
}

.c-shoplpHeader__name small {
	font-size: 1.6rem;
	letter-spacing: .1em;
	margin: .75em 0 0;
	display: block;
}

.is-scroll .c-shoplpHeader__name small {
	font-size: 1.3rem;
}

.c-shoplpHeader__tel {
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: 0;
	display: none;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0,-47.5%);
}

.is-scroll .c-shoplpHeader__tel {
	font-size: 2.2rem;
	right: 20px;
}

.c-shoplpHeader__tel:before {
	content: '';
	width: 1.25em;
	height: 1.25em;
	display: inline-block;
	border-radius: 3px;
	background: #c4aa65 url("/contents/nishikawa-chain/shops/icon-tel.png") no-repeat center / 65% auto;
	transform: translate(0,-.15em);
}

.c-actionButton__buttonShop {
	color: #c4aa65;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	margin: 20px 0 0;
	display: none;
}

.is-shoplp_url .c-actionButton__buttonShop {
	display: block;
}

.c-actionButton__buttonShop a {
	color: #877468;
	min-width: 710px;
	padding: 30px 0;
	display: inline-block;
	background: #fff;
	border-radius: 100px;
}

.c-actionButton__buttonShop a em {
	padding: 0 0 0 60px;
	display: inline-block;
	position: relative;
}

.c-actionButton__buttonShop a em:before {
	content: '';
	width: 36px;
	height: 36px;
	display: inline-block;
	background: url(../img/icon-calender.png) no-repeat center / 100% 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}

.c-actionButton__buttonShop.js-tel {
	color: #fff;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
}

.c-actionButton__buttonShop.js-tel:before {
	content: 'ご予約はこちらの電話番号まで：';
	color: #c19a33;
	font-size: 1.8rem;
}

.c-shoplpFooter {
	padding: 60px 0;
	display: flex;
	justify-content: center;
	position: relative;
	align-items: center;
	z-index: 10;
}

.c-shoplpFooter .c-shoplpHeader__tel {
	color: #000;
}

.c-shoplpFooter .c-shoplpHeader__name {
	font-size: 3rem;
}

.c-actionButton__buttonShopTel {
	color: #fff;
	font-size: 5rem;
	font-weight: 700;
	text-align: center;
	margin: 20px 0 0;
	display: none;
}

.c-actionButton__buttonShopTel a {
	color: #fff;
}

.c-actionButton__buttonShopTel:before {
	content: 'ご予約はこちらの電話番号まで：';
	color: #fff;
	font-size: 2rem;
}

.is-shoplp_name .g-header.inc-header,
.is-shoplp_name .g-footer.inc-footer,
.is-shoplp_name .g-header .g-header-button,
.is-shoplp_name .g-footer-logo,
.is-shoplp_name .g-footer-nav,
.is-shoplp_name .l-copyright,
.is-shoplp_name .c-actionButton__button {
	display: none;
}

.is-shoplp_name .g-header.g-header--shop,
.is-shoplp_name .g-footer.g-footer--shop,
.is-shoplp_name .c-shoplpHeader__name,
.is-shoplp_name .c-shoplpHeader__tel,
.is-shoplp_name .c-actionButton__buttonShopTel {
	display: block;
}

.is-shoplp_name.is-shoplp_url .c-actionButton__buttonShopTel {
	display: none;
}

.is-color--1 .g-footer {
	background-color: #f4e3b4;
}
