/*============
#logo
=============*/
.logo {
  display: block;
  position: fixed;
  z-index: 3;
  top: 31px;
  left: 31px;
  width: 240px;
 -webkit-filter: drop-shadow(0px 2px 3px rgba(0,0,0,.3));
 filter: drop-shadow(0px 2px 3px rgba(0,0,0,.3));
}
.mlogo {
  display: block;
  position: absolute;
  z-index: 3;
  top: 35%;
  left: 55%;
 -webkit-filter: drop-shadow(0px 2px 3px rgba(0,0,0,.1));
 filter: drop-shadow(0px 2px 3px rgba(0,0,0,.1));
}
.mlogo img { width: 70%;}
.shadow {
 -webkit-filter: drop-shadow(0px 2px 2px rgba(0,0,0,.3));
 filter: drop-shadow(0px 2px 2px rgba(0,0,0,.3));
}
.reserve {
  display: block;
  position: fixed;
  z-index: 3;
  top: 20vh;
  right: 1px;
  width: 60px;
}
.reserve img {
  vertical-align: bottom;
  padding-bottom: 1px;
}
@media screen and (max-width: 1400px) {
.logo {
  display: block;
  position: fixed;
  z-index: 3;
  top: 28px;
  left: 28px;
  width: 150px;
 -webkit-filter: drop-shadow(0px 2px 3px rgba(0,0,0,.7));
 filter: drop-shadow(0px 2px 3px rgba(0,0,0,.7));
}
}
@media screen and (max-width: 320px) {
.logo {
  display: block;
  position: fixed;
  z-index: 3;
  top: 25px;
  left: 31px;
  width: 120px;
 -webkit-filter: drop-shadow(0px 2px 3px rgba(0,0,0,.7));
 filter: drop-shadow(0px 2px 3px rgba(0,0,0,.7));
}
}
@media screen and (max-width: 960px) {
.mlogo {
  width: 90%;
  display: block;
  position: absolute;
  z-index: 3;
  top: auto;
  right: 0;
  bottom: 30px;
  left: 0;
  margin: auto;
 -webkit-filter: drop-shadow(0px 2px 3px rgba(0,0,0,.1));
 filter: drop-shadow(0px 2px 3px rgba(0,0,0,.1));
}
.mlogo img { width: 100%;}
.reserves {
  display: block;
  position: fixed;
  z-index: 3;
  bottom: -6px;
  margin: 0;
  width: 100%;
}
.reserves img {width: 100%;}
.flex_reserve{display: flex;justify-content: space-between; column-gap:1px;}
.reserve_bt{
width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
}
.respc { display: block !important; }
.ressp { display: none !important; }
@media screen and (max-width: 960px) {
.respc { display: none !important; }
.ressp { display: block !important; }
}

/*============
nav
=============*/
@media screen and (max-width: 960px) {
.navbg {
  display: block;
  position: fixed;
  z-index: 1;
  top: 0px;
  left: 0px;
  background: #3f2212;
background-color:rgba(63,34,18,0);
  width: 100%;
  height: 14vh;
}
.sa {
  opacity: 0;
  transition: all .5s ease;
}
.sa.show {
  opacity: 1;
  transform: none;
}
.sa--down {
  transform: translate(0, -100px);
}
}

nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 0px solid #eee;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #f4efe7;
}
@media screen and (max-width: 1400px) {
  nav {
    left: -220px;
    width: 220px;
  }
}
.navbg2 {
  display: block;
  position: fixed;
  overflow: hidden;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 90px;
}
.navbg2 video{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
   -webkit-filter: drop-shadow(0px 2px 2px rgba(0,0,0,.3));
 filter: drop-shadow(0px 2px 2px rgba(0,0,0,.3));
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #fff;
  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;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}

/*============
body
=============*/
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.1rem;
  line-height:1.6;
  font-weight: 400;
}

a {
color: #000;
  text-decoration: none;
}

/* セレクトボックスのフォーカス時のブラウザが付加する枠線を非表示 */
:focus {
    outline: none;
}

/* ::after要素をabsoluteで表示するために記載 */
.sns_area {
  display: block;
  position: fixed;
  top: 31px;
  right: 80px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}

@media screen and (max-width: 960px) {
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1rem;
  line-height:1.6;
  font-weight: 400;
}
}

