@charset "utf-8";
/* CSS Document */

html{
	font-size: 62.5%; /*16px x 62.5% = 10px*/
}
body{
	font-size: 1.4rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #f2f2f2;
	background-color: #1c1c1c;
    font-family: 'Noto Serif','Noto Serif JP', serif;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch; 
	font-feature-settings: "palt";
	-weblit-font-smoothing:antialiased;
	-moz-osz-font-smoothing:grayscale;
}
/*---------------
   common
---------------*/
a{
	color: #f2f2f2;
	text-decoration: none;
	display: block;
}
ul{
	list-style: none;
}
img{
	max-width: 100%;
	height: auto;
}
small{
	font-size: 1.0rem;
	opacity: 0.7;
}
.sp{
	display: block !important;
}
.pc{
	display: none;
}
.pc_2{
    display:none !important;
}
.text_center{
	text-align: center;
}
/*---------------
   header
---------------*/
.header{
	position: fixed;
	width: 100%;
	padding: 39px 0;
	background-color: rgba(28, 28, 28, 0.7);
	z-index: 100;
}
.header_logo{
	position: fixed;
	top:24px;
	left: 30px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height:1.3; 
	color: #a6884b;
	z-index: 101;
}
.header_nav{
    display: block;
	position: fixed;
	top: 0;
	left: -3000px;
	width: 100%;
	height: 100vh;
	padding-top: 100px;
	background-color: rgba(28, 28, 28, 0.9);
	transition: all .5s ease-in-out;
	z-index: 20;
    -ms-overflow-style: none;
    scrollbar-width: none; 
	-webkit-overflow-scrolling: touch;
}
.header_nav > div{
    overflow-y: scroll;
    height: 100%;
}
.header_nav > div::-webkit-scrollbar{
    display:none;
}
.header_nav.active{
	left: 0;
	opacity: 1;
}
.header_nav_list{
	font-size: 1.6rem;
	padding-bottom: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.header_nav_list:hover{
	-webkit-transform: translateY(3px);
	-ms-transform: translateY(3px);
    -o-transform: translateY(3px);
	transform: translateY(3px);
}
.header_nav_item{
	font-size: 1.2rem;
	color: #a6884b;
}
/*---------------
.toggle_btn
---------------*/
.toggle_btn {
  position: fixed;
  top: 24px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 102;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #a6884b;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.toggle_btn.active span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.toggle_btn.active span:nth-child(2) {
  opacity: 0;
}
.toggle_btn.active span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*---------------
   heroimage
---------------*/
.hero_img_box{
  position: relative;
}
.hero_img{
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.slider img {
  transform-origin: center top;
  transform: scale(1.0);
  transition: 6s ease-in-out;
  -webkit-transition: 6s ease-in-out;
  -moz-transition: 6s ease-in-out;
  -ms-transition: 6s ease-in-out;
  -o-transition: 6s ease-in-out;
}
.slider .slick-active img {
  transform: scale(1.06);
} 
h1{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%,-30%,0);
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-shadow: -2px 3px 5px #000;
}
.hero_ttl_1{
	display: block;
	font-size: 1.4rem;
	letter-spacing: 0.6em;
}
.hero_ttl_2{
	display: block;
	font-size: 4.0rem;
	letter-spacing: 0.2em;
	font-weight: 400;
}
.hero_btn {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translate3d(-50%,0,0);
  color: #a6884b;
  font-weight: 700;
}
.hero_btn span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1.5px solid #a6884b;
  border-bottom: 1.5px solid #a6884b;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 3s infinite;
  animation: sdb 3s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
/*---------------
 section common
---------------*/

/* wrapper box */
.wrapper_1{
	padding: 120px 6% 100px;
}
.wrapper_2{
	padding: 60px 6%;
}
.wrapper_3{
	padding: 80px 6%;
}
.wrapper_4{
	padding: 120px 6% 0;
}
.wrapper_5{
	padding: 40px 0 60px;
}
.section_box_1 img{
	width: 100%;
}
.section_box_2{
	border: solid 0.5px rgba(242,242,242,0.5);
	padding: 50px 24px;
	max-width: 450px;
	margin: 0 auto 60px;;
}

/* icon */
.section_icon{
	display: flex;
	justify-content: center;
	padding-top: 15px;
	font-size: 1.6rem;
	padding-bottom: 30px;
}
.section_icon_sns{
	width: 52px;
	height: auto;
	padding: 0 10px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.section_icon_sns:hover{
	-webkit-transform: translateY(3px);
	-ms-transform: translateY(3px);
    -o-transform: translateY(3px);
	transform: translateY(3px);
}

/* title */
.section_ttl_1{
	position: relative;
	left: 30%;
	font-weight: 400;
	letter-spacing: 0.2em; 
	font-size: 1.8rem;
	margin-bottom: 30px;
	width: 70%;
}
.section_ttl_2{
	display: block;
	font-size: 1.4rem;
	line-height: 1;
	opacity: 0.7;
}
.section_ttl_3{
	position: relative;
	left: 30%;
	font-weight: 400;
	letter-spacing: 0.2em; 
	font-size: 1.8rem;
	margin-bottom: 30px;
	width: 70%;
}
.section_ttl_1::before{
	content: '';
	position: absolute;
	left: -96px;
	top: 8px;
	width: 80px;
	height: 1px;
	background-color:rgba(166,136,75,0.7);
}
h3{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate3d(-50%,-30%,0);
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	
}
h3 a{
	position: absolute;
    left: 50%;
	transform: translate3d(-50%,-30%,0);
	font-size: 2.4rem;
	letter-spacing: 0.5em;
	font-weight: 400;
	padding: 20px 20px 5px;
	border: solid 1px #f2f2f2;
	white-space: nowrap;
}
h5{
	display: inline-block;
	padding: 2px 30px;
	margin: 0 auto 10px;
	font-size: 1.8rem;
	font-weight: 400;
	border-left: solid 1px rgba(166,136,75,0.7);
	border-right: solid 1px rgba(166,136,75,0.7);
}
h6{
	font-size: 1.6rem;
	font-weight: 700;
	background-color: rgba(242,242,242,0.2);
	padding: 3px 20px;
	display:inline-block;
}

/* text */
.section_txt{
	margin-bottom: 30px;
}
.section_txt_gold{
	color: #a6884b;
}
.section_txt_white{
	color: #f2f2f2;
}
.section_txt_black{
	color: #1c1c1c;
}

/* btn */
.section_btn_1{
	display: inline-block;
	border-radius: 5px;
	line-height: 40px;
	transition: 0.3s ease-in-out;
  	-webkit-transition: 0.3s ease-in-out;	
}
.section_btn_2{
    position: relative;
	display: inline-block;
	padding: 0 30px;
	border-radius: 5px;
	line-height: 56px;
	color: #f2f2f2;
	background-color: #a6884b;
	transition: all 0.3s ease-in-out;
  	-webkit-transition: all 0.3s ease-in-out;
    z-index: 10;
}
.section_btn_2:hover{
	color: #a6884b;
	background-color: #f2f2f2;
}
.fa-envelope{
	margin-right: 10px;
}
/*---------------
   profile
---------------*/
.profile_box{
	position: relative;
}
.profile_box::after{
	position: absolute;
	top: -37%;
	right: 1%;
	background-image: url("../img/common/cloud.png");
	background-size: contain;
	content: "";
	max-width: 400px;
 	width: 50%;
  	height: 50%;
	opacity: 0.35;
	z-index: -20;
	transform:rotate(180deg);
}
.profile_img_box{
	position: relative;
	padding-top: 30px;
}
.profile_img{
	display: block;
	position: relative;
	width: 77%;
	max-width: 240px;
	margin: 0 0 0 auto;
	z-index: 2;
}
.profile_img_bg{
	display: block;
	position: absolute;
	top: 50px;
	right: 20px;
	background-color: #a6884b;
	width: 77%;
	height: 89%;
	max-width: 240px;
	filter: drop-shadow(5px 7px 7px rgba(0,0,0,0.2))
}
.profile_txt_box{
	max-width: 91%;
	padding: 130px 6% 50px;
	background-color:#f2f2f2;
	color: #1c1c1c;
	margin: -75px auto 0 0;
}
.profile_txt_1{
	font-size: 2.2rem;
	line-height: 1.6;
}
.profile_txt_2{
	padding-bottom: 30px;
}

/*---------------
   lesson top
---------------*/
.lesson_top_bg{
	background-color:rgba(166,136,75,0.9);
}
.lesson_top_ttl:before{
	content: '';
	position: absolute;
	left: -96px;
	top: 6px;
	width: 80px;
	height: 1px;
	background-color:rgba(28,28,28,0.7);
}
.lesson_top_btn{
	color: #f2f2f2;
	border: solid 1px #f2f2f2;
	opacity: 0.8;
	padding: 0 50px;
}
.lesson_top_btn:hover{
	background-color: #f2f2f2;
	color: #a6884b;
	opacity: 1;
}
/*---------------
   workshop top
---------------*/
.workshop_top_bg{
	background-color:#f2f2f2;
}
.workshop_top_ttl::before{
	content: '';
	position: absolute;
	left: -96px;
	top: 6px;
	width: 80px;
	height: 1px;
	background-color:rgba(166,136,75,0.7);
}
.workshop_top_btn{
	color: #1c1c1c;
	border: solid 1px #1c1c1c;
	opacity: 0.8;
	padding: 0 50px;
}
.workshop_top_btn:hover{
	background-color: #1c1c1c;
	color: #f2f2f2;
}
/*---------------
   schedule
---------------*/
.schedule_btn{
	color: #a6884b;
	border: solid 1px #a6884b;
	padding: 0 15px;
	position: relative;
	z-index: 5;
}
.schedule_btn:hover{
	background-color: #a6884b;
	color: #1c1c1c;
}
.schedule_txt_box{
	position: relative;
}
.schedule_txt_box::after{
	position: absolute;
	top: 5%;
	right: 4%;
	background-image: url("../img/common/cloud.png");
	background-size: contain;
	content: "";
	max-width: 400px;
 	width: 50%;
  	height: 50%;
	opacity: 0.35;
	z-index: -3;
}
.schedule_calecder{
	height: 80vw;
	max-height: 500px;
	max-width: 600px;
	margin: 60px auto 30px;
}
/*---------------
   contact
---------------*/
.contact_bg{
	position: relative;
	background-image: url("../img/top/contact01_sp.jpg");
	background-size: cover;
	height:100%;
}
.contact_bg::before{
	position: absolute;
	background-color: rgba(0,0,0,0.45);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
}
.contact_txt_box{
	position: relative;
}
/*---------------
   sns
---------------*/
.sns_btn{
	padding: 0 30px;
	color: #f2f2f2;
	background-color: #a6884b;
    z-index: 10;
}
.sns_btn:hover{
	color: #a6884b;
	background-color: rgba(242,242,242,1);
}
.sns_box{
	position: relative;
	max-width: 1300px;
	margin: 0 auto;
}
.sns_box::after{
	position: absolute;
	top: -22%;
	right: 4%;
	background-image: url("../img/common/cloud.png");
	background-size: contain;
	content: "";
	max-width: 400px;
 	width: 50%;
  	height: 50%;
	opacity: 0.35;
	z-index: -3;
	transform:rotate(180deg);
}
.sns_list{
	padding-bottom: 50px;
}
.sns_item{
	width: 300px;
	max-width: 300px;
	margin: 50px auto 0;
}
.sns_item_fb{
	display: block;
	margin: 50px auto 0;
}
.twitter-timeline{
	display: block;
}
/*---------------
   footer
---------------*/
.footer{
	padding: 60px 24px 30px;
	background-color: rgba(51,51,51,0.4);
}
.footer_logo{
	font-size: 1.2rem;
	font-weight: 700;
	line-height:1.3; 
	color: #a6884b;
	opacity: 0.7;
}
.footer_nav{
	margin: 40px auto 40px;
}
.footer_nav_list{
	padding-bottom: 30px;
	font-size: 1.2rem;
}
.footer_btn{
	position: fixed;
	right: 24px;
	bottom: 30px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: #a6884b;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 50;
}
.footer_btn:hover{
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
	transform: translateY(-10px);
}
.footer_btn a{
	position: relative;
	display: block;
	width: 48px;
	height: 48px;
	text-decoration: none;
}
.footer_btn a::before{
	position: absolute;
	top: 5px;
	right: 0;
	left: 0;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f106';
	font-size: 2.4rem;
	color: #1c1c1c;
}
/*---------------
   lesson
---------------*/

/* feature */
.lesson_feature_img{
	position: relative;
	width: 95%;
}
.lesson_feature_img img{
	filter: drop-shadow(5px 7px 7px rgba(0,0,0,0.2));
}
.lesson_feature_img::after{
	position: absolute;
	content: "";
	top: 15px;
	left: 15px;
	width: 100%;
	height: 100%;
	background-color:rgba(166,136,75,0.9);
	z-index: -2;
}
.lesson_feature_txt{
	padding: 50px 0 80px;
}
.lesson_feature_box:last-of-type>.lesson_feature_txt{
	padding-bottom: 20px;
}

/* selectbox */
.lesson_select_box li{
	padding: 15px 0;
}
.select_btn_1{
	color: #a6884b;
	letter-spacing: 0.2em;
	border: solid 1px #a6884b;
	transition: 0.3s ease-in-out;
  	-webkit-transition: 0.3s ease-in-out;
	padding: 0 40px;
}
.select_btn_1:hover{
	background-color: #a6884b;
	color: #1c1c1c;
}
.select_btn_2{
	padding: 0 20px;
	color: #f2f2f2;
	background-color: #a6884b;
	transition: all 0.3s ease-in-out;
  	-webkit-transition: all 0.3s ease-in-out;
    z-index: 10;
}
.select_btn_2:hover{
	color: #a6884b;
	background-color: #f2f2f2;
}

/* place */
h4{
	font-size: 2.0rem;
	font-weight: 400;
	margin-bottom: 40px;
	letter-spacing: 0.2em;
}
h4 img{
	width: 40px;
	padding-right: 10px;
	vertical-align: bottom;
}
.lesson_table{
	margin: 0 auto 30px;
	max-width: 360px;
}
.lesson_table_ttl{
	padding: 5px 0;
	font-size: 1.6rem;
	font-weight: 700;
	background-color: rgba(242,242,242,0.65);
	border: solid 2px #1c1c1c;
}
.lesson_table_txt_1{
	padding: 15px 0;
	font-size: 1.6rem;
	background-color: #f2f2f2;
	border: solid 2px #1c1c1c;
}
.lesson_table_txt_2{
	padding: 10px 0;
	background-color: #f2f2f2;
	border: solid 2px #1c1c1c;
}
.lesson_table_txt_2 span{
	display: block;
	font-weight: 700;
	font-size: 1.6rem;
}
.lesson_place_txt{
	padding: 20px 0 30px;
}
.lesson_place_address{
	padding-bottom: 10px
}
.lesson_place_address span{
	padding-left: 15px;
}
.maps_outer{
	position: relative;
	padding-top: 61%;
	margin-bottom: 80px;
}
.maps{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
/*---------------
   work shop
---------------*/
.workshop_summary_box{
	max-width: 500px;
	margin: 0 auto ;
}
.workshop_summary_box img{
	display: block;
	margin-bottom: 40px;
}
.workshop_summary_box:nth-of-type(2){
	display: none;
} 
.workshop_summary_txt{
	background-color:rgba(166,136,75,0.9);
	padding: 10% 24px;
	margin-bottom: 40px;
}
.workshop_feature_inner{
	padding-bottom: 40px;
}
.workshop_feature_box{
	padding-top: 60px;
}
.workshop_feature_box h6{
	font-size: 1.4rem;
}
.workshop_feature_box h6:first-of-type{
	margin-top: 5px;
}
.workshop_feature_txt{
	padding: 10px 0 30px;
}
.workshop_feature_txt:nth-of-type(2){
	padding: 10px 0 0px;
}


@media screen and (min-width:750px){
/*---------------
   common
---------------*/
body{
	font-size: 1.5rem;
}
small{
	font-size: 1.2rem;
}
.sp{
	display: none !important;
}
.pc{
	display: inline-block;
}
.pc_2{
      display: block !important;
}
/*---------------
   header
---------------*/
.header_logo{
	left: 100px;
}
/*---------------
.toggle_btn
---------------*/
.toggle_btn {
  right: 100px;
}
/*---------------
   heroimage
---------------*/
.hero_ttl_1{
	font-size: 2.0rem;
}
.hero_ttl_2{
	font-size: 4.8rem;
}		
/*---------------
 section common
---------------*/
/* wrapper box */	
.wrapper_1{
	padding: 14% 11%;
}
.wrapper_3{
	padding: 14% 11%;
}
.wrapper_4{
padding: 14% 11% 0;
}
.wrapper_5{
	padding: 9% 0 12%;
}
.section_box_1{
	display: flex;
	display: -ms-flexbox;
	max-width: 1100px;
	margin: 0 auto;
	align-items: center;
}
.workshop_top_bg>.section_box_1{	
	flex-direction: row-reverse;
}
.section_txt_box{
	max-width: 1000px;
    margin: 0 auto;
	text-align: center
}
.section_box_2{
	max-width: 910px;
	padding: 80px;
	margin: 0 auto 9%;
}
	
/* icon */	
.section_icon a{
	padding-top: 5px;
}
.section_icon_sns{
	width: 62px;
	padding: 0 15px;
}	
	
/* title */
.section_ttl_1{
	font-size: 2.4rem;
	left: 13%;
}
.section_ttl_2{
	font-size: 1.6rem;
}
.section_ttl_3{
	font-size: 2.4rem;
	left: 30%;
}
h3 a{
	font-size: 3.2rem;
}

/* text */
.section_txt{
	margin-bottom: 50px;
	display: inline-block;
	text-align: left;
}
	
/* btn */
.section_btn_1{
	line-height: 50px;
	font-size: 1.6rem;
}
.section_btn_2{
	line-height: 64px;
	font-size: 1.8rem;
	margin: 0 auto;
	padding: 0 30px;
}
/*---------------
   profile
---------------*/	
.profile_txt_box{
	padding: 50px 6% 50px;
}
.profile_box::after{
	top: 30%;
	right: 24%;
}
.profile_box::before{
	position: absolute;
	top: 7%;
	right: 32%;
	background-image: url("../img/common/cloud.png");
	background-size: contain;
	content: "";
	max-width: 400px;
 	width: 50%;
  	height: 50%;
	opacity: 0.35;
	z-index: -20;
}
/*---------------
   lesson top
---------------*/
.lesson_top_bg{
	padding: 6% 11%;
}
.lesson_top_bg img{
	width: 50%;
	height: 50%;
	filter: drop-shadow(5px 7px 7px rgba(0,0,0,0.2));
}
.lesson_top_bg .wrapper_2{
	padding: 80px 0 80px 50px;
	width: 50%;
}
/*---------------
   workshop top
---------------*/	
.workshop_top_bg{
	padding: 6% 11%;
}
.workshop_top_bg img{
	width: 50%;
	height: 50%;
	filter: drop-shadow(5px 7px 7px rgba(0,0,0,0.2))
}
.workshop_top_bg .wrapper_2{
	padding: 80px 50px 80px 0;
	width: 50%;
}
/*---------------
   schedule
---------------*/
.wrapper_3>.schedule_txt_box{
	max-width: 1100px;
	margin: 0 auto;
}
.schedule_txt_box::after{
	top: 12%;
	right: -6%;
}
.schedule_calecder{
	height: 70vw;
	max-height: 600px;
	max-width: 700px;
}
.schedule_txt_box::after{
	top: 3%;
	right: -5%;
}
/*---------------
   contact
---------------*/
.contact_bg{
	background-image: url("../img/top/contact01_pc.jpg");
	background-size: cover;
	height:100%;
}	
.contact_txt_box{
	padding: 50px 0;
	max-width: 1100px;
	margin: 0 auto;
}
/*---------------
   sns
---------------*/
.sns_btn{
	padding: 0 50px;
}
.sns_list{
	display: flex;
	justify-content: space-between;
	max-width: 800px;
	padding-bottom: 0;
	margin: 0 auto;
}
.sns_item{
	margin: 0 10px;
}
.sns_item_fb{
	margin: 0;
}
/*---------------
   footer
---------------*/	
.footer_btn{
	right: 50px;
	bottom: 30px;
	width: 60px;
	height: 60px;
}
.footer_btn a{
  width: 60px;
  height: 60px;
}
.footer_btn a::before{
  font-size: 3.2rem;
}
/*---------------
   lesson
---------------*/
	
/* feature */	
.lesson_feature_box{
	display: flex;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
	margin-bottom: 13%;
}
.lesson_feature_box:last-of-type{
	margin-bottom: 0;
}
.lesson_feature_box:nth-of-type(2){
	flex-direction: row-reverse;
}
.lesson_feature_img{
	width: 50%;
}
.lesson_feature_txt{
	width: 50%;
	padding: 0 0 0 70px; 
}
.lesson_feature_box:nth-of-type(2)>.lesson_feature_txt{
	padding: 0 70px 0 0; 
}	
.lesson_feature_box:nth-of-type(2)>.lesson_feature_img::after{
	top: 15px;
	left: -15px;
}
/* selectbox */	
.lesson_select_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.lesson_select_box li{
	padding: 0 20px 40px 20px;
}
.lesson_select_box li:last-of-type{
	padding: 0 20px;
}
	
/* place */
.lesson_table_box{
	display: flex;
	justify-content: center;
	max-width: 1100px;
	margin: 0 auto;
}
.lesson_table{
	margin: 0;
	max-width: 331px;
	width: 40%;
}
.lesson_table_box>.lesson_table:nth-of-type(2){
	width: 60%;
	max-width: 800px;
}	
.lesson_table dd{
	display: flex;
}
.lesson_table_txt_1,.lesson_table_txt_2{
	position: relative;
	padding: 0 20px;
	height: 118px;
	width: 100%;
	align-items: center;
}
.lesson_table_txt_2 p{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.lesson_place_inner{
	position: relative;
	display: flex;
	max-width: 820px;
	height: 220px;
	margin: 0 auto 18%;
}
.wrapper_3 ul:last-of-type>.lesson_place_inner{
	margin: 0 auto 40px;
}
.lesson_place_box{
	width: 68%
}
.maps_outer {
	width: 50%;
    padding: 0 80px;
    margin: 0 0 0 40px; 
}	
.maps {
	height: 220px;
	max-width: 420px;
}
/*---------------
   workshop
---------------*/
	
/* summary */	
.workshop_summary_box:nth-of-type(2){
	display: flex;
}	
.workshop_summary_box{
	display: flex;
	max-width: 1060px;
}
.workshop_summary_box img{
	width: 50%;
	display: block;	
	padding: 0 15px 30px;
	margin-bottom: 0;
    height: 100%;
}
.workshop_summary_txt{
	width: 50%;
	display: grid;
	display: -ms-grid;
	align-items: center;
	padding: 3% 24px;
	margin:0 15px 30px ;
	max-width: 500px;
	font-size: 1.4vw;
}

/* feature */
.workshop_feature_inner{
	max-width: 900px;
	margin: 0 auto;
	padding: 6% 0 18%;
}
.workshop_feature_box{
	position: relative;
	padding-top: 8%;
}
.workshop_feature_box h6:first-of-type {
    margin-top: 10px;
}		
}


@media screen and (min-width:980px){
/*---------------
 section common
---------------*/
.wrapper_1{
	padding: 14% 11% 0;
}
.section_rl{
	position: absolute;
	-webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	right: 0; 
	z-index: 0;
}	
.section_ttl_1::before{
	content: '';
	position: absolute;
	width: 1px;
	height: 80px;
	top: -96px;
    right: 8px;
	background-color:#a6884b;
	opacity: 0.7;
}
.section_ttl_1{
	left: 30%;
}
.section_ttl_3{
	left: 100px;
}
/*---------------
   profile
---------------*/
.profile_box{
	max-width: 1100px;
	margin: 0 auto;
}
.profile_box::after{
	top: 29%;
	right: -3%;
}
.profile_box::before{
	top: -1%;
	right: 62%;
}
.profile_img_box{
	padding: 0;
	left: -80px;
}
.profile_img{
	width: 40%;
	max-width: 480px;
}
.profile_img_bg{
	height: 100%;
	width: 40%;
	max-width: 480px;
	top: 20px;
	right: 20px;
}
.profile_txt_box{
	width: 55%;
	padding: 12% 10%;
	max-width: 550px;
	position: relative;
	top: -200px;
	right: -2%;
	z-index: -5;
}		
.profile_txt_1{
	font-size: 2.4rem;
}
.profile_txt_2{
	font-size: 1.6rem;
}
/*---------------
   lesson top
---------------*/
.lesson_top_bg{
	padding: 10%;
}
/*---------------
   workshop top
---------------*/	
.workshop_top_bg{
	padding: 10%;
}
/*---------------
   schedule
---------------*/
.schedule_txt_box::after{
	top: 5%;
	right: 68%;
	max-width: 350px;
}
.schedule_txt_box::before{
	position: absolute;
	top: 20%;
	right: -6%;
	background-image: url("../img/common/cloud.png");
	background-size: contain;
	content: "";
	max-width: 350px;
 	width: 50%;
  	height: 50%;
	opacity: 0.35;
	z-index: -3;
	transform:rotate(180deg);
}
.schedule_calecder{
	position: relative;
}
.schedule_calecder::after{
	position: absolute;
	top: 58%;
	right: 78%;
	background-image: url("../img/common/cloud.png");
	background-size: contain;
	content: "";
 	width: 50%;
  	height: 50%;
	opacity: 0.35;
	z-index: -3;
	transform:rotate(180deg);
}
/*---------------
   contact
---------------*/
.contact_txt_box{
	height: 255px;
}
/*---------------
   sns
---------------*/	
.sns_box::before{
	position: absolute;
	top: 78%;
	right: 67%;
	background-image: url("../img/common/cloud.png");
	background-size: contain;
	content: "";
	max-width: 400px;
	max-height: 400px;
 	width: 50%;
  	height: 50%;
	opacity: 0.35;
	z-index: -3;
}
/*---------------
   footer
---------------*/	
.footer_btn{
	right: 100px;
	bottom: 50px;
}	
/*---------------
   lesson
---------------*/
/* place */
.lesson_place_inner{
	margin: 0 auto 10%;
}
/* illust */

.wrapper_3 ul:first-of-type>.lesson_place_inner:first-of-type::after{
	position: absolute;
	background-image: url("../img/common/cloud.png");
	top: -80%;
	right: -10%;
	background-size: contain;
	content: "";
	max-width: 400px;
 	width: 100%;
  	height: 100%;
	opacity: 0.35;
	z-index: -20;
	transform:rotate(180deg);
}
.lesson_place_inner:nth-of-type(2)::after{
	position: absolute;
	background-image: url("../img/common/cloud.png");
	top: -40%;
	left: -10%;
	background-size: contain;
	content: "";
	max-width: 400px;
 	width: 100%;
  	height: 100%;
	opacity: 0.35;
	z-index: -20;
}
.lesson_place_inner:nth-of-type(3)::after{
	position: absolute;
	background-image: url("../img/common/cloud.png");
	top: -80%;
	right: -10%;
	background-size: contain;
	content: "";
	max-width: 400px;
 	width: 100%;
  	height: 100%;
	opacity: 0.35;
	z-index: -20;
	transform:rotate(180deg);
}
.wrapper_3 ul:last-of-type>.lesson_place_inner::after{
	position: absolute;
	background-image: url("../img/common/cloud.png");
	top: 30%;
	left: 10%;
	background-size: contain;
	content: "";
	max-width: 400px;
 	width: 100%;
  	height: 100%;
	opacity: 0.35;
	z-index: -20;
}
/*---------------
   workshop
---------------*/
/* summary */	
.workshop_summary_txt{
	font-size: 1.5rem;
}
/* illust */

.workshop_feature_box:first-of-type h5::after{
	position: absolute;
	background-image: url("../img/common/cloud.png");
	top: 32%;
	right: 0%;
	background-size: contain;
	content: "";
 	width: 400px;
  	height: 186px;
	opacity: 0.35;
	z-index: -20;
	transform:rotate(180deg);
}
.workshop_feature_box:nth-of-type(3) h5::after{
	position: absolute;
	background-image: url("../img/common/cloud.png");
	top: 60%;
	right: -3%;
	background-size: contain;
	content: "";
 	width: 400px;
  	height: 186px;
	opacity: 0.35;
	z-index: -20;
}
}


@media screen and (min-width:1260px){
	
/*---------------
   header
---------------*/
.header{
	padding: 40px;
}
.header_logo{
	left: 100px;
}
.header_nav{
	height: auto;
	left: 0px;
	padding-top: 0px;
	background-color: rgba(0,0,0,0);
}
.header_nav_inner{
	display: flex;
	justify-content: flex-end;
	max-width: 1400px;
	margin: 0 auto;
}
.header_nav_list{
	padding: 17px 0 17px 4%;
}
.header_nav_list:last-of-type{
	padding-right: 100px;
}
/*---------------
  toggle_btn
---------------*/
.toggle_btn{
	display: none;
}
/*---------------
 section common
---------------*/
.section_icon{
	padding: 15px 100px 0 4%;
}
/*---------------
   footer
---------------*/
.footer{
	padding: 60px 50px 30px;
	bottom: 0;
}
.footer_nav{
	max-width: 1200px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer_nav_list{
	font-size: 1.2rem;
	padding: 15px 20px 0;
}
.footer_nav>.footer_nav_list:first-of-type{
		padding: 15px 20px 0 100px;
	}
}













