@charset "UTF-8";

:root {
	/* --black:   #141414; */
	--black:   #323232;
	--white:   #ffffff;

	--primary:  #8AC5DD;
	--accent   :#5A95AE;

	--safaty:   #DFD8BC;
	--usability:#BFD6DB;
	--smart	   :#BECEC8;
	--comfort  :#E9CCBC;
	--longuse  :#E9E8E8;
}

/* =============================================
Base Set
============================================= */
html {
	font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt" 1;
	font-size: 1.4rem;
	font-weight: normal;
	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;
}
main{
	overflow: hidden;
}


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

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


/* ----- margin-bottom ----- */
.mb-10 {
	margin-bottom: 10px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-40 {
	margin-bottom: 40px;
}


/* -------------------------------------
Common
------------------------------------- */
.inner {
	padding: 0 8%;
}
@media screen and (max-width:320px) {
	.inner {
		padding: 0 4%;
	}
}
.va-super {
	vertical-align: super;
	font-size: 1.0rem;
}
.note {
	font-size: 1.2rem;
	line-height: 1.25;
	margin-top: 12px;
}
.note.note--right {
	text-align: right;
}
.note--indent {
	text-indent: -1em;
	margin-left: 1em;
	display: inline-block;
}
.note--indent2 {
	margin-top: 0;
	text-indent: -1.75em;
	margin-left: 1.75em;
	display: inline-block;
}
.white-box {
	background-color: var(--white);
	border-radius: 20px;
	position: relative;
}
.white-box__point {
	position: absolute;
	top: -21px;
	left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
	/* transform: translateX(-50%); */
	width: 170px;
}
.white-box + .white-box {
	margin-top: 50px;
}
.white-box__catch {
	font-size: 1.8rem;
	padding: 10px 40px;
	text-align: center;
	font-weight: 700;
}
.catch--small {
	font-size: 1.3rem;
}
.white-box__name {
	color: var(--white);
	font-weight: 700;
	text-align: center;
	font-size: 1.8rem;
	padding: 2.25px 0;
	position: relative;
	z-index: 1;
	letter-spacing: 0.2rem;
}
.is-animated.white-box__name::before {
  animation: leftvisible 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	background-color: var(--black);
  transform-origin: left center;
	z-index: -1;
}
@keyframes leftvisible {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.is-animated.smart-box__title::before {
  animation: leftvisible-bluebelt 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	background-color: var(--accent);
  transform-origin: left center;
	z-index: -1;
}
@keyframes leftvisible-bluebelt {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.white-box__inner {
	padding: 20px 30px 30px;
}
.white-box__text {
	margin-bottom: 20px;
}
.white-box__image.image--wide {
	width: calc(100% + 60px);
	margin: 0 -30px;
}
.white-box .note {
	margin-top: 5px;
}
.white-box__note {
	font-size: 1.2rem;
	line-height: 1.25;
	display: block;
	margin-top: 5px;
}
@media screen and (min-width:500px) {
	.white-box__name {
		font-size: 2rem;
	}
	.white-box__image.image--wide {
		width: calc(100% + 120px);
		margin: 0 -60px;
	}
	.white-box__point {
		position: absolute;
		top: -29px;
		width: 210px;
	}
}
@media screen and (max-width:360px) {
	.white-box__catch {
		padding: 10px 30px;
	}
	.white-box__inner {
		padding: 20px 30px;
	}
}

/* ---Animate.css--- */
.invisible {
	visibility: hidden;
}
.animate__animated.animate__delay-05s {
  -webkit-animation-delay:0.5s;
  animation-delay:0.5s;
  -webkit-animation-delay:calc(var(--animate-delay)*0.5);
  animation-delay:calc(var(--animate-delay)*0.5)
}
.animate__animated.animate__fadeInLeft {
	animation-name: animate__fadeInLeft;
	animation-duration: .8s;
	animation-timing-function: ease-out;
}
@keyframes animate__fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-10%, 0, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.animate__animated.animate__fadeInUp {
	animation-name: animate__fadeInUp;
	animation-duration: 1.5s;
}
@keyframes animate__fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 60px, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.animate__fadeInUpShort {
	animation-name:fadeInUpShort;
	animation-duration: 1s;
}
@keyframes fadeInUpShort {
  0% {
  opacity:0;
  transform:translate3d(0,10px,0)
  }
  to {
  opacity:1;
  transform:translateZ(0)
  }
}


/* ---btn--- */
.btn {
	display: block;
	width: 255px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.btn + .btn {
	margin-top: 20px;
}
.btn::before {
	content: "";
	display: block;
	width: 79px;
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../img/btn_search.png);
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 1;
}
.btn-buy.btn::before {
	background-image: url(../img/btn_buy.png);
}
.btn-free.btn::before {
	background-image: url(../img/btn_free.png);
	width: 90px;
}
.btn__round {
	display: block;
	border-radius: 10px;
	background-color: #fff;
	border: 1px solid var(--black);
	padding: 4px 0 4px 35%;
	font-size: 1.6rem;
	line-height: 1.25;
	font-weight: bold;
	position: relative;
}
.btn-free .btn__round {
	padding-left: 40%;
}
@media screen and (min-width:500px) {
	.btn {
		width: 320px;
		margin: 0 auto 20px;
	}
	.btn + .btn {
		margin-top: 24px;
	}
	.btn::before {
		width: 91px;
		height: 58px;
	}
	.btn-free.btn::before {
		width: 105px;
	}
	.btn__round {
		padding: 8px 0 8px 35%;
	}
}


/* header */
.pg-header {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	background-color: #fff;
}


/* mv・intro */
.mv__footer {
	padding: 8px 0;
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
	color: #fff;
	background: var(--black);
	letter-spacing: 0.2rem;
}
@media screen and (min-width:500px) {
	.mv__footer {
		font-size: 1.8rem;
	}
}

.intro {
	background: #fff url(../img/introduction_bg_top.webp) no-repeat top center / 100% auto;
	padding: 30px 0 0;
}
.intro-about {
	position: relative;
	padding-top: 100px;
}
.intro-head__title {
	position: absolute;
	top: -24px;
	left: 0;
}
.intro-product__image {
	position: relative;
	margin: 0 auto;
}
.intro-product__image--top {
	position: absolute;
	width: 50%;
	top: 0;
	left: 54%;
	transform: translateX(-50%);
	animation: fuwafuwa 2.3s ease-in-out infinite;
}
@keyframes fuwafuwa {
	0% {
		top: -15px;
	}
	50% {
		top: 10px;
	}
	100% {
		top: -15px;
	}
}

.intro-about {
	background: #F1F5F7;
	border-radius: 40px 40px 0 0;
	margin-top: 60px;
}
.intro-body__title {
	font-weight: bold;
	border-bottom: solid 1px #000;
	padding-bottom: 8px;
}
.intro-body__text {
	max-width: 255px;
	line-height: 1.75;
	margin: 20px 0 36px;
}
.intro__feature-title {
	text-align: center;
	font-size: 1.7rem;
	font-weight: bold;
}
.intro .intro-body__image {
	margin-bottom: 21px;
}
.intro .intro-body__image.mb-0 {
	margin-bottom: 0px;
}
.intro .feature-title__unit {
	position: relative;
}
.feature-title--belt {
	color: #fff;
  width: 100vw;
	font-size: 3rem;
	background-color: var(--accent);
	display: block;
	padding: 6px 0;
	margin: 8px 0 16px calc(50% - 50vw);
}
.intro__footer {
	color: #fff;
	background-color: var(--accent);
	padding: 32px 0 36px;
}
.intro-footer__title {
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.75;
}
.intro__footer .title--emphasis {
	font-size: 1.8rem;
	display: block;
	margin: 8px 0 20px;
}
.intro .white-box__name {
	margin-bottom: 21px;
}
.catch--patent {
	position: absolute;
	width: 50px;
	top: -8px;
	right: 15px;
	z-index: 1;
}
@media screen and (min-width:500px) {
	.intro-about {
		padding-top: 180px;
	}
	.intro-body__text {
		max-width: 340px;
	}
	.intro-footer__title {
		font-size: 1.5rem;
	}
	.intro__footer .title--emphasis {
		font-size: 2rem;
	}
}


/* index */
.index {
	padding: 45px 0 35px;
	position: relative;
}
.index::before,
.index::after {
	content: "";
	display: block;
	width: 1px;
	background-color: #000;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.index::before {
	top: 0;
	height: 40px;
}
.index::after {
	bottom: 0;
	height: 35px;
}
.index__title {
	width: 62px;
	margin: 0 auto 20px;
}
.index-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.index-list__link {
	width: 49.25%;
	padding: 19px 20px;
	border-radius: 5px;
	margin-bottom: 5px;
}
.index-list__text {
	text-align: center;
	font-size: 1.2rem;
	font-weight: 700;
	margin-top: 5px;
}
.index-list__link:first-of-type {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--safaty);
}
.index-list__main {
	width: 48%;
}
.index-list__sub {
	width: 48%;
	text-align: center;
	border: 1px solid var(--white);
	border-radius: 30px;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 5px 0;
}
.index-list__sub .va-super {
	font-size: 0.8rem;
}
.index-list__link:nth-of-type(2) {
	background-color: var(--usability);
}
.index-list__link:nth-of-type(3) {
	background-color: var(--smart);
}
.index-list__link:nth-of-type(4) {
	background-color: var(--comfort);
}
.index-list__link:nth-of-type(5) {
	background-color: var(--longuse);
}
@media screen and (min-width:500px) {
	.index-list__link {
		padding: 15px 40px;
	}
	.index-list__text {
		font-size: 1.4rem;
	}
	.index-list__sub {
		font-size: 1.4rem;
	}
}
@media screen and (max-width:360px) {
	.index-list__link {
		padding: 15px;
	}
}


/* ----- features ----- */
/* features-common */
.features__title-unit {
	position: relative;
}
.features__catch--title {
	position: absolute;
	top: 50px;
	left: 0;
	z-index: 2;
}
.features__title {
	position: relative;
	z-index: 1;
}
.features__image {
		margin-top: -45px;
}
.features__inner {
	padding-top: 60px;
	padding-bottom: 50px;
}
.features .white-box {
	padding-top: 30px;
}
.features__new {
	width: 67px;
	margin: 0 auto 20px;
}
@media screen and (min-width:500px) {
	.white-box__inner {
		padding-left: 60px;
		padding-right: 60px;
	}
}

.features-list {
	margin-top: 25px;
}
.features-list__item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.features-list__item .image--top {
	align-self: flex-start;
}
.features-list__item + .features-list__item {
	margin-top: 30px;
}
.features-list__number {
	width: 106px;
	height: 32px;
	position: absolute;
	top: -15px;
	left: calc( -13% - 40px);
}
.features-list__icon {
	width: 80px;
	height: 95px;
	position: absolute;
	top: -20px;
	left: -40px;
}
.features-list__image {
	width: 50%;
	border-radius: 10px;
	overflow: hidden;
}
.features-list__text {
	width: 43%;
}
.features-list__note {
	font-size: 1.2rem;
  line-height: 1.25;
}
@media screen and (min-width:500px) {
	.features-list__number {
		left: -60px;
	}
}


/* safety */
#safety {
	background-color: var(--safaty);
	padding-bottom: 50px;
}
.safety__item {
	position: relative;
}
.safety__item + .safety__item {
	margin-top: 50px;
}
.safety__number {
	width: 95px;
	position: absolute;
	top: -20px;
	left: -10%;
	z-index: 2;
}
.safety-feature__title {
	font-size: 1.3rem;
	text-align: center;
	letter-spacing: 0.1rem;
}
.safety-feature__title .title--emphasis {
	font-size: 1.8rem;
	font-weight: bold;
}
.safety__image-sub img {
	width: 100px;
	position: absolute;
	border-radius: 0 0 20px 0;
	bottom: -35px;
	right: 5px;
}
.safety__item:nth-of-type(3) .white-box__inner {
	padding-bottom: 0;
}
.safety__item:nth-of-type(2) .white-box__image,
.safety__item:nth-of-type(3) .white-box__image {
	position: relative;
}
.safety__item:nth-of-type(2) .white-box__image--on,
.safety__item:nth-of-type(3) .white-box__image--on {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}
.safety__item:nth-of-type(4) .safety__image-sub img {
	width: 115px;
}
.safety__item:nth-of-type(4) .white-box__note {
	margin-top: 15px;
}
.blinking-fade {
  animation: fadeBlink 2s ease-in-out infinite;
}
@keyframes fadeBlink {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
.blinking {
	animation: blinking 1.5s linear 0s infinite normal;
}
@keyframes blinking {
	0% {
		opacity: 0;
	}
	49% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
}
@media screen and (min-width:500px) {
	.safety-feature__title {
		font-size: 1.6rem;
	}
	.safety-feature__title .title--emphasis {
		font-size: 2rem;
	}
	.safety__image-sub img {
		width: 150px;
	}
	.safety__item:nth-of-type(4) .safety__image-sub img {
		width: 135px;
	}
}

.safety-rules {
	position: relative;
	border-top: 2px solid var(--black);
	border-bottom: 2px solid var(--black);
	padding: 20px;
}
.safety-rules__mark {
	position: absolute;
	width: 98px;
	top: -27px;
	right: 0;
}
.safety-rules__title {
	font-size: 1.9rem;
	font-weight: 700;
}
.safety-rules__text {
	margin-top: 18px;
}
.safety-rules .note {
	margin-top: 5px;
}


/* usability */
#usability {
	background-color: var(--usability);
}
#usability .features-list__text .text--catch {
	display: block;
	width: 85px;
	margin-bottom: 5px;
}
#usability .white-box__image.image--wide.mb-20 {
  margin-bottom: 20px;
}
#usability .white-box__image.image--wide.mb-40 {
  margin-bottom: 40px;
}
#usability .features-list__note {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-top: 5px;
}


