@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.6em;
  /*  line-height: 1.75;*/
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
/*a:hover {
  opacity: 0.5;
}*/
*, *:before, *:after {
  box-sizing: border-box;
}
.for-mobile {
  display: none;
}

/* header */
.header {
  width: 100%;
  height: 90px;
  margin: 0 auto;
  background-color: #fdf9f3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1000;
}
.header_nav {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
}
.header ul {
  display: flex;
  align-items: center;
}
.header ul li {
  padding-right: 30px;
  font-size: 1.4rem
}
.header_logo img {
  width: 100%;
}
.header-title {
  width: 212px;
  text-align: left;
  position: relative;
  left: 140px;
  text-decoration: none;
  color: #333;
}
.header-title:hover {
  opacity: 0.5;
}
.header_nav a {
  text-decoration: none;
  color: #333;
  padding-bottom: 5px;
}
.header_nav ul li a:hover {
  color: #c3a97d;
  /*  border-bottom: 2px solid #9FC3AC;*/
}
.heder_conversion-btn {
  display: flex;
}
.header_instagram img {
  width: 26px;
  margin: 0 auto;
}
.header_instagram {
  padding-top: 22px;
  width: 132px;
  height: 90px;
  background-color: #CDE0D4;
  display: flex;
  flex-direction: column;
}
.header_instagram:hover {
  background-color: #fff;
  transition: all 0.4s ease;
}
.header_instagram a {
  width: 100%;
  height: 100%;
}
.header_instagram-btn-text {
  font-size: 1.4rem;
  line-height: 1.5;
}
.header_inquiry-btn {
  padding-top: 16px;
  width: 175px;
  height: 90px;
  background-color: #b2d3be;
  display: flex;
  flex-direction: column;
}
.mail-icon1 {
  width: 35px;
  margin: 0 auto;
  display: none;
}
.header_inquiry-btn:hover {
  background-color: #446f54;
  color: #FFF;
  transition: all 0.3s ease;
}
.header_inquiry-btn-text {
  padding-top: 10px;
  font-size: 1.3rem;
  line-height: 1.5;
}
.header_inquiry-btn-text2 {
  line-height: 1.5;
  font-size: 1.0rem;
}
.header_inquiry-btn-text2 {
  display: none;
}
/*
.hamburger-menu {
  width: 60px;
  height: 60px;
  background-color: #fdf9f3;
}
.hamburger-menu {
  padding-top: 22px;
  display: none;
}
.hamburger-menu img {
  width: 20px;
  height: 16px;
  margin: 0 auto;
  display: none;
}
*/


@media (max-width: 1090px) {
  .for-mobile {
  display: block;
}
  .heder_conversion-btn {
    display: none;
  }
  
  /*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
  nav.header_nav.active {
    display: block;
  }
nav.header_nav {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #fff;
  background: rgba(0,0,0,0.7);
  text-align: center;
  width: 100%;
/*  opacity: 0;*/
  transition: opacity .6s ease, visibility .6s ease;
}

nav.header_nav ul {
/*  margin: 0 auto;*/
  padding: 0;
  width: 100%;
  display: none;
}
/* ↑初期状態でul要素を非表示にしているので「active」クラスが付与された際には表示させる必要があります */
nav.header_nav.active ul {
  display: block;
}
  
nav.header_nav ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.header_nav ul li:last-child {
  padding-bottom: 0;
}
nav.header_nav ul li:hover{
  background :#ddd;
}

nav.header_nav ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.header_nav.active {
/*  opacity: 100;*/
  
}

  
  
  
  
  .header {
    height: 60px;
  }
  .header_nav ul {
/*    display: none;*/
  }
  .header-title {
    left: 20px;
  }
  .header_logo img {
    width: 72%;
  }
