@charset "UTF-8";

*{
  box-sizing: border-box;
}

.sp-br{
  display: none;
}

@media (max-width: 768px) {
  .sp-br{
    display: block;
  }
}


.container-width {
  max-width: 768px;
}

.navbar-mycolor {
  background-color: #F7931E !important;
  /* 調整可 */
}

.navbar-top {
  background-color: #ed5a24 !important;
}

/* ヘッダの小さいテキスト */
.headertext {
  font-size: 10px;
  /*変更可*/
  color: white;
  /*変更可*/
  background-color: crimson;
  /*変更可*/
  width: 100%;
  /* 固定 */
  height: 15px;
  /* 固定 */
  text-align: center;
  /* 固定 */
}

.navbar-wrap {
  height: 70px;
  /* ヘッダの高さ。固定 */
}

@media (min-width: 768px) {
  .navbar-wrap {
    /*height: 100px;*/
  }
}

.navbar-brand {
  /* ロゴを中央寄せするときはこのクラスを使う */
  /* navbar-wrapにheight70px(599以下は60px)を指定してあるので、ロゴが高さをはみ出さないようにwidthとmaxwidthで調整する。 */
  /*max-width: 300px;*/
  /* ロゴの最大幅(主にPC時)　調整可 */
  width: 70%;
  /* ロゴの最大幅(主にSP時)　調整可 */
  padding: 0;
  /*触らない*/
  margin: 0;
  /*触らない*/
  top: 50%;
  /*触らない*/
  left: 50%;
  /*触らない*/
  -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
  /*触らない*/
  -webkit-transform: translateY(-50%) translateX(-50%);
  /*触らない*/
}

.navbar-brand-left {
  /* ロゴを左寄せするときはこのクラスを使う */
  /* navbar-wrapにheight70px(599以下は60px)を指定してあるので、ロゴが高さをはみ出さないようにwidthとmaxwidthで調整する。 */
  max-width: 270px;
  /* ロゴの最大幅(主にPC時)　調整可 */
  width: 57%;
  /* ロゴの最大幅(主にSP時)　調整可 */
  padding: 0;
  /*触らない*/
  top: 50%;
  /*触らない*/
  left: 5%;
  /* ハンバーガーボタンのrightの値を合わせるといいよ */
  transform: translateY(-50%);
  /*触らない*/
  -webkit-transform: translateY(-50%);
  /*触らない*/
  -ms-transform: translateY(-50%);
  /*触らない*/
}

.floating-navbtn {
  max-width: 30px;
  /* ボタンの横幅　30~40pxくらいの間で変更可　pxで指定　横幅狭くした時にロゴに当たらないように注意。 */
  height: 27px;
  /* ボタンの高さ　35%~40%くらいの間で変更可　パーセントで指定 */
  right: 25px;
  /* 右端からの距離　変更可　パーセントで指定　横幅狭くした時にロゴに当たらないように注意。*/
  width: 100%;
  top: 20px;
  /* bottom: 0; */
  /* margin-top: auto; */
  /* margin-bottom: auto; */
  padding: 0;
  border: none;
  position: fixed;
  z-index: 1001;
}

@media (min-width: 768px) {
  .floating-navbtn {
    right: calc(((100% - 768px) / 2 ) + 25px);
    /*top: 40px;*/
  }
  .navbar-brand {
    left: 50%;
  }
}

.navToggle span {
  border-bottom-color: black;
  /* 色は調整可 */
}

.navToggle div {
 font-size: .5rem;
    position: absolute;
    bottom: -15px;
    font-weight: bold;
    font-family: serif;
}

/*ラインボタン用のクラス。とりあえずロゴは左寄せにしないと無理。ロゴのサイズによっては調整が必要。*/
.floating-linebtn {
  max-width: 40px;
  height: 60%;
  right: calc(5% + 43px);
  width: 100%;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  padding: 0;
  border: none;
}

.floating-linebtn .linebtn {
  cursor: pointer;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  height: 100%;
}

/* メニューを開いた中身 */
.navbar-collapse {
  background-color: #886533;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
}

.navbar-collapse .navbar-nav .nav-item {
  text-align: center;
  font-weight: 600;
  padding-top: 1.5%;
  padding-bottom: .7%;
  font-size: 14px;
}

@media (min-width: 768px) {
  .navbar-collapse .navbar-nav .nav-item {
    font-size: 20px;
  }
}

.navbar-collapse .navbar-nav .nav-item:not(:last-child) {
  border-bottom: 1px dotted white;
}

.navbar-collapse .navbar-nav .nav-item .nav-link {
  color: white;
}

.navbar-collapse .navbar-nav .nav-item .nav-link:active {
  color: white;
}

.navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: white;
}

.navbar-collapse .menu-btn-area {
  padding-left: 4%;
  padding-right: 4%;
}

