@charset "UTF-8";

:root {
	--black    :#000000;
	--gray     :#231815;
	--white    :#ffffff;
	--gold     :#9F8026;
	--red      :#E6160B;

	--secondary:#7E5B45;

	--bg-base  :#F0EEEA;
	--bg-sepia :#E7E5DD;
	--bg-grey  :#D6D3D3;
}

/* =============================================
Base Set
============================================= */
html {
	font-size: 62.5%;
}
body {
	font-family: 'Yu Gothic', '游ゴシック', YuGothic, '游ゴシック体', 'Noto Sans JP', Hiragino, 'Kaku Gothic ProN', 'Hiragino Sans', MSPGothic, Meiryo, sans-serif;
	font-feature-settings: "palt" 1;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--black);
}
@media screen and (min-width:500px) {
	body {
		font-size: 1.6rem;
	}
}
body {
	max-width:600px;
	margin: 0 auto;
}
*,
::before,
::after {
	box-sizing: border-box;
	border-style: solid;
	border-width: 0;
}


/* ----- Img ----- */
img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}

/* ----- Link ----- */
a {
	transition: all .3s ease;
}

/* -------------------------------------
Common
------------------------------------- */
.inner {
	padding: 0 6%;
}
@media screen and (max-width:320px) {
	.inner {
		padding: 0 4%;
	}
}
@media screen and (min-width:500px) {
	.inner {
		padding: 0 10%;
	}
}

.note {
	font-size: 1.0rem;
	margin-top: 8px;
}
.note--indent {
	margin-top: 0;
	text-indent: -1.3em;
	margin-left: 1.3em;
}
.note--indent2 {
	margin-top: 0;
	text-indent: -1.75em;
	margin-left: 1.75em;
}
.box--white {
	background-color: var(--white);
	border-radius: 6px;
	padding: 25px 20px 20px;
	margin-top: 30px;
}
.va-super {
	vertical-align: super;
	font-size: 1.0rem;
}


/* ---Animate.css--- */
.invisible {
	visibility: hidden;
}
.animate__animated.animate__delay-05s {
	-webkit-animation-delay:0.5s;
	animation-delay:0.5s;
	-webkit-animation-delay:var(--animate-delay)*0.5;
	animation-delay:var(--animate-delay)*0.5;
}

/* ---modal--- */
#yoyaku-modal {
	z-index: 100;
	cursor: pointer;
	cursor: hand;
}
.modal__inner {
	display: none;
	width: 92%;
	margin: 0 auto;
	position:fixed;
	z-index: 999;
	box-sizing: border-box;
}
@media screen and (min-width:500px) {
	.modal__inner {
		width: 450px;
		height: 86.666%;
	}
}
.modal__inner::before{
	content: "";
	display: block;
	width: 15%;
	height: 8.5%;
	background: url("../img/icon_close.svg") top left no-repeat;
	background-size: contain;
	position: absolute;
	top: -2%;
	right: -6%;
	z-index: 1000;
	opacity: 1;
}
.modal__box {
	width: 100%;
	height: 72vh;
	max-height: 840px;
	overflow-y: scroll;
}
.modal__box::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width:450px) {
	.modal__box{
		height: 80vh;
	}
}
@media screen and (min-width:600px) {
	.modal__box{
		height: 86vh;
	}
}
@media screen and (max-width:320px) {
	.modal__box{
		width: 100%;
		height: 86vh;
		overflow-y: scroll;
	}
}
.is-open {
	max-width: 100vw;
	height: 100vh;
	overflow-y: hidden;
	position:fixed;
	top:0;
	left: 50%;
	margin-left: -50%;
}
@media screen and (min-width:600px) {
	.is-open{
		max-width: 600px;
		margin-left: -300px;
	}
}
@media screen and (max-width:320px) {
	.is-open{
		position:fixed;
		top:0;
		left: 50%;
		margin-left: -300px;
	}
}
.modal__bg {
	display:none;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.75);
	position:fixed;
	top:0;
	left:0;
	z-index: 100;
}