/*
  .hamburger-menu {
    display: block;
  }
*/
  .header_inquiry-btn {
    width: 60px;
    height: 60px;
  }
  .header_inquiry-btn {
    width: 60px;
    height: 60px;
  }
  .header_instagram {
    width: 60px;
    height: 60px;
    padding-top: 15px;
  }
  .header_inquiry-btn-text {
    display: none;
  }
  .header_inquiry-btn-text2 {
   display: block;
}
  .mail-icon1 {
    display: block;
  }
  .header_instagram img {
    width: 17px;
  }
  .header_instagram-btn-text {
    font-size: 1.0rem;
  }
  .hamburger-menu {
    display: block;
  }
  .hamburger-menu img {
    display: block;
  }
}
/* top-padding */
.top-img-padding {
  height: 90px;
  width: 100%;
  background-color: #fdf9f3;
}
@media (max-width: 1090px) {
  .top-img-padding {
    height: 60px;
  }
}
/* section-trial */
.section-trial {
  padding-top: 115px;
  padding-bottom: 35px;
}
.section-trial_bg-square {
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(226, 237, 230);

}
.trial-wrapper {
  max-width: 1160px;
/*  height: 420px;*/
    height: auto;
  margin: 0 auto 20px;
  position: relative;
}
.section-trial_copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 25px;
}
.titles-catch_left {
  width: 16px;
  height: 20px;
}
.titles-catch_right {
  width: 16px;
  height: 20px;
}
.trial-copy {
  font-size: 2.0rem;
  font-weight: 500;
  padding: 0 20px;
}
.triallesson img {
  width: 100%;
  height: auto;
}
.section-trial_detail {
  max-width: 379px;
  margin-bottom: 30px;
  
}
.trial_bg-circle {
  max-width: 379px;
  position: absolute;
  top: -80px;
  left: 9%;
  z-index: -1;
}
.trial_bg-circle img {
  width: 100%;
}
.trial-lead {
  max-width: 379px;
  padding: 35px 0;
  text-align: left;
  line-height: 1.5;
}
.trial-img-area {
  max-width: 487px;
  hight: 324px;
  background-color: rgb(226, 237, 230);
}
.trial-img-area img {
  width: 95%;
  hight: auto;
}
.trial_fee {
  width: 300px;
  margin: 0 auto;
  font-size: 2.4rem;
  background: linear-gradient(transparent 50%, #FFF 0%);
}
.trial_fee1000 {
  font-size: 3.2rem;
  font-weight: 600;
  padding-left: 20px;
}
.trial-attention {
  max-width: 297px;
  margin: 0 auto;
  font-size: 1.4rem;
  text-align: left;
  padding-top: 11px;
  line-height: 1.5;
}
.trial_btn {
  width: 420px;
  height: 77px;
  font-size: 1.8rem;
  text-decoration: none;
  color: #333;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  margin: 0 auto;
  background-color: #FFF;
  padding: 10px;
}
.trial_btn:hover {
  background-color: #446f54;
  color: #FFF;
  border: none;
}
.trial_btn-text {
    margin: 0 auto;
}
@media (max-width: 480px) {
  .section-trial_bg-square {
    flex-direction: column;
    padding: 30px 20px 30px;
  }
 .trial-img-area img {
    width: 100%; 
  }
 .trial-lead {
    padding: 35px 20px; 
}
/*
  .section-trial_bg-circle {
    width: 125vw;
    height: 124vw;
    position: absolute;
    top: -70px;
    left: -50px;
}
*/
  .trial_bg-circle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 379px;
  }
  .section_btn {
    width: 267px;
    height: 50px;
    margin: 0 auto;
    font-size: 1.4rem;
    text-decoration: none;
}
}

/* footer */
.footer {
  background: url("../images/quilt_beige@2x-min.png") no-repeat top 79px left 210px/35%;
  padding: 70px 2vw 30px;
  background-color: #fdf9f3;
  position: relative;
}
.footer a {
  text-decoration: none;
  color: #333;
}
.footer_sitemap a:hover {
  opacity: 0.5;
}
.footer_wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  text-align: left;
}
.section-links_copy {
  width: 266px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}
.titles-catch_left, .titles-catch_right {
  width: 12px;
  height: 24px;
}
.section-links_copy span {
/*
  font-family: 'Merriweather', serif;
  font-size: 3.0rem;
*/
}
.footer_instagram img {
  width: 32px;
  height: 32px;
}
.footer_instagram {
  width: 266px;
  height: 78px;
  padding-left: 57px;
  margin-bottom: 12px;
  background-color: #CDE0D4;
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer_instagram:hover {
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

.footer_instagram span {
  font-size: 2.0rem;
}
.footer_link_school {
  width: 266px;
  height: 78px;
  background-color: #dd8444;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 7px;
}
.link_school {
  font-size: 1.4rem;
  color: #fff;
  padding-top: 7px;
  padding-bottom: 10px;
}
.link_school_Tahitian {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
}
.footer_links {
  max-width: 1160px;
}
/*
.footer_links a:hover {
  opacity: 0.5;
}
*/
.footer_logo {
  width: 240px;
  padding-bottom: 57px;
}
.footer_logo img {
  width: 100%;
}
.footer_sitemap ul li {
  padding-bottom: 20px;
}
.footer_sitemap ul li:last-child {
  padding-bottom: 0;
}
.footer_sitemap a:hover {
  opacity: 0.5;
  transition: all 0.3s ease;
}
#page_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-weight: bold;
  padding: 0.9em;
  text-align: center;
  background-color: #e6d7bd;
  color: #fff;
  transition: all 0.4s ease;
}
#page_top:hover {
  background-color: #FFF;
  color: #333;
}
#page_top a {
  text-decoration: none;
  color: #FFF;
}
#page_top a:hover {
  color: #333;
}
.copyright {
  margin-top: 50px;
}
@media (max-width: 480px) {
  .footer {
    padding-top: 60px;
  }
  .footer_wrapper {
    flex-direction: column;
    margin: 0 auto;
  }
  .footer_logo {
    max-width: 240px;
    margin: 0 auto;
    padding-bottom: 70px;
}
  .footer_sitemap ul {
    padding: 0 20px 100px;
  }
  .footer_sitemap ul li {
    padding-left: 100px;
}
  .footer_links {
    margin: 0 auto;
}
  .section-links_copy {
    padding-bottom: 20px;
}
  .copyright {
    margin-top: 160px;
}
}

