@charset "UTF-8";
/*reset----------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,*::before,*::after{box-sizing:border-box}*{margin:0}html,body{height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}

/*custom*/
a {
	text-decoration: none;
}

/*common------------------------------------------------------------------*/
html, body {
  color: #1e110f;
  background-color: #f4f4f4;
  font-size: 100%;
  line-height: 1.6;
  letter-spacing: .1em;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  scroll-behavior: smooth;
}
#container {
	position: relative;
	font-size: 1.125rem;
	overflow: hidden;
}
img {
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
a {
  color: #1e110f;
}
a:hover {
  opacity: .9;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.sec-inner {
	max-width: 1000px;
	margin: auto;
}
ul.caution {
	color: #fff;
	font-size: 1rem;
}
ul.caution li {
	position: relative;
	padding: 0 0 0 20px;
	font-weight: 500;
}
ul.caution li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "※";
	display: block;
}
@media screen and (max-width: 820px) {
.pc {
  display: none;
}
.sp {
  display: block;
}
img {
	width: 100%;
	height: auto;
}
#container {
	font-size: 1rem;
}
.sec-inner {
	padding: 0 20px;
}
h2 {
	font-size: 1.4rem;
}
}



/*scrollAnim------------------------------------------------------------------*/
.mark {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.scrollAnim {
	-webkit-backface-visibility:hidden;
    backface-visibility:hidden;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	will-change: animation, transform, opacity;
}

/*common_fadeinOnly*/
.fadein {
	opacity: 0;
	z-index: 1;
	-webkit-backface-visibility:hidden;
    backface-visibility:hidden;
	transform: translateY(50%);
}
.fadein.scrollAnim {
	-webkit-animation-name: fadein;
	animation-name: fadein;
}
@-webkit-keyframes fadein {
    0% { opacity: 0; transform: translateY(30%); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadein {
    0% { opacity: 0; transform: translateY(30%); }
    100% { opacity: 1; transform: translateY(0); }
}

/*common_zoominOnly*/
.zoomin {
	opacity: 0;
	z-index: 1;
	-webkit-backface-visibility:hidden;
    backface-visibility:hidden;
	transform: scale(2);
}
.zoomin.scrollAnim {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-name: zoomin;
	animation-name: zoomin;
}
@-webkit-keyframes zoomin {
    0% { opacity: 0; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes zoomin {
    0% { opacity: 0; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}








/*header ------------------------------------------------------------------*/
header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
}
header h1 {
	position: absolute;
	left: 0;
	top: 0;
}
header h1 img {
	width: 9vw;
	height: auto;
}
header ul {
	display: flex;
	gap: 0 10px;
	margin: 15px;
	justify-content: flex-end;
}
header ul li {
	display: flex;
	align-items: stretch;
}
header ul li a {
	display: inline-flex;
	align-items: center;
	background: #fff;
	color: #1e110f;
	padding: 3px 20px;
	border: 3px solid #1e110f;
	border-radius: 100px;
	font-weight: 900;
	letter-spacing: 0;
}
header ul li.chat a {
	position: relative;
	padding: 0 20px 3px 30px;
}
header ul li.chat a span {
	font-size: 1.375rem;
}
header ul li.chat a::before,
header ul li.chat a::after {
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 100px;
	background-color: #79cd41;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%) scale(1);
}
header ul li.chat a::after {
	animation: lamp 1s infinite linear;
}

@keyframes lamp {
  0% {
	opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  100% {
	opacity: 0;
    transform: translateY(-50%) scale(2.5);
  }
}



@media screen and (max-width: 820px) {
header h1 img {
	width: 9vw;
	height: auto;
}
header h1 img {
	width: 17vw;
	height: auto;
}
header ul {
	margin: 5px;
    gap: 0 3px;
    width: calc(100% - 18vw);
    margin-left: auto;
}
header ul li a {
	border-radius: 10px;
	padding: 3px 10px;
	font-size: .8rem;
	letter-spacing: -.8px;
	border: 2px solid #1e110f;
}
header ul li.chat a {
	padding: 0 10px 3px 20px;
}
header ul li.chat a span {
	font-size: .9rem;
}
header ul li.chat a::before,
header ul li.chat a::after {
	display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background-color: #79cd41;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%) scale(1);
}
}



/*FV------------------------------------------------------------------*/
#FV {
	position: relative;
	background: url("../img/top_acce.svg") , linear-gradient(-3deg, #79cd41 0%, #79cd41 50%, #fff000 50%, #fff000 100%);
	background-size: auto 120px, auto;
	background-repeat: repeat-x, no-repeat;
	background-position: left bottom,center;
	height: 100vh;
	animation: fv-bg 30s infinite linear forwards;
}
@keyframes fv-bg {
  0% {
    background-position: left bottom, center;
  }
  100% {
    background-position: -2319.3632px bottom, center;
  }
}
@keyframes fv-bg-sp {
  0% {
    background-position: left bottom, center;
  }
  100% {
    background-position: -1159.6816px bottom, center;
  }
}



#FV .attention {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100vw;
	height: 100vh;
	z-index: 0;
	animation: .3s attention 4s cubic-bezier(.67,.01,.9,1) forwards;
}
@keyframes attention {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


#FV .cut {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100vw;
	height: 100vh;
	z-index: 1;
}
#FV .cut.cafe {
	z-index: 2;
}
#FV .cut.fitness {
	opacity: 0;
	z-index: 3;
	animation: .3s cut 1.8s cubic-bezier(.67,.01,.9,1) forwards;
}
@keyframes cut {
  0% {
	transform: translate(-50%,-50%) scale(1.5);
    opacity: 0;
  }
  100% {
	transform: translate(-50%,-50%) scale(1);
    opacity: 1;
  }
}

#FV .cut.cafe > p,
#FV .cut.fitness > p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
#FV .cut.fitness > p {
	opacity: 0;
	top: 48%;
	animation: .3s cut-copy 2.2s cubic-bezier(.67,.01,.9,1) forwards;
}
@keyframes cut-copy {
  0% {
	  transform: translate(-50%,-50%) scale(3);
  }

  100% {
	transform: translate(-50%,-50%) scale(1);
	opacity: 1;
  }
}

#FV .cut.cafe.fadeout  {
	animation: .3s cafe-copy 1.8s cubic-bezier(.67,.01,.9,1) forwards;
}
@keyframes cafe-copy {
  0% {
	  opacity: 1;
  }

  100% {
	opacity: 0;
  }
}

#FV .cut.cafe > p img {
	width: 50vw;
	height: auto;
}
#FV .cut.fitness > p img {
	width: 60vw;
	height: auto;
}


#FV .cut .img-box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100vw - 80px);
	height: calc(100vh - 160px);
	transform: translate(-50%,-50%);
	border-radius: 40px;
	border: solid 7px #1e110f;
	display: flex;
	overflow: hidden;
	background-color: #aaa;
}
#FV .cut .img-box .col {
	flex-basis: 50%;
	display: flex;
	flex-direction: column;
}
#FV .cut .img-box .col.left {
	border-right: solid 6px #1e110f;
}
#FV .cut .img-box .col.right .top {
	height: 50%;
	border-bottom: solid 6px #1e110f;
}
#FV .cut .img-box .col.right .bottom {
	height: 50%;
}

#FV .cut.cafe .img-box .col.left {
	background: url("../img/attention_img_cafe1.jpg") repeat;
	background-position:  calc(50% - 20px) center;
	background-size: cover;
	animation: 5s attention-img-torigtht 0s linear forwards;
}
#FV .cut.cafe .img-box .col.right .top {
	background: url("../img/attention_img_cafe2.jpg") repeat;
	background-position:  calc(50%) calc(50% + 20px);
	background-size: cover;
	animation: 5s attention-img-down 0s linear forwards;
}
#FV .cut.cafe .img-box .col.right .bottom {
	background: url("../img/attention_img_cafe3.jpg") repeat;
	background-position:  calc(50% + 20px) center;
	background-size: cover;
	animation: 5s attention-img-toleft 0s linear forwards;
}
#FV .cut.fitness .img-box .col.left {
	background: url("../img/attention_img_fitness1.jpg") repeat;
	background-position:  calc(50% - 20px) center;
	background-size: cover;
	animation: 5s attention-img-torigtht 0s linear forwards;
}
#FV .cut.fitness .img-box .col.right .top {
	background: url("../img/attention_img_fitness2.jpg") repeat;
	background-position:  calc(50%) calc(50% + 20px);
	background-size: cover;
	animation: 5s attention-img-down 0s linear forwards;
}
#FV .cut.fitness .img-box .col.right .bottom {
	background: url("../img/attention_img_fitness3.jpg") repeat;
	background-position:  calc(50% + 20px) center;
	background-size: cover;
	animation: 5s attention-img-toleft 0s linear forwards;
}


@keyframes attention-img-torigtht {
  0% {
    background-position:  calc(50% - 20px) center;
  }
  100% {
    background-position:  calc(50% + 20px) center;
  }
}
@keyframes attention-img-down {
  0% {
    background-position:  calc(50%) calc(50% + 20px);
  }
  100% {
    background-position:  calc(50%) calc(50% + 60px);
  }
}
@keyframes attention-img-toleft {
  0% {
    background-position:  calc(50% + 20px) center;
  }
  100% {
    background-position:  calc(50% - 20px) center;
  }
}




