@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;700&display=swap');



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

base

----------------------------------------------------------  */
:root {
	--pink: #f94587;
	--brown :#7d4e21;
	--grey:#332b24;
	--bg-pink-1: #fcf2f6;
	--bg-pink-2: #fab7bd;
}
body {
	background: var(--bg-pink-1);
	color: var(--grey);
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}
a {
	color: var(--grey);
}



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

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;
    }	
}



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

header

----------------------------------------------------------  */
header.top {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 28rem;
	position: absolute;
	left: 0;
	top: 0;
	height: 68rem;
	padding-top: 7rem;
	background: var(--bg-pink-1);
	background: var(--bg-pink-1);
}
header.top h1 {
	width: 15rem;
	line-height: 1;
	margin-bottom: 8rem;
}
header.low {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 5rem;
	background: var(--bg-pink-1);
}
header.low h1 {
	width: 10rem;
}
@media screen and (max-width: 768px) {
	header.top {
		justify-content: center;
		flex-direction: row;
		width: auto;
		position: relative;
		height: 6rem;
		padding-top: 0;
	}
	header.top h1 {
		width: 6rem;
		margin-bottom: 0;
	}
	header.low {
		justify-content: center;
		padding: 0;
		height: 6rem;
	}
	header.low h1 {
		width: 6rem;
	}	
}



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

nav

----------------------------------------------------------  */
.gnav {
	padding-left: 4rem;
}
header.low .gnav {
	padding-left: 0;
}
ul.gnav-menu.top {
	display: flex;
	flex-direction: column;
}
ul.gnav-menu.top > li {
	font-weight: bold;
	white-space: nowrap;
}
ul.gnav-menu.top > li:not(:last-child) {
	margin-bottom: 2rem;
}
ul.gnav-menu.top > li > a {
	display: inline-block;
	position: relative;
	color: var(--brown);
	padding: 0.5rem 0;
	width: 100%;
}
ul.gnav-menu.top > li > a::before {
	content: "";
	width: 2.5rem;
	height: 2.5rem;
	background: url(current.png) no-repeat;
	background-size: 2.5rem;
	position: absolute;
	left: -3.5rem;
	top: calc(50% - 1.25rem);
	transition: all .3s;
	opacity: 0;
}
ul.gnav-menu.top > li > a::after {
	content: "";
	width: 100%;
	height: 1rem;
	background: url(dot-1.png) no-repeat center bottom;
	background-size: 100% auto;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all .3s;
	opacity: 0;
}
ul.gnav-menu.top > li > a:hover {
	opacity: 1;
}
ul.gnav-menu.top > li > a:hover::before,
ul.gnav-menu.top > li > a:hover::after {
	opacity: 1;
}
ul.gnav-menu.top > li.gnav-recruit > a {
	color: #fff;
	background: #d62d6d;
	border-radius: 999px;
	padding: 0.9rem 4.5rem 0.9rem 2rem;
	text-align: center;
	box-shadow: 0 0.8rem 1.8rem rgba(249, 69, 135, 0.28);
	transition: transform .3s, box-shadow .3s;
}
ul.gnav-menu.top > li.gnav-recruit > a::before {
	width: 0.8rem;
	height: 0.8rem;
	background: none;
	border-top: 0.2rem solid #fff;
	border-right: 0.2rem solid #fff;
	left: auto;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	opacity: 1;
}
ul.gnav-menu.top > li.gnav-recruit > a::after {
	display: none;
}
ul.gnav-menu.top > li.gnav-recruit > a:hover {
	color: #fff;
	background: #c82461;
	transform: translateY(-0.2rem);
	box-shadow: 0 1rem 2.2rem rgba(249, 69, 135, 0.38);
}
ul.gnav-menu.top > li.gnav-recruit > a:focus-visible {
	outline: 0.3rem solid var(--brown);
	outline-offset: 0.3rem;
}
ul.gnav-menu.low {
	display: flex;
	align-items: center;
}
ul.gnav-menu.low li:not(:last-child) {
	margin-right: 2.5rem;
}
ul.gnav-menu.low a {
	color: var(--brown);
	font-weight: bold;
}



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

footer

