@charset "UTF-8";

/* common */
html, body, div, p, h1, h2, h3, ul, ol, li {
	margin: 0;
	padding: 0;
}

body {
	color: #555;
	font-family: Verdana, "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", sans-serif;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: bottom;
}

h1, h2, h3 {
	font-weight: normal;
}

li {
	list-style: none;
}

header,
main,
footer {
	max-width: 1280px;
	margin: auto;
}

header {
}

main {
}

footer {
	width: 100%;
}

main .container,
footer .container {
	width: 100%;
	max-width: 990px;
	margin: auto;
	padding: 2rem 0;
	box-sizing: border-box;
}

a.btn {
	display: block;
	width: 12em;
	height: 2rem;
	background: #fb83b0;
	border-radius: 1.25rem;
	font-size: 14px;
	color: #fff;
	line-height: 2rem;
	text-align: center;
	box-sizing: border-box;
}

a.btn:after {
	content: "\f0da";
	margin-left: 0.25em;
	font-family: "Font Awesome 5 Free";
	font-size: 1.5em;
	font-weight: 900;
	vertical-align: top;
}

a.btn_email,
a.btn_facebook {
	display: block;
	width: 16em;
	height: 2rem;
	border-radius: 0.75em;
	font-size: 12px;
	line-height: calc(2rem - 4px);
	text-align: center;
	box-sizing: border-box;
}

a.btn_email {
	border: 2px solid #fb83b0;
	color: #fb83b0;
}

a.btn_facebook {
	background: #1a76f1;
	border: 2px solid #1a76f1;
	color: #fff;
}

a.btn_email:before,
a.btn_facebook:before {
	margin-right: 0.25em;
	font-size: 1.5em;
	vertical-align: top;
}

a.btn_email:before {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

a.btn_facebook:before {
	content: "\f09a";
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

@media screen and (min-width: 751px){
	.sp {
		display: none !important;
	}

	main .container > *,
	footer .container > * {
		width: 90%;
		max-width: 810px;
		margin-left: auto;
		margin-right: auto;
	}

	.box {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 5%;
	}

	a.btn_email,
	a.btn_facebook {
		display: inline-block;
	}
}

@media screen and (max-width: 750px){
	.no-sp {
		display: none !important;
	}

	h1 {
		font-size: 5.5vw;
	}
	h2 {
		font-size: 5.5vw;
	}
	h3 {
		font-size: 5vw;
	}

	main .container,
	footer .container {
		width: 85%;
		padding: 1.5rem 0;
	}

	a.btn {
		border-radius: 0.75em;
	}
}

/* nav */

nav {
	position: relative;
	height: 4rem;
}

nav h2 {
	height: 4rem;
	padding: 0.5rem;
	box-sizing: border-box;
}

nav a.btn {
	position: relative;
	width: 13em;
	background: transparent;
	border: 2px solid #f16b9f;
	color: #f16b9f;
	line-height: calc(2rem - 4px);
}

nav a.btn:before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0.35rem;
	width: 1.5rem;
	height: 1.5rem;
	margin: auto;
	background: url(../img/top/label.png) center center no-repeat;
	background-size: contain;
}

nav a.btn:after {
	display: none;
}

nav a.btn.no-sp {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 13.5em;
	margin: auto;
	padding: 0 0 0 1.5rem;
}

nav div {
	position: absolute;
	top: 0;
	right: 0;
}

nav div > a {
	position: relative;
	display: block;
	padding: 0 4rem 0 2rem;
	background: #f16b9f;
	color: #fff;
	line-height: 4rem;
}

nav div > a > span {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	right: 1.5rem;
	width: 1.5rem;
	height: 1.5rem;
	margin: auto;
}

nav div > a > span span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	border-radius: 1px;
	background: #fff;
}

nav div > a > span span:nth-of-type(1) {
	top: 0;
}

nav div > a > span span:nth-of-type(2) {
	top: calc(50% - 1px);
}

nav div > a > span span:nth-of-type(3) {
	bottom: 0;
}

nav div ul {
	position: absolute;
	display: block;
	top: 4rem;
	right: 0;
	width: 100%;
	background: #fff;
	text-align: center;
	display: none;
}

nav div ul li {
	border-top: 1px solid #ccc;
}

nav div ul li a {
	display: block;
	padding: 1rem 0;
	line-height: 1rem;
	color: #f16b9f;
}

@media screen and (min-width: 751px){
	nav div ul a:hover {
		background: #bfbdbe;
		color: #fff;
	}
}