#FV .cut.fix {
	z-index: 0;
}
#FV .cut.fix .maincopy {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%,0);
	width: 100%;
	z-index: 1;
	animation: maincopy .5s cubic-bezier(.45,0,.14,.99) 4.6s forwards;
	opacity: 0;
}
@keyframes maincopy {
  0% {
	  transform: translate(-50%,0);
  }

  100% {
	  transform: translate(-50%,-50%);
	opacity: 1;
  }
}

#FV .cut.fix .fv-img-box {
	display: flex;
	flex-wrap: wrap;
	gap: calc(10%) 18px;
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100vw - 36px);
	height: calc(100vh - 36px);
	transform: translate(-50%,-50%);
}
#FV .cut.fix .fv-img-box .col {
	position: relative;
	flex-basis: calc(calc(100% - 36px) / 3);
}
#FV .cut.fix .fv-img-box .col .img {
	position: absolute;
	left: 0;
	width: 0;
	height: 100%;
	border-radius: 40px;
	border: solid 0px #1e110f;
	background-color: #aaa;
	animation: fv-img 1s cubic-bezier(.45,0,.14,.99) 3.8s forwards;
}
@keyframes fv-img {
  0% {
	  width: 0%;
	  transform: translateY(30%);
  }

  100% {
	  width: 100%;
	  border: solid 2px #1e110f;
	  transform: translateY(0);
  }
}

#FV .cut.fix .fv-img-box .col.cafe1 .img {
	background:url("../img/fv_img_cafe1.jpg") left center no-repeat;
	background-size: cover;
	height: 85%;
}
#FV .cut.fix .fv-img-box .col.cafe2 .img {
	background:url("../img/fv_img_cafe2.jpg") left center no-repeat;
	background-size: cover;
	height: 65%;
	top: 15%;
}
#FV .cut.fix .fv-img-box .col.cafe3 .img {
	background:url("../img/fv_img_cafe3.jpg") left center no-repeat;
	background-size: cover;
	height: 73%;
	top: 4%;
}
#FV .cut.fix .fv-img-box .col.fitness1 .img {
	background:url("../img/fv_img_fitness1.jpg") left center no-repeat;
	background-size: cover;
	height: 82%;
	top: 11%;
	animation-duration: .8s;
	animation-delay: 4.2s;
}
#FV .cut.fix .fv-img-box .col.fitness2 .img {
	background:url("../img/fv_img_fitness2.jpg") left center no-repeat;
	background-size: cover;
	height: 75%;
	top: 13%;
	animation-duration: .8s;
	animation-delay: 4.2s;
}
#FV .cut.fix .fv-img-box .col.fitness3 .img {
	background:url("../img/fv_img_fitness3.jpg") left center no-repeat;
	background-size: cover;
	height: 90%;
	top: 3%;
	animation-duration: .8s;
	animation-delay: 4.2s;
}



#FV .cut.fix .campaign-badge {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 200px;
	height: 200px;
	opacity: 0;
	animation: .5s badge 4.8s linear forwards;
	transition: .1s all ease-in-out;
	z-index: 1;
}
@keyframes badge {
  0% {
	  opacity: 0;
  }

  100% {
	  opacity: 1;
  }
}
#FV .cut.fix .campaign-badge::after {
	display: block;
	content: "";
	width: 110%;
	height: 110%;
	background: url("../img/badge_acce.svg") center center no-repeat;
	background-size: cover;
	animation: 10s badge-acce infinite linear;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
@keyframes badge-acce {
  0% {
	  transform: translate(-50%,-50%) rotate(0);
  }

  100% {
	  transform: translate(-50%,-50%) rotate(360deg);
  }
}

#FV .cut.fix .campaign-badge:hover {
	transform: translateY(-10%);
}


@media screen and (max-width: 820px) {
#FV {
	position: relative;
	background: url("../img/top_acce.svg") , linear-gradient(-3deg, #79cd41 0%, #79cd41 50%, #fff000 50%, #fff000 100%);
	background-size: auto 60px, auto;
	background-repeat: repeat-x, no-repeat;
	background-position: left bottom,center;
	height: 100vh;
	animation: fv-bg-sp 30s infinite linear forwards;
}
	
	

#FV .cut.cafe > p,
#FV .cut.fitness > p {
	width: 100%;
}
#FV .cut.cafe > p img {
	width: 100vw;
	height: auto;
}
#FV .cut.fitness > p img {
	width: 100vw;
	height: auto;
}
	
#FV .cut .img-box {
	position: absolute;
	top: 52%;
	left: 50%;
	width: calc(100vw - 40px);
	height: calc(100vh - 100px);
	transform: translate(-50%,-50%);
	border-radius: 40px;
	border: solid 4px #1e110f;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
#FV .cut .img-box .col {
	flex-basis: 50%;
}
#FV .cut .img-box .col.left {
	border-right: none;
	border-bottom: solid 3px #1e110f;
}
#FV .cut .img-box .col.right .top,
#FV .cut .img-box .col.right .bottom {
	display: none;
}

#FV .cut.cafe .img-box .col.left {
	background: url("../img/sp/attention_img_cafe3.jpg") repeat;
	background-position:  calc(50% - 20px) center;
	background-size: cover;
	animation: 5s attention-img-torigtht 0s linear forwards;
}
#FV .cut.cafe .img-box .col.right {
	background: url("../img/sp/attention_img_cafe2.jpg") repeat;
	background-position:  calc(50% + 20px) center;
	background-size: cover;
	animation: 5s attention-img-toleft 0s linear forwards;
}

#FV .cut.fitness .img-box .col.left {
	background: url("../img/sp/attention_img_fitness1.jpg") repeat;
	background-position:  calc(50% - 20px) center;
	background-size: cover;
	animation: 5s attention-img-torigtht 0s linear forwards;
}
#FV .cut.fitness .img-box .col.right {
	background: url("../img/sp/attention_img_fitness2.jpg") repeat;
	background-position:  calc(50% + 20px) center;
	background-size: cover;
	animation: 5s attention-img-toleft 0s linear forwards;
}


	
#FV .cut.fix {
	z-index: 0;
}
#FV .cut.fix .maincopy {
	top: 45%;
	left: 50%;
}
	

#FV .cut.fix .fv-img-box {
	display: flex;
	flex-wrap: wrap;
	gap: calc(8% + 20px) 9px;
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100vw - 20px);
	height: calc(100vh - 40px);
	transform: translate(-50%,-50%);
}
#FV .cut.fix .fv-img-box .col {
	position: relative;
}
#FV .cut.fix .fv-img-box .col.cafe2,
#FV .cut.fix .fv-img-box .col.fitness2 {
	flex-basis: 52%;
}
#FV .cut.fix .fv-img-box .col.cafe3,
#FV .cut.fix .fv-img-box .col.fitness1 {
	flex-basis: calc(48% - 9px);
}
#FV .cut.fix .fv-img-box .col.cafe1,
#FV .cut.fix .fv-img-box .col.fitness3 {
	display: none;
}
#FV .cut.fix .fv-img-box .col .img {
	position: absolute;
	left: 0;
	width: 0;
	height: 100%;
	border-radius: 20px;
	border: solid 0px #1e110f;
	background-color: #aaa;
}

	
	
#FV .cut.fix .fv-img-box .col.cafe2 .img {
	background: url(../img/sp/fv_img_cafe2.jpg) left center no-repeat;
    background-size: cover;
    height: 68%;
    top: 8%;
}
#FV .cut.fix .fv-img-box .col.cafe3 .img {
	background: url(../img/sp/fv_img_cafe3.jpg) left center no-repeat;
    background-size: cover;
    height: 58%;
    top: 12%;
}
#FV .cut.fix .fv-img-box .col.fitness1 .img {
	background: url(../img/sp/fv_img_fitness1.jpg) left center no-repeat;
    background-size: cover;
    height: 80%;
    top: 11%;
    animation-duration: .8s;
}
#FV .cut.fix .fv-img-box .col.fitness2 .img {
	background: url(../img/sp/fv_img_fitness2.jpg) -20px center no-repeat;
    background-size: cover;
    height: 90%;
    top: 7%;
    animation-duration: .8s;
}




#FV .cut.fix .campaign-badge {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 130px;
	height: 130px;
	opacity: 0;
	animation: .5s badge 4s linear forwards;
	transition: .1s all ease-in-out;
	z-index: 1;
}
#FV .cut.fix .campaign-badge::after {
	display: block;
	content: "";
	width: 110%;
	height: 110%;
	animation: 10s badge-acce infinite linear;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
#FV .cut.fix .campaign-badge:hover {
	transform: translateY(-10%);
}
	
}




/*section#mov------------------------------------------------------------------*/
section#mov {
	background: url("../img/mov_bg.svg") center 10% no-repeat #79cd41;
	background-size: 80vw auto;
	min-height: 50vh;
	padding: 2% 10% 20vh;
}
section#mov .sec-inner {
	position: relative;
}
section#mov .mov-table {
	position: relative;
	background-color: #fff;
    background-image: radial-gradient(#f9f9f9 30%, transparent 30%), radial-gradient(#f9f9f9 30%, transparent 30%);
    background-size: 10px 10px;
    background-position: 0 0,5px 5px;
	z-index: 5;
	border-radius: 60px;
	border: solid 4px #79cd41;
	width: 90%;
	filter: drop-shadow(0 15px 0 #61b043);
	padding: 2.3rem 8%;
	text-align: center;
	margin: auto;
}
section#mov .mov-table::before,
section#mov .mov-table::after {
	display: block;
	content: "";
	width: 100%;
	height: 22px;
	background: url("../img/mov_acce.svg") center center no-repeat;
	background-size: auto 100%;
	position: absolute;
	top: 50%;
	z-index: 1;
}
section#mov .mov-table::before {
	right: calc(50% - 25px);
    transform: translateY(-50%) rotate(90deg);
}
section#mov .mov-table::after {
	left: calc(50% - 25px);
    transform: translateY(-50%) rotate(-90deg);
}
section#mov .mov-table h2 {
	font-size: 2.375rem;
	font-weight: 900;
	margin: 0 0 1.5rem;
	line-height: 1;
}
section#mov .mov-table h2 strong {
	color: #61b043;
}
section#mov .mov-table h2 strong span {
	font-size: 3.5rem;
	font-family: 'Roboto', sans-serif;
}
section#mov .mov-table video {
	border-radius: 20px;
}

