@charset "UTF-8";

:root {
	--black    :#000000;
	--gray     :#251E1C;
	--white    :#ffffff;
	--light-gold :#CDAF4D;
	--dark-gold :#C09B0F;
	--secondary:#CF5229;
	--bg-base  :#F1EFEB;
}

/* =============================================
Base Set
============================================= */
html {
	font-size: 62.5%;
}
body {
	font-family: 'Yu Gothic', '游ゴシック', YuGothic, '游ゴシック体',  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%;
}
.note {
	color: var(--gray);
	font-size: 1.0rem;
	margin-top: 8px;
}
.note--indent {
	margin-top: 0;
	text-indent: -1em;
	margin-left: 1em;
}
.note--indent2 {
	margin-top: 0;
	text-indent: -1.75em;
	margin-left: 1.75em;
}
@media screen and (min-width:500px) {
	.inner {
		padding: 0 10%;
	}
	.note {
		font-size: 1.4rem;
	}
}
/* ---Animate.css--- */
.invisible {
	visibility: hidden;
}
@-webkit-keyframes zoomIn {
    0% {
			opacity: 0;
			-webkit-transform: scale3d(1.05, 1.05, 1.05);
			transform: scale3d(1.05, 1.05, 1.05);
    }
    20% {
        opacity: 1;
    }
    100% {
      opacity: 1;
			-webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
}
@keyframes zoomIn {
    0% {
      opacity: 0;
      -webkit-transform: scale3d(1.05, 1.05, 1.05);
      transform: scale3d(1.05, 1.05, 1.05);
    }
    20% {
      opacity: 1;
    }
    100% {
      opacity: 1;
			-webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
}
@media screen and (min-width:500px) {
	@-webkit-keyframes zoomIn {
    0% {
			opacity: 0;
			-webkit-transform: scale3d(1, 1, 1);
			transform: scale3d(1, 1, 1);
    }
    20% {
        opacity: 1;
    }
    100% {
			opacity: 1;
			-webkit-transform: scale3d(1, 1, 1);
			transform: scale3d(1, 1, 1);
    }
}
	@keyframes zoomIn {
		0% {
			opacity: 0;
			-webkit-transform: scale3d(1, 1, 1);
			transform: scale3d(1, 1, 1);
		}
		20% {
			opacity: 1;
		}
		100% {
			opacity: 1;
			-webkit-transform: scale3d(1, 1, 1);
			transform: scale3d(1, 1, 1);
		}
	}
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
	animation-duration:4s;
}
@keyframes fadeInUpSoft {
  0% {
    opacity: 0;
		-webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  60% {
    opacity: 0.7;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUpSoft {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  60% {
    opacity: 0.7;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpSoft {
  animation: fadeInUpSoft 1.2s ease-out both;
}
/* 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%;
	cursor: pointer;
}
.prev-arrow {
	left: 0;
	z-index: 1;
}
.next-arrow {
	right: 0;
}
.slide-arrow.arrow--column.prev-arrow {
	left: 0;
	transform: translate(-50%, -50%);
}
.slide-arrow.arrow--column.next-arrow {
	right: 0;
	transform: translate(50%, -50%);
}
.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: 0;
	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: 0;
}
.slide-arrow.arrow--column.slick-disabled:before {
	display: none;
}
/* zoomin (1→1.1) */
.zoomin {
	overflow: hidden;
}
.zoomin .slick-slide img {
	transform: scale(1);
	transform-origin: center center;
	transition: transform 3500ms ease-out;
	will-change: transform;
}
.zoomin .slick-slide[aria-hidden="false"] img {
	transform: scale(1.1);
}
/* zoominfast (1→1.1) */
.zoominfast {
	overflow: hidden;
}
.zoominfast .slick-slide img {
	transform: scale(1);
	transform-origin: center center;
	transition: transform 4000ms ease-in-out;
	will-change: transform;
}
.zoominfast .slick-slide[aria-hidden="false"] img {
	transform: scale(1.1);
}
/* 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;
}
/* mv */
.mv__item {
	position: relative;
}
.mv__text {
	position: absolute;
	top: 29.9%;
	right: 9.6%;
	z-index: 1;
	writing-mode: vertical-rl;
	line-height: 1.8;
	letter-spacing: 0.1em;
}
.mv__text-indent {
	display: inline-block;
	margin-top: 2em;
}
/* intro */
.intro-product__image {
	position: relative;
	margin-top: -27px;
}
.intro__inner {
	position: relative;
	padding-top: 0;
	padding-bottom: 60px;
}
.intro__heading {
	position: absolute;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}
.intro__catch {
	width: 56%;
	margin: 0 auto;
}
.intro__text {
	padding-top: 30%;
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0.05em;
}
/* ----- features ----- */
/* features-common */
.features__section {
	background-color: var(--bg-base);
	padding-top: 0;
	padding-bottom: 65px;
}
.features__inner {
	overflow-y: hidden;
	position: relative;
	margin-top: calc(-31 / 375 * 100vw);
	padding-top: 0;
}
.features__title-container {
	width: calc(100% + 13.64%);
	height: calc(90 / 375 * 100vw);
	margin-right: -6.82%;
	margin-left: -6.82%;
	padding-top: calc(15 / 375 * 100vw);
	background-image: url(../img/features_ttl_bg.webp);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top center;
}
.features__title {
	position: relative;
	width: fit-content;
	margin: 0 auto;
}
.features__title::before {
	content: "";
	display: block;
	width: calc(210 / 375 * 100vw);
	height: 1px;
	background-color: var(--white);
	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
}
.features__title img {
	display: block;
	height: calc(49 / 375 * 100vw);
}
.features__catch {
	margin: 25px auto 0;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	letter-spacing: 0.05em;
}
.features__catch-small {
	font-size: 1.4rem;
}
.features__note {
	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;
	letter-spacing: 0.05em;
	line-height: 1.5;
}
.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--secondary {
	color: var(--secondary);
}
.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);
	color: va(--black);
}
.share__button + .share__button {
	margin-top: 10px;
}
/* index */
.index {
	background-color: transparent;
	padding: 0;
}
.index__inner {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 2px;
}
.index__link {
	display: block;
	padding-top: 24px;
	padding-bottom: 28px;
	background-color: var(--light-gold);
	background-image: url(../img/img_index_arrow_buttom.svg);
	background-repeat: no-repeat;
	background-position: bottom 8px center;
	background-size: auto 11px;
	text-align: center;
	line-height: 1;
}
.index__link:nth-child(1) {
    grid-column: span 3;
}
.index__link:nth-child(2) {
    grid-column: span 3;
}
.index__link:nth-child(3),
.index__link:nth-child(4),
.index__link:nth-child(5) {
    grid-column: span 2;
}
.index__link img {
	height: 11px;
}
/* flat-comfort */
.flat-comfort__text01 {
	margin-top: 30px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.02em;
}
.flat-comfort__text01-strong {
	color: var(--dark-gold);
	font-weight: 700;
}
.flat-comfort__image01 {
	text-align: center;
}
.flat-comfort__image01 img {
	display: block;
	width: 227px;
	margin: 25px auto 0;
}
.flat-comfort__image01-caption {
	margin-top: 15px;
	color: var(--dark-gold);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.025em;
}
.flat-comfort__image01-caption sup {
	font-size: 1rem;
	vertical-align: super;
	letter-spacing: 0;
}
.flat-comfort__image02 {
	position: relative;
	margin-top: 48px;
	margin-bottom: 50px;
	border: 1px solid var(--dark-gold);
	border-radius: 16px;
}
.flat-comfort__image02::after {
	content: "";
	display: block;
	width: 66px;
	height: 36px;
	background-image: url(../img/flat-comfort_icon01.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left top;
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
.flat-comfort__image02 img {
	overflow: hidden;
	border-radius: 15px;
}
.flat-comfort__box {
	margin-top: 0;
}
.flat-comfort__box-title {
	padding: 15px;
	color: var(--white);
	background-color: var(--light-gold);
	border-radius: 15px 15px 0 0;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.flat-comfort__box-image {
	margin-top: 16px;
}
.flat-comfort__note {
	margin-top: 46px;
}
/* safety */
.safety-list {
	margin-top: 35px;
}
.safety-list__item {
	overflow: hidden;
	padding: 0;
	border-radius: 10px;
	border: 1px solid var(--dark-gold);
	background-color: var(--white);
}
.safety-list__item:not(:first-child) {
	margin-top: 25px;
}
.safety-list__image--main {
	background-color: #0A0B0A;
}
.safety-list__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 8px 20px 15px;
	margin-bottom: 0;
}
.safety-list__head--p02 {
	align-items: center;
	padding-bottom: 8px;
}
.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: 12px;
	padding-bottom: 0;
}
.safety-list__title {
	color: var(--gray);
	font-size: 2.0rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
}
.safety-list__title-small {
	font-size: 1.2rem;
}
.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(1) .safety-list__image {
	margin-top: 30px;
	margin-right: 15px;
	margin-bottom: 20px;
	margin-left: 15px;
}
.safety-list__item:nth-of-type(2) .safety-list__image {
	margin-bottom: 20px;
}
.safety-list__image + .safety-list__image {
	margin-top: 15px;
}
.safety-list__image .image--icon {
	position: absolute;
	width: 25.4%;
	top: 0;
	left: 0;
}
/* easy-carry */
.easy-carry-list {
	margin-top: 48px;
}
.easy-carry-list__heading {
	display: flex;
	gap: 7px;
}
.easy-carry-list__icon {
	width: 93px;
}
.easy-carry-list__title {
	color: var(--gray);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.easy-carry-list__image01 {
	margin-top: 13px;
}
.easy-carry-list__image01-01 {
	overflow: hidden;
	border-radius: 15px;
	border: 1px solid var(--dark-gold);
}
.easy-carry-list__image01-02 {
	position: relative;
	width: 100%;
	margin-top: calc(-30 / 375 * 100vw);
	z-index: 1;
}
.easy-carry-list__title sup {
	font-size: 1.0rem;
	vertical-align: super;
	letter-spacing: 0;
}
.easy-carry-list__item:not(:first-child) {
	margin-top: 30px;
}
.easy-carry-list__image02 {
	overflow: hidden;
	margin-top: 13px;
	border-radius: 15px;
	border: 1px solid var(--dark-gold);
}
.easy-carry-box {
	display: flex;
	align-items: flex-end;
	gap: 20px;
	margin-top: 20px;
}
.easy-carry-box__image01 {
	width: 168px;
	flex-shrink: 0;
}
.easy-carry-box__text {
	flex-grow: 1;
}
.easy-carry-box__image02 {
	display: block;
	width: 68px;
}
.easy-carry-box__head {
	margin-top: 10px;
	padding-left: 10px;
	border-left: 3px solid var(--dark-gold);
}
.easy-carry-box__head-title {
	margin-bottom: 5px;
	color: var(--dark-gold);
	font-size: 1.6rem;
	line-height: 1.5;
}
.easy-carry-box__head-text {
	color: var(--gray);
	font-size: 1.4rem;
	line-height: 1.5;
}
/* useful */
.useful-list {
	margin-top: 35px;
}
.useful-list__image {
	overflow: hidden;
	margin-bottom: 0;
	border-radius: 15px;
	border: 1px solid var(--dark-gold);
}
.useful-list__head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 10px;
}
.useful-list__head-icon {
	width: 34px;
}
.useful-list__head-title {
	color: var(--gray);
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
}
.useful-list__head-title-small {
	font-size: 1.4rem;
}
.useful-list__item:not(:first-child) {
	margin-top: 30px;
}
.useful-list__image--white {
	background-color: var(--white);
}
.useful-column {
	margin-top: 50px;
}
.useful-column__title {
	margin-bottom: 15px;
	color: var(--gray);
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
	line-height: 1.5;
}
.column__item {
	padding: 0;
}
.column__step {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 7px;
	color: var(--gray);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.05em;
}
.step--num {
	border-bottom: 1px solid var(--black);
	padding-bottom: 2px;
	flex-shrink: 0;
}
.step--num img {
	width: auto;
	height: 11px;
}
.column__function {
	color: var(--white);
	background-color: var(--light-gold);
	margin: 5px auto 0;
	padding: 4px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.025em;
	text-align: center;
	border-radius: 16px;
}
.function--new {
	width: 57px;
	display: inline-block;
	margin-right: 10px;
}
.column__note {
	width: fit-content;
	margin: 5px auto 0;
	color: var(--gray);
	font-size: 1.2rem;
}
/* long use */
.long-use {
	padding-bottom: 85px;
}
.long-use-flow {
	padding: 0;
}
.long-use-flow__container {
	margin-top: 30px;
}
.long-use-flow__item {
	position: relative;
	width: 100vw;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}
.long-use-flow__item + .long-use-flow__item {
	margin-top: 0;
}
.long-use-detail {
	overflow: hidden;
	background-color: var(--white);
	border: 1px solid var(--dark-gold);
	border-radius: 15px;
}
.long-use-detail__container {
	display: flex;
	align-items: center;
	background-color: var(--black);
	padding: 15px 20px;
	gap: 10px;
}
.long-use-detail__subtitle {
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.01em;
}
.long-use-detail__icon {
	width: 46px;
}
.long-use-detail__figure {
	padding: 20px 15px;
}
.long-use__limited-container {
	background-color: var(--white);
	border-radius: 15px;
  border: 1px solid var(--dark-gold);
	padding: 25px 20px 20px;
	margin-top: 110px;
	position: relative;
}
.limited-container__tag {
	width: 170px;
	position: absolute;
	top: -49px;
	left: 20px;
}
.limited__unit {
	margin-bottom: 35px;
}
.limited__unit:last-of-type {
	margin-bottom: 0px;
}
.limited__title {
	font-weight: bold;
	color: var(--dark-gold);
	border-bottom: 2px solid var(--dark-gold);
	margin-bottom: 13px;
	font-size: 1.6rem;
}
/* change */
.change.features__section {
	background-color: var(--bg-white);
}
.change__image {
	width: calc(100% + 12%);
	margin-left: -10%;
	margin-right: -10%;
}
.change__image img {
  width: 100%;
	max-width: 600px;
  margin: 0 auto;
  display: block;
}
.change__foot {
	background-color: var(--bg-base);
	padding: 24px 24px 45px;
}
.change .product__info {
	padding: 0px 0px 30px;
}
.change__foot .product__info .note.note--indent:nth-of-type(5) {
  margin-top: 10px;
}
/* lineup */
.lineup {
	padding-bottom: 50px;
	background-color: var(--bg-base);
}
.lineup__title{
	background-color:var(--white);
}
.lineup__title-letters {
	width: 174px;
	margin: 0 auto;
	padding-bottom: 50px;
	position: relative;
	background-color: var(--bg-white);
}
.lineup__title-letters::before {
	content: "";
	display: block;
	width: 1px;
	height: 40px;
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--black);
	z-index: 1;
}
#product-wrap{
	padding-bottom: 24px;
}
.thumbnail-list{
	display: flex;
	padding: 24px 6.666% 24px;
	background-color: #fff;
}
.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-right: 30px;
}
.product__icon--un {
	width: 31.5%;
	margin-right: 15px;
	margin-top:30px;
}
.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% 50px;
}
.product__name {
	font-size: 1.4rem;
	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-size: 1.4rem;
	font-weight: 700;
	padding: 6px 0;
}
.product__text {
	font-size: 1.2rem;
}
.product__info .note--indent {
	font-size: 1rem;
}
.product__info .note:nth-of-type(4) {
	margin-top: 10px;
}
.product-point {
	margin-bottom: 70px;
}
.product-point__image + .product-point__image {
	margin-top: 20px;
}
.campaign-info__container {
	position: relative;
	padding: 35px 15px;
	background-color: var(--secondary);
	text-align: center;
	margin-bottom: 50px;
}
.campaign-info__container::after {
	content: '';
	width: 28px;
	height: 36px;
	background-image: url(../img/campaign-info_deco.webp);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translateX( -50% );
}
.campaign-info__term {
	display: block;
	color:  var(--secondary);
	background-color:  var(--white);
	font-size: 1.7rem;
	font-weight: bold;
	padding: 10px 13px;
	border-radius: 10px;
}
.campaign-info__present {
	display: inline-block;
	color:  var(--white);
	font-size: 2.7rem;
	font-weight: bold;
	margin-top: 18px;
	border-bottom: 3px solid #fff;
	line-height: 1.2;
}
.campaign-info__container .term__emphasis {
	font-size: 2rem;
}
.campaign-info__container .present__emphasis {
	font-size: 3.6rem;
}
.campaign-info__container .present__downplay {
	font-size: 2rem;
}
.line-up__image--last {
  padding-top: 50px;
}
/* ------ fixed ----- */
.menu {
	display: none;
	position: fixed;
	width: 100%;
	max-width: 600px;
	bottom: 0;
	z-index: 99;
	background-color: #fff;
	overflow: hidden;
}
.menu__container {
	display: flex;
	justify-content: space-between;
}
.menu__button {
	width: calc((100% - 4px) / 2);
	background-color: #D87150;
}
.menu__button img {
	width: 170px;
	margin: 0 auto;
}
/* ------ Footer ----- */
.footer-wrap {
	padding-bottom: 50px;
}
/* is-active */
.is-active.footer-wrap {
	transform: translateX(230px);
}
@media screen and (max-width:360px) {
	.campaign-info__term {
		font-size: 1.5rem;
	}
	.campaign-info__container .term__emphasis {
		font-size: 1.6rem;
	}
}
@media screen and (min-width:500px) {
	.mv__text {
		font-size: 2.24rem;
	}
	.intro-product__image {
		margin-top: -43px;
	}
	.intro__text {
		padding-top: 160px;
	}
	.features__inner {
		margin-top: -50px;
	}
	.features__title-container {
		width: calc(100% + 25%);
		margin-right: -12.5%;
		margin-left: -12.5%;
		padding-top: 24px;
		height: 144px;
	}
		.features__title::before {
		width: 336px;
	}
	.features__title img {
		height: 78px;
	}
	.features__catch {
		font-size: 3.8rem;
	}
	.features__catch-small {
		font-size: 2.2rem;
	}
	.share__box {
		align-items: center;
	}
	.share__button {
		max-width: 285px;
	}
	.index__link {
		background-position: bottom 13px center;
		background-size: auto 18px;
		padding-top: 38px;
		padding-bottom: 45px;
	}
	.index__link img {
		height: 18px;
	}
	.flat-comfort__image01 img {
		width: 363px;
	}
	.flat-comfort__image01-caption {
		font-size: 2.6rem;
	}
		.flat-comfort__image01-caption sup {
		font-size: 1.6rem;
	}
	.flat-comfort__box-title {
		padding: 24px;
		font-size: 2.6rem;
	}
	.safety-list__num {
		width: 35px;
	}
	.safety-list__title {
		font-size: 3.2rem;
	}
	.safety-list__title-small {
		font-size: 1.9rem;
	}
	.safety-list__item:nth-of-type(4) .safety-list__image {
		width: calc(73px * 1.6);
	}
	.easy-carry-list__icon {
		width: 149px;
	}
	.easy-carry-list__title {
		font-size: 2.2rem;
	}
	.easy-carry-list__image01-02 {
		width: 474px;
		margin-top: -38px;
	}
	.easy-carry-box__image01 {
		width: 269px;
	}
	.easy-carry-box__image02 {
		width: 109px;
	}
	.easy-carry-box__head-title {
		position: relative;
		width: 110%;
		font-size: 2.6rem;
	}
	.easy-carry-box__head-text {
		font-size: 2.2rem;
	}
	.useful-list__image {
		margin-bottom: 16px;
	}
	.useful-list__head-icon {
		width: 54px;
	}
	.useful-list__head-title {
		font-size: 2.6rem;
	}
	.useful-list__head-title-small {
		font-size: 2.2rem;
	}
	.long-use-flow__item {
		width: calc(100% + 25%);
		margin-right: -12.5%;
		margin-left: -12.5%;
	}
	.long-use-detail__subtitle {
		font-size: 2.3rem;
		letter-spacing: 0.05em;
	}
	.long-use-detail__icon {
		width: 74px;
	}
	.change__image {
		width: calc(100% + 20%);
		margin-left: -10%;
		margin-right: -10%;
	}
	#product-wrap{
		padding-bottom: 40px;
	}
	.product__icon {
		padding-left: 6%;
	}
	.footer-wrap {
		padding-bottom: 131px;
	}
}