/* slide */
.slider {
	position: relative;
}
.slide-arrow {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 50%;
	transform: translateY(-50%);
}
.slide-arrow.arrow--column {
	width: 36px;
	height: 36px;
	top: 36%;
}
.prev-arrow {
	left: 0;
	z-index: 1;
}
.next-arrow {
	right: 0;
}
.slide-arrow.arrow--column.prev-arrow {
	left: -20px;
}
.slide-arrow.arrow--column.next-arrow {
	right: -20px;
}
.slide-arrow::before {
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	left: 10px;
	border-top: 1px solid var(--gray);
	border-left: 1px solid var(--gray);
	transform: translateY(-50%) rotate(-45deg);
}
.slide-arrow.next-arrow::before {
	transform: translateY(-50%) rotate(135deg);
	left: auto;
	right: 10px;
}
.slide-arrow.arrow--column:before {
	width: 36px;
	height: 36px;
	left: -10px;
	border: none;
	transform: translateY(-50%);
	background: url(../img/icon_arrow.webp) center / contain no-repeat;
}
.slide-arrow.arrow--column.prev-arrow::before {
	transform: translateY(-50%) rotate(-180deg);
	left: auto;
	right: -10px;
}
.slide-arrow.arrow--column.slick-disabled:before {
	display: none;
}


/* header */
.pg-header {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
}
.header-logo a img {
	display: block;
	width: auto;
	max-height: 60px;
	margin: 0 auto;
}
.header-menu {
	position: fixed;
	display: block;
	z-index: 999999999;
	top: 50%;
	left: 10px;
	border-radius: 5px;
	width: 36px;
	height: 36px;
	transform: translateY(-50%);
}
.header-menu__button {
	overflow: hidden;
	display: block;
	position: relative;
	z-index: 99990;
	width: 36px;
	height: 36px;
	cursor: pointer;
	transition: transform 300ms;
	background-color: var(--white);
}
.header-menu__button span,
.header-menu__button::before,
.header-menu__button::after {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 20px;
	height: 2px;
	margin: auto;
	background: #5B5B5C;
}
.header-menu__button span {
	opacity: 1;
	transition: opacity 200ms;
	overflow: hidden;
	z-index: 99991;
	color: #fff;
}

.header-menu__button::before,
.header-menu__button::after {
	transition: transform 200ms;
	z-index: 99992;
	content: "";
}
.header-menu__button::before {
	transform: translate(0, -9px);
}
.header-menu__button::after {
	transform: translate(0, 9px);
}
/* is-active */
.header-menu__button.is-active {
	transform: rotate(-180deg);
}
.header-menu__button.is-active span {
	opacity: 0;
}
.header-menu__button.is-active::before {
	transform: rotate(45deg);
}
.header-menu__button.is-active::after {
	transform: rotate(-45deg);
}
/* global-nav */
.global-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 230px;
	height: 100%;
	padding: 50px 0px 0px;
	background-color: #E9ECEF;
	transform: translateX(-230px);
}
.global-nav-list {
	display: block;
	padding-top: 10px;
	margin-bottom: 20px;
}
.global-nav-list__item {
	width: 100%;
	padding-bottom: 0px;
}
.global-nav-list__item a {
	display: block;
	text-decoration: none;
	font-size: 1.2rem;
	color: #434343;
	line-height: 1.4;
	padding: 30px 26px 28px 15px;
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.61);
	position: relative;
}
/* is-active */
.is-active .global-nav {
	transform: translateX(0);
}
.is-active .contents {
	transform: translateX(230px);
}

/* slideout */
.slideout-menu {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	width: 230px;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	display: none;
	background-color: #E9ECEF;
}

.slideout-panel {
	position: relative;
	z-index: 99;
	will-change: transform;
	background-color: #fff;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
	overflow: hidden;
}

.slideout-open .slideout-menu {
	display: block;
}

/* intro */
.intro-product__image {
	position: relative;
	margin: -50px 0 20px;
	z-index: 1;
}
.intro-product__image--icon {
	position: absolute;
	width: 15%;
	height: 34%;
	top: 45px;
	left: calc(50% - 28px - 26%);
}
.intro__inner {
	padding-top: 35px;
	padding-bottom: 40px;
}
.intro__heading {
	display: flex;
	justify-content: space-between;
}
.intro__catch {
	width: 60%;
}
.intro__icon {
	width: 21.5%;
}
.intro__title {
	font-size: 2.4rem;
	font-weight: 700;
	margin-top: 15px;
}
.intro__text {
	margin-top: 15px;
	line-height: 2;
}


/* ----- features ----- */
/* features-common */
.features__section {
	background-color: var(--bg-base);
	padding-top: 30x;
	padding-bottom: 40px;
}
.features__inner {
	padding-top: 30px;
}
.features__title {
	border-bottom: 1px solid var(--black);
	padding-bottom: 4px;
}
.features__title img {
	margin: 0 auto;
}
.features__catch {
	margin: 20px auto 0;
}
.features__note {
	border-top: 1px solid var(--black);
	padding-top: 20px;
	margin-top: 25px;
}