@media screen and (max-width: 820px) {
section#mov {
	background: #79cd41;
	padding: 2% 0 20vh;
}
section#mov .mov-table {
    background-image: radial-gradient(#f9f9f9 30%, transparent 30%), radial-gradient(#f9f9f9 30%, transparent 30%);
    background-size: 10px 10px;
    background-position: 0 0,5px 5px;
	border-radius: 30px;
	border: solid 2px #79cd41;
	width: 100%;
	filter: drop-shadow(0 7px 0 #61b043);
	padding: 1rem 1rem 1rem;
	text-align: center;
	margin: auto;
}
section#mov .mov-table::before,
section#mov .mov-table::after {
	display: none;
}
section#mov .mov-table h2 {
	font-size: 1.4rem;
	margin: 0 0 1rem;
	line-height: 1.2;
}
section#mov .mov-table h2 strong span {
	font-size: 2rem;
}
section#mov .mov-table video {
	border-radius: 10px;
}
	
}



/*section#recommend------------------------------------------------------------------*/
section#recommend {
	position: relative;
    clip-path: ellipse(160% 100% at 50% bottom);
    background-color: #1e110f;
    z-index: 1;
    margin: -50vh 0 0;
    padding: 40vh 0 0;
}
section#recommend::after {
	clip-path: ellipse(160% 100% at 50% bottom);
	display: block;
	content: "";
	width: 100%;
	height: calc(100% - 10px);
	position: absolute;
	top: 10px;
	left: 0;
	background: url("../img/border_gray.gif") repeat;
	z-index: -1;
}
section#recommend  > .sec-inner:first-of-type {
	position: relative;
	z-index: 1;
}
section#recommend > .sec-inner:first-of-type::after {
	display: block;
	content: "";
	width: 125%;
	height: 200%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: url("../img/section_recommend_bg.svg") center center no-repeat;
	background-size: 100% auto;
	z-index: -1;
}
section#recommend h2 {
	max-width: 664px;
	margin: 0 auto 80px;
}
section#recommend .recommend-box .col {
	display: flex;
	align-items: center;
	background-color: #fff;
	border-radius: 40px;
	margin: 0 0 80px;
	box-shadow: 5px 10px 0 #61b043;
	padding: 55px;
	width: 82%;
	min-height: 400px;
}
section#recommend .recommend-box .col:first-of-type {
	padding: 55px 20px 55px 55px;
	margin-left: auto;
}
section#recommend .recommend-box .col:last-of-type {
	flex-direction: row-reverse;
	margin-right: auto;
}
section#recommend .recommend-box .col .img  {
	position: relative;
	flex-basis: 40%;
}
section#recommend .recommend-box .col:first-of-type .img  {
	flex-basis: 36%;
}
section#recommend .recommend-box .col .img .img-inner  {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 480px;
	height: 480px;
	border: solid 5px #1e110f;
	border-radius: 500px;
	filter: none;
}
section#recommend .recommend-box .col:first-of-type .img .img-inner  {
	background: url("../img/img_recommend01.jpg") center center no-repeat;
	background-size: cover;
	left: calc(-50% - 100px);
}
section#recommend .recommend-box .col:last-of-type .img .img-inner  {
	background: url("../img/img_recommend02.jpg") center center no-repeat;
	background-size: cover;
	right: calc(-50% - 100px);
}

section#recommend .recommend-box .col .txt  {
	flex-basis: 60%;
}
section#recommend .recommend-box .col:first-of-type .txt  {
	flex-basis: 64%;
}
section#recommend .recommend-box .col  dl.txt dt {
	font-size: 2.5rem;
	font-weight: 900;
	color: #61b043;
	margin: 0 0 1rem;
	line-height: 1.4;
}
section#recommend .recommend-box .col:first-of-type  dl.txt dt {
	font-size: 2.125rem;
}
section#recommend .recommend-box .col  dl.txt dt strong {
	display: block;
	font-size: 3rem;
	position: relative;
}
section#recommend .recommend-box .col:first-of-type  dl.txt dt strong::before {
	display: block;
	content: "";
	width: 45px;
	height: 24px;
	background: url("../img/attentionmark_red.svg") center center no-repeat;
	position: absolute;
	top: -24px;
	right: 1rem;
}
section#recommend .recommend-box .col  dl.txt dt strong span {
	display: inline-block;
	color: #e00000;
	font-size: 3.45rem;
	letter-spacing: 0;
	padding: 0 0 8px;
	position: relative;
}
section#recommend .recommend-box .col  dl.txt dt strong span::before,
section#recommend .recommend-box .col  dl.txt dt strong span::after {
	display: block;
	content: "";
	width: 100%;
	height: 3px;
	background-color: #e00000;
	position: absolute;
	bottom: 0;
	left: 0;
}
section#recommend .recommend-box .col  dl.txt dt strong span::after {
	bottom: 6px;
}
section#recommend .recommend-box .col  dl.txt dd p  {
	line-height: 2;
	margin: 0 0 1rem;
	letter-spacing: .5px;
}
section#recommend .recommend-box .col:first-of-type  dl.txt dd p {
	font-size: 1rem;
}
section#recommend .recommend-box .col  dl.txt dd p:last-of-type {
	margin: 0;
}
section#recommend .recommend-box .col  dl.txt dd p strong {
	font-weight: 900;
}


section#recommend .ex {
	margin: 120px 0 0;
	position: relative;
	padding: 70px 0 80px;
	z-index: 1;
	overflow: hidden;
}
section#recommend .ex::after {
	clip-path: ellipse(90% 100% at 50% bottom);
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 20%;
	left: 0;
	background-color: #79cd41;
	z-index: -1;
}
section#recommend .ex h3 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	max-width: 653px;
}
section#recommend .ex-box {
	position: relative;
	z-index: 1;
}
section#recommend .ex-box::after {
	display: block;
	content: "";
	width: 115%;
	height: 115%;
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: url("../img/ex_bg.svg") center center no-repeat;
	background-size: 100% auto;
	z-index: -1;
}
section#recommend .ex-box .txt {
	margin: -94px 0 0;
}
section#recommend .ex-box .txt p:first-of-type {
	max-width: 788px;
	margin: 0 auto 1rem;
}
section#recommend .ex-box .txt  p:nth-of-type(2) {
	max-width: 686px;
	margin: auto;
}
section#recommend .ex-box .txt p.caution {
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .5px;
    margin: 1rem auto 0;
}



section#recommend .middle-txt {
	position: relative;
	z-index: 2;
	background: url("../img/border_yellow.gif") repeat;
	border-top: 7px solid #fff;
	border-bottom: 7px solid #1e110f;
	text-align: center;
	padding: 65px 50px;
}
section#recommend .middle-txt::before {
	display: block;
	content: "";
	width: 80px;
	height: 30px;
	background: url("../img/arrow_linegreen.svg") center top no-repeat;
	background-size: cover;
	position: absolute;
	top: -7px;
	left: 50%;
	transform: translateX(-50%);
}
section#recommend .middle-txt p {
	font-size: 2.25rem;
	font-weight: 900;
	line-height: 1.2;
	margin: 0 0 3rem;
}
section#recommend .middle-txt p strong {
	display: inline-block;
	margin: 0 0 0 .1rem;
	font-size: 2.6rem;
	color: #61b043;
	background: linear-gradient(0deg, #fff 0%, #fff 20%, transparent 20%, transparent 100%);
}

.btn-shop {
	max-width: 725px;
	margin: auto;
}


@media screen and (max-width: 820px) {
section#recommend {
    clip-path: ellipse(400% 100% at 50% bottom);
    z-index: 1;
    margin: -40vh 0 0;
    padding: 24vh 0 0;
}
section#recommend::after {
	background-size: 10px 10px;
	clip-path: ellipse(400% 100% at 50% bottom);
	height: calc(100% - 5px);
	top: 5px;
}
section#recommend  > .sec-inner:first-of-type {
	position: relative;
	z-index: 1;
}
section#recommend > .sec-inner:first-of-type::after {
	display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: url(../img/sp/section_recommend_bg.svg) center center no-repeat;
    background-size: 100% auto;
    z-index: -1;
}
section#recommend h2 {
	margin: 0 auto 4%;
}
section#recommend .recommend-box .col {
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    margin: 80px 0 100px;
    box-shadow: 5px 10px 0 #61b043;
    padding: 154px 15px 25px;
    width: 100%;
    min-height: unset;
}
section#recommend .recommend-box .col:first-of-type {
	padding: 154px 15px 25px;
	margin-left: unset;
}
section#recommend .recommend-box .col:last-of-type {
	flex-direction: column;
	margin-right: unset;
	margin: 80px 0 0;
}
section#recommend .recommend-box .col .img  {
	position: absolute;
    top: -70px;
}
section#recommend .recommend-box .col .img .img-inner  {
	position: absolute;
	top: 0;
	transform: translate(-50%,0);
	width: 216px;
	height: 216px;
	border: solid 3px #1e110f;
}
section#recommend .recommend-box .col:first-of-type .img .img-inner  {
	background: url("../img/img_recommend01.jpg") center center no-repeat;
	background-size: cover;
	left: calc(50%);
}
section#recommend .recommend-box .col:last-of-type .img .img-inner  {
	background: url("../img/img_recommend02.jpg") center center no-repeat;
	background-size: cover;
	right: unset;
	left: calc(50%);
}
section#recommend .recommend-box .col .txt  {
	text-align: center;
}

