@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hurricane&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Zen+Old+Mincho&display=swap');


/* -------------------------------------------

base

------------------------------------------- */
:root {
	--brown: #9b8b4d;
	--orange: #dcaa5b;
	--grey: #cbcbcb;
	--bg-beige: #f7f7f0;
	--bg-grey: #f7f7f7;
	--prime: #9b8b4d;
	--pink: #E84191;
	--font-sans: "Noto Sans JP", sans-serif;
	--font-lora: "Lora", serif;
	--font-hurricane :"Hurricane", cursive;
}
body {
	color: #494949;
	/*font-family: 'Noto Serif JP', serif;*/
	font-family: "Zen Old Mincho", serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}

/* ------ link ------ */
a {
	color: #000;
	text-decoration: none;
    transition: 0.3s ease-in-out;
	word-break: break-word;
}
a.line {
	text-decoration: underline;
}
a:hover.line {
	text-decoration: none;
}
a:hover {
    opacity: 0.5;
}
@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        text-decoration: underline;
    }
}

/* ------ font-size ------ */
html {
    font-size: 0.833vw;
}
@media screen and (max-width: 768px) {
    html {
        font-size: 1.303vw;
    }
}
@media screen and (max-width: 540px) {
    html {
        font-size: 1.851vw;
    }
}
@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }
}



/* -------------------------------------------

layout

------------------------------------------- */
/* ------ header ------ */
header {
	position: relative;
	z-index: 99;
	font-family: "Zen Old Mincho", serif;
}
header .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 5rem 0;
}
@media screen and (max-width: 768px) {
	header .wrap {
		justify-content: center;
		padding: 0;
		height: 6rem;
	}
}
header h1 {
	line-height: 1;
	display: flex;
	flex-direction: column;
	font-size: 0.9rem;
	font-weight: normal;
	padding-top: 0.8rem;
}
header h1 span {
	display: block;
	margin-bottom: 1rem;
	letter-spacing: 0;
}
header h1 img {
	width: 30.7rem;
}
@media screen and (max-width: 768px) {
	header h1 {
		display: block;
		padding-top: 0;
		width: 20rem;
	}
	header h1 img {
		width: 100%;
	}
}
header .wrap > div {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
header .wrap > div > div {
	display: flex;
	align-items: center;
}
header .wrap > div > div:nth-of-type(1) {
	margin-bottom: 0.5rem;
}
/* カウンセリング・施術予約 */
a.reserve {
	background: var(--brown);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 3.2rem;
	padding: 0 1.5rem 0.15rem 1.5rem;
}
@media screen and (max-width: 768px) {
	a.reserve {
		height: 4.4rem;
		font-size: 1.6rem;
	}
}
/* sns */
header .sns {
	display: flex;
	margin-left: 2rem;
}
header .sns img{
  max-width: 100%;
  height: auto;

}
header .sns li {
	width: 2.8rem;
}
header .sns li:not(:last-child) {
	margin-right: 1rem;
}
/* time */
header ul.time {
	margin-left: 2.5rem;
}

/* ------ nav ------ */
.gnav {
	background: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 5.2rem;
	padding-bottom: 0.15rem;
	position: relative;
	z-index: 10;
}
ul.gnav-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
}
ul.gnav-menu > li {
	white-space: nowrap;
}
ul.gnav-menu > li:not(:last-child) {
	margin-right: 3.8rem;
}
ul.gnav-menu > li > a {
	display: flex;
	align-items: center;
	height: 5.6rem;
}
ul.gnav-menu > li > a:hover {
	opacity: 1;
	color: #E84191;
}
ul.gnav-menu > li.gnav-menu-price:hover ul {
	opacity: 1;
	pointer-events: all;
}
ul.gnav-menu > li > ul {
	position: absolute;
	left: 0;
	top: 5.6rem;
	width: 100%;
	background: #E84191;
	pointer-events: none;
	display: flex;
	justify-content: center;
	padding: 2rem 0;
	transition: all .3s;
	opacity: 0;
}
ul.gnav-menu > li > ul li:not(:last-child) {
	margin-right: 3rem;
}
ul.gnav-menu > li > ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
	line-height: 1;
}
ul.gnav-menu > li > ul li img {
	width: 20rem;
	margin-bottom: 1rem;
}

