@charset "UTF-8";


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

font-size

----------------------------------------------------------  */
@media screen and (min-width: 1201px) {
    html {
        font-size: 10px !important;
    }
}
html {
    font-size: 0.833vw; /* 10px / 1200px * 100 */
}
@media screen and (max-width: 767px) {
    html {
        font-size:1.302vw;
    }	
}
@media screen and (max-width: 540px) {
    html {
        font-size:1.851vw;
    }	
}
@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }	
}
/*
@media screen and (max-width: 540px) and (min-width: 415px) {

}
*/




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

base

----------------------------------------------------------  */
:root {
	--turquoise-color: #16002b;
	--orange-color: #fdd00b;
	--pink-color: #ffcbea;
	--text-color: #262626;
	--bg-color: #101f57;
}

body {
	background: var(--turquoise-color);
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: 2.0;
}

a {
	color: #fff;
}



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

header

----------------------------------------------------------  */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 10rem 1rem 10rem;
}
header h1 {
	width: 20rem;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	header {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 6rem;
		padding: 0;
	}
	header h1 {
		width: 14rem;
	}	
}

/* gnav */
ul.gnav {
	display: flex;
}
ul.gnav li {
	text-align: center;
	font-size: 1.4rem;
	line-height: 1;
}
ul.gnav li:not(:first-child) {
	margin-left: 3rem;
}
ul.gnav li span {
	font-family: 'Josefin Sans', sans-serif;
	display: block;
	color: var(--pink-color);
	margin-top: 0.8rem;
	font-size: 1.2rem;
}
ul.gnav a {
	display: block;
	position: relative;
}
ul.gnav a.current::before {
	content: "";
	background: var(--pink-color);
	width: 1px;
	height: 3.6rem;
	position: absolute;
	left: 50%;
	top: -4.5rem;
}




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

footer

----------------------------------------------------------  */
footer {
	padding: 12rem 10rem 5rem 10rem;
	background: #16002b;
}
.footer-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6rem;
}
footer .logo {
	width: 20rem;
}
footer ul {
	display: flex;
}
footer ul li a {
	display: block;
	background: url(../img/arrow2.png) no-repeat left center;
	background-size: 0.7rem auto;
	padding-left: 1.4rem;
}
footer ul li:not(:first-child) {
	margin-left: 2rem;
}
footer small {
	display: block;
	text-align: center;
	font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
	footer {
		padding: 6rem 2rem 10rem 2rem;
	}
	.footer-wrap {
		display: block;
		margin-bottom: 3rem;
	}
	footer .logo {
		width: 20rem;
		margin: 0 auto 3rem auto;
	}
	footer ul {
		display: block;
	}
	footer ul li a {
		display: block;
		background: none;
		padding-left: 0;
		text-align: center;
	}
	footer ul li:not(:first-child) {
		margin-left: 0;
	}
}




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

page-ttl

----------------------------------------------------------  */
.page-ttl {
	background: url(../img/top-kv1.jpg) no-repeat center;
	background-size: cover;
	position: relative;
}
.page-ttl > div {
	background: rgba(0,0,0,0.5);
}
.page-ttl h2 {
	color:#fff;
	font-size: 3.6rem;
	line-height: 1;
	text-align:center;
	padding: 10rem 0 9.5rem 0;
}
.page-ttl h2 span {
	font-family: 'Josefin Sans', sans-serif;
	color: var(--pink-color);
	display: block;
	font-weight: normal;
	font-size: 2rem;
	margin-top: 1.8rem;
}
.bg-misumi {
	background: url(../img/bg-misumi.jpg) no-repeat center !important;
	background-size: cover !important;	 
}

h3{
    color: #fba1df;
}


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

style

----------------------------------------------------------  */
/* serif */
.serif {
	font-family: "游明朝", "YuMincho", 'Noto Serif JP', serif;	
}

.float {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	width: 5rem;
	z-index: 99;
}

.float li{
	margin-bottom: 3rem;
}

.float li:not(:first-child){
    writing-mode: vertical-rl;
    background: #000;
    color: #fff;
    width: 5rem;
    padding: 3rem 1rem;
}