@media screen and (max-width: 750px){
	nav {
		height: 3.5rem;
	}

	nav h2 {
		height: 3.5rem;
		padding: 0.5rem;
	}

	nav div > a {
		width: 3.5rem;
		padding: 0;
		line-height: 3.5rem;
		text-indent: -999px;
	}

	nav div > a > span {
		position: absolute;
		display: block;
		right: 0;
		left: 0;
	}

	nav div ul {
		top: 3.5rem;
		width: 10em;
	}

	nav div .sp {
		padding: 0.5rem 0;
	}

	nav div .btn {
		height: 2rem;
		margin: auto;
		padding: 0 0 0 1.5rem;
		border-radius: 1rem;
		line-height: calc(2rem - 4px);
		font-size: 12px;
	}

	nav div .btn:before {
		left: 0.15rem;
	}
}

/* parts */
.about {
	background: #f8f8f6;
}

.about h2 {
	color: #6e3e4c;
	line-height: 2.5;
}

.about .box {
	margin-bottom: 2rem;
}

.about a.btn {
	margin-top: 1.5em;
}

@media screen and (min-width: 751px) and (max-width: 990px) {
	.about h2 {
		font-size: 2.5vw;
	}
}

@media screen and (max-width: 750px){
	.about a.btn {
		margin-left: auto;
		margin-right: auto;
	}
}

.fasting {
	background: url(../img/top/fasting_bg.jpg) top center no-repeat;
	background-size: cover;
}

.fasting h2 {
	text-align: center;
	margin-bottom: 1.5rem;
}