/* share */
.share {
	background-color: var(--secondary);
	padding: 15px;
}
.share__inner {
	background-color: var(--white);
	border-radius: 6px;
	padding: 35px 25px;
}
.share__title {
	font-size: 1.8rem;
	color: var(--secondary);
	font-weight: 700;
	text-align: center;
	position: relative;
	margin-bottom: 12px;
}
.share__title::before,
.share__title::after {
	content: "";
	display: block;
	width: 1px;
	height: 3.5em;
	position: absolute;
	bottom: -31px;
	background-color: var(--secondary);
}
.share__title::before {
	left: calc(50% - 6.5em);
	transform: translateY(-50%) rotate(-30deg);
}
.share__title::after {
	left: calc(50% + 6.5em);
	transform: translateY(-50%) rotate(30deg);
}
.share__box {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
}
.share__text {
	width: 58%;
}
.share__subimage {
	width: 38%;
}
.share__strong {
	border-top: 1px solid var(--black);
	padding: 20px 0 25px;
	margin-top: 20px;
	text-align: center;
	font-weight: 700;
}
.share__strong .strong--red {
	color: var(--red);
}
.share__button {
	border: 1px solid var(--black);
	border-radius: 999px;
	position: relative;
	max-width: 255px;
	margin: 0 auto;
	overflow: hidden;
}
.share__button::before {
	content: "";
	display: block;
	position: absolute;
	top: 48%;
	left: 20px;
	transform: translateY(-50%);
	background-size: contain;
	background-repeat: no-repeat;
}
.share__button.button--buy::before {
	width: 22px;
	height: 23px;
	background-image: url(../img/icon_buy.svg);
}
.share__button.button--search::before {
	width: 19px;
	height: 19px;
	background-image: url(../img/icon_search.svg);
}
.share__link {
	font-weight: 700;
	padding: 14.5px 0 14.5px 20px;
	display: block;
	text-align: center;
	background-color: var(--white);
}
.share__button + .share__button {
	margin-top: 10px;
}
@media screen and (min-width:500px) {
	.share__box {
		align-items: center;
	}
	.share__button {
		max-width: 285px;
	}
}


/* index */
.index {
	background-color: var(--bg-sepia);
	padding: 25px 0;
}
.index__inner {
	display: flex;
	justify-content: space-between;
}
.index__link {
	width: calc(92% / 4);
}


/* safety */
.safety__title img {
	width: 25%;
}
.safety__catch {
	width: 57%;
}
.safety-list {
	margin-top: 30px;
}
.safety-list__item {
	padding: 20px 25px 0;
}
.safety-list__item.item--white {
	background-color: var(--white);
}
.safety-list__item:nth-of-type(1) {
	padding-top: 0;
}
.safety-list__item:nth-of-type(2) {
	border-radius: 0 0 6px 6px;
	padding-top: 0;
	padding-bottom: 10px;
}
.safety-list__image--main {
	overflow: hidden;
	border-radius: 6px 6px 0 0;
	width: calc(100% + 50px);
	margin: 0 -25px 20px;
}
.safety-list__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	border-bottom: 1px solid var(--black);
	padding: 10px 0 5px;
	margin-bottom: 15px;
}
.safety-list__item:nth-of-type(2) .safety-list__head {
	justify-content: flex-start;
}
.safety-list__heading {
	display: flex;
	align-items: flex-end;
}
.safety-list__num {
	width: 22px;
	margin-right: 10px;
	padding-bottom: 4px;
}
.safety-list__item:nth-of-type(1) .safety-list__num {
	width: 13px;
}
.safety-list__title {
	font-size: 2.0rem;
	line-height: 1.25;
}
.safety-list__point {
	width: 105px;
}
.safety-list__new {
	width: 58px;
	margin-left: 10px;
	padding-bottom: 8px;
}
.safety-list__text {
	margin-bottom: 5px;
}
.safety-list__image {
	position: relative;
}
.safety-list__item:nth-of-type(3) .safety-list__image {
	width: calc(100% + 50px);
	margin: 0 -25px;
}
.safety-list__image + .safety-list__image {
	margin-top: 15px;
}
.safety-list__image .image--icon {
	position: absolute;
	width: 25.4%;
	top: 0;
	left: 0;
}
.safety-column__title {
	width: 95%;
	margin: 0 auto 25px;
}