@media screen and (max-width: 767px) {
	.float {
		position: fixed;
		top: auto;
		right: 0;
		transform: none;
		-webkit-transform: none;
		width: 100%;
		z-index: 99;
		display: flex;
		bottom: 0;
        flex-wrap: wrap;
	}
	.float li:first-child {
		width: 100%
	}
	.float li {
        width: 50%;
	}
    
    .float li{
	margin-bottom: 0;
}
    
    .float li:not(:first-child){
    writing-mode: horizontal-tb;
    background: #000;
    color: #fff;
    padding: 1rem 0;
    width: 50%;
        text-align: center;
}
    .float li:last-child{
        border-left: #fff 1px solid;
    }
}

/* heading */
.heading {
	font-size: 2.4rem;
	line-height: 1.4;
	margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
	.heading {
		text-align: center;
	}
}

/* more */
.more {
	text-align: center;
	line-height: 1;
	display: block;
	color: #fff;
	width: 32rem;
	padding: 2rem 0;
	transition: all .3s;
	border: solid 2px var(--turquoise-color);
	background: #fff;
	color: var(--turquoise-color);
	border-radius: 4rem;
	position: relative;
}
.more i {
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
}
.more:hover {
	background: var(--turquoise-color);
	color: #fff;
	opacity: 1;
}
@media screen and (max-width: 767px) {
	.more {
		margin: 0 auto;
		width: 100% !important;
	}
}

/* ttl */
.ttl {
	border-bottom: solid 1px rgba(255,255,255,0.5);
	font-size: 2.4rem;
	line-height: 1.4;
	margin-bottom: 3rem;
	padding: 1rem 0 1.4rem 0;
	position: relative;
}
.ttl:after {
	border-bottom: solid 3px var(--pink-color);
	bottom: -3px;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
@media screen and (max-width: 767px) {
	.ttl:after {
		width: 40%;
	}	
}

/* detail */
dl.detail {
	display: flex;
	flex-wrap: wrap;
	border-top: solid 1px var(--turquoise-color);
	border-bottom: solid 1px var(--turquoise-color);
}
dl.detail dt {
	font-weight: bold;
	padding: 1.5rem;
	width: 30%;
	background: #e5f5f5;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--turquoise-color);
}
dl.detail dd {
	padding: 1.5rem;
	width: 70%;
}
dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
	border-bottom: none;
}
dl.bk dt,
dl.bk dd {
	border-bottom: solid 1px var(--turquoise-color);
}
dl.wh dt,
dl.wh dd {
	border-bottom: 1px solid rgba(255,255,255,0.25);
}
@media screen and (max-width: 767px) {
	dl.detail {
		display: block;
	}
	dl.detail dt {
		font-weight: bold;
		padding: 1.2rem 1.2rem 1.2rem 1.2rem;
		width: 100%;
	}
	dl.detail dd {
		padding: 1.2rem 1.2rem 1.2rem 1.2rem;
		width: 100%;
	}
	dl.bk dt {
		border-bottom: none;
	}
	dl.wh dt {
		border-bottom: none;
	}
}

/* note */
.note {
	font-size: 1.2rem;
	opacity: 0.85;
}




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

hamburger

----------------------------------------------------------  */
nav.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(--turquoise-color);	
}
.open nav.gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.gnav-sp-inner {
	padding: 6rem 2.5rem;
}
.gnav-sp-inner ul {
	margin-bottom: 3rem;
}
.gnav-sp-inner ul li {
	font-size: 1.6rem;
	text-align: center;
	font-weight: bold;
}
.gnav-sp-inner ul li span {
	display: block;
	font-weight: normal;
	font-family: 'Josefin Sans', sans-serif;
	color: var(--pink-color);
	font-size: 1.2rem;
}
.gnav-sp-inner ul li:not(:last-child) {
	border-bottom: 1px solid rgba(255,255,255,0.15);
}
.gnav-sp-inner ul li a {
	display: block;
	padding: 1.5rem 0;
}
.gnav-sp-inner > div {
	text-align: center;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1;
}
.gnav-sp-inner > div span {
	font-size: 2.8rem;
	vertical-align: -0.2rem;
}
@media screen and (max-width: 767px) {
	/*nav {
		left: -220px;
		width: 220px;
	}*/
}

/* toggle_btn */
.toggle_btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: var(--turquoise-color);
}
.toggle_btn span {
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 2px;
	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 .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;
}




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

local menu