/* share-area */
.share-area {
	background-color: #E6160B;
	padding-bottom: 35px;
}
.center-txt {
	text-align: center;
}
.share-area .center-txt {
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 10px 10px 20px;
}
.share-area.lineup-share {
	background: #fff;
	padding-top: 20px;
}
.share-area.lineup-share .center-txt {
	color: var(--black);
}
@media screen and (min-width:500px) {
	.share-area{
		padding-bottom: 40px;
	}
	.share-area .center-txt {
		font-size: 2.0rem;
		line-height: 1.75;
		padding-bottom: 30px;
	}
	.share-area.lineup-share {
		padding-bottom: 20px;
	}
}


/* smart */
#smart {
	background-color: var(--smart);
}
#smart .white-box:last-of-type {
	overflow: hidden;
}
#smart .features-list__text .text--catch {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 5px;
}
#smart .features-list__text .text--catch.catch--first {
	font-size: 1.4rem;
}
#smart .features-list__text .text--catch.catch--second {
	font-size: 1.8rem;
}
.smart-list {
	margin-top: 40px;
}
.smart-list__item + .smart-list__item {
	margin-top: 36px;
}
.smart-list__number {
	margin-left: calc(-13% - 40px);
	width: 215px;
}
.smart-list__text {
	font-size: 1.7rem;
	font-weight: 700;
	margin-bottom: 15px;
}
.smart-list__image.image--wide {
	width: calc(100% + 80px);
	margin: 0 -40px;
}
.smart-list__image.image--wide.mb-20 {
	margin-bottom: 20px;
}
.smart-box__title {
	font-size: 1.8rem;
	width: calc(100% + 60px);
	margin-left: -30px;
	margin-bottom: 15px;
	position: relative;
	padding: 5px 0 5px 30px;
	color: #fff;
	letter-spacing: 0.2rem;
	z-index: 1
}
#smart .white-box.new {
	overflow: hidden;
}
#smart .new .white-box__inner {
	padding-bottom: 0;
}
#smart .white-box__image.image--wide.mb-10 {
	margin-bottom: 10px;
}
@media screen and (min-width:500px) {
	#smart .features-list__text .text--catch.catch--first {
		font-size: 1.6rem;
	}
	.smart-list__number {
		margin-left: -60px;
	}
	.smart-box__title {
		width: calc(100% + 120px);
		margin-left: -60px;
		padding: 5px 0 5px 60px;
	}
	.smart-box__title {
		font-size: 2rem;
	}
}