section#recommend .recommend-box .col  dl.txt  dt  {
	font-size: 1.375rem;
	margin: 0 0 .5rem
}
section#recommend .recommend-box .col:first-of-type  dl.txt dt {
	font-size: 1.375rem;
}
section#recommend .recommend-box .col  dl.txt dt strong {
	display: block;
	font-size: 1.8rem;
	position: relative;
}
section#recommend .recommend-box .col:first-of-type  dl.txt dt strong::before {
	display: block;
	content: "";
	width: 30px;
	height: 16px;
	background: url("../img/attentionmark_red.svg") center center no-repeat;
	position: absolute;
	top: -16px;
	right: 0;
}
section#recommend .recommend-box .col  dl.txt dt strong span {
	font-size: 2.1rem;
	padding: 0 0 6px;
}
section#recommend .recommend-box .col  dl.txt dt strong span::before,
section#recommend .recommend-box .col  dl.txt dt strong span::after {
	height: 2px;
}
section#recommend .recommend-box .col  dl.txt dt strong span::after {
	bottom: 4px;
}
section#recommend .recommend-box .col  dl.txt dd p  {
	line-height: 1.8;
	margin: 0 0 1rem;
	letter-spacing: .5px;
}
section#recommend .recommend-box .col  dl.txt dd p:last-of-type {
	margin: 0;
}


section#recommend .ex {
	margin: 60px 0 0;
	position: relative;
	padding: 40px 0 8%;
	z-index: 1;
	overflow: hidden;
}
section#recommend .ex::after {
	clip-path: ellipse(100% 100% at 50% bottom);
}
section#recommend .ex h3 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	width: 90%;
}
section#recommend .ex-box {
	position: relative;
	z-index: 1;
}
section#recommend .ex-box::after {
	display: none;
}
section#recommend .ex-box .txt {
	margin: -36px 0 0;
}
section#recommend .ex-box .txt p:first-of-type {
	margin: 0 auto;
}
section#recommend .ex-box .txt p:nth-of-type(2) {
	max-width: 686px;
	margin: -3px auto 0;
}
section#recommend .ex-box .txt p.caution {
    font-size: .9375rem;
    font-weight: 500;
}



section#recommend .middle-txt {
	background: url("../img/border_yellow.gif") repeat;
	background-size: 10px;
	border-top: 3px solid #fff;
	border-bottom: 3px solid #1e110f;
	text-align: center;
	padding: 30px 0;
}
section#recommend .middle-txt::before {
	display: block;
	content: "";
	width: 40px;
	height: 15px;
	background: url("../img/arrow_linegreen.svg") center top no-repeat;
	background-size: cover;
	position: absolute;
	top: -3px;
	left: 50%;
	transform: translateX(-50%);
}
section#recommend .middle-txt p {
	font-size: 1rem;
	letter-spacing: 0;
	margin: 0 0 1rem;
}
section#recommend .middle-txt p strong {
	display: inline-block;
	margin: 0 0 0 .1rem;
	font-size: 1.2rem;
}
}




/*section#feature------------------------------------------------------------------*/
section#feature {
	background: url("../img/section_feature_bg.jpg") center center no-repeat;
	background-size: cover;
	text-align: center;
	padding: 0 50px 180px;
	overflow: hidden;
}
section#feature .sec-inner {
	padding: 180px 0 0;
	background: url("../img/section_feature_acce.svg") center 70px no-repeat;
	background-size: auto 80px;
}
section#feature h2 {
	letter-spacing: .2rem;
	line-height: 1.4;
	font-weight: 900;
	font-size: 2.75rem;
	margin: 0 0 45px;
}
section#feature h2 span {
	color: #61b043;
}


section#feature ul.feature-list {
	display: flex;
	gap: 0 15px;
	width: 100%;
}
section#feature ul.feature-list li {
	display: flex;
	flex-direction: column;
	gap: 20px 0;
	background-color: #79cd41;
	border-radius: 30px;
	text-align: center;
	color: #fff;
	justify-content: center;
    align-items: center;
	letter-spacing: 0;
	font-size: 1.35em;
	line-height: 1.4;
	overflow: hidden;
	font-weight: 700;
}

section#feature ul.feature-list li.col1 {
	gap: 0;
	flex-basis: 63%;
	flex-direction: column-reverse;
	letter-spacing: .1rem;
}
section#feature ul.feature-list li.col1 > .txt {
	padding: 25px 25px 5px;
	display: flex;
	gap: 0 1rem;
	align-items: center;
}
section#feature ul.feature-list li.col1 > .txt > .img {
	height: 70px;
}
section#feature ul.feature-list li.col1 > .txt > p strong {
	padding: 0 0 0 .5rem;
}
section#feature ul.feature-list li.col2 {
	flex-basis: 37%;
	letter-spacing: .1rem;
}

section#feature ul.feature-list:last-of-type li {
	flex-basis: calc(calc(100% - 45px) / 4);
	padding: 20px 10px;
}
section#feature ul.feature-list li p strong  {
	font-size: 1.5rem;
	padding: 0 .2rem 0 0;
}
section#feature ul.feature-list:first-of-type li strong {
	font-size: 1.75rem;
	color: #fff000;
}
section#feature ul.feature-list li small {
	font-size: .9rem;
	margin: .5rem 0 0;
	display: block;
}

section#feature ul.feature-list li > .img {
	height: 75px;
}
section#feature ul.feature-list li .img img {
	height: 100%;
	width: auto;
	position: relative;
    top: 50%;
    transform: translate(0, -50%);
}
section#feature ul.feature-list:last-of-type li:nth-child(2) .img img {
	height: 70%;
	width: auto;
}
section#feature ul.feature-list:last-of-type li:nth-child(3) .img img {
	height: 90%;
	width: auto;
}
section#feature ul.feature-list:last-of-type li > p {
	height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section#feature .middle-copy {
	margin: 1rem 0;
}
section#feature .middle-copy span{
	position: relative;
	font-size: 1.5rem;
	font-weight: 700;
	padding: 0 1rem;
}
section#feature .middle-copy span::before,
section#feature .middle-copy span::after {
	position: absolute;
	top: 0;
	margin: auto;
	bottom: -.1rem;
	display: block;
	content: "";
	height: 70%;
	width: 2px;
	background-color: #1e110f;
}
section#feature .middle-copy span::before {
	left: 0;
	transform: rotate(-15deg);
}
section#feature .middle-copy span::after {
	right: 0;
	transform: rotate(15deg);
}


@media screen and (max-width: 820px) {
section#feature {
	padding: 0 0 20%;
}
section#feature .sec-inner {
	padding: 100px 20px 0;
	background: url("../img/section_feature_acce.svg") center 35px no-repeat;
	background-size: auto 40px;
}
section#feature h2 {
	letter-spacing: 0;
	font-size: 1.25rem;
	margin: 0 0 1rem;
}
section#feature h2 span {
	font-size: 1.8rem;
}
	
	
section#feature ul.feature-list {
	gap: 0 7px;
}
section#feature ul.feature-list li {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	gap: 5px 0;
	border-radius: 15px;
	text-align: center;
	color: #fff;
    align-items: center;
	letter-spacing: 0;
	font-size: .875em;
	line-height: 1.4;
	overflow: hidden;
	font-weight: 700;
}

section#feature ul.feature-list li.col1 {
	font-size: .8125rem;
	letter-spacing: 0;
}
section#feature ul.feature-list li.col1 > .img {
	flex-basis: 30%;
}
section#feature ul.feature-list li.col1 > .txt {
	flex-basis: 80%;
	padding: 0 10px;
	flex-direction: column;
	margin: 10px 0 5px;
}
section#feature ul.feature-list li.col1 > .txt > p strong {
		padding: 0;
}
section#feature ul.feature-list li.col1 > .txt > .img {
	height: 32px;
    margin: 0;
}
section#feature ul.feature-list li.col2 {
	letter-spacing: 0;
	flex-basis: 42%;
	padding: 10px;
}
section#feature ul.feature-list li.col2 strong {
	font-size: 1.625rem;
}


section#feature ul.feature-list:last-of-type {
	background-color: #79cd41;
	border-radius: 15px;
	gap: 0 3px;
	justify-content: center;
}
section#feature ul.feature-list:last-of-type li {
	flex-basis: calc(calc(100% - 30px) / 4);
	padding: 10px 0;
	font-size: .875em;
}
section#feature ul.feature-list li p strong  {
	font-size: 1.5rem;
	padding: 0 .2rem 0 0;
}
section#feature ul.feature-list:first-of-type li strong {
	font-size: 1rem;
	color: #fff000;
}
section#feature ul.feature-list li small {
	font-size: .5rem;
	margin: .5rem 0 0;
	display: block;
}