.fasting li {
	background: #fff;
	filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.fasting li h3,
.fasting li .txt,
.fasting li .lnk {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.fasting li h3 {
	padding-top: 1rem;
	line-height: 2;
	color: #6e3e4c;
	text-align: center;
}

.fasting li .lnk {
	padding-top: 1rem;
	padding-bottom: 1.5rem;
}

.fasting a.btn {
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width: 751px){
	.fasting li {
		position: relative;
		padding-bottom: 4.5em;
	}

	.fasting li .lnk {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		box-sizing: border-box;
	}
}

@media screen and (max-width: 750px){
	.fasting h2 {
		margin-bottom: 1rem;
	}
	.fasting .box > * {
		margin-bottom: 2em;
	}
}

.achievement {
	background: url(../img/top/achievement_bg.jpg) center center no-repeat;
	background-size: cover;
}

.achievement h2 {
	margin-bottom: 0.75rem;
	color: #f76663;
}

.achievement a.btn {
	margin: 1.5rem auto 0 auto;
}

.achievement .box > *:first-child {
	text-align: center;
}

@media screen and (min-width: 751px){
	.achievement .container {
		padding: 3rem 0;
	}
	.achievement .box {
		grid-template-columns: 0.85fr 1.15fr;
	}
}

@media screen and (max-width: 750px){
	.achievement {
		background: rgba(255, 255, 255, 0.5) url(../img/top/achievement_bg_sp.jpg) center center no-repeat;
		background-size: cover;
	}

	.achievement .box > *:last-child {
		margin: 1.75em 0;
	}
}

.salon {
	background: url(../img/top/salon_bg.jpg) top center no-repeat;
	background-size: cover;
}

.salon a.btn {
	margin: 1.5em auto 0 auto;
	background: #6d3d4b;
	border-radius: 0;
}

@media screen and (max-width: 750px){
	.salon .container {
		width: 95%;
	}
}

.youtube {
	background: url(../img/top/youtube_bg.jpg) top center no-repeat;
	background-size: cover;
	color: #fff;
}

.youtube .container {
	padding-top: 4rem;
}

.youtube h2 {
	line-height: 1;
	margin-bottom: 1rem;
}

.youtube h2 img {
	height: 1.25em;
	vertical-align: middle;
}

.youtube .box p {
	word-break: break-all;
}

.youtube .lnk {
	text-align: center;
}

.youtube .lnk img {
	width: 180px;
}

@media screen and (min-width: 751px) and (max-width: 990px) {
	.youtube h2 {
		font-size: 2.5vw;
	}
}

@media screen and (min-width: 751px){
	.youtube .box {
		margin-bottom: 2rem;
	}

	.youtube .box p {
		line-height: 2;
		margin-bottom: 0.5rem;
	}
}

@media screen and (max-width: 750px){
	.youtube .box p {
		margin-bottom: 2rem;
	}

	.youtube .lnk {
		margin-bottom: 1rem;
	}
}

.thefasting {
	background: url(../img/top/thefasting_bg.jpg) top center no-repeat;
	background-size: cover;
}

.thefasting a.btn {
	display: inline-block;
	margin-top: 1em;
	background: #fb83b0;
	border: 2px solid #fb83b0;
	color: #fff;
	line-height: calc(2rem - 4px);
}

.thefasting a.btn2 {
	position: relative;
	padding: 0 0 0 2em;
	border: 2px solid #fb83b0;
	background: transparent;
	color: #fb83b0;
	font-size: 80%;
	width: 13em;
}

.thefasting a.btn2:after {
	display: none;
}

.thefasting a.btn2:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  background: url(../img/top/label.png) center center no-repeat;
    background-size: auto;
  background-size: contain;
}

.thefasting a.btn3 {
	background: #00b900;
	border: 2px solid #00b900;
	color: #fff;
	line-height: calc(2rem - 4px);
}

@media screen and (min-width: 751px){


.thefasting a.btn3 {
	width: 25em;
	height: 3rem;
	line-height: calc(3rem - 4px);
	border-radius: 0.75rem;
}


}

@media screen and (max-width: 750px){
	.thefasting {
		background: url(../img/top/thefasting_bg.jpg) bottom center no-repeat;
		background-size: cover;
	}

	.thefasting a.btn {
		display: block;
		margin: 1em auto;
	}
}

.greetings {
	background: #f8f8f6;
}

.greetings .box > *:last-child {
	text-align: center;
}

.greetings h2 {
	margin-bottom: 0.5rem;
	color: #6e3e4c;
}

.greetings .box > *:first-child p {
	line-height: 1.75;
}

.greetings a.btn {
	background: transparent;
	border: 2px solid #828282;
	color: #828282;
	line-height: calc(2rem - 4px);
}

@media screen and (min-width: 751px){
	.greetings .box {
		display: block;
	}

	.greetings .box:after {
		content: "";
		display: block;
		clear: both;
	}

	.greetings .box > *:first-child,
	.greetings .box > *:last-child {
		float: left;
		width: calc(100% - 250px - 5%);
		text-align: left;
	}

	.greetings .box > *:nth-child(3n+2) {
		float: right;
		width: 250px;
	}

	.greetings a.btn {
		margin-top: 1.25em;
	}

	.greetings a.btn_email,
	.greetings a.btn_facebook {
		margin-top: 1.75em;
	}
}

@media screen and (max-width: 750px){
	.greetings h2 {
		text-align: center;
	}

	.greetings .box > *:nth-child(3n+2) {
		text-align: center;
	}

	.greetings .box img {
		width: 200px;
	}

	.greetings a.btn {
		margin: 1.25em auto 3em auto;
	}

	.greetings .btn_email,
	.greetings .btn_facebook {
		width: 100%;
		max-width: 400px;
		margin: 1rem auto;
		height: 4rem;
		font-size: 100%;
		line-height: calc(4rem - 4px);
	}
}

.link {
	background: #42393c;
	font-size: 75%;
	color: #fff;
	text-align: center;
}

.link li {
	position: relative;
	display: inline-block;
	padding: 0.75em 0.75em 0 0.75em;
	line-height: 1.5em;
}

.link li:after {
	content: "|";
	position: absolute;
	bottom: 0.25em;
	right: -0.5em;
	width: 1em;
	line-height: 1em;
	text-align: center;
}

.link li:first-of-type {
	padding-left: 0;
}

.link li:last-of-type:after {
	display: none;
}

.link a {
	color: #fff;
}

@media screen and (max-width: 750px){
	.link h1 {
		font-size: 5vw;
	}
}

#floating {
	position: fixed;
	bottom: 42px;
	right: 0;
	width: 240px;
}

#floating2 {
	position: fixed;
	bottom: 130px;
	right: 0;
	width: 240px;
}

@media screen and (max-width: 750px){
	footer {
		padding-bottom: 32vw;
	}
	#floating {
		left: 0;
		bottom: 0;
		width: 100%;
		height: 45vw;
		background: url(../img/top/shopbtn.png) bottom center no-repeat;
		background-size: cover;
		pointer-events: none;
	}
	#floating a {
		display: block;
		margin-top: 14vw;
		width: 100%;
		height: 32vw;
		pointer-events: initial;
	}
	#floating img {
		display: none;
	}
	
	
	#floating2 {
		width: 100%;
	}

	#floating2 img {
		width: 50%;
	}
}