@CHARSET "UTF-8";
/*
*** basic setting on css/destyle.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root {
  --blue: #DAF0F9; 
  --yellow: #F1C22E;
  --bk: #221714;
}

*{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Shippori Antique", sans-serif;
  color: var(--bk);
  line-height: 1.7;
  letter-spacing: 1px;
}



/* =layouts
-------------------------------------------------------------- */

body,
#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site_footer{
  margin-top: auto;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table th{
	padding: 1rem;
	text-align: left;
  width: 30%;
	font-weight: 400;
}
table td{
	padding: 1rem;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 400;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 400;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}

.wrapper{
	width: 90%;
	max-width: 1050px;
	margin: 0 auto;
}

.section{
	padding: 3rem 0;
}


/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.txt_right{
	text-align: right;
}
.txt_vertical{
	writing-mode: vertical-rl;
}
.txt_small{
	font-size: 70%;
}
.txt_large{
	font-size: 150%;
}

.underline{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: var(--bk);
	text-decoration: none;
	transition: .3s;
}
*:focus {
  outline: none;
}

.btn_link{
	background: var(--bk);
	color: #fff;
	display: block;
	padding: 1.5rem;
	width: 100%;
	max-width: 50rem;
	margin: 0 auto;
	text-align: center;
  position: relative;
  border-radius: 50px;
  font-size: 1.6rem;
}
.btn_link::after{
  content: '';
  border-top: #fff solid 1px;
  border-right: #fff solid 1px;
  rotate: 45deg;
  position: absolute;
  right: 2rem;
  top: 50%;
  translate: 0 -50%;
  width: 1rem;
  height: 1rem;
}



.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}


input[type="submit"]{
	outline: 0;
	box-shadow: none;
	border: none;
	cursor: pointer;
}
label{
	cursor: pointer;
}



/* =media
-------------------------------------------------------------- */

img,
svg{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
  transition: .3s;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: #000 solid 3px;
}
.img_clip::before{
	content: '';
	padding-top: 65%;
	display: block;
	background: #ccc;
}
.img_clip img{
	position: absolute;
	top: -3px;
	left: 0;
	width: calc(100% + 6px);
	height: calc(100% + 6px);
	object-fit: cover;
}

.wp-block-embed-youtube .wp-block-embed__wrapper,
.youtube_wrap{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




/* =tub
-------------------------------------------------------------- */

summary{
	cursor: pointer;
}
summary::marker{
  content: none;
}
summary::-webkit-details-marker{
  display: none;
}

.accordion dd{
	display: none;
}

.tub{
	display: flex;
}
.tub_cont{
	display: none;
}
.cont_current{
	display: block;
}



/* =slick base
-------------------------------------------------------------- */

.slick-arrow{
	width: 1rem;
  height: 1rem;
  z-index: 10;
}
.slick-prev{
  left: -5px;
}
.slick-next{
  right: -5px;
}
.slick-arrow::before{
	content: '' !important;
  width: 100%;
  height: 100%;
  border-top: #000 solid 1px;
  border-left: #000 solid 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
}
.slick-prev:before{
  transform: translate(-35%,-50%) rotate(-45deg);
}
.slick-next:before{
  transform: translate(-65%,-50%) rotate(135deg);
}
.slick-slide:focus{
  outline: 0;
}
.slick-dots > li:first-child:last-child {
   display: none;
}
.slick-dots{
	bottom: 1rem;
	z-index: 10;
}
.slick-dots li{
	width: 3rem;
	height: 1rem;
}
.slick-dots li button{
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 50px;
}
.slick-dots li.slick-active button{
	background: #ccc;
}
.slick-dots li button:before{
	content: none;
}





.form_box dt{
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}
.form_box dt::after{
  content: '*';
  color: #F68200;
  margin-left: .5rem;
}
.form_box dd{
  margin-bottom: 2rem;
}
.form_box dd ul{
  display: flex;
  flex-wrap: wrap;
}
.form_box dt .optional,
.form_box dt .required{
  display: none;
}
.form_box dd ul li{
  margin-right: 2rem;
  margin-bottom: .5rem;
}
.form_box dd p{
  margin: 5px 0;
}
.form_input{
  font-size: 1.6rem;
  padding: 5px;
  border: 0;
  background: #F2F2F2;
  line-height: 1.7;
  width: 100%;
} 
.form_box input[type="checkbox"]{
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: .5rem;
}
.error_blank{
  color: #ff0000;
  font-weight: 700;
}
#agreement .error_check{
  display: none;
  color: #ff0000;
  margin-top: 3px;
  font-weight: 700;
}
#form_submit_button{
  border: 0;
  outline: 0;
  transition: .3s;
  cursor: pointer;
}