section#feature ul.feature-list li > .img {
	height: 50%;
}
section#feature ul.feature-list:last-of-type li .img  {
	height: 45px;
}
section#feature ul.feature-list li .img img {
	height: 100%;
	width: auto;
	position: relative;
    top: 50%;
    transform: translate(0, -50%);
}

section#feature ul.feature-list:last-of-type li > p {
	height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

section#feature .middle-copy {
	margin: .5rem 0;
	display: flex;
	justify-content: center;
}
section#feature .middle-copy span{
	font-size: 1rem;
	line-height: 1.4;
	letter-spacing: 0;
	padding: 0 1rem;
}
section#feature .middle-copy span::before,
section#feature .middle-copy span::after {
	bottom: -.5rem;
	height: 80%;
}
section#feature .middle-copy span::before {
	left: 0;
	transform: rotate(-15deg);
}
section#feature .middle-copy span::after {
	right: 0;
	transform: rotate(15deg);
}

}




/*section#price -----------------------------------------------------------------*/
section#price {
	background-color: #f4f4f4;
}
section#price .price-table {
	position: relative;
	border-radius: 50px;
	border: 15px solid #1e110f;
	background: linear-gradient(90deg, #79cd41 0%, #79cd41 50%, #fff000 50%, #fff000 100%);
}
section#price h2 {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
}
section#price p.lead {
	display: flex;
	justify-content: center;
}
section#price p.lead span {
	font-size: 2.375rem;
	font-weight: 900;
	padding: 65px 0 35px;
	background: url("../img/which_arrow.svg") center bottom no-repeat;
	background-size: 100% auto;
	margin: 0 0 30px;
}
section#price .which-btn {
	display: flex;
	gap: 0 40px;
	margin: 0 0 60px;
}
section#price .which-btn > a {
	flex-basis: 50%;
	position: relative;
	z-index: 1;
}
section#price .which-btn .col {
	border-radius: 20px;
	background: url("../img/arrow_black.svg") center calc(100% - 5px) #fff no-repeat;
	background-size: 25px auto;
	border: solid 5px #1e110f;
	text-align: center;
	box-shadow: 0 8px 0 #1e110f;
	font-size: 1.875rem;
	font-weight: 900;
	line-height: 1.4;
	padding: 25px 10px 30px;
}
section#price .which-btn .col.left {
	color: #61b043;
}
section#price .which-btn .col.right {
	color: #ff9000;
}
section#price .which-btn .badge {
	position: absolute;
	z-index: -1;
	max-width: 180px;
	top: -130px;
}
section#price .which-btn .left .badge {
	left: 0;
}
section#price .which-btn .right .badge {
	right: 0;
}


section#price .table {
	position: relative;
	padding: 50px 50px 70px;
	border-radius: 40px;
}
section#price .table::before {
	display: block;
	content: "";
	position: absolute;
	top: 88px;
	width: 45px;
	height: 100%;
}
section#price #time.table::before {
	right: -44px;
	background: url("../img/time_acce.png") left top no-repeat;
	background-size: 100% auto;
}
section#price #month.table::before {
	left: -44px;
	background: url("../img/month_acce.png") right top no-repeat;
	background-size: 100% auto;
}
section#price #time.table {
	background-color: #79cd41;
}
section#price .table h3 {
	margin: 0 auto 30px;
}
section#price .table .inner {
	padding: 40px 0 0;
	background: url("../img/border_white.gif") center center repeat;
	border-radius: 40px;
	overflow: hidden;
	margin: 0 0 30px;
}
section#price #time.table .inner .lead-copy {
	display: flex;
	gap: 10px 0;
	flex-direction: column;
	align-items: center;
	font-size: 2.25rem;
	font-weight: 900;
}
section#price #time.table .inner .lead-copy .sub {
	font-size: 1.25rem;
	color: #fff;
	background-color: #1e110f;
	padding: .5rem 3rem;
	border-radius: 100px;
}
section#price #time.table .inner .lead-copy .sub span {
	position: relative;
	padding: 0 15px;
}
section#price #time.table .inner .lead-copy .sub span::before,
section#price #time.table .inner .lead-copy .sub span::after {
	display: block;
	content: "";
	width: 3px;
	height: 1em;
	border-radius: 10px;
	background-color: #fff;
	position: absolute;
	top: 50%;
}
section#price #time.table .inner .lead-copy .sub span::before {
	transform: translateY(-50%) rotate(-30deg);
	left: 0;
}
section#price #time.table .inner .lead-copy .sub span::after {
	transform: translateY(-50%) rotate(30deg);
	right: 0;
}
section#price #time.table .inner .lead-copy .sub strong {
	color: #fff000;
}
section#price #time.table .inner .lead-copy .main {
	line-height: 1.2;
	background: linear-gradient(0deg, #fff000 0%, #fff000 30%, transparent 30%, transparent 100%);
}
section#price #time.table .inner .lead-copy .main strong {
	color: #61b043;

}
section#price #time.table .point-box {
	display: flex;
	gap: 0 10px;
	margin: 25px auto 0;
	width: 85%;
}
section#price #time.table .point-box .col {
	flex-basis: calc(calc(100% - 30px) / 4 );
}
section#price #time.table p.caution {
    text-align: right;
	font-size: 1rem;
	font-weight: 500;
    letter-spacing: 0;
}
section#price #time.table .inner > p.caution {
    margin: -5px auto 20px;
    padding: 0 30px;
}
section#price #time.table p.time-price {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	padding:  0 0 25px;
	z-index: 1;
	width: 100%;
	max-width: 680px;
	margin: auto;
}
section#price #time.table .time-price-bg {
	background: linear-gradient(0deg, #fff000 0%, #fff000 80%, transparent 80%, transparent 100%);
	mix-blend-mode: multiply;
	height: 170px;
}

section#price .table .step {
	background-color: #dbf9c7;
	padding: 30px 30px 25px;
}
section#price .table .step > p {
	text-align: center;
	font-size: 1.75rem;
	font-weight: 900;
	margin: 0 0 40px;
}
section#price #time.table .step p.caution {
	margin: .5rem 0 0;
}





ul.flow {
	display: flex;
	gap: 0 10px;
}
ul.flow li {
	position: relative;
	border-radius: 20px;
	padding: 20px 10px 10px;
	min-height: 100px;
	background-color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 0;
}
ul.flow li::after {
	display: block;
	content: "";
	width: 20px;
	height: 10px;
	background: url("../img/arrow_black.svg") no-repeat;
	background-size: cover;
	position: absolute;
	right: -15px;
	top: 50%;
	transform: translate(0,-50%) rotate(-90deg);
}
ul.flow li:last-of-type::after {
	display: none;
}
section#price  #time  ul.flow li {
	flex-basis: calc(calc(100% - 30px) / 4);
}
section#price  #month ul.flow li {
	flex-basis: calc(calc(100% - 40px) / 5);
}
ul.flow li dl  {
	width: 100%;
	height: 100%;
}
ul.flow li dl dt {
	position: absolute;
	top: -10%;
	left: 50%;
	transform: translate(-50%,0);
	border-radius: 100px;
	background-color: #1e110f;
	width: 90px;
	padding: .1rem 0;
	font-size: 1.125rem;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	text-align: center;
	font-weight: 900;
	display: flex;
	align-items: center;
    justify-content: center;
}

ul.flow li dl dd {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
}
ul.flow li dl dd .img {
	height: 90px;
	width: 100%;
}

ul.flow li.register .img {
	background: url("../img/icon_register.svg") center center no-repeat #fff;
	background-size: auto 60px;
}
ul.flow li.register2 .img  {
	background: url("../img/icon_register2.png") center center no-repeat #fff;
	background-size: auto 80px;
}
ul.flow li.contract .img  {
	background: url("../img/icon_contract.svg") center center no-repeat #fff;
	background-size: auto 44px;
}
ul.flow li.visit .img  {
	background: url("../img/icon_visit.svg") center center no-repeat #fff;
	background-size: 81px auto;
}
ul.flow li.confirmation .img  {
	background: url("../img/icon_confirmation.svg") center center no-repeat #fff;
	background-size: auto 48px;
}
ul.flow li.confirmation2 .img  {
	background: url("../img/icon_confirmation.svg"),url("../img/icon_contract.svg");
	background-position: calc(50% - 30px) center, calc(50% + 30px) center;
	background-size: 50px auto, 55px auto;
	background-repeat: no-repeat;
	background-color: #fff;
}
ul.flow li.goal .img {
	background: url("../img/icon_fitness.svg") center center no-repeat #fff;
	background-size: 60px auto;
}
ul.flow li dl dd p {
	height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
}

ul.flow li a {
	display: block;
	border: 3px solid #1e110f;
	border-radius: 16px;
	padding: .1rem 30px .1rem 10px;
	font-weight: 900;
	font-size: 1rem;
	background: url("../img/link_arrow.svg") calc(100% - 5px) center no-repeat #fff000;
	background-size: 20px auto;
	text-align: center;
	line-height: 1.2;
}