/* comfort */
#comfort {
	background-color: var(--comfort);
}
#comfort .features__catch--title {
	top: 35px;
}
#comfort .white-box:not(:first-of-type):not(:nth-of-type(2)) .white-box__inner {
	padding-bottom: 0;
}
#comfort .features-list {
	margin-top: 25px;
  margin-left: -30px;
	background: #F1F5F7;
	position: relative;
	width: calc(100% + 60px);
  padding: 0 30px;
}
#comfort .white-box__image.image--wide.mb-40 {
	margin-bottom: 40px;
}
#comfort .features-list__item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	padding: 30px 0 20px;
}
#comfort .features-list__text .text--catch {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 5px;
	display: inline-block;
}
#comfort .features-list__note {
    font-size: 1.2rem;
    line-height: 1.25;
		margin-top: 5px;
}
.comfort__item .white-box__image {
	position: relative;
}
.comfort__item .white-box__image--on {
	width: 100%;
	position: absolute;
	bottom: 0px;
	left: 0;
}
@media screen and (min-width:500px) {
	#comfort .features__catch--title {
	top: 70px;
}
	#comfort .features-list {
		margin-left: -60px;
		width: calc(100% + 120px);
		padding: 0 60px;
	}
	#comfort .features-list__text .text--catch {
		font-size: 1.6rem;
	}
}


