@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@500&family=Satisfy&display=swap');
:root {
  --green-color: #808984;
  --font-en: "Satisfy", cursive;
}
/*
color: var(--green-color);
font-family: var(--font-en);
*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body {
	display: block;
	width: 100%;
	background-color: #FFFFFF;
	font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
	font-size: 12px;
	color: #303030;
	text-align: left;
	line-height: 1.5em;
	list-style-type: none;
	margin: 0 !important;
	padding: 0 !important;
	clear: both;
	float: left;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.wrapper {
	overflow: visible;
	position: relative;
}
a {text-decoration: none; }
a:link { color: #303030; }
a:visited { color: #303030; }
a:active { color: #303030; }
a:hover { opacity: 0.5; transition: 0.5s ;}
body a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
	transition: 0.5s ;
}
body img,
body video{
	border-style:none;
	width: 100%;
	display: block;
}
body a img{
	border-style:none; 
}
ul,li{
	list-style-type:none;
	margin:0;
	padding:0;
}

.zoomOut{
  animation-name:zoomOutAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
}

@keyframes zoomOutAnime{
  from {
  transform: scale(1.1);
  opacity: 1;
  }

  to {
    transform:scale(1);
  opacity: 1;
  }
}
.zoomOutTrigger{
    opacity: 100;
}

.zoomIn img{
  transform: scale(1);
  transition: .2s ease-in-out;
}
.zoomIn a:hover img{
  transform: scale(1.2);
}
.scrollanime {
	opacity: 0;
}
.fadeInDown {
	animation-name: fadeInDown;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}
@keyframes fadeInDown {
	0% {
		opacity: 0;			
	}
	100% {
	opacity: 1;
	transform: translate(0);
	}
}
.downup {
	transform: translateY(50px);
}
.updown {
  transform: translateY(-30px);
}
.slide-right {
	transform: translateX(100px);
}
.slide-left {
	transform: translateX(-100px);
}
.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time04 {
  animation-delay: 0.4s;
}
.delay-time05 {
  animation-delay: 0.5s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time08 {
  animation-delay: 0.8s;
}
.delay-time10 {
  animation-delay: 1.0s;
}
.delay-time12 {
  animation-delay: 1.2s;
}

.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}
.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #ffffff;
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.loading-animation img{
	width: 182px;
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #ffffff;
  z-index: 10;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 11;
}

/*==========================================================
HEADER
==========================================================*/
header{
	display: block;
	clear: both;
	width: 100%;
}
/* NAVIGATION */
.menu-trigger {
    z-index: 400;
    display: inline-block;
    width: 30px;
    height: 44px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
}
.menu-trigger span {
    z-index: 400;
    position: absolute;
    left: 10px;
    display: inline-block;
    box-sizing: border-box;
    width: 30px;
    height: 2px;
    background-color: #000000;
    transition: all .5s;
}
.menu-trigger.active span {
    background-color: #000000;
}
.menu-trigger span:nth-of-type(1) {
    top: 18px;
    left: 0;
}
.menu-trigger.active span:nth-of-type(1) {
    z-index: 400;
    position: absolute;
    transform: translateY(1px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
    top: 6px;
    left: 0;
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
    bottom: 12px;
    left: 0;
}
.menu-trigger.active span:nth-of-type(3) {
    z-index: 400;
    position: absolute;
    transform: translateY(-11px) rotate(45deg);
}
a.menu-trigger:hover {
    opacity: 1;
}
.header_menu{
    display: none;
    position: fixed;
    left: 0;
    background-color: rgba(255,255,255,0.8);
    width: 100%;
    height: auto;
    z-index: 1;
}
.header_menu ul{
    position: relative;
    width: 90%;
    margin: 0 5%;
    padding: 0px 0 25px 0;
}
.header_menu ul li{
    border-bottom: 1px solid #303030;
    width:100%;
}
.header_menu ul li a{
    display: block;
    text-align: center;
    font-size: 14px;
    color: #303030;
    padding: 25px 0 15px 0;
}
@media screen and (max-width:899px){
	header,
	.header {
		width: 100%;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
		clear: both;
        background-color: #FFFFFF;
        position: fixed;
        z-index: 2;
	    top: 0;
        transition: .5s;	
	}
    .logo_header{
        width: 140px;
    }
    .menu-trigger{
        right: 3%;
        top: 15px;
    }
    .header_menu{
        top: 60px;
    }
}
@media screen and (min-width:900px){
	header,
	.header{
		width: 100%;
        height: 100px;
		display: flex;
        justify-content: center;
        align-items: center;
		clear: both;
        background-color: #FFFFFF;
        position: fixed;
        z-index: 2;
        top: 0;
	}
    .logo_header{
        width: 182px;
    }
    .menu-trigger{
        right: 30px;
        top: 30px;
    }
    .header_menu{
        top: 100px;
    }
}
/*==========================================================
FOOTER
==========================================================*/
footer{
    width: 100%;
    display: block;
    clear: both;
    overflow: hidden;
    background-color: #9AC1B9;
    padding-bottom: 30px;
}
.footer_navi dl{
    display: flex;
    align-items: center;
    border-bottom: 1px #FFFFFF solid;
    padding: 0 5px 8px 5px;
    box-sizing: border-box;
}
.footer_navi dl.modal-btn:hover{
	opacity: 0.5;
	transition: 0.5s;
	cursor: pointer;
}
.footer_navi dl dt{
    color: #FFFFFF;
}
@media screen and (max-width:899px){
    .logo_footer{
        width: 140px;
        margin: 25px auto 50px auto;
    }
    .footer_inner{
        width: 95%;
        margin: 0 2.5%;
    }
    .footer_navi dl{
        width: 90%;
        font-size: 11px;
        margin: 15px 5% 0 5%;
    }
    .footer_navi dl:nth-of-type(1){
        margin-top: 0;
    }
    .footer_navi dl dt{
        width: 70px;
    }
    .footer_navi dl dt img{
        width: 34px;
    }
    .footer_navi dl dd{
        width: calc(100% - 70px);
    }
    .howto_reserve{
        width: 90%;
        margin: 25px 5%;
    }
}
@media screen and (min-width:900px){
    .logo_footer{
        width: 182px;
        margin: 25px auto 50px auto;
    }
    .footer_inner{
        width: 690px;
        margin: 0 auto;
    }
    .footer_navi{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .footer_navi dl{
        width: 330px;
        font-size: 11px;
        margin-top: 15px;
    }
    .footer_navi dl:nth-of-type(1),
    .footer_navi dl:nth-of-type(2){
        margin-top: 0;
    }
    .footer_navi dl dt{
        width: 70px;
    }
    .footer_navi dl dt img{
        width: 34px;
    }
    .footer_navi dl dd{
        width: calc(100% - 70px);
    }
    .howto_reserve{
        margin: 25px 0;
    }
}

/*==========================================================
COMMON
==========================================================*/
main{
	display: block;
	clear: both;
	width: 100%;
	overflow: hidden;
}
.bg_white{
    display: block;
	clear: both;
	width: 100%;
	overflow: hidden;
    background-color: #FFFFFF;
}
.tc{
    text-align: center;
}
.inner_wrap{
    background-image: url("images/bg_translucent_white.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    /*background-color: rgba(255,255,255,0.86);*/
    transition: background-image 0.5s ease;
}
.movie_pc video,
.movie_sp video{
    height: 100vh;
    position: fixed;
    top: 0;
    object-fit: cover;
}
.contents_wrap{
    height: auto;
}
.contents_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 0 5%;
}
.contents_ttl{
    color: var(--green-color);
    font-family: var(--font-en);
    line-height: 1.2em;
    margin-top: 60px;
}
.contents_subttl{
    color: var(--green-color);
    margin-top: 20px;
}
@media screen and (max-width:899px){
	br.pc{
		display: none;
	}
    .inner_wrap{
        width: 94%;
        margin: 60px auto 0 auto;
    }
	.movie_pc{
		display: none;
	}
	.movie_sp{
		width: 100%;
		/*background: url(../img/kv-alternative.jpg) no-repeat center/cover;*/
		overflow: hidden;
		position: absolute;
		z-index: -1;
	}
    .movie_sp video{
        width: 94%;
        left: 3%;
        right: 3%;
        top: 60px;
    }
    .contents_wrap{
        width: 95%;
        margin: 0 2.5%;
    }
    .contents_ttl{
        font-size: 35px;
    }
    .contents_subttl{
        font-size: 14px;
    }
	#aboutus,
	#plan,
	#studio,
	#option,
	#schedule{
padding-top: 95px;
margin-top: -50px;
	}
}
@media screen and (min-width:900px){
	br.sp{
		display: none;
	}
    .inner_wrap{
        width: calc(100% - 60px);
        margin: 100px auto 0 auto;
    }
	.movie_sp{
		display: none;
	}
	.movie_pc{
		width: 100%;
		/*background: url(../img/kv-alternative.jpg) no-repeat center/cover;*/
		overflow: hidden;
		position: absolute;
		z-index: -1;
	}
    .movie_pc video{
        width: calc(100% - 60px);
        left: 30px;
        right: 30px;
        top: 100px;
    }
    .contents_wrap{
        width: 750px;
        margin: 0 auto;
    }
    .contents_ttl{
        font-size: 45px;
    }
    .contents_subttl{
        font-size: 16px;
    }
	#aboutus,
	#plan,
	#studio,
	#option,
	#schedule{
		    padding-top: 155px;
    		margin-top: -100px;
	}
}