/* ------ footer ------ */
footer {
	background: #fff;
	color: #fff;
	padding-top: 2.5rem;
	border-top: 5.5px solid #E84191;
}
@media screen and (max-width: 768px) {
	footer {
		padding: 4rem 0 6rem 0;
	}
}
/* nav */
footer nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
footer nav ul li:not(:last-child) {
	margin-right: 6.5rem;
}
@media screen and (max-width: 768px) {
	footer nav {
		padding: 0 2.5rem;
	}
	footer nav ul {
		justify-content: flex-start;
		flex-wrap: wrap;
		font-size: 1.3rem;
	}
	footer nav ul li:not(:last-child) {
		margin-right: 0;
	}
	footer nav ul li {
		width: calc(100% / 3);
		text-align: center;

	}
	footer nav ul li:nth-child(10),
	footer nav ul li:nth-child(11) {
		border-bottom: none;
	}
	footer nav ul li a {
		padding: 0.7rem 0;
		display: block;
		white-space: nowrap;
	}
}
/* wrap */
.footer-inner {
    background: #F5F5F5;
	padding: 2rem 0 0 0;
	margin-top: 3rem;
}
footer .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 68.7rem;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	footer .wrap {
		flex-direction: column;
		width: 100%;
		margin: 4rem auto;
	}
}
footer .logo {
	width: 27.6rem;
	margin: 0 auto 2rem auto;
}
footer ul.time {
	color: #494949;
	font-size: 1.4rem;
}
footer ul.time dl dd {
	border-left: none;
	letter-spacing: 0;
}
footer .sns {
    display: flex;
    margin-left: 2rem;
}
footer .sns li {
    width: 2.8rem;
}
footer .sns li:not(:last-child) {
	margin-right: 1rem;
}
@media screen and (max-width: 768px) {
	footer ul.time {
		margin-bottom: 3rem;
	}
	footer ul.time dl dd {
		border-left: none;
	}
}
footer a.reserve {
	background: #fff;
	color: var(--brown);
	margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
	footer a.reserve {
		width: 32rem;
		margin-bottom: 2rem;
	}
}
footer dl.tel dt {
	border-bottom: solid 1px #494949;
	padding: 0.5rem 1.2rem 0.6rem 1.2rem;
	font-size: 1.2rem;
	color: #494949;
}
footer dl.tel a {
	font-size: 2.8rem;
	color: #000;
}
footer dl.tel a i {
	color: #494949;
}
@media screen and (max-width: 768px) {
	footer dl.tel {
		margin-bottom: 4rem;
		margin-top: 1rem;
	}
	footer dl.tel dt {
		width: 32rem;
		text-align: center;
		font-size: 1.4rem;
		padding: 0.8rem 0 0.9rem 0;
		margin-bottom: 0.6rem;
	}
	footer dl.tel a {
		font-size: 4rem;
		text-decoration: none;
	}
	footer dl.tel a i {
		color: #494949;
		font-size: 2.4rem;
	}
	footer ul.time dl {
		font-size: 2.4rem;
	}
	footer ul.time dl dd.work-time {
		font-size: 2rem;
	}
	footer ul.time dl dd.holiday {
		font-size: 2rem;
	}
	footer .sns {
		margin-left: 0;
	}
	footer .sns li {
		width: 4.8rem;
	}
}
footer .wrap > div:last-of-type {
	display: flex;
	align-items: flex-end;
}
footer .wrap > div:last-of-type > a {
	font-size: 2.8rem;
	line-height: 1;
	margin-right: 2rem;
}
@media screen and (max-width: 768px) {
	footer .wrap > div:last-of-type > a {
		font-size: 3.6rem;
	}
}
footer .wrap > div:last-of-type > div {
	width: 20rem;
}
footer small {
	display: block;
	text-align: center;
	font-size: 0.9rem;
	padding: 3.4rem 0 1.2rem 0;
	color: #494949;
}
@media screen and (max-width: 768px) {

}

/* ------ page-ttl ------ */
.page-ttl {
	background: url(../img/mv.jpg) no-repeat center right / cover;
}
.page-ttl > div {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 24.9rem;
	padding-bottom: 0.2rem;
}
.page-ttl h2 {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
.page-ttl h2 span {
	color: #E84191;
	font-family: "Cormorant Garamond", serif;
	font-size: 4.2rem;
	letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
	.page-ttl > div {
		height: 13rem;
	}
	.page-ttl h2 {
		font-size: 2.4rem;
	}
	.page-ttl h2.adjust {
		font-size: 2.8rem;
		line-height: 1.3;
		text-align: center;
	}
	.page-ttl h2 span {
		font-size: 3rem
	}
}

/* ------ base-width ------ */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
	}
}