----------------------------------------------------------  */
footer {
	background: var(--pink);
	color: #fff;
	padding: 4rem 8rem;
}
footer a {
	color: #fff;
}
footer .wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 3rem
}
footer .logo a {
	width: 16rem;
	height: 16rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
}
footer .logo a img {
	width: 12rem;
}
footer nav {
	display: flex;
}
footer nav ul {
	display: flex;
	flex-direction: column;
}
footer nav ul:first-of-type {
	margin-right: 5rem;
}
footer nav ul li:not(:last-child) {
	margin-bottom: 2rem;
}
footer nav ul a {
	display: flex;
}
footer nav ul a::before {
	content: "";
	width: 2rem;
	height: 0.25rem;
	background: #fab7bd;
	border-radius: 1rem;
	margin-right: 1.5rem;
	margin-top: 1rem;
}
footer small {
	display: block;
	font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
	footer {
		padding: 4rem 0;
	}
	footer .wrap {
		flex-direction: column;
		align-items: center;
		margin-bottom: 4rem
	}
	footer .logo a {
		margin-bottom: 2rem;
	}
	footer nav {
		display: block;
	}
	footer nav ul {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	footer nav ul li {
	
	}
	footer nav ul:first-of-type {
		margin-right: 0;
		margin-bottom: 2rem;
	}
	footer nav ul li:not(:last-child) {
		margin-bottom: 2rem;
	}
	footer nav ul a::before {
		display: none;
	}
	footer small {
		text-align: center;
	}
}



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

page-ttl

----------------------------------------------------------  */
.page-ttl {
	background: url(mv.jpg) no-repeat center bottom -40rem / cover;
	position: relative;
}
.page-ttl > div {
	background: rgba(0,0,0,0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 20rem;
}
.page-ttl h2 {
	color:#fff;
	font-size: 3.6rem;
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.page-ttl {
		background: url(mv.jpg) no-repeat center bottom / cover;
	}
	.page-ttl > div {
		height: 16rem;
	}
	.page-ttl h2 {
		font-size: 3.2rem;
		text-align: center;
	}
	.page-ttl h2.adjust {
		line-height: 1.2;
	}
}



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

style

----------------------------------------------------------  */
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
	font-size: 2.8rem;
	letter-spacing: 0.2em;
	text-align: center;
}
.heading-1 span {
	display: block
}
@media screen and (max-width: 768px) {

}

/* more */
.more {
	background: var(--pink);
	font-weight: bold;
	letter-spacing: 0.15em;
	border-radius: 10rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 26rem;
	padding: 2.2rem 0 2.4rem 0.8rem;
	font-size: 1.6rem;
}
@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;
}
.ttl:after {
	border-bottom: solid 3px var(--pink);
	bottom: -3px;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
@media screen and (max-width: 768px) {
	.ttl:after {
		width: 40%;
	}	
}

/* detail */
dl.detail {
	display: flex;
	flex-wrap: wrap;
}
dl.detail dt {
	padding: 1.5rem;
	width: 25%;
	white-space: nowrap;
	font-weight: bold;
}
dl.detail dd {
	padding: 1.5rem;
	width: 75%;
}
dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
	border-bottom: none;
}
dl.bk dt,
dl.bk dd {
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
dl.wt dt,
dl.wt dd {
	border-bottom: 1px solid rgba(255,255,255,0.4);
}
@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%;
	}
	dl.detail dt::before {
		content: "◆";
		font-size: 1.2rem;
		margin-right: 0.5rem;
		color: var(--pink);
	}
	dl.detail dd {
		padding: 0 1.2rem 1.2rem 1.2rem;
		width: 100%;
	}
	dl.bk dt {
		border-bottom: none;
	}
	dl.wt dt {
		border-bottom: none;
	}
}



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

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-pink-1);	
}
.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: bold;
	line-height: 1.4;
}
.gnav-sp-menu li span {
	display: block;
}
.gnav-sp-menu li a {
	display: block;
	padding: 1.2rem 0;
	white-space: nowrap;
	color: var(--brown);
}
/* toggle */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: var(--pink);
}
.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);
}
/* mask */
/*
#mask {
	display: none;
	transition: all .5s;
}
.open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
	opacity: 0.8;
	z-index: 2;
	cursor: pointer;
}
*/



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

layout

----------------------------------------------------------  */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
.container {
	margin: 8rem auto 10rem auto;
	width: 88rem;
}
.container .wrap {
	display: flex;
	justify-content: space-between;
}
.container .wrap.reverse {
	flex-direction: row-reverse;
}
.container .wrap > figure {
	width: 35%;
}
.container .wrap > figure img {
	border-radius: 2rem;
}
.container .wrap > div {
	width: 60%;
}
.container .wrap > figure.logo {
	background: #fff;
	padding: 4rem;
	border-radius: 2rem;
}
.container .wrap > div h4 {
	font-size: 1.8rem;
	line-height: 1;
	margin-top: 1.5rem;
	color: var(--pink);
}
.container .wrap dl.detail.block {
	display: block;
}
.container .wrap dl.detail.block dt {
	width: 100%;
	border-bottom: 0;
	padding: 1.2rem 1.2rem 0.3rem 1.2rem;
}
.container .wrap dl.detail.block dd {
	width: 100%;
	padding: 0 1.2rem 1.2rem 1.2rem;
}
.container strong {
	font-size: 1.6rem;
	color: var(--pink);
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
	}
	.container {
		margin: 6rem 3rem 8rem 3rem;
		width: auto;
	}
	.container .wrap {
		display: block;
	}
	.container .wrap > figure {
		width: 100%;
		margin-bottom: 2rem;
	}
	.container .wrap > div {
		width: 100%;
	}
}



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