/*======================================================================================
TOP PAGE
======================================================================================*/
/************************ CONTENTS ************************/
.aboutus_ttl{
    padding-top: 270px;
}
.aboutus_subttl{
    color: var(--green-color);
    line-height: 1.4em;
    margin-top: 30px;
}
.aboutus_txt{
    line-height: 2.5em;
    margin-top: 50px;
}
.aboutus_imglist{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.aboutus_imglist li{
    display: flex;
    align-items: center;
}
.aboutus_imglist li:nth-of-type(odd){
    max-width: 285px;
    width: 44%;
}
.aboutus_imglist li:nth-of-type(even){
    max-width: 305px;
    width: 47%;
}
.plan_price{
    margin-top: 30px;
}
.plan_box1_ttl{
    color: var(--green-color);
    text-align: center;
    border: 1px #000000 solid;
    padding: 5px 0;
    margin: 40px auto 0 auto;
}
.plan_set_txt1{
    text-align: center;
    line-height: 1.8em;
    margin-top: 20px;
}
.plan_set_txt2{
    margin-top: 20px;
}
.plan_imgbox01,
.plan_imgbox02,
.plan_imgbox03{
    display: flex;
    justify-content: space-between;
}
.plan_imgbox01{
	margin-top: 35px;
}
.plan_imgbox02,
.plan_imgbox03{
    margin-top: 2.5vw;
}
.plan_imgbox_in{
    width: 38%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.img01,
.img06{
    width: 58%;
}
.features_box{
	margin-top: 55px;
}
.plan_list dt{
    color: #A1C8C0;
}
.plan_list_ttl{
    color: var(--green-color);
}
.plan_list_txt{
    line-height: 2.2em;
}
.studio_img01{
    margin-top: 40px;
}
.studio_ttl{
    width: 100%;
    color: var(--green-color);
    margin-top: 20px;
}
.studio_txt{
    width: 100%;
    margin-top: 15px;
}
.studio_img02-03{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.studio_img02-03 li{
    width: 48%;
}
.option_txt{
    margin-top: 25px;
}
.option_item{
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
}
.option_item li{
    width: 48%;
}
.option_item_box{
    margin-top: 35px;
    text-align: center;
	cursor: pointer;
}
.option_item li .option_item_box:first-of-type{
    margin-top: 0;
}
.option_item_name{
    margin-top: 25px;
}
.option_item_price{
    margin-top: 10px;
}
.option_item_price::after{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-right: 1px solid #303030;
    border-bottom: 1px solid #303030;
    transform: rotate(45deg);
    margin: 20px auto;
}
.schedule_list{
    width: 100%;
    background-color: #A1C8C0;
    padding-bottom: 6px;
    margin-top: 30px;
}
.schedule_list dl{
    text-align: center;
    padding: 15px 0 35px 0;
    display: block;
    clear: both;
    overflow:hidden;
}
.schedule_list dt{
    max-width: 85%;
    width: 325px;
    margin: 20px auto 0 auto;
    background-color: #FFFFFF;
    padding: 5px 0;
}
.schedule_list dd{
    color: #BF0404;
    margin-top: 10px;
}
.btn_reserv{
    width: 100%;
    background-color: #d5e6e3;
    padding: 30px 0;
    margin-top: 10px;
}
.btn_reserv .btn,
.btn_reserv > a{
    width: 280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 15px;
	cursor: pointer;
}
.btn_reserv .btn:hover{
	opacity: 0.5;
	transition: 0.5s;
}
.btn_reserv .btn:first-of-type{
    margin-top: 0;
}
.btn_reserv .btn img,
.btn_reserv > a > img{
    width: 34px;
    margin-right: 15px;
}
.btn_reserv .btn::after,
.btn_reserv > a::after{
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 1px solid black;
    border-right: 1px solid black;
    transform: rotate(45deg);
    position: absolute;
    right: 0;
}
.schedule_txt{
    line-height: 1.5em;
    margin: 25px 0 110px 0;
}
.schedule_reserv{
    color: #FFFFFF;
    text-align: center;
}
@media screen and (max-width:899px){
    .top{
        width: 100%;
        height: 80vh;
    }
    .aboutus_subttl{
        font-size: 18px;
    }
    .aboutus_img01{
        margin-top: 40px;
    }
    .aboutus_imglist{
        width: 84%;
        margin: 60px auto 40px auto;
    }
    .plan_price{
        font-size: 21px;
    }
    .plan_price span:nth-of-type(1){
        font-size: 16px;
    }
    .plan_price span:nth-of-type(2){
        font-size: 14px;
    }
    .plan_box1_ttl{
        width: 140px;
        font-size: 13px;
    }
    .plan_set_txt1{
        font-size: 15px;
    }
	.plan_list{
		margin-top: 30px;
	}
    .plan_list dt{
        font-size: 28px;
    }
    .plan_list_ttl{
        font-size: 14px;
        margin-top: 20px;
    }
    .plan_list_txt{
        margin-top: 15px;
    }
    .studio_ttl{
        font-size: 14px;
    }
    .option_item li:nth-of-type(2){
        margin-top: 30px;
    }
    .option_item_name,
    .option_item_price{
        margin-top: 13px;
    }
    .schedule_list dt,
    .schedule_list dd,
    .btn_reserv{
        font-size: 13px;
    }
    .schedule_reserv{
        font-size: 14px;
    }
    .btn_reserv a{
        font-size: 13px;
    }
}
@media screen and (min-width:900px){
    .top{
        width: 100%;
        height: 100vh;
    }
    .aboutus_subttl{
        font-size: 24px;
    }
    .aboutus_img01{
        margin-top: 95px;
    }
    .aboutus_imglist{
        max-width: 650px;
        width: 54%;
        margin: 125px auto 85px auto;
    }
    .plan_price{
        font-size: 24px;
    }
    .plan_price span:nth-of-type(1){
        font-size: 18px;
    }
    .plan_price span:nth-of-type(2){
        font-size: 15px;
    }
    .plan_box1_ttl{
        width: 160px;
        font-size: 14px;
    }
    .plan_set_txt1{
        font-size: 17px;
    }
	.features_box{
		display: flex;
		justify-content: space-between;
		margin-top: 55px;
	}
	.features_box:nth-of-type(even) {
		flex-direction: row-reverse;
	}
	.features_img{
		width: 34.5%;
	}
	.plan_list{
		width: 61.6%;
	}
    .plan_list dt{
        font-size: 38px;
    }
    .plan_list_ttl{
        font-size: 16px;
        margin-top: 25px;
    }
    .plan_list_txt{
        margin-top: 20px;
    }
    .studio_ttl{
        font-size: 16px;
    }
    .option_item li:nth-of-type(2){
        margin-top: 55px;
    }
    .option_item_name,
    .option_item_price{
        margin-top: 14px;
    }
    .schedule_list dt,
    .schedule_list dd,
    .btn_reserv{
        font-size: 14px;
    }
    .schedule_reserv{
        font-size: 15px;
    }
    .btn_reserv a{
        font-size: 14px;
    }
}

/*======================================================================================
FAQ PAGE
======================================================================================*/
.faq_cat{
	width: 230px;
	color: #808C87;
	margin: 50px auto 0 auto;
	padding: 8px 0;
	border: 1px #000000 solid;
}
.faq_q{
	color: #808C87;
	border-bottom: 1px #000000 solid;
	padding: 0 10px 10px 10px;
	box-sizing: border-box;
	text-align: left;
	line-height: 1.5em;
	margin-top: 30px;
}
.faq_a{
	padding: 0 10px;
	box-sizing: border-box;
	text-align: left;
	line-height: 1.8em;
	margin-top: 15px;
}
@media screen and (max-width:899px){
	.faq_cat{
		font-size: 13px;
	}
	.faq_q{
		font-size: 13px;
	}
}
@media screen and (min-width:900px){
	.faq_cat{
		font-size: 14px;
	}
	.faq_q{
		font-size: 14px;
	}
	.faq_a{
		font-size: 13px;
	}
}

/*======================================================================================
NEWS PAGE
======================================================================================*/
.news_list{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.news_ttl{
	color: var(--green-color);
	text-align: left;
	line-height: 1.5em;
	margin-top: 50px;
}
.news_img{
	margin: 25px 0 15px 0;
}
.news_ttl span{
	color: #FFFFFF;
	background-color: #97BEB6;
	padding: 0 5px;
	margin-right: 10px;
}
.news_list .news_ttl span{
	margin-bottom: 10px;
}
.news_txt::after{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border-right: 1px solid #303030;
	border-bottom: 1px solid #303030;
	transform: rotate(45deg);
	margin: 10px auto;
}
.news_con{
	text-align: left;
	margin-top: 30px;
}
.news_txt,
.news_con p{
	line-height: 1.5em;
	margin-bottom: 30px;
}
.news_con img{
	max-width: 100%;
	margin-bottom: 30px;
}
@media screen and (max-width:899px){
	.news_list li{
		width: 43.4%;
	}
	.news_ttl{
		font-size: 15px;
	}
	.news_ttl span{
		font-size: 13px;
	}
	.news_con{
		font-size: 12px;
	}
}
@media screen and (min-width:900px){
	.news_list li{
		width: 300px;
	}
	.news_ttl{
		font-size: 17px;
	}
	.news_ttl span{
		font-size: 15px;
	}
	.news_con{
		font-size: 13px;
	}
}

/*======================================================================================
RESERVATION & CONTACT PAGE
======================================================================================*/
.reservation_con{
    text-align: center;
}
.reservation_toptxt{
	font-size: 13px;
    margin-top: 30px;
    padding-bottom: 25px;
}
.reservation_icon{
    margin-top: 40px;
    cursor: pointer;
}
.reservation_icon img{
    width: 42px;
    margin: 0 auto 20px auto;
}
.reservation_icon_txt::after{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-right: 1px solid #303030;
    border-bottom: 1px solid #303030;
    transform: rotate(45deg);
    margin: 10px auto;
}
.modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: 0.3s;
    box-sizing: border-box;
    z-index: 3;
}
.modal.is-active{
    opacity: 1;
    visibility: visible;
    top: 0;
}
.modal-container{
    position: relative;
    margin: 0 auto;
    display: block;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 30px;
    clear: both;
}
.modal.is-active .modal-container {
	opacity: 1;
	visibility: visible;
}
.modal-container .modal-close {
  width: 33px;
  height: 33px;
  position: absolute;
  top: -45px;
  right: 0;
  z-index: 4;
  cursor: pointer;
}
.modal-container .modal-close::before,
.modal-container .modal-close::after{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    transform-origin: center;
}
.modal-container .modal-close::before {
    transform: rotate(45deg);
}
.modal-container .modal-close::after {
    transform: rotate(-45deg);
}
.form_top_txt{
    margin-top: 50px;
}
.form{
    border-bottom: 1px #000000 dashed;
    padding-bottom: 20px;
    margin-top: 30px;
}
.form:last-of-type{
    border-bottom: none;
}
.form dt span{
    color: #FFFFFF;
    background-color: #930000;
    padding: 0 4px 2px 4px;
    border-radius: 7px;
    margin-left: 10px;
}
.form dd{
    margin-top: 20px;
}
.privacy{
    border: 1px #000000 solid;
    border-radius:20px;
    box-sizing: border-box;
    margin-top: 55px;
}
.m_privacy{
    border: 1px #000000 solid;
    border-radius:20px;
    box-sizing: border-box;
    margin-top: 35px;
}
.privacy_inner,
.m_privacy_inner{
    overflow-y: scroll;
}
.privacy_ttl2{
	text-align: left;
    line-height: 1.8em;
	margin-top: 30px;
}
.privacy p{
    text-align: left;
    line-height: 1.8em;
}
.m_privacy p{
    text-align: left;
    line-height: 1.8em;
    margin-right: 20px;
}
.privacy_check{
    margin-top: 20px;
}
.form select {	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 10px 50px 10px 10px;
	background-image: url(images/form_select.png);
	background-repeat: no-repeat;
	background-size: 24px 13px;
	background-position: right 10px center;
	background-color: #FFFFFF;
    border-radius: 5px;
    border: 1px #000000 solid;
}
input[type="text"],
input[type="tel"],
input[type="email"]{
	height: 40px;
	box-sizing: border-box;
	background-color: #FFFFFF;
	border: 1px #000000 solid;
	padding:10px;
    border-radius: 5px;
	font-size: 12px;
}
.mwform-checkbox-field label, .mwform-radio-field label{
	font-weight: 500 !important;
}
.w135 input[type="text"]{
	width: 135px;
}
.mwform-tel-field input[type="text"]{
	width: auto;
}
textarea {
    width: 100%;
	box-sizing: border-box;
	border-radius: 15px;
	border: 1px #000000 solid;
	padding:10px;
	font-size: 12px;
}
span.error{
	color: #930000;
}
.btn_form{
	width: 300px;
	margin: 40px auto 0 auto;
}
.btn_form input[type="submit"], 
.btn_form input[type="back"],
.btn_form input[type="button"],
.btn_form button[type="submit"] {
	width: 100%;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	background-image: url("images/form_btn.png");
	background-repeat: no-repeat;
    background-position: center right 10px;
	background-color: #808C87;
	border: none;
	border-radius: 0;
	padding: 15px 0;
	box-sizing: border-box;
	cursor: pointer;
}
.btn_form input[type="submit"]:hover, 
.btn_form input[type="back"]:hover,
.btn_form input[type="button"]:hover,
.btn_form button[type="submit"]:hover{
	opacity: 0.5;
	transition: 0.5s;
}
.btn_form button[type="submit"]{
	margin-top: 20px;
}
@media screen and (max-width:899px){
    .contents_wrap#reservation{
        margin-top: 145px;
        padding-bottom: 85px;
    }
    .reservation_con{
        width: 90%;
        margin: 0 5% 50px 5%;
    }
    .reservation_icon_txt,
    .form_top_txt{
        font-size: 12px;
    }
    .modal-container{
        width: 90%;
        margin: 0 5%;
        padding: 30px;
    }
    .form{
        font-size: 14px;
    }
    .form dt span{
        font-size: 13px;
    }
    .form dd.tel span{
        display: block;
		margin-top: 15px;
    }
    .privacy{
        padding:20px 10px 20px 20px;
    }
    .privacy_inner{
        height: 250px;
    }
    .m_privacy{
        padding:25px 5px 25px 25px;
    }
    .m_privacy_inner{
        height: 250px;
    }
    .modal_top_txt{
        font-size: 13px;
    }
    .privacy_ttl{
        font-size: 14px;
		margin-top: 30px;
		margin-right: 20px;
		padding-top: 50px;
    	border-top: 1px #000 solid;
    }
	.privacy_ttl:first-of-type{
		margin-top: 0;
		padding-top: 0;
		border-top: none;
	}
	.privacy_ttl2{
		font-size: 13px;
	}
    .privacy_check{
        font-size: 13px;
    }
	.privacy .detail{
		display: flex !important;
		align-items: center !important;
	}
	span.mwform-checkbox-field{
		display: inline-block !important;
		margin-left: 10px;
	}
	span.mwform-checkbox-field label{
		display: flex;
		align-items: self-start;
	}
	span.mwform-checkbox-field label input{
		margin-right: 5px;
	}
	input[type="text"],
	input[type="email"]{
		width: 100%;
	}
}
@media screen and (min-width:900px){
    .contents_wrap#reservation{
        margin-top: 185px;
        padding-bottom: 85px;
    }
    .reservation_con{
        width: 690px;
        margin: 0 auto 50px auto;
    }
    .reservation_icon_txt,
    .form_top_txt{
        font-size: 14px;
    }
    .modal-container{
        width: 685px;
        padding: 30px;
    }
    .form{
        font-size: 16px;
    }
    .form dt span{
        font-size: 15px;
    }
	.form dd.tel span{
        margin-left: 10px;
    }
    .privacy{
        padding:25px 25px 25px 50px;
    }
    .privacy_inner{
        height: 400px;
    }
    .m_privacy{
        padding:25px 5px 25px 25px;
    }
    .m_privacy_inner{
        height: 400px;
    }
    .modal_top_txt{
        font-size: 14px;
    }
    .privacy_ttl{
        font-size: 16px;
		margin-top: 30px;
		margin-right: 20px;
		padding-top: 50px;
    	border-top: 1px #000 solid;
    }
	.privacy_ttl:first-of-type{
		margin-top: 0;
		padding-top: 0;
		border-top: none;
	}
	.privacy_ttl2{
		font-size: 15px;
	}
    .privacy p{
        font-size: 14px;
    }
    .privacy_check{
        font-size: 15px;
    }
	span.mwform-checkbox-field{
		margin-left: 10px;
	}
	input[type="text"],
	input[type="email"]{
		width: 380px;
	}
}