div.loading-layer {
	width: 100vw;
	height: 100vh;
	background: rgba( 0, 0, 0, 0.7 );
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 10000;
}
span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba( 255,255,255, 0.2 );
  border-right: 5px solid rgba( 255,255,255, 0.2 );
  border-bottom: 5px solid rgba( 255,255,255, 0.2 );
  border-left: 5px solid #fff;
  -webkit-transform: translateZ( 0 );
  -ms-transform: translateZ( 0 );
  transform: translateZ( 0 );
  -webkit-animation: load-circle 1.0s linear infinite;
  animation: load-circle 1.0s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}

@-webkit-keyframes load-circle {
  0% {
    -webkit-transform: rotate( 0deg );
    transform: rotate( 0deg );
  }
  100% {
    -webkit-transform: rotate( 360deg );
    transform: rotate( 360deg );
  }
}

@keyframes load-circle {
  0% {
    -webkit-transform: rotate( 0deg );
    transform: rotate( 0deg );
  }
  100% {
    -webkit-transform: rotate( 360deg );
    transform: rotate( 360deg );
  }
}
#send_success{
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
#send_success p{
  border: #73B147 solid 2px;
  padding: 1rem 0;
  color: #73B147;
  text-align: center;
}



#header_logo{
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: 7rem;
  display: block;
  z-index: 999;
}
#site_nav ul{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  border-top: var(--bk) solid 1px;
  display: flex;
}
#site_nav ul li{
  width: 33.33%;
  border-right: var(--bk) solid 1px;
}
#site_nav ul li:last-child{
  border: 0;
}
#site_nav ul li a{
  display: block;
  text-align: center;
  font-size: 1.2rem;
  padding: 1.5rem 0;
}
#header_insta{
  display: block;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  position: absolute;
}

.hidden{
  overflow: hidden;
}
#main_visual{
  position: relative;
  padding: 5rem 1rem;
}
#main_visual::before{
  content: '';
  background: var(--blue);
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom-right-radius: 3rem;
}
#main_visual__inner{
  width: calc(100% - 8rem);
  margin: 0 0 0 auto;
  position: relative;
}
#main_visual__inner .img_clip::before{
  padding-top: 120%;
}
#main_visual__title{
  width: 80%;
  max-width: 50rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 99;
}
#main_visual__illust{
  position: absolute;
  bottom: 2rem;
  width: 50%;
  left: 1rem;
  z-index: 5;
  max-width: 300px;
}

#message{
  position: relative;
}
#message::before{
  content: '';
  background: url('../images/bg.svg') no-repeat center bottom / cover;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
}
#message_txt p{
  margin: 2rem 0;
  font-size: 1.6rem;
}
#message_photo01{
  margin: 5rem 0;
  width: 70%;
}
#message_photo02{
  margin: 0 0 0 auto;
  width: 85%;
}
#message_photo02 .img_clip{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}
#message_illust{
  position: absolute;
  width: 60%;
  z-index: 5;
  bottom: -6rem;
  left: 0;
}

#whats{
  position: relative;
  z-index: 10;
}

.section_title{
  text-align: center;
  margin-bottom: 3rem;
}
.section_title img{
  width: auto;
}
#whats .section_title img{
  height: 8rem;
}

#whats_list li{
  margin-bottom: 1rem;
}
.whats_list__box{
  border: #000 solid 3px;
  border-radius: 1rem;
  background: var(--yellow);
  padding: 1rem;
  display: flex;
  align-items: center;
}
.whats_list__img{
  flex: 0 0 40%;
}
.whats_list__img .img_clip{
  border: 0;
}
.whats_list__box p{
  flex: 1;
  text-align: center;
  line-height: 1.5;
}

#whats_attentions{
  border: var(--yellow) solid 3px;
  margin-top: 3rem;
  border-radius: 2rem;
  background: #FFFDF4;
  padding: 2rem 5%;
}
#whats_attentions h3{
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
#whats_attentions ul li{
  text-indent: -1em;
  padding-left: 1em;
  margin: .5rem 0;
  line-height: 1.5;
}

#gallery_slide .img_clip{
  border: 0;
  border-radius: 0;
}
#gallery_slide .slick-list{
  overflow: visible;
}
#gallery_slide .slick-slide{
  padding: 0 .2rem;
}

#access .section_title img{
  height: 6rem;
}

#access_inner ul{
  margin-bottom: 2rem;
}
#access_inner ul li{
  padding-left: 3rem;
  margin: 1rem 0;
  position: relative;
  line-height: 1.5;
}
.icon_access{
  position: absolute;
  left: 0;
  width: 2rem;
  top: 0;
}
#access_map{
  margin-top: 5rem;
}
#access_map iframe{
  width: 100%;
  height: 30rem;
  filter: grayscale(100%);
}


