@CHARSET "UTF-8";
/*
*** basic setting on css/destyle.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root {
  --gold: #C49B4B;
  --red: #C32414;
  --green: #41b25d;
  --purple: #7a62a9;
  --gray: #A5A5A5;
  --bk: #333;
}

*{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html{
  font-size: 62.5%;
}
body {
  margin: 0;
  font-size: 1.4rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  color: #000;
  line-height: 1.7;
  letter-spacing: 1px;
  background: #fdf8d6;
}
.font_en{
  font-family: "GFS Didot", serif;
  font-weight: 400;
}




/* =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: 700;
}
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;
}

.hidden{
  overflow: hidden;
}

/* 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%);
	font-weight: 700;
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: var(--bk);
	text-decoration: none;
	transition: .3s;
}
*:focus {
  outline: none;
}

.btn_link{
	background: var(--bk);
	border: var(--bk) solid 1px;
	color: #fff;
	display: block;
	padding: 1rem;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	text-align: center;
  position: relative;
}
.btn_link__icon{
  position: absolute;
  top: 50%;
  right: 1rem;
  translate: 0 -50%;
  width: 2rem;
}
.btn_link__icon *{
  fill: #fff;
}
.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}

.icon_blank{
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url('../images/icon_blank.svg') no-repeat center center / contain;
  margin-left: .5rem;
}

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;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
}
.img_clip::before{
	content: '';
	padding-top: 100%;
	display: block;
	background: #ccc;
}
.img_clip img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	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;
}




.block{
  background: #fff;
  border: var(--gold) solid .2rem;
  border-radius: 1rem;
  padding: 3rem 5%;
}
.section_title{
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
.section_title span{
  padding: 0 1rem;
  white-space: nowrap;
}
.section_title::before,
.section_title::after{
  content: '';
  background: var(--bk);
  width: 48%;
  height: .2rem;
  display: block;
}
#main{
  border-top: var(--gold) solid 1rem;
  text-align: center;
  position: relative;
}
#header_logo{
  display: block;
  width: 30%;
  max-width: 20rem;
  margin: 0 auto 2rem;
}
#message{
  margin-bottom: 5rem;
}
#message_txt{
  text-align: center;
  line-height: 2;
  margin-bottom: 3rem;
}
#message p:not(:last-child){
  margin-bottom: 2rem;
}
#message_txt a{
  text-decoration: underline;
  color: var(--green);
}
#message_txt a:hover{
  text-decoration: none;
}
#message .block{
  position: relative;
}
.map_book{
  position: absolute;
  width: 6rem;
  bottom: -5rem;
  right: 1rem;
  z-index: 5;
}
.map01{
  rotate: 15deg;
}
.map02{
  rotate: -15deg;
  translate: -5rem -2rem;
}
.course_box{
  background: #fff;
  margin-bottom: 2rem;
  position: relative;
}
.course_box h3{
  padding: 1rem;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
}
.course_box h3 span{
  font-size: 200%;
  line-height: 1;
}
.course_box__txt{
  padding: 2rem 5%;
}
.course_box__illust{
  position: absolute;
  width: 8rem;
  z-index: 5;
}
#course01{
 border: var(--red) solid .2rem;
}
#course01 h3{
  background: var(--red);
}
#course01 .course_box__illust{
  top: -2rem;
  right: -1rem;
  width: 10rem;
}

#course02{
 border: var(--green) solid .2rem;
}
#course02 h3{
  background: var(--green);
}
#course02 .course_box__illust{
  top: -2rem;
  left: 0;
}
#course03{
 border: var(--purple) solid .2rem;
}
#course03 h3{
  background: var(--purple);
}
#course03 .course_box__illust{
  top: 2rem;
  right: 1rem;
}
#present .wrapper{
  border: var(--red) solid .2rem;
  padding: 2rem 5%;
}
#present_title{
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
#present_title__label{
  width: 6rem;
  height: 6rem;
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  position: absolute;
  top: -3rem;
  right: -2rem;
  z-index: 10;
  font-size: 1rem;
}
#present_title h2{
  text-align: center;
  font-weight: 700;
  flex: 1;
  line-height: 1.4;
}
#present_title h2 span{
  font-size: 150%;
  display: block;
  margin: .5rem 0;
  color: var(--red);
}
#stamp_book{
  width: 30%;
  max-width: 13rem;
  position: relative;
  padding-top: 2rem;
}
#present_inner{
  position: relative;
}
#present_txt p a{
  text-decoration: underline;
}
#present_txt p a:hover{
  text-decoration: none;
}

#present_txt__address{
  background: #fff;
  padding: 2rem 5%;
  margin: 2rem 0;
}
#present_txt__address p{
  margin: .5rem 0;
}
#present_txt__link{
  text-align: center;
}


#site_footer{
  padding-top: 5rem;
}
#footer_logo{
  width: 35%;
  max-width: 15rem;
  margin: 0 auto 3rem;
  display: block;
}
#site_footer p{
  font-size: 1.2rem;
}
#footer_copy{
  background: var(--gold);
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  padding: 3rem 0;
  margin-top: 2rem;
}
#site_footer .btn_link{
  border-radius: 50px;
  font-size: 1.2rem;
  background: var(--gold);
  margin-bottom: 5rem;
  border: var(--gold) solid 1px;
  color: #fff;
}
#site_footer .btn_link .icon_blank{
  filter: brightness(0) invert(1);
}
.btn_download{
  width: 96%;
  max-width: 600px;
  padding: 2rem 1rem;
  position: sticky;
  bottom: 1rem;
  z-index: 999;
}
.btn_download::after{
  content: '';
  background: url('../images/illust_download.png') no-repeat center bottom / contain;
  width: 10rem;
  height: 6rem;
  position: absolute;
  top: -4rem;
  right: 0;
  z-index: 5;
}

.main_container{
  position: relative;
  z-index: 5;
}
.cloud{
  position:fixed;
  left: 0;
  width: 120%;
  max-width: 50rem;
  opacity: .6;
}
.cloud01{
  top: 10%;
}
.cloud02{
  bottom: 10%;
}



/* =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;
	}
  .btn_link__icon{
    right: 2rem;
  }
  .section{
    padding: 5rem 0;
  }
  .section_title{
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  .section_title span{
    padding: 0 2rem;
  }
  #main{
    padding-top: 2rem;
  }
  #header_logo{
    width: 10rem;
  }
  #message_txt{
    margin-bottom: 0;
  }
  .map_book{
    bottom: 20%;
    right: -1rem;
  }
  #course_wrap{
    display: flex;
    justify-content: space-between;
  }
  .course_box{
    width: 32%;
    margin: 0;
  }
  #course01 .course_box__illust{
    top: auto;
    bottom: -4rem;
  }
  #course02 .course_box__illust{
    left: -2rem;
  }
  #course03 .course_box__illust{
    top: -3rem;
    right: -2rem;
  }
  #present .wrapper{
    padding-top: 0;
  }
  #present_txt{
    text-align: center;
  }
  #present_title__label{
    width: 8rem;
    height: 8rem;
    top: -1rem;
    right: -3rem;
    font-size: 1.4rem;
  }
  #site_footer p{
    text-align: center;
  }
}





@media screen and (min-width: 1024px){
  html{
    font-size: 75%;
		scroll-padding-top: 80px;
  }
  .block{
    padding: 4rem 5%;
  }
  #header_logo{
    width: 13rem;
  }
  #message{
    margin-bottom: 8rem;
  }
  #message_txt{
    font-size: 1.6rem;
    line-height: 2.4;
  }
  .map_book{
    width: 8rem;
  }
  #course01 .course_box__illust{
    width: 12rem;
    bottom: -5rem;
  }
  #course02 .course_box__illust{
    left: 0;
  }
  #course03 .course_box__illust{
    width: 10rem;
    right: -3rem;
  }
  #present_title h2{
    font-size: 1.8rem;
  }
  .cloud{
    max-width: 70rem;
  }
}


@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);
  }
}