/* long use */
.long-use {
	background-color: var(--bg-sepia);
}
.long-use__title img {
	width: 38.5%;
}
.long-use__catch {
	width: 63%;
}
.long-use-detail__title {
	width: 206.5px;
	margin: 0 auto 20px;
	border-bottom: 1px solid var(--gold);
	padding-bottom: 6px;
}
.long-use-detail__container {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}
.long-use-detail__icon {
	width: 56px;
}
.long-use-detail__info {
	width: calc(100% - 56px - 10px);
}
.long-use-detail__subtitle {
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 10px;
}
.long-use-detail__text {
	font-size: 1.2rem;
}
.long-use-flow {
	padding: 30px 25px 0;
}
.long-use-flow__title {
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	border-bottom: 1px solid var(--black);
	padding-bottom: 4px;
	margin-bottom: 15px;
}
.long-use-flow__catch {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--gold);
	margin-bottom: 5px;
}
.long-use-flow__catch .va-super {
	color: var(--black);
}
.long-use-flow__note {
	padding: 10px;
	border: 1px solid var(--gray);
}

.long-use-flow__container {
	margin-top: 20px;
}
.long-use-flow__item {
	width: calc(100% + 50px);
	margin: 0 -25px;
	position: relative;
}
.long-use-flow__item + .long-use-flow__item {
	margin-top: 45px;
}
.long-use-flow__item + .long-use-flow__item:before,
.long-use-flow__item + .long-use-flow__item:after {
	content: "";
	display: block;
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
}
.long-use-flow__item + .long-use-flow__item:before {
	width: 50px;
	height: 15px;
	top: -28px;
	left: calc(50% - 25px);
	background-image: url(../img/img_arrow_top.webp);
}
.long-use-flow__item + .long-use-flow__item:after {
	width: 98px;
	height: 30px;
	top: -30px;
	left: calc(50% - 49px);
	background-image: url(../img/img_arrow_top.webp);
}

/* satisfaction */
.satisfaction__title {
	padding-bottom: 10px;
}
.satisfaction__title img {
	width: 48%;
}
.satisfaction__catch {
	width: 84.6%;
	margin-bottom: 20px;
}
.satisfaction-list {
	padding: 0 25px;
}
.satisfaction-list__item + .satisfaction-list__item {
	margin-top: 25px;
}
.satisfaction-list___pickup {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.satisfaction-list___info {
	width: 50%;
}
.satisfaction-list___new {
	width: 57px;
	margin-bottom: 5px;
}
.satisfaction-list___title {
	font-size: 1.6rem;
	font-weight: 700;
}
.satisfaction-list___pickup .satisfaction-list___title {
	margin-bottom: 5px;
}
.satisfaction-list___function {
	color: var(--gold);
	font-weight: 700;
}
.satisfaction-list___function.function--line {
	width: 6.5em;
	border-bottom: 1px solid var(--gold);
}
.satisfaction-list___image {
	margin-bottom: 15px;
}
.satisfaction-list___pickup .satisfaction-list___image {
	width: 47%;
	margin-bottom: 0;
}

.satisfaction-column {
	margin-bottom: 20px;
}
.satisfaction-column__title {
	text-align: center;
	font-weight: 700;
	font-size: 1.6rem;
	margin-bottom: 10px;
}
.column__item {
	padding: 0 7.5px;
}
.column__step {
	margin-top: 15px;
	font-weight: 700;
}
.step--num {
	border-bottom: 1px solid var(--black);
	padding-bottom: 2px;
}
.column__function {
	color: var(--gold);
	margin-top: 5px;
	font-weight: 700;
}
.function--new {
	width: 57px;
	display: inline-block;
	margin-right: 10px;
}
.column__note {
	margin-top: 0;
	margin-left: 67px;
}

.satisfaction-option {
	margin-bottom: 30px;
}
.satisfaction-option__item {
	display: flex;
	align-items: center;
	margin-top: 15px;
	background-color: var(--white);
}
.satisfaction-option__image {
	width: 40%;
}
.satisfaction-option__text {
	width: 60%;
	padding: 0 12px;
}

/* compact */
.compact {
	background-color: var(--bg-sepia);
}
.compact__title img {
	width: 86%;
}
.compact__catch {
	width: 87%;
}
.compact-column {
	margin-top: 26px;
	padding: 30px 25px 25px;
}
.compact-column:nth-of-type(2) {
	padding: 5px 25px 0;
}
.compact-list__item + .compact-list__item {
	margin-top: 30px;
}
.compact-list__title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 10px;
}
.compact-list__point {
	border-bottom: 1px solid var(--gold);
	padding-bottom: 3px;
	color: var(--gold);
	font-weight: 700;
	margin-bottom: 10px;
}
.compact-list__point .point--new {
	width: 58px;
	display: inline;
	margin-right: 10px;
}
.compact-list__text {
	margin-bottom: 10px;
}
.compact-list__box {
	padding: 10px 10px;
	border: 1px solid var(--gray);
	line-height: 1;
	margin-top: 10px;
}
.compact-list__box .note.note--indent {
	padding-left: 10px;
}
.compact-list__item:nth-of-type(2) .compact-list__note {
	margin-top: 10px;
}
.compact-list__image {
	margin-top: 10px;
}
.compact-column:nth-of-type(2) .compact-list__image {
	margin-bottom: 20px;
}
.compact-list__lotta {
	width: 107px;
	margin-bottom: 5px;
}