/* ------ container ------ */
.container {
	margin: 8rem auto 10rem auto;
	width: 88rem;
}
@media screen and (max-width: 768px) {
	.container {
		margin: 6rem 3rem 8rem 3rem;
		width: auto;
	}
}

/* ------ page-top ------ */
#page-top {
    position: fixed;
	z-index: 999;
	bottom: 1rem;
	right: 1rem;
}
#page-top a {
	background: #E84191;
	color: #fff;
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 1.6rem;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 7rem;
	}
}



/* -------------------------------------------

style

------------------------------------------- */
/* ------ tel ------ */
dl.tel {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
	border: 0.43px solid #494949;
	padding: 0 0.85rem 1rem;
}
dl.tel dt {
    border-bottom: 0.43px solid #494949;
    margin-bottom: 0.3rem;
    padding: 0.5rem 0 0.6rem 0;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}
dl.tel a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.4rem;
	color: #000;

}
dl.tel a i {
	color: #494949;
	font-size: 1.6rem;
	margin-top: 0.4rem;
	margin-right: 0.4rem;
}

/* ------ time ------ */
ul.time {
	display: flex;
	align-items: center;
	font-size: 1.2rem;
	color: #505050;
}
ul.time li:first-child {
	margin-right: 2rem;
}
ul.time dl {
	display: flex;
	align-items: center;
	font-size: 1rem;
	letter-spacing: 0.1em;

}
ul.time dl dd {
	border-left: solid 0.15rem var(--grey);
	display: flex;
	align-items: center;
	height: 4rem;
	padding-left: 0.5rem;
	margin-left: 1rem;
	font-size: 1rem;
}
ul.time dl dd.work-time {
	letter-spacing: 0;
}
ul.time dl dd.holiday {
	border-left: none;
}
@media screen and (max-width: 768px) {
	ul.time {
		display: block;
	}
	ul.time li:first-child {
		margin-right: 0;
		margin-bottom: 2rem;
	}
	ul.time dl {
		flex-direction: column;
		align-items: center;
	}
	ul.time dl dd {
		border-left: none;
		display: block;
		height: auto;
		padding-left: 0;
		margin-left: 0;
		padding-top: 0.5rem;
		margin-top: 0.5rem;
		width: 100%;
		text-align: center;
	}
}

/* ------ timetable ------ */
.timetable {
	width: 100%;
	border-collapse: collapse;
	background-color: #fff;
	color: #E84191;
	font-size: 1.2rem;
}
.timetable thead {
	background: #E84191;
	color: #fff;
}
.timetable thead th {
	font-weight: 500;
}
.timetable th,
.timetable td {
	text-align: center;
	padding: 1rem;
	vertical-align: middle;
}
.timetable tbody > tr:nth-of-type(1) td {
	border-bottom: solid 0.01rem #000
}
@media screen and (max-width: 768px) {
	.timetable {
		font-size: 1.3rem;
	}
}

/* ------ heading ------ */
.heading-1 {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	margin-bottom: 3rem;
	position: relative;
}
/*
.heading-1::before,
.heading-1::after {
	content: "";
	width: 1.5rem;
	height: 6rem;
	border-top: solid 0.15rem #787878;
	border-bottom: solid 0.15rem #787878;
}
.heading-1::before {
	border-left: solid 0.15rem #787878;
	margin-right: 3rem;
}
.heading-1::after {
	border-right: solid 0.15rem #787878;
	margin-left: 2.7rem;
}*/
.heading-1 > * {
	font-weight: normal;
	display: flex;
	flex-direction: column;
	align-items: center;
	letter-spacing: 0.1em;
}
.heading-1 .jp {
	font-weight: 500;
	font-size: 1.7rem;
	margin-bottom: 0.5rem;
	letter-spacing: 0.05em;
}
.heading-1 .en {
	font-size: 4.2rem;
	font-family: "Cormorant Garamond", serif;
	color: #E84191;
	letter-spacing: 0.04em;
}
.heading-2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
	margin-bottom: 4rem;
}
.heading-2 .en {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 4.4rem;
	font-weight: normal;
	margin-bottom: 1.3rem;
	color: #E84191;
	font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 768px) {
	.heading-2 .en {
		font-size: 3.0rem;
	}
}
/*
.heading-2 .en::before,
.heading-2 .en::after {
	content: "";
	width: 5.2rem;
	height: 1.2rem;
}
.heading-2 .en::before {
	background: url(../img/bg-ttl-1.png) no-repeat;
	background-size: 100% auto;
	margin-right: 2rem;
}
.heading-2 .en::after {
	background: url(../img/bg-ttl-2.png) no-repeat;
	background-size: 100% auto;
	margin-left: 2rem;
}*/