/* longuse */
#longuse {
	background-color: var(--longuse);
}
.longuse__item {
	position: relative;
}
.longuse__item + .longuse__item {
	margin-top: 50px;
}
#longuse .note {
	display: block;
}
#longuse .note + .note {
	margin-top: 15px;
}
.longuse__icon {
	width: 70px;
	position: absolute;
	top: -20px;
	left: -20px;
	z-index: 2;
}
.longuse__item:nth-of-type(2) .white-box__inner {
	padding-bottom: 0;
}
.longuse__item:nth-of-type(2) .white-box__image {
	position: relative;
}
.longuse__item:nth-of-type(2) .white-box__image--on {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}
@media screen and (min-width:500px) {
	.longuse__icon {
		width: 100px;
	}
}

.wash__title {
	border-bottom: 1px solid var(--black);
	padding-bottom: 5px;
	margin-bottom: 5px;
}
.wash__title,
.wash__text {
	font-size: 1.5rem;
	font-weight: 700;
}
.wash__image {
	margin-top: 10px;
}


/* ----- lineup ----- */
.lineup-head {
	background-color: var(--primary);
	padding: 75px 0 40px;
}
.lineup__title {
	width: 100%;
	margin: 0 auto;
}
.lineup .image--wide {
	width: calc(100% + 60px);
	margin: 0 -30px;
}
.thumbnail-list {
	width: 265px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.thumbnail-item {
	width: 28%;
  padding: 26px 0;
  text-align: center;
  font-size: 1.7rem;
}
.thumbnail-item.item-black {
	color: #343332;
}
.thumbnail-item.item-navy {
	color: #002353;
}
.thumbnail-item.item-greige {
	color: #8f918e;
}
.thumbnail-item.thumbnail-current {
	color: var(--white);
}
.thumbnail-item.item-black .img-def, .thumbnail-item.item-navy .img-def, .thumbnail-item.item-greige .img-def {
	display: block;
}
.thumbnail-item.item-black .img-ov, .thumbnail-item.item-navy .img-ov, .thumbnail-item.item-greige .img-ov {
	display: none;
}
.thumbnail-item.thumbnail-current.item-black .img-def, .thumbnail-item.thumbnail-current.item-navy .img-def, .thumbnail-item.thumbnail-current.item-greige .img-def {
	display: none;
}
.thumbnail-item.thumbnail-current.item-black .img-ov, .thumbnail-item.thumbnail-current.item-navy .img-ov, .thumbnail-item.thumbnail-current.item-greige .img-ov {
	display: block;
}
.lineup-body {
	background-color: var(--white);
	padding-top: 20px;
}
.slide-item__info {
	background-color: var(--white);
	border-radius: 20px;
	padding: 70px 30px 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: -60px;
}
.product-strong {
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
}
.product-info .note {
	margin-top: 0;
}
.product-info .note:nth-of-type(3) {
	border-bottom: 1px solid var(--black);
	padding-bottom: 6px;
	margin-bottom: 6px;
	margin-top: 10px;
}
.product-info .note:nth-of-type(7) {
	margin-top: 10px;
}
.note-icon {
	width: 30px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.slide-item__title {
	font-size: 3.0rem;
	font-weight: 700;
}
.slide-item__color {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 5px;
}
.slide-item__sub {
	width: 75px;
}
@media screen and (min-width:500px) {
	.thumbnail-list {
		width: 365px;
	}
	.slide-item__info {
		padding: 70px 60px 12px;
	}
}

.information--campaign {
	color: var(--white);
	width: 50%;
	background-color: #E84709;
	border-radius: 10px;
	padding: 6px;
	margin-top: 15px;
	line-height: 1.25;
	font-weight: 500;
	position: relative;
	text-align: center;
}
.campaign__data {
	display: block;
	color:  #E84709;
	font-weight: 700;
	background-color: var(--white);
	padding: 4px 8px;
	margin-bottom: -16px;
	border-radius: 5px;
}
.campaign--large {
	font-size: 2.2rem;
}
.campaign--middle {
	font-size: 1.6rem;
}
.information--campaign::after {
	content: '';
	display: block;
	width: 13px;
	height: 14px;
	background-image: url(../img/lineup_img_deco-triangle.webp);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
  bottom: 40px;
  right: -12px;
}
.lineup-body {
	position: relative;
	padding-bottom: 35px;
}
.lineup-body::before {
	content: "";
	display: block;
	width: 140px;
	height: 180px;
	position: absolute;
	bottom: -12px;
	right: 6%;
	background: url(../img/option_img.webp) no-repeat top center / contain;
}
.lineup-option {
	padding: 23px 0 50px;
}
.lineup-option__cont {
	border: 2px solid var(--primary);
	border-radius: 20px;
	padding: 40px 0 30px;
	position: relative;
}
.lineup-option__title {
	width: 155px;
	position: absolute;
	top: -25px;
	left: -11%;
}
.lineup_option__item + .lineup_option__item {
	margin-top: 30px;
}
.lineup_option__catch {
	background-color: #E1E8E8;
	font-size: 1.5rem;
	font-weight: 700;
	padding: 10px 30px;
	margin-bottom: 15px;
}
.lineup_option__detail {
	padding: 0 30px;
}
.lineup_option__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 5px;
}
.lineup_option__text {
	font-size: 1.3rem;
	font-weight: 700;
}
@media screen and (min-width:500px) {
	.lineup-body::before {
		width: 190px;
		height: 220px;
	}
}

/* --- reparation ---*/
.reparation {
	padding: 0 13% 50px;
}
.reparation__catch {
	color: #9D8254;
	text-align: center;
	font-size: 18px;
	margin-bottom: 20pX;
	position: relative;
}
.reparation__catch::before,
.reparation__catch::after {
	content: '';
	display: block;
	width: 1px;
	height: 70px;
	position: absolute;
	background-color: #9D8254;
}
.reparation__catch::before {
	top: 5px;
	left: 15px;
	transform: rotate(-20deg);
}
.reparation__catch::after {
	top: 5px;
	right: 15px;
	transform: rotate(20deg);
}
.reparation__catch .dashed {
	font-size: 30px;
	font-weight: bold;
}
@media screen and (min-width:500px) {
	.reparation__catch::before {
		left: 80px;
	}
	.reparation__catch::after {
		right: 80px;
	}
}


/* ------ fixed ----- */
#sp-fixed-menu {
	display: none;
	position: fixed;
	width: 100%;
	max-width: 600px;
	bottom: 0;
	z-index: 99;
	background-color: #fff;
}
.footer-btn-area {
	display: flex;
	justify-content: space-between;
	border-top: 4px solid #fff ;
}
.footer-btn-items {
	width: calc((100% - 4px) / 2);
	background-color: #cc6246;
}
.footer-btn-items img {
	width: 170px;
	margin: 0 auto;
}


/* ------ Footer ----- */
@media screen and (min-width:600px) {
	.footer-wrap {
		padding-bottom: 50px;
	}
}