#site_footer{
  position: relative;
  background: var(--yellow);
}
#site_footer__inner{
  padding: 5rem 0;
}
#footer_copy{
  padding: 2rem 0 8rem;
  background: #fff;
  text-align: center;
  font-size: 1.2rem;
}
.footer_illust{
  display: none;
}





/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .mobile_only{
		display: none;
	}
	.pc_only{
		display: block;
	}
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
		padding: 1rem;
	}
	table td{
		padding: 1rem;
	}
  #site_header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1rem 3rem;
    display: flex;
    align-items: flex-start;
  }
  #header_logo{
    position: static;
    width: 10rem;
    margin: 0 auto 0 0;
  }
  .scroll #header_logo{
    width: 8rem;
  }
  #site_nav{
    display: flex;
    align-items: center;
  }
  #site_nav ul{
    align-items: center;
    position: static;
    background: none;
    border: 0;
    width: auto;
  }
  #site_nav ul li{
    width: auto;
    border: 0;
    margin: 0 0 0 3rem;
  }
  #site_nav ul li a{
    padding: .5rem 0;
    font-size: 1.4rem;
  }
  #site_nav ul li a .pc_only{
    display: inline;
    margin-left: 1rem;
  }
  #header_insta{
    position: static;
    width: 2rem;
    margin-left: 2rem;
  }
  #main_visual{
    padding: 6rem 3rem;
  }
  #main_visual::before{
    width: 30%;
  }
  #main_visual__inner{
    width: calc(100% - 15rem);
  }
  #main_visual__inner .img_clip::before{
    padding-top: 60%;
  }
  #main_visual__title{
    top: 5rem;
    right: 5rem;
  }
  #message::before{
    height: 100%;
    background-size: contain;
    width: 90%;
    left: 50%;
    translate: -50% 0;
  }
  #message{
    padding: 0;
  }
  #message_txt{
    width: 50%;
    padding-right: 2rem;
    padding-top: 5rem;
  }
  #message_txt p{
    line-height: 2;
  }
  #message_photo01{
    width: 80%;
    margin: 5rem 0 0;
  }
  #message_photo02{
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
  }
  #message_photo02 .img_clip::before{
    padding-top: 100%;
  }
  #message_illust{
    left: 50%;
    width: 45%;
    bottom: -10rem;
    max-width: 600px;
  }
  #whats .section_title img{
    height: 12rem;
  }
  #whats_list{
    display: flex;
  }
  #whats_list li{
    width: 33.33%;
    padding: 0 1rem;
    margin: 0;
  }
  .whats_list__box{
    display: block;
    height: 100%;
  }
  .whats_list__box p{
    min-height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #whats_attentions{
    max-width: 750px;
    margin: 3rem auto 0;
  }
  #access{
    padding-bottom: 8rem;
  }
  #access .section_title img{
    height: 10rem;
  }
  #access_inner{
    display: flex;
    align-items: center;
  }
  #access_inner ul{
    margin: 0;
    flex: 1;
  }
  #access_photo{
    flex: 0 0 45%;
    margin-left: 3rem;
  }
  #site_footer__inner{
    padding: 8rem 0;
  }
  #site_footer__inner .btn_link{
    z-index: 20;
  }
  #footer_copy{
    padding: 3rem 0;
  }
  .footer_illust{
    display: block;
    position: absolute;
    bottom: 0;
    width: 40%;
    max-width: 400px;
  }
  #footer_illust01{
    left: 50%;
    margin-left: -500px;
  }
  #footer_illust02{
    right: 50%;
    margin-right: -500px;
  }
}




@media screen and (min-width: 1024px){
  html{
    font-size: 75%;
		scroll-padding-top: 80px;
  }
  #header_logo{
    width: 15rem;
  }
  #main_visual__inner{
    width: calc(100% - 22rem);
  }
  #main_visual__illust{
    max-width: 400px;
    left: 3rem;
  }
  #access_inner{
    padding: 0 5%;
  }
  #footer_illust01{
    margin-left: -700px;
  }
  #footer_illust02{
    margin-right: -700px;
  }
}



@media screen and (min-width: 1300px){
  #message_txt{
    width: 60%;
  }
  #message_photo02{
    width: 43%;
  }
  #message_photo02 .img_clip::before{
    padding-top: 70%;
  }
  
}

@media (hover: hover) {
  .img_opacity:hover img{
  	opacity: .8;
  }
  .hover_up:hover{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
  .hover_up__img:hover img{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
	.btn_link:hover{
		transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
	}
}