fixed btn

----------------------------------------------------------  */
.fixed-btn {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	z-index: 999;
}
.fixed-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6rem;
	padding: 2rem 0;
	line-height: 1;
}
/* icon */
.fixed-btn li img {
	width: 3.2rem;
	height: 3.2rem;
	margin-bottom: 1rem;
}
/* txt */
.fixed-btn a > span {
	display: flex;
	flex-direction: column;
	white-space: nowrap;
}
.fixed-btn a > span > span:nth-child(2) {
	font-weight: bold;
	font-size: 2rem;
}
/* line */
.fixed-btn a > span > span:nth-child(1) {
	margin-left: 0.3rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	letter-spacing: 0.3em;
	font-size: 1.2rem;
}
.fixed-btn a > span > span:nth-child(1)::after {
	content: "";
	width: 0.14rem;
	height: 6rem;
	background: var(--beige-2);
}
/* tel */
.fixed-btn li.tel {
	margin-bottom: 1rem;
}
.fixed-btn li.tel a {
	background: var(--orange);
	color: var(--beige-2);
}
/* reserve */
.fixed-btn li.reserve a {
	background: var(--brown-1);
	color: var(--beige-2);
}
.fixed-btn .reserve a > span > span:nth-child(1)::after {
	background: var(--beige-2);
	height: 8.3rem;
}
@media screen and (max-width: 768px) {
	.fixed-btn {
		top: auto;
		right: auto;
		bottom: 0;
		transform: none;
		-webkit-transform: none;
		width: 100%;
		display: flex;
	}
	.fixed-btn li {
		width: 50%;
	}
	.fixed-btn a {
		width: 100%;
		padding: 0;
		height: 6.4rem;
		text-decoration: none !important;
	}
	/* icon */
	.fixed-btn li img {
		width: 2.5rem;
		margin-bottom: 0;
		margin-right: 1rem;
	}	
	/* txt */
	.fixed-btn a > span > span:nth-child(1) {
		margin-left: 0;
		margin-bottom: 0.4rem;
		font-size: 1.2rem;
	}
	.fixed-btn a > span > span:nth-child(2) {
		font-weight: 900;
		font-size: 1.7rem;
	}		
	/* line */
	.fixed-btn a > span > span:nth-child(1)::after {
		display: none;
	}	
	/* tel */
	.fixed-btn li.tel {
		margin-bottom: 0;
	}	
	.fixed-btn .tel a > span > span:nth-child(2) {
		text-decoration: underline;
	}		
}



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

display

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



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

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
	z-index: 999;
	bottom: 1rem;
	right: 1rem;	
}
#page-top a {
	background: #fff;
	color: var(--pink);	
	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) {

}



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

link

----------------------------------------------------------  */
a {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;  
    -moz-transition: 0.3s ease-in-out;  
    -o-transition: 0.3s ease-in-out;  
    transition: 0.3s ease-in-out; 
}
a.line {
	text-decoration: underline;
	color: var(--pink) !important; 
}
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;
    }
}



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

class

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

/* list */
ul.list-group li {
	margin-left: 2rem;
	list-style: disc;
	font-weight: bold;
}
ul.list-group li::marker {
	color: var(--pink);
}
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.5rem;
	}
}

/* prepare */
.prepare {
    text-align: center;
    padding: 8rem 0;
    font-size: 2rem;
	font-weight: bold;
}

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

/* 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

----------------------------------------------------------  */
@keyframes fadeUp {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadeUp {
    animation: fadeUp 0.5s ease;
    animation-fill-mode: both
}
.fade {
	opacity: 0;
	transform: translateY(2rem);
}

.delay-1 {
	animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
}
.delay-2 {
	animation-delay: 0.35s;
	-moz-animation-delay: 0.35s;
	-webkit-animation-delay: 0.35s;
	-o-animation-delay: 0.35s;
}
.delay-3 {
	animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
}
.delay-4 {
	animation-delay: 0.65s;
	-moz-animation-delay: 0.65s;
	-webkit-animation-delay: 0.65s;
	-o-animation-delay: 0.65s;
}
.delay-5 {
	animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
	-o-animation-delay: 0.8s;
}