@media screen and (max-width: 768px) {
	.heading-2 .en::before {
		margin-right: 1.5rem;
	}
	.heading-2 .en::after {
		margin-left: 1.5rem;
	}
}
.heading-2.wh {
	color: #fff;
}
.heading-2.wh .en {
	color: #fff;
}
.heading-2.wh .en::before {
	background: url(../img/bg-ttl-1-wh.png) no-repeat;
	background-size: 100% auto;
}
.heading-2.wh .en::after {
	background: url(../img/bg-ttl-2-wh.png) no-repeat;
	background-size: 100% auto;
}
.heading-3 {
    text-align: center;
    font-weight: normal;
    color: #E84191;
    font-size: 2.8rem;
    margin-bottom: 6rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.heading-3::after {
    content: "";
    width: 6rem;
    height: 0.12rem;
    background: #E84191;
    margin-top: 2rem;
}

/* ------ more ------ */
.more {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 27rem;
	color: #fff;
	height: 4.4rem;
	background: var(--brown);
	margin: 0 auto;
}
.more.more__pink {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 27rem;
	color: #fff;
	height: 4.4rem;
	background: var(--pink);
	margin: 0 auto;
}
.more i {
	margin-left: 0.8rem;
	margin-top: 0.2rem;
}
.more.wh {
	background: #fff;
	color: var(--brown);
}
@media screen and (max-width: 768px) {
	.more {
		width: 100%;
	}
}

/* ------ ttl ------ */
.ttl {
	border-bottom: solid 1px rgba(0,0,0,0.2);
	font-size: 2.2rem;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
	font-weight: 500;
}
.ttl:after {
	border-bottom: solid 0.4rem #E84191;
	bottom: -0.4rem;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
@media screen and (max-width: 768px) {
	.ttl:after {
		width: 40%;
	}
	.ttl_thanks{
		font-size: 2.0rem;

	}
}

/* ------ detail ------ */
dl.detail {
	display: flex;
	flex-wrap: wrap;
}
dl.detail dt {
	padding: 1.5rem;
	width: 22.6%;
	white-space: nowrap;
	font-weight: 500;
	border-bottom: solid 0.15rem #DAD8D3;
	color: #E84191;
}
dl.detail dd {
	padding: 1.5rem;
	width: 77.4%;
	border-bottom: solid 0.15rem #DAD8D3;
}
dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
	border-bottom: none;
}
@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
	}
	dl.detail dt {
		display: flex;
		align-items: center;
		padding: 1.2rem 1.2rem 0.3rem 1.2rem;
		width: 100%;
		border-bottom: none;
	}
	dl.detail dt::before {
		content: "◆";
		font-size: 1.2rem;
		margin-right: 0.5rem;
		color: #E84191;
	}
	dl.detail dd {
		padding: 0 1.2rem 1.2rem 1.2rem;
		width: 100%;
	}
}



/* -------------------------------------------

hamburger

------------------------------------------- */
.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	background: var(--bg-grey);
}
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.gnav-sp-menu li {
	font-size: 1.6rem;
	text-align: center;
	font-weight: 500;
	line-height: 1.4;
}
.gnav-sp-menu li span {
	display: block;
}
.gnav-sp-menu li a {
	display: block;
	padding: 1rem 0;
	white-space: nowrap;
}

.gnav-sp .sns {
    display: flex;
    margin-left: 2rem;
	margin-top: 6rem;
}
.gnav-sp .sns li {
    width: 2.8rem;
}
.gnav-sp .sns li:not(:last-child) {
	margin-right: 1rem;
}