section#price #month.table a.month-h3-anker {
	padding-top: 130px;
    margin-top: -130px;
    display: block;
}
section#price #month.table {
	background-color: #fff000;
}
section#price #month.table .lead-copy {
	padding: 0 30px 30px;
}
section#price #month.table .lead-copy > p:first-of-type {
	max-width: 610px;
	margin: 0 auto 14px;
}
section#price #month.table .lead-copy > p:nth-child(2) {
	max-width: 750px;
	margin: auto;
}
section#price #month.table .lead-copy > p:last-of-type {
	max-width: 630px;
	margin: auto;
}
section#price #month.table .lead-copy ol {
	counter-reset: item;
	list-style-type: none;
	font-size: 1rem;
	letter-spacing: 0;
	color: #959595;
	margin: 40px 0 0;
}
section#price #month.table .lead-copy ol li::before {
	counter-increment: item;
    content: counter(item)'';
    font-size: .5rem;
    padding: 0 0.2rem;
    border-radius: 100px;
    border: 1px solid #959595;
    margin: 0 0.3rem 0 0;
}
section#price #month.table .campaign {
	padding: 18px 20px 0;
	background: linear-gradient(0deg, #fffbbf 0%, #fffbbf 10%, #e00000 10%, #e00000 100%);
}
section#price #month.table .campaign a#campaign {
	display: block;
    padding-top: 2rem;
	margin-top: -2rem;
}
section#price #month.table .campaign > p {
	max-width: 651px;
	margin: -33px auto 1rem;
}
section#price #month.table .campaign > small.caution {
    display: flex;
    justify-content: center;
    margin: 10px auto 40px;
}
section#price #month.table .campaign > small.caution span {
    padding: 0 .5rem;
    background-color: #fff;
    color: #e00000;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
}
section#price #month.table .campaign .campaign-box {
	display: flex;
	gap: 0 15px;
	width: 100%;
	justify-content: center;
}
section#price #month.table .campaign .campaign-box .col {
	position: relative;
	border-radius: 20px;
	border: 3px solid #1e110f;
	background-color: #fff;
	flex-basis: calc(calc(100% - 15px) / 2);
	padding:52px 40px 12px;
}
section#price #month.table .campaign .campaign-box .col::after {
	display: block;
    content: "";
    background: url("../img/kirakira_yellow.svg") center center no-repeat;
    width: 63px;
    height: 68px;
    background-size: contain;
    position: absolute;
    top: -25px;
    right: 5px;
}
section#price #month.table .campaign .campaign-box dl.col dt {
	position: absolute;
	left: -3px;
	top: -.5rem;
	background-color: #fff000;
	border: 3px solid #1e110f;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 900;
	padding: 0 60px;
	border-radius: 22px 22px 22px 0;
}
section#price #month.table .campaign .campaign-box dl.col dt span {
	font-family: 'Roboto', sans-serif;
	font-size: 1.7rem;
	transform: translateY(1px);
    display: inline-block;
}
section#price #month.table .campaign .campaign-box .col img.mb {
	margin: 0 0 8px;
}
section#price #month.table .campaign .campaign-box .col:last-child img {
	margin: 1rem 0 0;
}

section#price #month.table .step {
	background-color: #fffbbf;
}
section#price #month.table .btn-month {
	max-width: 725px;
	margin: auto;
}


@media screen and (max-width: 1024px) {
section#price .table::before {
	display: none;
}
}

@media screen and (max-width: 820px) {
section#price .price-table {
	border-radius: 20px;
	border: 6px solid #1e110f;
	padding: 0;
}
section#price .sec-inner {
	padding: 0;
}
section#price h2 {
	position: absolute;
	top: unset;
	bottom: calc(100% + 3px);
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
}
section#price p.lead span {
	font-size: 1.3125rem;
	padding: 1.5rem 0 1rem;
	background: url("../img/which_arrow.svg") center bottom no-repeat;
	background-size: 100% auto;
	margin: 0 0 30px;
}
section#price .which-btn {
	display: flex;
    gap: 0 10px;
    margin: 10% auto 8%;
	width: calc(100% - 28px);
}
section#price .which-btn .col {
	border-radius: 20px;
	background: url("../img/arrow_black.svg") center calc(100% - 5px) #fff no-repeat;
	background-size: 20px auto;
	border: solid 3px #1e110f;
	box-shadow: 0 6px 0 #1e110f;
	font-size: 1rem;
	line-height: 1.4;
	letter-spacing: 0;
	padding: .8rem .5rem 1.8rem;
}
section#price .which-btn .badge {
	position: absolute;
    z-index: -1;
    width: 100%;
    top: unset;
    bottom: calc(100% - 35px);
}
section#price .which-btn .left .badge,
section#price .which-btn .right .badge {
	left: 0;
    right: 0;
    margin: auto;
}
section#price .table {
	position: relative;
	padding: 1.6rem 14px 2.5rem;
	border-radius: 20px;
}
section#price .table::before {
	display: none;
}

section#price .table h3 {
	margin: 0 auto 1rem;
}
section#price .table .inner {
	padding: 1rem 0 0;
	background: url("../img/border_white.gif") center center repeat;
	background-size: 10px 10px;
	border-radius: 20px;
	overflow: hidden;
	margin: 0 0 2rem;
}
section#price #time.table .inner .lead-copy {
	display: flex;
	gap: 10px 0;
	font-size: 1.375rem;
	padding: 10px;
	letter-spacing: 0;
}
section#price #time.table .inner .lead-copy .sub {
	font-size: .875rem;
	padding: 0 .1rem .1rem;
	letter-spacing: 0;
}
section#price #time.table .inner .lead-copy .sub span {
	position: relative;
	padding: 0 12px;
}
section#price #time.table .inner .lead-copy .sub span::before,
section#price #time.table .inner .lead-copy .sub span::after {
	display: none;
}

section#price #time.table .inner .lead-copy .main {
	line-height: 1.2;
	background: linear-gradient(0deg, #fff000 0%, #fff000 30%, transparent 30%, transparent 100%);
}

section#price #time.table .point-box {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 5px;
	margin: .5rem 0 0;
	padding: 0 10px;
	width: 100%;
}
section#price #time.table .point-box .col {
	flex-basis: calc(calc(100% - 5px) / 2 );
}
section#price #time.table  p.caution {
	text-align: center;
	font-size: .9375rem;
	font-weight: 700;
}   
section#price #time.table .inner > p.caution {
    margin: .5rem 0;
    padding: 0 10px;
}
section#price #time.table p.time-price {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	padding:  0 0 25px;
	z-index: 1;
	width: calc(100% - 48px);
	max-width: 680px;
	margin: auto;
}
section#price #time.table .time-price-bg {
	background: linear-gradient(0deg, #fff000 0%, #fff000 85%, transparent 85%, transparent 100%);
	mix-blend-mode: multiply;
	height: 24vw;
}

section#price .table .step {
	background-color: unset;
	padding: 1.2rem 10px 1rem;
}
section#price .table .step > p {
	font-size: 1.125rem;
	letter-spacing: 0;
	margin: 0 0 2rem;
}
section#price #time.table .step p.caution {
	margin: .5rem 0;
}



ul.flow {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 10px;
}
ul.flow li {
	position: relative;
	border-radius: 20px;
	padding: 1rem 10px 10px;
	min-height: unset;
	background-color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 0;
	border: 2px solid #79cd41;
}
ul.flow li::after {
	display: block;
	content: "";
	width: 20px;
	height: 10px;
	background: url("../img/arrow_black.svg") no-repeat;
	background-size: cover;
	position: absolute;
	right: -15px;
	top: 50%;
	transform: translate(0,-50%) rotate(-90deg);
}
ul.flow li:last-of-type::after {
	display: none;
}
section#price  #time  ul.flow li,
section#price  #month ul.flow li {
	flex-basis: calc(calc(100% - 10px) / 2 );
}
ul.flow li dl  {
	width: 100%;
	height: 100%;
}
ul.flow li dl dt {
	position: absolute;
	top: -10%;
	left: 50%;
	transform: translate(-50%,0);
	border-radius: 100px;
	background-color: #1e110f;
	width: auto;
	padding: .1rem 1.5rem 0;
	font-size: .875rem;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	text-align: center;
	font-weight: 900;
	display: flex;
	align-items: center;
    justify-content: center;
}

ul.flow li dl dd {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
}
ul.flow li dl dd .img {
	height: 60px;
	width: 100%;
}

ul.flow li.register .img {
	background: url("../img/icon_register.svg") center center no-repeat #fff;
	background-size: auto 100%;
}
ul.flow li.register2 .img  {
	background: url("../img/icon_register2.png") center center no-repeat #fff;
	background-size: auto 100%;
}
ul.flow li.contract .img  {
	background: url("../img/icon_contract.svg") center center no-repeat #fff;
	background-size: auto 70%;
}
ul.flow li.visit .img  {
	background: url("../img/icon_visit.svg") center center no-repeat #fff;
	background-size: auto 60%;
}
ul.flow li.confirmation .img  {
	background: url("../img/icon_confirmation.svg") center center no-repeat #fff;
	background-size: auto 70%;
}
ul.flow li.confirmation2 .img  {
	background: url("../img/icon_confirmation.svg"),url("../img/icon_contract.svg");
	background-position: calc(50% - 30%) center, calc(50% + 30%) center;
	background-size: 35% auto, 35% auto;
	background-repeat: no-repeat;
	background-color: #fff;
}
ul.flow li.goal .img {
	background: url("../img/icon_fitness.svg") center center no-repeat #fff;
	background-size: auto 80%;
}
ul.flow li dl dd p {
	height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
	font-size: 1rem;
}

ul.flow li a {
	display: block;
    border: 3px solid #1e110f;
    border-radius: 8px;
    padding: 0.3rem 25px 0.3rem 10px;
    font-weight: 900;
    font-size: 1rem;
    background: url(../img/link_arrow.svg) calc(100% - 5px) center no-repeat #fff000;
    background-size: 17px auto;
    text-align: center;
    line-height: 1.2;
    width: 100%;
}