/* together */
.together {
	background-color: var(--bg-grey);
	padding: 30px 0 20px;
}
.together__title {
	font-size: 1.8rem;
	text-align: center;
	font-weight: 700;
	margin-bottom: 20px;
}
.together__container {
	border: 1px solid var(--white);
}
.together-head {
	background-color: #D6D2D2;
}
.together-foot {
	background-color: #E8E7E7;
	background: -moz-linear-gradient(top, #D6D2D2 4%, #E8E7E7 4%);
  background: -webkit-linear-gradient(top, #D6D2D2 4%, #E8E7E7 4%);
  background: linear-gradient(to bottom, #D6D2D2 4%, #E8E7E7 4%);
	padding-bottom: 30px;
}
.together .note:nth-of-type(5) {
	margin-top: 8px;
}

/* lineup */
.lineup {
	padding-top: 40px;
	padding-bottom: 50px;
}
.lineup__title {
	width: 156px;
	margin: 0 auto;
	padding-bottom: 50px;
	position: relative;
}
.lineup__title::before {
	content: "";
	display: block;
	width: 1px;
	height: 47px;
	position: absolute;
	bottom: -7px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--black);
	z-index: 1;
}

#product-wrap{
	padding-bottom: 24px;
}
@media screen and (min-width:600px) {
	#product-wrap{
		padding-bottom: 40px;
	}
}
.thumbnail-list{
	display: flex;
	padding: 24px 6.666% 24px;
}
.thumbnail-item{
	width: calc(100%/4);
	position: relative;
	cursor: pointer;
	cursor: hand;
}
.thumbnail-item:after {
	content: "";
	background-color: rgba(255, 255, 255, 0.50);
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	transition: 0.3s opacity linear;
}
.thumbnail-item.thumbnail-current:after {
	opacity: 0;
}
.product__icon {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.product__icon--un {
	width: 31.5%;
	margin-right: 15px;
}
.product__icon--iso-fix {
	width: 15.5%;
	margin-right: 15px;
}
.product__icon--eggshock {
	width: 11.5%;
	margin-right: 15px;
}
.product__icon--r129 {
	width: 16.5%;
}
.product__info{
	padding: 10px 6% 40px;
}
.product__name {
	display: block;
	font-weight: 700;
	margin-bottom: 4px;
	border-bottom: 1px solid #000;
	padding-bottom: 6px;
}
.product__name .name--small {
	font-size: 1.2rem;
}
.product__price {
	font-weight: 700;
	padding: 6px 0;
}
.product__text {
	font-size: 1.2rem;
}
.product__info .note:nth-of-type(4) {
	margin-top: 4px;
}
.product-point {
	margin-bottom: 30px;
}
.product-point__image + .product-point__image {
	margin-top: 20px;
}

.pad-left{
	display: block;
	padding-left: 52px;
}
@media screen and (min-width:600px) {
	.pad-left{
		display: block;
		padding-left: 60px;
	}
}

/* ------ fixed ----- */
.menu {
	display: none;
	position: fixed;
	width: 100%;
	max-width: 600px;
	bottom: 0;
	z-index: 99;
	background-color: #fff;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
}
.menu__container {
	display: flex;
	justify-content: space-between;
	border-top: 4px solid #fff ;
}
.menu__button {
	width: calc((100% - 4px) / 2);
	background-color: #E6E0CD;
}
.menu__button img {
	width: 170px;
	margin: 0 auto;
}
.menu__fair {
	display: block;
	background-color: #BE6B51;
}
.menu__fair img {
	max-width: 375px;
	margin: 0 auto;
}

/* ------ Footer ----- */
.footer-wrap {
	padding-bottom: 50px;
}
@media screen and (min-width:500px) {
	.footer-wrap {
		padding-bottom: 131px;
	}
}
/* is-active */
.is-active.footer-wrap {
	transform: translateX(230px);
}