/* ------ toggle ------ */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: #E84191;
}
.toggle-btn span {
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 0.2rem;
	background-color: #fff;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.7rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.5rem;
}
/* ------ open ------ */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span {
	background-color: #fff;
}
.open .toggle-btn span:nth-child(1) {
	-webkit-transform: translateY(0.8rem) rotate(-45deg);
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	-webkit-transform: translateY(-0.8rem) rotate(45deg);
	transform: translateY(-0.8rem) rotate(45deg);
}



/* -------------------------------------------

class

------------------------------------------- */
/* ------ txt-vertical ------ */
.txt-vertical {
	writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
	.txt-vertical.not {
		writing-mode: horizontal-tb;
		white-space: normal;
	}
}

/* ------ hv-center ------ */
.hv-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	width: 100%;
	z-index: 99;
}

/* ------ list ------ */
ul.list-group li {
	margin-left: 2rem;
	list-style: disc;
}
ul.list-group li::marker {
	color: #E84191;
}
ul.list-group li:not(:last-child) {
	margin-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
	ul.list-group li:not(:last-child) {
		margin-bottom: 1.2rem;
	}
}

/* ------ prepare ------ */
.prepare {
    text-align: center;
    padding: 8rem 0;
    font-size: 2.4rem;
	color: #E84191;
}

/* ------ map ------ */
.gmap iframe {
	width: 100%;
	height: 36rem;
}
.gmap.grey iframe {
	filter:grayscale(100%);
}

/* ------ display ------ */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}

/* ------ margin ------ */
.mb-10 { margin-bottom: 1rem !important; }
.mb-15 { margin-bottom: 1.5rem !important; }
.mb-20 { margin-bottom: 2.0rem !important; }
.mb-25 { margin-bottom: 2.5rem !important; }
.mb-30 { margin-bottom: 3.0rem !important; }
.mb-35 { margin-bottom: 3.5rem !important; }
.mb-40 { margin-bottom: 4.0rem !important; }
.mb-45 { margin-bottom: 4.5rem !important; }
.mb-50 { margin-bottom: 5.0rem !important; }
.mb-55 { margin-bottom: 5.5rem !important; }
.mb-60 { margin-bottom: 6.0rem !important; }
.mb-65 { margin-bottom: 6.5rem !important; }
.mb-70 { margin-bottom: 7.0rem !important; }
.mb-75 { margin-bottom: 7.5rem !important; }
.mb-80 { margin-bottom: 8.0rem !important; }
.mb-85 { margin-bottom: 8.5rem !important; }
.mb-90 { margin-bottom: 9.0rem !important; }
.mb-95 { margin-bottom: 9.5rem !important; }
.mb-100	{ margin-bottom: 10.0rem !important; }




/* -------------------------------------------

fade

------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(2rem);
}
.fade.is-animation {
    animation: fade 0.5s ease;
    animation-fill-mode: both;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.35s !important; }
.delay-3 { animation-delay: 0.5s !important; }
.delay-4 { animation-delay: 0.65s !important; }
.delay-5 { animation-delay: 0.8s !important; }




/* -------------------------------------------

menu low

------------------------------------------- */
/* ------ lcmenu ------ */
ul.lcmenu {
	display:flex;
	flex-wrap: wrap;
	margin-bottom: 4rem;
	justify-content: space-between;
}
ul.lcmenu li {
	width: 32%;
	text-align: center;
	margin-bottom: 2%;
}
ul.lcmenu li a {
	display: block;
	padding: 1.6rem 0 1.8rem 0;
	background: #fff;
	white-space: nowrap;
}
ul.lcmenu li.current a {
	color: #fff;
	background: var(--color);
}
@media screen and (max-width: 768px) {
	ul.lcmenu li {
		width: 49%;
	}
	ul.lcmenu li a {
		padding: 1.2rem 0 1.3rem 0;
	}
}