.navbar-collapse .menu-btn-area .row {
  padding-top: 15px;
  margin: auto;
  padding-bottom: 15px;
}
.navbar-collapse .menu-btn-area .row div {
  margin: auto;
  padding-bottom: 15px;
}




.navbar-collapse .navbar-nav-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  padding-top: 6%;
  padding-bottom: 2%;
}

.navbar-collapse .navbar-nav-box .--item {
  -webkit-flex-basis: 48%;
      -ms-flex-preferred-size: 48%;
          flex-basis: 48%;
}

/* ヘッダの高さ分の余白ボックス */
.header-back {
  height: 70px;
}

@media (min-width: 768px) {
  .header-back {
    height: 70px;
  }
}

/**********
メインビジュアル
**********/



/**********
共通
**********/
.txt-r {
  text-align: right;
}

.txt-c {
  text-align: center;
}

.txt-l{
  text-align: left;
}

.ml--2p{
  margin-left: -2%;
   margin-right: 2%;
}


.mt--12 {
  margin-top: -12px;
}

.mt-m {
  margin-top: -20%;
  display: block;
}
.mw768 {
    max-width: 768px;
}

.mt--50 {
  margin-top: -50px;
}
.txt-red {
  color: #f00;
}
/**********
各パーツ
**********/


.container-width {
  padding: 5%;
  text-align: center;
}

header .container-width,
 .main .container-width {
  padding: 0;
  text-align: center;
}
header .container-width .navbar-wrap {
  text-align: center;

}

#cont02 .container-width,
#main .container-width {
background-color: #fffcdb;
}

#cont03 .container-width{
  background-color: #ffd100;
}



.container-width ul li {
  margin-bottom: 30px;
}


#cont04 .container-width h2 img {
  width: 80%;
}
#cont04 .container-width ul {
  border: solid 10px #39b14a;
  border-radius: 30px;
  padding-top: 60px;
  margin-top: -50px;
  margin-bottom: 20px;
}

#cont04 .container-width ul li img {
  width: 90%;
}

#cont04 .container-width p {
  width: 90%;
  text-align: left;
  font-size: .8rem;
  margin-left: 2rem;
  text-indent: -1rem;
}

#cont05 .container-width {
  background-color: #fffcdb;
  padding: 0 0 2% 0;
}

#cont05 .container-width ul{
  margin: 5%;
}

#cont06 .container-width {
  background-color: #fbc93e;
}

#cont07 .container-width {
  background-color: #8fc31f;
}

#cont07 .container-width h2 {
  margin-bottom: 5%;
}

#cont07 .container-width ul li {
  margin-bottom: 0;
}

#cont07 .container-width ul li img {
  margin-bottom:2%;
}

.container-fluid {
  padding: 0;
}






.toiawase .form-subttl {
    width: 63.7%;
    max-width: 454px;
}

.toiawase .form-tel {
    margin-top: 4.4%;
    max-width: 575px;

}

.toiawase .form-line {
    margin-top: 4.6%;
    max-width: 575px;

}

section.toiawase div.container-width div {
    margin: 3% auto;
    text-align: center;
}


section.toiawase div.container-width div .--bottom-dotline {
    margin-top: 7%;
    border-bottom: dotted 6.5px #898989;
}

/**********
問い合わせフォーム
**********/
.contactform .contactform-wrap {
  padding: 3% 5% 10% 5%;

}

.contactform label {
  display: block;
  margin-bottom: 0;
  padding-bottom: 0;
} 

.contactform p {
  text-align: left;
}

.contactform .datetime-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contactform .datetime-flex .date {
  -webkit-flex-basis: 55%;
      -ms-flex-preferred-size: 55%;
          flex-basis: 55%;
}

.contactform .datetime-flex .time {
  -webkit-flex-basis: 43%;
      -ms-flex-preferred-size: 43%;
          flex-basis: 43%;
}

.contactform .badge-hissu {
  color: #fff;
  background-color: #ff0000;
}

.contactform .badge-nini {
  color: #fff;
  background-color: #22ac38;
}

.contactform .badge-ninni {
  color: #fff;
  background-color: #22AC38;
}

.contactform .confirmbtn {
  max-width: 400px;
  width: 50%;
  margin-top: 6.4%;
  text-align: center;
}

.contactform p.mail{
 text-align: center;
 font-size: .8rem;
 margin-top: 10px;
}

.contactform .form-tel-cap {
  margin-top: 2.5%;
  width: 87%;
}

.contactform .form-btn-tel {
  width: 90%;
  margin-top: 4%;
  margin-bottom: 6.6%;
}

.form-group.check label {
  display: block;
}

.form-group.check input  {
 margin-left: 1em;
}

.form-group select {
  border: 1px solid #ced4da;
  padding: .5rem;
  border-radius: .3rem; 
  width: 100%;
}

@media (min-width: 768px) {
  .form-group select {
    appearance: radio; /* 標準のスタイルを無効にする */
  }
}