----------------------------------------------------------  */
ul.lcmenu {
	display:flex;
	flex-wrap: wrap;
	margin-bottom: 4rem;
    column-gap: 4%;
	justify-content: center;
}
ul.lcmenu li {
	width: 32.5%;
	margin-right: 0;
	text-align: center;
}
ul.lcmenu li a {
	display: block;
	padding: 1.8rem 0;
	background: #fff;	
	color: var(--turquoise-color);
	font-weight: bold;
}
ul.lcmenu li.current a {
	color: #fff;
	border: none;	
	background: #ff73c6;	
}
@media screen and (max-width: 767px) {
        
    
	ul.lcmenu li {
		width: 48%;
		margin-right: 0;
	}
}




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

menu

----------------------------------------------------------  */
/* course */
.course dl {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	width: 100%;
}
.course dl dt {
	width: 14rem;
	padding: 0.5rem 0;
	font-weight: bold;
}
.course dl dd {
	width: calc(100% - 14rem);
	padding: 0.5rem 0;
}
.course dl dt.price {
	margin-top: 0.3rem;
}
.course dl dt.price + dd span:nth-child(1) {
	font-size: 2rem;
	font-weight: bold;
}
.course dl dt.price + dd span:nth-child(2) {
	font-size: 1rem;
	margin-left: 0.2rem;
	vertical-align: 1px;
}
.course dl {
	border-bottom: 1px solid rgba(0,0,0,0.2); /* コース下線 */
}
.course dl dt.price + dd {
	color: #dbaf4c; /* コース価格カラー */
}

/* 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(255,255,255,0.3); /* メニュー下線カラー */
}
dl.menu-list dt:first-child,
dl.menu-list dt:first-child + dd {
	border-top: solid 1px rgba(255,255,255,0.3); /* メニュー上線カラー */
}
dl.menu-list dt:nth-of-type(odd),
dl.menu-list dt:nth-of-type(odd) + dd{
	background:rgba(255,255,255,0.03); /* メニュー背景色 */
}
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;
	margin-bottom: 6rem;
}
dl.menu-list dt {
	padding: 1.2rem 1.5rem;
	width: 65%;
	font-weight: bold;
}
dl.menu-list dt span {
	display: block;
	font-size: 70%;
	line-height: 1.8;
	font-weight: normal;
}
dl.menu-list dd {
	padding: 1.2rem 1.5rem 0 1.2rem;
	text-align: right;
	width: 35%;
	font-weight: bold;
}
dl.menu-list dd span:nth-child(1) {
	font-weight: bold;	
	font-size: 1.8rem;
}
dl.menu-list dd span:nth-child(2) {
	font-size: 0.9rem;
	margin-left: 0.2rem;
}
dl.menu-list dt.var + dd dl {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
dl.menu-list dt.var + dd dl dt {
	border-bottom: none;
	border-top: none;
	font-size: 70%;
	text-align: right;
	padding: 0;
	width: 65%;
}
dl.menu-list dt.var + dd dl dd {
	border-bottom:none;
	border-top: none;	
	padding: 0;
	width: 35%;
}
@media screen and (max-width: 767px) {
	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.var {
		border-bottom: none;
	}
}



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

layout

----------------------------------------------------------  */
.container {
	margin: 8rem auto;
	width: 80%;
	max-width: 1200px;
}
.container .inner {
	display: flex;
	justify-content: space-between;
}
.container .inner > div:first-of-type {
	width: 35%;
}
.container .inner > div:last-of-type {
	width: 60%;
}
@media screen and (max-width: 767px) {
	.container {
		margin: 6rem 2rem 8rem 2rem;
		width: auto;
	}
	.container .inner {
		display: block;
	}
	.container .inner > div:first-of-type {
		width: 100%;
		margin-bottom: 2rem;
	}
	.container .inner > div:last-of-type {
		width: 100%;
	}
}



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

display

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



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

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
	z-index: 999;
	width: 7rem;
}
@media screen and (min-width: 768px) {
    #page-top {
        bottom: 2rem;
        right: 1.5rem;	
    }
}
@media screen and (max-width: 767px) {
    #page-top {
        bottom: 15.5rem;
        right: 1rem;
		width: 6rem;	
    } 
}



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

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:hover {
    opacity: 0.4;  
    filter: alpha(opacity=60);  
} 
@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}



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

margin