/*=============
slick
=============*/

.full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
  z-index: 2;
}
.full div.img01 {
  background-image: url(../images/slide01_pc.jpg);
}
.full div.img02 {
  background-image: url(../images/slide02_pc.jpg);
}
.full div.img03 {
  background-image: url(../images/slide03_pc.jpg);
}
.full .slick-dots {
  bottom: 4%;
  z-index: +1;
}

.slide-items {
  width: 100%;
  margin: 0;
}

.arrow_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 15px 0 0;
    position: relative;
}

.prev-arrow,
.next-arrow {
    display: block;
    width: 40px;
    height: 40px;
    background: #c8af88;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
}

.prev-arrow {
    transform: rotate(180deg);
    margin-right: 15px;
}

.prev-arrow::before,
.next-arrow::before{
    position:absolute;
    content: "";
    width:8px;
    height:8px;
    border-right: 2px solid #FFF;
    border-top: 2px solid #FFF;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}

@media screen and (max-width: 960px) {
.full div.img01 {
  background-image: url(../images/slide01_sp.jpg);
}
.full div.img02 {
  background-image: url(../images/slide02_sp.jpg);
}
.full div.img03 {
  background-image: url(../images/slide03_sp.jpg);
}
}

/*============
main
=============*/
.pc { display: block !important; }
.sp { display: none !important; }
@media screen and (max-width: 1400px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

a.gd:link,a.gd:visited {
  color:#998547;
  font-weight:bold;
  text-decoration:none;
  cursor:pointer;
}

a.gd:active,a.gd:hover {
  color:#ff3300;
}

hr {border: 0; border-top: 1px solid #998547;margin: 20px 0;}
hr.w {border: 0; border-top: 1px solid #fff;margin: 20px 0;}
.bld {
  font-size: 1.2rem;
  font-weight:bold;
  }
.brown {color: #c8af88;}
.main {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-top: 50px;
  text-align: center;
}
.bg01 {
  width: 100%;
  background-color:#f4efe7;
  padding: 10px 0;
}

.flex {
display: flex;
column-gap: 50px;
align-items: stretch;
justify-content: center;
}
.flex_r {
display: flex;
column-gap: 50px;
align-items: stretch;
justify-content: center;
align-items: center;
}
.flex_l {
display: flex;
column-gap: 50px;
align-items: stretch;
justify-content: center;
align-items: center;
}
.flex_f1 {
flex: 1;
width: 100%;
 font-size: 0.8rem; 
}
.flex_f2 {
flex: 1;
width: 100%;
 font-size: 0.8rem; 
display: flex;
align-items: stretch;
align-items: end;
justify-content: flex-end;
}
.flex_cou {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
@media screen and (max-width: 1400px) {


}

@media screen and (max-width: 960px) {
.flex {
  display:inline-block;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}
.flex img {
  width: 100%;
}
.flex_l {
  display: inline-block;
  margin:0 auto;
  text-align: center;
  justify-content: center;
}
.flex_r {
  display: flex;
  margin:0 auto;
  text-align: center;
  justify-content: center;  
flex-direction: column-reverse;
}
.flex_f1 {
  width: 100%;
  margin:0 auto;
  text-align: center;
}
.flex_f2 {
  display: inline-block;
  width: 100%;
  margin:0 auto;
  text-align: center;
  align-items: center;
}
}

/*============
top
=============*/
.sml {
font-family: 'Shippori Mincho B1', serif;
font-size: 0.9rem;
line-height:2;
text-align: center;
}
.left {
text-align: left;
}
.catch {
font-family: 'Shippori Mincho B1', serif;
font-size: 1.7rem;
line-height:2;
text-align: center;
margin-bottom: 20px;
}
.catch2 {
font-family: 'Shippori Mincho B1', serif;
font-size: 3rem;
line-height:1.2;
text-align: center;
margin-bottom: 20px;
color:#c8af88;
}
.catch3 {
display: inline-block;
font-family: 'Shippori Mincho B1', serif;
font-size: 1.5rem;
text-align: center;
position: relative;
  left: 50%;
  transform: translateX(-50%);
margin-bottom: 20px;
background: linear-gradient(transparent 50%, #ffff00 70%);
}
.titlee {
text-align: center;
  font-size: 3rem;
  line-height:1.1;
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}
.titles { font-size: 1rem; text-align: center;}
.omoi1 {
text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.om_ph {max-width: 540px; width: 100%; margin:0 auto 20px auto;}
.om_ph img {width: 100%; border-radius: 30px;}
.om_wd {flex: 1; text-align: left;}
.kakomi1{
display: inline-block;
  background-color: #fff;
  border-radius:10px;
  padding:5px 10px;
}
.omoi2 {
font-family: 'Shippori Mincho B1', serif;
font-size: 1.3rem;
line-height:1.8;
text-align: center;
margin-bottom: 20px;
}
.point{
  font-size: 3rem;
font-family: "Averia Serif Libre", serif;
  font-weight: 700;
  font-style: normal;
}
.shape-1{
position: relative; 
 max-width: 400px;
 width: 100%;
 background-color: #fff;
 border-radius: 30px;
 margin-bottom: 50px;
}
.shape-2{
display: table;
  max-width: 400px;
  max-height: 400px;
  width: 100%;
  height: 25vw;
  color: #fff;
  background-color: #c8af88;
  border-radius:62% 38% 63% 47% / 40% 60% 50% 60%;
  margin:20px 0;
}
.shape-3{
position: relative; 
 width: 23%;
 background-color: #fff;
 border-radius: 30px;
 margin-bottom: 15px;
 padding:20px;
 text-align:left;
 box-sizing: border-box;
}
.shape-4{
position: relative; 
 max-width: 400px;
 width: 100%;
 background-color: #fff;
 border-radius: 30px;
 margin-bottom: 30px;
}
.catch_cou {
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 5px 25px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 2.2rem;
  background: #c8af88;
  border-radius: 20px;
}
.catch_cou:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 20px solid #c8af88;
}
.cou_px{
 padding:2vw 4.5vw;
}
.cou_md{
  font-size: 1.2rem;
  font-weight: 700;
  font-style: normal;
}
.cou_sml {
font-size: 0.9rem;
line-height:1.8;
text-align: center;
}
.spinner{
 padding:20px;
}
.spinner img{
width: 100%;
 border-radius: 15px;
}
.maru {
position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top:-1px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #c8af88;
  width: 100px;
  height: 100px;
}
.lesson{
  font-size: 1.3rem;
  font-family: "Averia Serif Libre", serif;
  font-weight: 700;
  color: #fff;
}
.maru2 {
position: absolute;
  top: 5%;
  left: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #c8af88;
  width: 30px;
  height: 30px;
}
.cou_num{
  font-size: 1.3rem;
  font-family: "Averia Serif Libre", serif;
  font-weight: 700;
  color: #fff;
}
.spinner2{
display: table-cell;
vertical-align: middle;
 padding:50px;
 font-size: clamp(14px, 1.6vw, 26px);
}
.shapetit {
font-size: clamp(18px, 1.4vw, 20px);
font-weight: 800;
 padding:35px 0 10px 0;
}
.shaperead {text-align: left;}
.fukidahi {
margin-top:-20px;
left:68vw;
position: absolute;
width: 120px;
}
.shapesml{
 margin-top: -30px;
 font-family: 'Shippori Mincho B1', serif;
font-size: 0.9rem;
line-height:1.5;}
.noww{
  font-size: 1.4rem;
  line-height:1.8;
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  flex: 1;
}
.lesson_cov{
position: relative; 
 width: 100%;
 background-color: #c8af88;
 border-radius: 30px;
 padding:30px 50px;
 box-sizing: border-box;
}
.lesson_ex{
  font-size: 1.4rem;
 color: #fff;
 width: 100%;
 background-color: #c8af88;
 border-radius: 15px;
 padding: 5px;
 box-sizing: border-box;
}
.ex_tit {
 color: #c8af88;
font-size: clamp(20px, 1.5vw, 25px);
font-weight: 800;
 padding:15px 0;
}
.ex_pt{
display: inline-block;
 font-size: 0.9rem;
 color: #fff;
 font-weight:bold;
 background-color: #c8af88;
 border-radius: 5px;
 padding:2px 6px;
 box-sizing: border-box;
 margin-bottom:5px;
}
.lesson_tit1{
 font-size: 2.6rem;
  line-height:1.2;
 color: #fff;
 font-weight:bold;
  margin-bottom:5px;
 }
 .lesson_tit2{
 font-size: 1.8rem;
 color: #f4efe7;
 }
.nowp{width: 250px;}
.waku{border:1px solid #c8af88; border-radius: 30px; padding:20px 50px; box-sizing: border-box;}

.news  {
  margin: 0 auto;
  width: 60%;
  background-color:#f4efe7;
  padding: 50px;
  border-radius: 30px;
  box-sizing: border-box;
}
.news ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.news li {margin-bottom: 10px;}
.news a {
    color: #cc0000;
    text-decoration: none;
    }
.news a:hover {text-decoration: underline;}



@media screen and (max-width: 960px) {
.catch {
font-family: 'Shippori Mincho B1', serif;
font-size: 1rem;
line-height:1.8;
text-align: center;
margin-bottom: 20px;
}
.catch3 {
font-family: 'Shippori Mincho B1', serif;
font-size: 1.2rem;
line-height:1.8;
text-align: center;
margin-bottom: 20px;
}
.fukidahi {
margin-top:190px;
left:70vw;
position: absolute;
width: 100px;
}
.omoi2 {
font-family: 'Shippori Mincho B1', serif;
font-size: 1rem;
line-height:1.8;
text-align: center;
margin-bottom: 20px;
}
.shape-1{
position: relative; 
 width: 100%;
 background-color: #fff;
 border-radius: 30px;
 margin-bottom: 70px;
}
.shapesml{
 margin-top: -50px;
 font-family: 'Shippori Mincho B1', serif;
font-size: 0.9rem;
line-height:1.5;
}
.shape-2{
display: table;
  max-width: 400px;
  max-height: 400px;
  width: 100%;
  height: 320px;
  color: #fff;
  background-color: #c8af88;
  border-radius:62% 38% 63% 47% / 40% 60% 50% 60%;
  margin:20px 0;
}
.spinner2{
display: table-cell;
vertical-align: middle;
 padding:40px;
 font-size: 1.5rem;
}
.shapetit {
font-size: 1.4rem;
font-weight: 800;
 padding:35px 0 10px 0;
}
.shape-3{
position: relative; 
 width: 48%;
 background-color: #fff;
 border-radius: 20px;
 margin-bottom: 15px;
 padding:15px;
font-size: 0.8rem;
line-height:1.5;
 text-align:left;
 box-sizing: border-box;
}
.catch_cou {
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 5px 25px;
  width: 100%;
  color: #fff;
  font-size: 1.5rem;
  background: #c8af88;
  border-radius: 10px;
  box-sizing: border-box;
}
.cou_px{
 padding:2vw 9vw;
}
.cou_md{
  font-size: 0.9rem;
  font-weight: 700;
  font-style: normal;
}
.cou_sml {
font-size: 0.8rem;
line-height:1.6;
text-align: left;
}
.lesson_cov{
position: relative; 
 width: 100%;
 background-color: #c8af88;
 border-radius: 30px;
 padding: 20px;
 box-sizing: border-box;
}
.lesson_tit1{
 font-size: 2.6rem;
 line-height:1.2;
 color: #fff;
 font-weight:bold;
 }
 .lesson_tit2{
 font-size: 1.3rem;
 color: #f4efe7;
 }
.noww{
  font-size: 1.1rem;
  line-height:1.5;
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  flex: 1;
}
.nowp{width: 200px; margin:0 auto; text-align: center;margin-bottom: 15px;}
.waku{border:1px solid #c8af88; border-radius: 30px; padding:20px; box-sizing: border-box;}
.news  {
  margin: 0 auto;
  width: 100%;
  background-color:#f4efe7;
  padding: 30px;
  border-radius: 30px;
  box-sizing: border-box;
}
}

/*============
footer
=============*/
.footer_wrap {
  color: #ffffff ;
  box-sizing: border-box;
  width: 100%;
  background-color:#c8af88;
}
.footer {
  width: 90%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 2em 0 ;
}
.footcp {font-size: 1.5rem;}
.sns {width: 22px;}
.footer_link a {
 color: #ffffff ;
 font-size: 0.7rem;
}
@media screen and (max-width: 1400px) {
.sns {width: 22px !important;}
.footer {
  display:block;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}
}