section#price #month.table a.month-h3-anker {
	padding-top: 80px;
    margin-top: -80px;
    display: block;
}
section#price #month.table {
	background-color: #fff000;
	border-radius: 20px 20px 20px 15px;
}
section#price #month.table .lead-copy {
	padding: 0 10px 1rem;
}
section#price #month.table .lead-copy > p:first-of-type {
	max-width: 610px;
	margin: 0 auto 14px;
}
section#price #month.table .lead-copy > p:nth-child(2) {
	max-width: 750px;
	margin: auto;
}
section#price #month.table .lead-copy > p:last-of-type {
	max-width: 630px;
	margin: auto;
}
section#price #month.table .lead-copy  ol {
	font-size: .75rem;
	margin: 1rem 0 0;
}
section#price #month.table .lead-copy  ol li::before {
    font-size: .4rem;
    padding: 0 .2rem;
    margin: 0 .1rem 0 0;
}
section#price #month.table .campaign {
	padding: 1.2rem 10px 0;
	background:#e00000;
}
section#price #month.table .campaign > p {
	margin: -26px auto .8rem;
}
section#price #month.table .campaign > small.caution {
    margin: 0 auto 2.5rem;
}
section#price #month.table .campaign > small.caution span {
    font-size: .9375rem;
}
section#price #month.table .campaign .campaign-box {
	display: flex;
	flex-direction: column;
	gap: 0 15px;
	width: 100%;
}
section#price #month.table .campaign .campaign-box .col {
	display: flex;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    border: 2px solid #1e110f;
    background-color: #fff;
    flex-basis: calc(calc(100% - 15px) / 2);
    padding: 1.6rem 12px;
    min-height: 200px;
    align-items: center;
    margin: 0 0 1.5rem;
}
section#price #month.table .campaign .campaign-box .col::after {
	display: block;
    content: "";
    background: url("../img/kirakira_yellow.svg") center center no-repeat;
    width: 41px;
    height: 44px;
    background-size: contain;
    position: absolute;
    top: -25px;
    right: 5px;
}
section#price #month.table .campaign .campaign-box dl.col dt {
	position: absolute;
    left: 50%;
    top: -1rem;
    transform: translateX(-50%);
    background-color: #fff000;
    border: 2px solid #1e110f;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0;
    border-radius: 10px;
    width: 50%;
}
section#price #month.table .campaign .campaign-box dl.col dt span {
	font-size: 1.2rem;
}
section#price #month.table .campaign .campaign-box .col img.mb {
	margin: 0 0 8px;
}
section#price #month.table .campaign .campaign-box .col:last-child img {
	margin: 1rem 0 0;
}
section#price #month.table .step {
	background-color: unset;
}
section#price #month.table .step ul.flow li {
	border: 2px solid #ffcc00;
}
section#price #month.table .step ul.flow li:last-of-type {
	flex-basis: 100%;
	border: 2px solid #ffcc00;
	padding: 1rem 5px 5px;
}
section#price #month.table .step ul.flow li:last-of-type dl dd {
	flex-direction: row;
	justify-content: center;
}
section#price #month.table .step ul.flow li:last-of-type dl dd .img {
	flex-basis: 30%
}
section#price #month.table .step ul.flow li:last-of-type dl dd p {
	flex-basis: 30%;
}
}




/*section#environment -----------------------------------------------------------------*/
section#environment {
	background: url("../img/section_environment_bg.svg"), url("../img/section_environment_bg2.svg");
    background-position: left 60px, center 260px;
    background-size: auto 120px, 90% auto;
    background-repeat: repeat-x,no-repeat;
    padding: 160px 50px 50px;
	background-color: #f4f4f4;
	animation: bg 30s infinite linear;
}
@keyframes bg {
  0% {
    background-position: left 60px, center 260px;
  }
  100% {
    background-position: -1920px 60px, center 260px;
  }
}
@keyframes bg-sp {
  0% {
    background-position: left 25px, center 20vh;
  }
  100% {
    background-position: -800px 25px, center 20vh;
  }
}
section#environment .sec-inner {
	border-radius: 40px;
	border: 3px solid #6fc636;
	padding: 40px 60px 40px;
	background-color: #fff;
}
section#environment h2 {
	font-size: 2.5rem;
	text-align: center;
	background: url("../img/machine1.svg"),url("../img/machine2.svg");
	background-repeat: no-repeat;
	background-size: 80px auto, 80px auto;
	background-position: left center,right center;
	padding: 40px 90px 20px;
	width: 70%;
	margin: 0 auto 15px;
	font-weight: 900;
}
section#environment h2 span {
	color: #61b043;
}
section#environment .sec-inner > p {
	text-align: center;
	margin: 0 0 30px;
}
section#environment .sec-inner > p strong {
	font-weight: 900;
}
section#environment .sec-inner .img {
	width: 90%;
	margin: 0 auto 1.5rem;
}
section#environment .inner {
	background: url("../img/border_lightgreen.gif") repeat;
	border-radius: 30px;
	overflow: hidden;
}
section#environment .inner .machine {
	padding: 50px 40px 10px;
}
section#environment .inner .machine .machine-group {
	display: flex;
	gap: 0 10px;
}
section#environment .inner .machine .machine-group .col {
	position: relative;
	background-color: #fff;
	border-radius: 20px;
	text-align: center;
	padding: 50px 20px 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
section#environment .inner .machine .machine-group .col:first-of-type {
	flex-basis: 30%;
}
section#environment .inner .machine .machine-group .col:nth-child(2) {
	flex-basis: 45%;
}
section#environment .inner .machine .machine-group .col:last-of-type {
	flex-basis: 25%;
}
section#environment .inner .machine .machine-group .col p {
	position: absolute;
	background-color: #61b043;
	border-radius: 100px;
	top: -1.8rem;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	letter-spacing: 0;
	line-height: 1.2;
	font-size: 1.125rem;
	font-weight: 900;
	padding: 0 1rem;
	width: 170px;
	min-height: 55px;
	display: flex;
    align-items: center;
    justify-content: center;
}
section#environment .inner .machine .machine-group .col img {
	height: 200px;
	width: auto;
}
section#environment .inner .machine .machine-group .col:last-of-type img {
	height: 160px;
	width: auto;
}
section#environment .inner .inbody img {
	line-height: 0;
	transform: translateY(.3rem);
	padding: 0;
}
section#environment p.caution {
	text-align: left;
	font-size: .875rem;
	margin: .8rem 0 0;
}


@media screen and (max-width: 820px) {
section#environment {
	background: url("../img/section_environment_bg.svg"), url("../img/sp/section_environment_bg2.svg");
    background-position: center 25px, center 20vh;
    background-size: auto 50px, 110% auto;
    background-repeat: repeat-x,no-repeat;
    padding: 70px 20px 5%;
	background-color: #f4f4f4;
	animation: bg-sp 30s infinite linear;
}
section#environment .sec-inner {
	border-radius: 20px;
    padding: 20px 0;
	border: 1.5px solid #6fc636;
	
}
section#environment h2 {
	font-size: 1.4375rem;
    background: url(../img/machine1.svg) left center no-repeat;
    background-repeat: no-repeat;
    background-size: 2.5rem auto;
    padding: 1rem 0 0 2.8rem;
    width: 85%;
    margin: 0 auto 1.5rem;
    letter-spacing: 0;
}
section#environment .sec-inner > p {
	margin: 0 0 1rem;
    padding: 0 20px;
}
section#environment .sec-inner .img {
	width: 100%;
	padding: 0 1rem 1rem;
	margin: auto;
}	
section#environment .inner {
	background: url("../img/border_lightgreen.gif") repeat;
	background-size: 10px 10px;
	border-radius: 0;
}
section#environment .inner .machine {
	padding: 30px 20px 10px;
}
section#environment .inner .machine .machine-group {
	display: flex;
	flex-direction: column;
}
section#environment .inner .machine .machine-group .col {
	position: relative;
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 30px 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 2rem;
}
section#environment .inner .machine .machine-group .col:last-of-type {
	margin: 0;
}
section#environment .inner .machine .machine-group .col p {
	position: absolute;
    background-color: #61b043;
    border-radius: 100px;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    letter-spacing: 0;
    line-height: 1.2;
    font-size: 1rem;
    padding: 0.3rem 1rem;
    width: 75%;
    min-height: unset;
}
section#environment .inner .machine .machine-group .col:first-of-type img {
	height: 70px;
	width: auto;
}
section#environment .inner .machine .machine-group .col:nth-child(2) img {
	height: 100px;
	width: auto;
}
section#environment .inner .machine .machine-group .col:last-of-type img {
	height: 80px;
	width: auto;
}
section#environment .inner .inbody img {
	transform: translateY(0);
}
section#environment p.caution {
	text-align: center;
	font-size: .875rem;
	margin: .8rem 0 0;
}
}