/* ------ menu-list ------ */
dl.menu-list dt,
dl.menu-list dd,
dl.menu-list dt.var,
dl.menu-list dt.var + dd {
	border-bottom: solid 1px rgba(0,0,0,0.2); /* メニュー下線カラー */
}
dl.menu-list dt:first-child,
dl.menu-list dt:first-child + dd {
	border-top: solid 1px rgba(0,0,0,0.2); /* メニュー上線カラー */
}
dl.menu-list dt:nth-of-type(odd),
dl.menu-list dt:nth-of-type(odd) + dd{
	background:rgba(0,0,0,0.04); /* メニュー背景色 */
}
dl.menu-list dt.var + dd dl dt:nth-of-type(odd){
	background: none !important;
}
dl.menu-list dt.var + dd dl dt:nth-of-type(odd) + dd{
	background: none !important;
}
dl.menu-list {
	display: flex;
	flex-wrap: wrap;
}
dl.menu-list dt {
	padding: 1.5rem;
	width: 70%;
}
dl.menu-list dt span {
	display: block;
	font-size: 1.2rem;
	font-weight: normal;
}
dl.menu-list dd {
	padding: 1.5rem;
	width: 30%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: right;
}
dl.menu-list dt.thumb {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
dl.menu-list dt.thumb i:first-of-type {
	width: 16rem;
	display: block;
}
dl.menu-list dt.thumb i:last-of-type {
	width: calc(100% - 18rem);
}
@media screen and (max-width: 768px) {
	dl.menu-list {
		display: block;
	}
	dl.menu-list dt {
		width: 100%;
		border-bottom: none;
		padding: 1.5rem 1.5rem 0 1.5rem;
	}
	dl.menu-list dd {
		width: 100%;
		border-top: none;
		padding: 0 1.5rem 1.5rem 1.5rem;
	}
	dl.menu-list dt:first-child + dd {
		border-top: none;
	}
	dl.menu-list dt.thumb {
		display: block;
	}
	dl.menu-list dt.thumb i:first-of-type {
		width: 100%;
		margin: 0.5rem auto 1.5rem auto;
	}
	dl.menu-list dt.thumb i:last-of-type {
		width: 100%;
	}
}




/* -------------------------------------------

gallery low

------------------------------------------- */
.gallery-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	justify-content: center;
	width: 90%;
	margin: 8rem auto;
}
.gallery-list li {
	margin: 0 1rem 2rem 1rem;
}
.gallery-list img {
	border-radius: 50%;
	height: 11vw;
	width: 11vw;
	object-fit: cover;
}
.gallery-list span {
	display: block;
	font-size: 1.2rem;
	line-height: 1.7;
	margin: 1.2rem 0 0 0;
	text-align: center;
	width: 11vw;
}
@media screen and (max-width: 768px) {
	.gallery-list {
		margin: 4rem auto;
		width: 95%;
	}
	.gallery-list li {
		margin: 0 0.5rem 1.5rem 0.5rem;
	}
	.gallery-list img {
		width: 17vw;
		height: 17vw;
	}
	.gallery-list span {
		font-size: 1rem;
		margin: 1rem auto 0 auto;
		width: 16vw;
	}
}




/* -------------------------------------------

news text

------------------------------------------- */
/* ------ CMS-NEWS ------ */
.CMS-NEWS-INDEX {
    position: relative;
    padding-bottom: 10rem;
}
.CMS-NEWS-ITEM a {
    transition: all .3s;
    display: flex;
	align-items: center;
    padding: 1rem 0;
}
.CMS-NEWS-ITEM a:hover {
    opacity: 0.6;
}
.CMS-NEWS-TIME {
    font-size: 1.14rem;
    width: 18%;
	color: #E84191;
}
.CMS-NEWS-LINK {
    width: 76%;
	position: relative;
}
.CMS-NEWS-LINK::after {
	content: ">";
	position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	color: #E84191;
	font-size: 1.6rem;


}

/* ------ CMS-NEWS-MORE-READ ------ */
.CMS-NEWS-MORE-READ {
    background: #E84191;
    border:none;
    text-align: center;
    padding: 1.6rem 0 1.7rem 0;
    font-size: 1.4rem;
    color: #fff !important;
    text-align: center;
    width: 28rem;
    display: block;
    transition: all .3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
	font-family: 'Noto Serif JP', serif;
}
.CMS-NEWS-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}

/* ------ CMS-NEWS-TITLE ------ */
.CMS-NEWS-TITLE {
    border-bottom: solid 1px rgba(0,0,0,0.2);
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
	font-weight: 500;
}
.CMS-NEWS-TITLE:after {
    border-bottom: solid 0.5rem #E84191;
    bottom: -0.5rem;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}
