@charset "utf-8";
/* ==================== 
common
=====================*/
:root{
    --primary-brown: #6E5E4F;
    --primary-beige: #FFEDE0;
    --primary-white: #ffffff;
    --primary-pink: #FFEFF7;
    --primary-red: #FF6666;
    --contentWidth: 94.6%;
    --contentPadding: 5.3%;
}

 html{
    font-size: 62.5%;
 }

 body{
    /* font-family: 
        "Noto Sans JP",
        "Original Surfer",
        sans-serif,
        "Kiwi Maru", serif; */
    font-style: normal;
    color:var(--primary-brown, #6E5E4F);
    line-height: 1.5;
 }

 img{
    max-width: 100%;
    height: auto;
 }

 /* 誘導ボタンcss ver. */
 .trial_btn{
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-white, #ffffff);
    font-size: 1.4rem;
    font-weight: 500;
    background: linear-gradient(114deg, #F95B5B 15.28%, #FCCEB5 87.3%);
    filter: drop-shadow(8px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 50%;
    position: absolute;

 }

 .trial_btn::before{
    content:'＼Click／';
    color:black;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: inter;
    transform: rotate(30deg);
    position: relative;
    top: -97px;
    left: 46px;
 }

 .trial_btn::after{
    content:"";
    position: absolute;
    width: 110px;
    height: 110px;
    border: 1px solid white;
    border-radius: 50%;
 }

.trial_btn{
  position: fixed;
  right:25px;
  top: 700px;
  z-index: 20;
}

.btn_txt{
  display: inline-block;
  padding-top: 17px;
}

 /* ==================== 
 header
=====================*/
.header{
    background: var(--primary-white, #ffffff)
}

.header,
.nav_header{
    padding: 20px 5.3% 0 ;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    width: 110px;
}

.pc-logo{
  display: none;
}


.nav_icon{
    width: 30px;
}

.hamburger{
    background: #FF3333;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 7px;
    top: 10px;
}

.hamburger::after{
    content:"";
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-white);
    display: block;
    border-radius: 7px;
    position: relative;
    top: -2px;
    left: 5px;
}

.hamburger_bar{
    display: block;
    width: 25px;
    height: 1px;
    margin: 0 auto;
    background: var(--primary-white, #ffffff)
}

.hamburger_bar:nth-child(1),
.hamburger_bar:nth-child(2),
.hamburger_bar:nth-child(3){
    position: relative;
}

.hamburger_bar:nth-child(1){
    top: 10px;
}

.hamburger_bar:nth-child(2){
    top: 20px;
}

.hamburger_bar:nth-child(3){
    top: 30px;
}

/* nav　初期表示 */
.nav{
    background: var(--primary-beige,);
    width: 100%;
    height: 100vh;
    position: fixed;
    top:0;
    left:0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
  }

  .nav_list-sp{
    margin-left: 44px;
  }

.close_btn{
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
  }
   
  .close_btn::before, .close_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px; 
    height: 30px;
    background: var(--primary-brown, #6E5E4F);
  }
   
  .close_btn::before {
    transform: translate(-50%,-50%) rotate(45deg);
  }
   
  .close_btn::after {
    transform: translate(-50%,-50%) rotate(-45deg);
  }
  
  .nav_list-pc{
    margin-top: 80px;
    margin-left: 44px
  }

  .nav_list-pc{
    display: none;
  }

  .nav_item{
    color: #6E5E4F;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 49px;
  }

  .nav_item img{
    display: inline-block;
    vertical-align: -3px;
    margin-right: 30px;
  }

  .nav.active{
    transform: translateX(0);
  }

  /* header pc */
 @media screen and (min-width:769px) {
  .header{
    display: none;
  }

  .nav_header{
    display: none;
  }

  .nav{
    background: transparent;
    width: auto;
    height: auto;
    padding: 0;
    position: static;
    transform: translateX(0);
  }

  .nav_item img{
    display: none;
  }

  .header__topic .logo,.hamburger{
    display: none;
  }
 }/* pc 769px */

/* menu list pc */
@media screen and (min-width:769px) {
  .nav_list-pc{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 20px 8.6% 20px;
  }

  .nav_item{
    margin: 0 88px 0 0;
    color: #6E5E4F;
    text-align: center;
    font-family: Inter;
    font-size: 2rem;
    font-weight: 400;
  }

  .nav_list-pc li:last-child{
    margin: 0;
  }

  .pc-link{
    font-size: 1.6rem;
  }
 
}/* pc 769px */
  
/* ==================== 
 pc-logo
=====================*/
  @media screen and (min-width:769px) {
  .pc-logo{
    display: block;
    width: 250px;
    padding: 19px 0 0 36px;
    position: absolute;
    z-index: 10;
  }
}

/* ==================== 
 footer
=====================*/

.footer_txt{
  padding: 24px 8.8%;
  text-align: center;
  font-family: Inter;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(0deg, #FFEFF7 10.58%, #FFEDE0 100%);
}

.footer{
  background-color: var(--primary-pink, #FFEFF7);
}

.footer_logo{
  width: 150px;
  display: block;
  margin: 29px auto 0;
}

.school_list{
  font-family: Inter;
  font-size: 2rem;
  font-weight: 600;
  margin: 40px 0 0 96px;
}

.school{
  margin-bottom: 56px;
}

.school_list li:nth-child(2){
  margin-bottom: 0;
}

.school_list p{
  margin-top: 10px;
  font-family: Inter;
  font-weight: 400;
  font-size: 1.6rem;
}

.copy{
  padding: 33px 0 11px;
  text-align: center;
  font-family: Inter;
  font-size: 1.2rem;
}

.address-r{
  position: relative;
}

.address-r::before{
  content: '';
  display: block;
  position: absolute;
  top: 29px;
  left: -20px;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-image: url(../images/tel_icon-footer.png);
}

/* footer pc */
@media screen and (min-width:769px) {
.school_list{
  display: flex;
  gap: 225px;
  justify-content: center;
  margin: 48px auto 0;
}

.school{
  margin-bottom: 0;
}

.footer_txt{
  padding: 60px 0;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}

.copy{
  padding-top:30px;
}

.spBr{
  display: none;
}
}/* pc 769px */