----------------------------------------------------------  */
.mb10	{ margin-bottom: 1rem!important; }
.mb15	{ margin-bottom: 1.5rem!important; }
.mb20	{ margin-bottom: 2.0rem!important; }
.mb25	{ margin-bottom: 2.5rem!important; }
.mb30	{ margin-bottom: 3.0rem!important; }
.mb35	{ margin-bottom: 3.5rem!important; }
.mb40	{ margin-bottom: 4.0rem!important; }
.mb45	{ margin-bottom: 4.5rem!important; }
.mb50	{ margin-bottom: 5.0rem!important; }
.mb55	{ margin-bottom: 5.5rem!important; }
.mb60	{ margin-bottom: 6.0rem!important; }
.mb65	{ margin-bottom: 6.5rem!important; }
.mb70	{ margin-bottom: 7.0rem!important; }
.mb75	{ margin-bottom: 7.5rem!important; }
.mb80	{ margin-bottom: 8.0rem!important; }
.mb85	{ margin-bottom: 8.5rem!important; }
.mb90	{ margin-bottom: 9.0rem!important; }
.mb95	{ margin-bottom: 9.5rem!important; }
.mb100	{ margin-bottom: 10.0rem!important; }



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

fade

----------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
}
@-ms-keyframes fadeInUp {
	0% {
		opacity: 0;
		-ms-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadeInUp {
    -webkit-animation: fadeInUp 0.6s ease;
    -moz-animation: fadeInUp 0.6s ease;
	-ms-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
    animation-fill-mode: both
}
.fade {
	opacity: 0;
}
.delay1 {
	animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
}
.delay2 {
	animation-delay: 0.35s;
	-moz-animation-delay: 0.35s;
	-webkit-animation-delay: 0.35s;
	-o-animation-delay: 0.35s;
}
.delay3 {
	animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
}
.delay4 {
	animation-delay: 0.65s;
	-moz-animation-delay: 0.65s;
	-webkit-animation-delay: 0.65s;
	-o-animation-delay: 0.65s;
}
.delay5 {
	animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
	-o-animation-delay: 0.8s;
}



.has-subnav {
  position: relative;
}

.subnav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* PC：ホバーでドロップダウン */
.pc .has-subnav .subnav-list {
  position: absolute;
  top: 120%;
  left: 50%;
  z-index: 100;
  min-width: 11rem;
  padding: 0.5rem 0;
  background: rgba(0, 0, 0, 0.85);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pc .has-subnav:hover .subnav-list {
  opacity: 1;
  visibility: visible;
}

.pc .has-subnav .subnav-list a {
  display: block;
  padding: 1rem 1rem;
  color: #fff;
  font-size: 1.4rem;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}

.pc .has-subnav .subnav-list a:hover {
  opacity: 0.7;
}

/* SP：各店舗紹介の親ボタンを既存ナビと同じ見た目にする */
.gnav-sp .subnav-toggle {
  display: block;
  width: 100%;
  padding: 1.4rem 0;
  border: 0;
  background: none;
  color: #fff;
  font: inherit;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.gnav-sp .subnav-toggle span {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

/* SP：アコーディオン部分 */
.gnav-sp .has-subnav .subnav-list {
  display: none;
  padding: 0 0 1rem;
  margin: -0.5rem 0 0;
  border-top: 0;
}

.gnav-sp .has-subnav.is-open .subnav-list {
  display: block;
}

.gnav-sp .has-subnav .subnav-list li {
  border: 0;
}

.gnav-sp .has-subnav .subnav-list a {
  display: block;
  padding: 0.45rem 0;
  color: #fff;
  font-size: rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

/* SP：各店舗紹介ボタンの＋－アイコン */
.gnav-sp .subnav-toggle {
  position: relative;
}

.gnav-sp .subnav-toggle::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  color: #fff;
  font-size: 4rem;
  font-weight: normal;
  line-height: 1;
}

.gnav-sp .has-subnav.is-open .subnav-toggle::after {
  content: "−";
}

.subnav-list li{
        margin-left: 0!important;
}

.movie-box{
    display: flex;
    column-gap: 2rem;
    justify-content: center;
}

.movie-box video{
    width: 20%;
}

@media screen and (max-width: 767px) {
    .movie-box{
    display: block;
        width: 100%;
}
    .movie-box video{
    width: 80%;
        margin: 0 auto;
        display: block;
}
    .movie-box video:nth-child(n+2){
        margin-top: 3rem;
}

}