/*section#shop -----------------------------------------------------------------*/
section#shop {
	position: relative;
	padding: 110px 50px 70px;
	background: url("../img/section_shop_bg_acce.svg"),url("../img/section_shop_bg.jpg");
	background-repeat: no-repeat;
	background-size: 100% auto, cover;
	background-position: left -4px, center calc(50% + 50px);
	overflow: hidden;
}
section#shop::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(116,201,84,.8);
	position: absolute;
	top: 50%;
	left: 0;
	mix-blend-mode: multiply;
}
section#shop .sec-inner {
	position: relative;
	z-index: 1;
}
section#shop h2 {
	text-align: center;
	font-size: 2.5rem;
	margin: 0 0 50px;
	font-weight: 900;
}
section#shop .shop-table {
	border-radius: 20px;
	background: linear-gradient(135deg, #1e110f 0%, #1e110f 5%, #fff 5%, #fff 100%);
	display: flex;
	align-items: center;
	box-shadow: 0 0 16px 0 rgba(0,0,0,.2);
	padding: 50px;
	gap: 0 30px;
}
section#shop .shop-table dl.text,
section#shop .shop-table .map {
	flex-basis: 50%;
}
section#shop .shop-table dl.text dt {
	font-size: 2.25rem;
	font-weight: 900;
	margin: 0 0 60px;
}
section#shop .shop-table dl.text dd {
	font-size: 1.25rem;
	margin: 0 0 26px;
}
section#shop .shop-table dl.text dd.tel {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
}
section#shop .shop-table dl.text dd.tel span {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	display: inline-block;
	background-color: #1e110f;
	padding: 0 12px;
	color: #fff;
	margin: 0 15px 0 0;
}
section#shop .shop-table dl.text dd ul.tag {
	display: flex;
	gap: 0 8px;
	font-size: 1.125rem;
}
section#shop .shop-table dl.text dd ul.tag li {
	border: 2px solid #1e110f;
	border-radius: 5px;
	padding: 0 12px;
	text-align: center;
}
section#shop .shop-table .map iframe {
	min-height: 500px;
}
@media screen and (max-width: 820px) {
section#shop {
	position: relative;
    padding: 10% 0 13%;
    background: url(../img/section_shop_bg_acce.svg) left 10% no-repeat #f4f4f4;
    overflow: hidden;
}
section#shop::after {
	top: 30%;
	left: 0;
}
section#shop h2 {
	font-size: 1.875rem;
	margin: 0 0 50px;
	font-weight: 900;
}
section#shop .shop-table {
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 0 16px 0 rgba(0,0,0,.2);
	padding: 40px 20px 20px 20px;
	gap: 0 15px;
}
section#shop .shop-table dl.text dt {
	font-size: 1.5rem;
	text-align: center;
	margin: 0 0 2rem;
}
section#shop .shop-table dl.text dd {
	font-size: 1rem;
	margin: 0 0 1.2rem;
	text-align: center;
}
section#shop .shop-table dl.text dd.tel {
	font-size: 1.25rem;
}
section#shop .shop-table dl.text dd.tel span {
	font-size: 1rem;
	margin: 0 .5rem 0 0;
}
section#shop .shop-table dl.text dd ul.tag {
	display: flex;
	gap: 0 5px;
	font-size: 1.125rem;
}
section#shop .shop-table dl.text dd ul.tag li {
	border: 1.5px solid #1e110f;
	border-radius: 3px;
	padding: 0 .5rem;
	text-align: center;
	font-size: .875rem;
}
section#shop .shop-table .map iframe {
	min-height: 240px;
}
}


/*section#infection -----------------------------------------------------------------*/
section#infection {
	background-color: #fff;
	padding: 60px 50px;
	color: #2aafe7;
}
section#infection h2 {
	padding: 68px 0 0;
	background: url("../img/section_infection_h2_acce.svg") center top no-repeat;
	background-size: 68px auto;
	font-size: 1.75rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 30px;
}
section#infection .control-box {
	display: flex;
	background: url("../img/section_infection_bg.gif") left top repeat;
	border-radius: 20px;
	padding: 60px 80px;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px 30px;
}
section#infection .control-box .col {
	flex-basis: calc(calc(100% - 60px) / 3);
	display: flex;
	flex-direction: column;
	gap: 20px 0;
	align-items: center;
}
section#infection .control-box .col .img {
	height: 80px;
}
section#infection .control-box .col .img img {
	height: 100%;
	width: auto;
}
section#infection .control-box .col:nth-of-type(2) .img img,
section#infection .control-box .col:nth-of-type(5) .img img {
	height: 80%;
	margin: 10% 0 0;
}
section#infection .control-box .col p {
	text-align: center;
	letter-spacing: 0;
}
@media screen and (max-width: 820px) {
section#infection {
	padding: 10% 0;
}
section#infection h2 {
	padding: 35px 0 0;
	background: url("../img/section_infection_h2_acce.svg") center top no-repeat;
	background-size: 40px auto;
	font-size: 1.25rem;
	margin: 0 0 1.4rem;
}
section#infection .control-box {
	display: flex;
	border-radius: 10px;
	padding: 25px 20px;
	flex-wrap: wrap;
	gap: 20px 10px;
	font-size: .875rem;
}
section#infection .control-box .col {
	flex-basis: calc(calc(100% - 15px) / 2);
	display: flex;
	flex-direction: column;
	gap: 10px 0;
	align-items: center;
    justify-content: start;
}
section#infection .control-box .col:last-child {
	flex-basis: 100%;
}
section#infection .control-box .col .img {
	height: 50px;
}
section#infection .control-box .col:nth-of-type(5) .img {
	height: 55px;
}
section#infection .control-box .col .img img,
section#infection .control-box .col:nth-of-type(5) .img img {
	height: 100%;
	width: auto;
	margin: 0;
}
section#infection .control-box .col:nth-of-type(2) .img img {
	height: 90%;
}
section#infection .control-box .col p {
	text-align: center;
	letter-spacing: 0;
}
}

/*section#qa -----------------------------------------------------------------*/
section#qa {
	padding: 120px 50px 100px;
	background: #f4f4f4;
}
section#qa h2 {
	position: relative;
	padding: 0 0 0 120px;
    width: 523px;
	font-size: 2.375rem;
	font-weight: 900;
	text-align: center;
	margin: 0 auto 50px;
}
section#qa h2::before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 20%;
	transform: translate(0,-50%);
	width: 115px;
	height: 113px;
	background: url("../img/section_qa_h2_acce.svg") center center no-repeat;
	background-size: contain;
}
section#qa h2 span {
	color: #61b043;
}
section#qa dl {
	position: relative;
	border: 2px solid #1e110f;
	border-radius: 20px;
	background-color: #fff;
	padding: 10px 40px;
	z-index: 1;
	margin: 0 0 30px;
}
section#qa dl:last-child {
	margin: 0;
}
section#qa dl dt {
	position: relative;
	font-size: 1.5rem;
	border-bottom: 1px solid #61b043;
	padding: 30px 0 30px 90px;
	font-weight: 700;
}
section#qa dl dd {
	position: relative;
	font-size: 1.25rem;
	font-weight: 500;
	padding: 30px 0 30px 90px;
}
section#qa dl dd p.lead {
	font-weight: 700;
	font-size: 1.5rem;
	color: #61b043;
}
section#qa dl dd p.lead a {
	color: #61b043;
	text-decoration: underline;
}

section#qa dl dt::before,
section#qa dl dd::before {
	display: flex;
	align-items: center;
	justify-content: center;
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
	width: 60px;
	height: 60px;
	background-color: #1e110f;
	color: #fff;
	font-size: 2.375rem;
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	border-radius: 100px;
}
section#qa dl dt::before {
	content: "Q";
}
section#qa dl dd::before {
	content: "A";
	background-color: #74c954;
}

section#qa .btn-chat {
	max-width: 738px;
	margin: 60px auto 0;
}


@media screen and (max-width: 820px) {
section#qa {
	padding: 15% 0 10%;
	overflow: hidden;
}
section#qa h2 {
	position: relative;
    padding: 0 0 0 4.5rem;
    width: auto;
    min-width: auto;
    font-size: 1.375rem;
    margin: 0 auto 2rem;
}
section#qa h2::before {
	display: block;
	content: "";
	position: absolute;
	left: 15%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 58px;
	height: 58px;
	background: url("../img/section_qa_h2_acce.svg") center center no-repeat;
	background-size: contain;
}
section#qa dl {
	border-radius: 10px;
	padding: 10px 20px;
	z-index: 1;
	margin: 0 0 15px;
}
section#qa dl:last-child {
	margin: 0;
}
section#qa dl dt {
	font-size: 1rem;
	padding: 10px 0 10px 50px;
}
section#qa dl dd {
	font-size: 1rem;
	padding: 10px 0 10px 50px;
}
section#qa dl dd p.lead {
	font-size: 1rem;
	font-weight: 900;
}

section#qa dl dt::before,
section#qa dl dd::before {
	width: 35px;
    height: 35px;
    font-size: 1.625rem;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
}
section#qa dl dd::before {
	top: 10px;
	transform: translate(0,0);
}
section#qa .btn-chat {
	margin: 2rem auto 0;
}
}

/*footer----------------------------------------*/
footer {
	background-color: #232323;
	color: #fff;
}
footer .inner {
	max-width: 1100px;
	padding: 0 50px 20px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
    align-items: center;
	letter-spacing: .1em;
}
footer .inner .logo {
	flex-basis: 40%;
}
footer .inner .logo img {
	width: auto;
	height: 35px;
}
footer .inner p {
	text-align: right;
	flex-basis: 60%;
	font-size: .9rem;
	padding: 2rem 0;
}
footer .inner p span {
	display: block;
	font-size: .7rem;
	margin: 1rem 0 0;
}
@media screen and (max-width: 820px) {
footer .inner {
	padding: 0 20px;
	letter-spacing: .1em;
	gap: 0 10px;
}
footer .inner .logo {
	flex-basis: 30%;
}
footer .inner p {
	flex-basis: 70%;
	font-size: .6rem;
	padding: 2rem 0;
}
footer .inner p span {
	font-size: .4rem;
	letter-spacing: .1em;
	margin: .5rem 0 0;
}
}