.CMS-NEWS-CONTENT img {
    width: 70%;
    height: auto;
    display: block;
    margin: 4rem auto;
}
@media screen and (max-width: 768px) {
    .CMS-NEWS-ITEM a {
        display: block;
		padding: 1rem 0;
    }
    .CMS-NEWS-TIME {
        width: 100%;
    }
    .CMS-NEWS-LINK {
        width: 100%;
    }
    .CMS-NEWS-CONTENT img {
        width: 100%;
    }
    .CMS-NEWS-INDEX > * img {
        height: auto;
    }
}



/* -------------------------------------------

blog

------------------------------------------- */
.CMS-ARTICLE-INDEX {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 10rem;
}
.CMS-ARTICLE-INDEX > * {
    width: 23.8%;
    margin-right: 1.5%;
	margin-bottom: 1.5%;
}
.CMS-ARTICLE-INDEX > *:nth-of-type(4n) {
    margin-right: 0;
}
/*.CMS-ARTICLE-INDEX > *:nth-of-type(n + 4) {
    margin-top: 3.5rem;
}*/
.CMS-ARTICLE-ITEM a {
    transition: all .3s;
    display: block;
}
.CMS-ARTICLE-ITEM a:hover {
    opacity: 0.6;
}
.CMS-ARTICLE-TIME {
    font-size: 1.14rem;
    margin: 1.8rem 0 0.6rem 0;
    line-height: 1;
	color: #E84191;
}
.CMS-ARTICLE-LINK {
    font-size: 1.4rem;
    line-height: 1.8;
	font-weight: 700;
}
.CMS-ARTICLE-INDEX > * img {
    height: 18rem;
    width: 100%;
    object-fit: cover;
}
/* read more */
.CMS-ARTICLE-MORE-READ {
    background: #E84191;
    border:none;
    text-align: center;
    padding: 1.6rem 0 1.7rem 0;
    font-size: 1.4rem;
    color: #fff !important;
    text-align: center;
    width: 28rem;
    display: block;
    transition: all .3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
	font-family: 'Noto Serif JP', serif;
}
.CMS-ARTICLE-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}
/* detail */
.CMS-ARTICLE-TITLE {
    border-bottom: solid 1px rgba(0,0,0,0.2);
    font-size: 2.4rem;
    margin-bottom: 3rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
	font-weight: 500;
}
.CMS-ARTICLE-TITLE:after {
    border-bottom: solid 0.4rem #E84191;
    bottom: -0.4rem;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}
.CMS-ARTICLE-CONTENT img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 3rem auto;
}
@media screen and (max-width: 768px) {
    .CMS-ARTICLE-INDEX {
        display: block;
    }
    .CMS-ARTICLE-INDEX > * {
        width: 100%;
        margin-right: 0;
    }
    .CMS-ARTICLE-INDEX > *:nth-of-type(n + 4) {
        margin-top: 0;
    }
    .CMS-ARTICLE-INDEX > *:nth-of-type(n + 2) {
        margin-top: 3.5rem;
    }
    .CMS-ARTICLE-TIME {
        margin: 1.5rem 0 0.3rem 0;
		font-size: 1.4rem;
    }
    .CMS-ARTICLE-INDEX > * img {
        height: 24rem;
    }
    .CMS-ARTICLE-CONTENT img {
        width: 100%;
    }
}





/* -------------------------------------------

fixed

------------------------------------------- */
.fixed-btn {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	z-index: 999;
}
.fixed-btn li:nth-child(1) a {
	background: #fff;
	border: 0.25px solid #E84191;
	color: #E84191;
}
.fixed-btn li:nth-child(2) a {
	background: #E84191;
	border: 0.25px solid #E84191;
	color: #fff;
}
.fixed-btn li:not(:last-child) {
	margin-bottom: 0.4rem;
}
.fixed-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5rem;
	padding: 3rem 0;
	line-height: 1;
	color: #fff;
	background: var(--brown);
}
@media screen and (max-width: 768px) {
	.fixed-btn {
		top: auto;
		bottom: 0;
		transform: none;
		width: 100%;
		display: flex;
	}
	.fixed-btn li {
		width: 50%;
	}
	.fixed-btn li:not(:last-child) {
		margin-bottom: 0;
	}
	.fixed-btn li:last-child a {
		background: #E84191;
		color: #fff;
	}
	.fixed-btn a {
		width: 100%;
		height: 6rem;
		padding: 0;
	}
}