.form-group ul{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-around;
}

@media (max-width: 768px) {
  .form-group ul{
    align-items: flex-start;
    min-width: 350px;
  }
}

.form-group li{
  position: relative;
  text-align: center;
  padding: 0 3px;
}

.form-group li a{
  display: block;
  width: 100%;
  height: 100%;
}

.form-group li .modal-img:before{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  content: '';
  width: 60px;
  height: 60px;
  background-image: url("../img/hand-glass.svg");
  background-size: contain;
}

.form-group li p{
  color: #036eb8;
  text-align: center;
  display: block;
  margin: 10px auto 0;
  font-size: 16px;
}

.form-group li img{
  height: 280px;  
}

@media (max-width: 768px) {
.form-group li img{
  height: 150px;
  }
}

.form-group p span{
  color: #036eb8;
}


/**********
下部固定エリア
**********/
#fixed-btn {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

#fixed-btn ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#fixed-btn ul li.btn {
  width: 49%;
  padding: 0 !important;
}

/**********
プライバシーポリシー
**********/
#privacypolicy .tp {
  margin-top: 40px;
}

#privacypolicy .pp_head {
  margin-top: 60px;
  padding: 0 0px 0 8px;
  letter-spacing: 0.07em;
  border-left: 8px solid #F7931E;
  color: #333;
  font-weight: bold;
}

#privacypolicy .pp_subhead {
  /* color: #fff; */
  padding: 5px 0 5px 10px;
  /* background-color: #A0A698; */
  /* background-color: #C4C7AA; */
  color: #82827f;
  background-color: #D1D1CB;
}

#privacypolicy dd {
  margin-bottom: 1.5rem;
  margin-left: 0;
  margin-top: 1.0rem;
}

#thanks .thanks-wrap {
  background-image: url(../img/2x/thanks-back.png);
  padding-top: 15%;
  padding-bottom: 15%;
}

#thanks .thanks-wrap .thanks-ttl {
  max-width: 375px;
  width: 70%;
  padding: 0 9% 3.5%;
}

#thanks .thanks-wrap p {
  font-size: 4.16667vw;
  font-weight: 600;
  margin-top: 5.7%;
  line-height: 6.7vw;
}

@media (min-width: 768px) {
  #thanks .thanks-wrap p {
    font-size: 32px;
  }
}



/* フッター */
footer {
  background-color: #ed5a24;
  color: #ed5a24;
}

footer.container-width{
  padding: 1%;
}
footer .inner {
  padding-bottom: 2%;
}

footer .inner div {
  margin-bottom: 5%;
}

footer .copy {
  color:#000;
  font-size: 80%;
  padding: 0 0 10px;
  font-size: 1em;
  line-height: 1;

}

footer .copy a {
  color: white;
  text-decoration: underline;
}

section.fix-btn {
  position: fixed;
  bottom: 10px;
  width: 100%;
}
section.fix-btn div {
  width: 90%;
  max-width: 768px;
  text-align: right;
  margin: auto;
}

section.fix-btn img {
  width: 15%;
}

/* トップに戻るボタン */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 1%;
  font-size: 77%;
}

@media (min-width: 768px) {
  #page-top {
    right: calc(calc((100% - 768px) /2));
  }
}

#page-top a {
  display: block;
  /* background: #666; */
  /* color: #fff; */
  width: 100px;
  padding: 25px 0;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  opacity: 0.8;
}

#page-top a:hover,
#page-top a:focus {
  /* background: #999; */
  text-decoration: none;
  opacity: 1.0;
}

/*============
#mask
=============*/
#mask {
  display: none;
  opacity: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

#mask.open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
  z-index: 999;
  cursor: pointer;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}


/*============
#toiawase
=============*/


section.toiawase div.container-width h2 {
  text-align: center;
}


/*============
#thanks
=============*/

#thanksitem .container-width {
  background: url(../img/bcg_thanks.png) no-repeat;
}

#thanksitem .container-width img{
}

#thanksitem .container-width a img{
  width: 60%;
}


.f-zip-btn {
border: solid 1px #000;
    background-color: #ccc;
    border-radius: 5px;
    font-weight: bold;
    padding: 3px;
    font-size: .8rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

.attent {
  background-color: #fff;
  border: solid 3px #fbc93e;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

#thanksitem .container-width .attent img{
  margin-bottom: 10px;
}

#thanksitem .container-width .attent a img{
  width: auto;
}
.mb-30 {
  margin-bottom: 30px;
}
.i-wrap {
  overflow: hidden;
}

h3.ttl {

  margin-top: 50px;
}

.course-item a:hover {
      opacity: 0.8;
    }

.course-item a img {
      width: 100%;
    }

/*============
modal
=============*/

.modal{
  display: none;
}

.modaal-close:after, 
.modaal-close:before{
  background:#ccc;  
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
  background:#666;
}