@charset "UTF-8";

/* ---------------
共通
 --------------- */
:root {
  --gr: #b4df9c;
  --or: #ec6941;
  --bgyl: #fffbf3;
  --darkgr:#89b272
}

/* ---------------
ヘッダー SP
 --------------- */ 
/* .head-bgcol{
  padding: 0 0 2rem;
  background: var(--gr);  
} 
.head-block{
  width: 100%;
  height: 6rem;
  border-top: 5px solid var(--gr);
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 999999;
}*/
.head-block {
  width: 100%;
  height: 6rem;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 999999;
}
.head-nav{
  padding: 0;
  position: relative;  
}
.logo{
  width: 12rem;
  position: absolute;
  top: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
}

/* humburger
 ------------------------*/
.hamNav {
  display:block;
  display: none;
}

/*.gnavBtn
 ------------------------*/
/*   ボタンタグ設定   */
button.gnavBtn {
  display: block;
  width: 6rem;
  height: 5rem;
  padding: 0;
  border-radius: 0 0 0 20px;
  border: none;
  background: var(--gr);
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
  outline: none;
  transition: 0.5s;
}
/*   ハンバーガーボタン3本線   */
button span.bar {
  display: block;
  width: 2rem;
  height: 0.2rem;
  background-color: #fff;
  margin: 0 auto 0.6rem;
  transition: 0.3s;
  transform-origin: 0 0;
}
button span.bar:last-child {
  margin-bottom: 0;
}
/*  メニューアクティブ時  */
button.active span.bar {
  width: 2.5rem;
}
button.active .bar1 {
  transform: rotate(40deg);
}
button.active .bar2 {
  opacity: 0;
}
button.active .bar3 {
  transform: rotate(-40deg);
  transform-origin: 0 100%;
}
button.gnavBtn:hover span {
  opacity: 0.6;
}
button.active.gnavBtn:hover .bar2 {
  opacity: 0;
}

/*------------- .gnavBtn li -------------*/
.hamNav ul {
  background: #fff;
  color: #333;
  width: 100vw;
  height:44rem;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 8rem 2.5rem 0.1rem;
  position: fixed;
  top: 5px;
  right: -100vw;
  z-index: 999;
  transition: 0.5s;
}
.hamNav.active > ul {
  right: 0;
}
.hamNav li {
  border-top: 1px #777 dotted;
}
.hamNav li:last-child {
  border-bottom: none;
}
.hamNav li a {
  display: block;
  line-height: 1;
  padding: 1.8rem 3.5rem 1.8rem 0;
  margin: 0 auto;
  color: #333;
  text-decoration: none;
  transition: 0.5s;
  position: relative;
}
.hamNav li a::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.2rem #98b38a solid;
  border-bottom: 0.2rem #98b38a solid;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: rotate(45deg) translateY(-50%);
}

.sp-header-bnr {
  width: 100vw;
  background: var(--or);
  padding: 1rem;
  position: fixed;
  top: 44rem;
  right: -100vw;
  z-index: 99999;
  transition: 0.5s;
}
.hamNav.active + .sp-header-bnr {
  right: 0;
}


/* スマホメニュー CTA ------ */
.sp-header-bnr{
  display: block;
}
.sp-header-bnr ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sp-header-bnr li {
  width: 49%;
  height: 7.2rem;
  background: #fff;
  border-radius: 1rem;
}
.sp-header-bnr li img{
  display: block;
  margin: 0 auto;
 } 
.sp-header-bnr li:first-child img{
  width: 14rem;
}
.sp-header-bnr li:last-child img{
  width: 16rem;
  padding: 2rem 1rem 0;
}
@media screen and (min-width:480px) {
  .sp-header-bnr li:last-child img{
    width: 20rem;
    padding: 1.5rem 1rem 0;
  }
}

/* FV SP
 --------------- */
.fv-pc{
  padding: 0;
  background: none;
}
.fv-catch{
  padding: 6.5rem 1rem 1.5rem;
  background: #fff;
}
.fv-catch_ph{
  display: block;
  margin: 0 0 2rem;  
  border-radius: 1rem;
  overflow: hidden;
}

/* fv テキスト SP ------------- */
.fv-catch-block{
  width: auto;
  padding: 0;
  position: relative;
}
.fv-catch-block dl{
  display: flex;
  width: 54%;
  margin: 0 0 1rem auto; 
  border: 0.1rem solid var(--darkgr);
  border-radius: 0.5rem;
  background: var(--darkgr);
  overflow: hidden;
}
.fv-catch-block dl dt,
.fv-catch-block dl dd{
  width: 50%;
  padding: 0.2rem 0;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
.fv-catch-block dl dd{
  color: var(--darkgr);
  background: var(--bgyl);
}

.fv-catch h1{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  background: #fafad5;
  color: var(--darkgr);
  font-style: italic;
  font-weight: bold;
}
.fv-catch h1 span{
  padding: 0 0.2rem;
  display:block;
}
.fv-catch h1 span:first-child{
  font-size: 3.4rem;
}
.fv-catch h1 span:last-child{
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 4.2rem;
}

/* fv イラスト SP　---------- */
.fv-catch_ill{
  display: block;
  width: 20rem;
  position: absolute;
  top: -95px;
  left: 0;
}

/* fv ポイント SP　---------- */
.fv-point{
  width: auto;
  margin: 0;
  padding: 2rem 1rem;
  background: #eef3de;
  position:relative;
}
.fv-point > p{
  display: none;
}
.fv-point ol{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.fv-point ol li:first-child{
  width: 100%;
  margin: 0 0 1rem;
}
.fv-point ol li:first-child span{
  display: block;
  width: auto;
  margin: 0;
}
.fv-point ol li{
  width: 49%;
}

/* fv CTA ボタン SP　---------- */
.cta {
  background: var(--gr);
}
.cta ul{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}
.cta ul li{
  width: auto;
}
.cta ul li:first-child{
  margin: 0 0 0.2rem;
}
.cta ul li:last-child{
  padding: 0;
}
.cta ul li:last-child a{
  display: block;
  padding: 1.5rem 0;
  border-radius: 0.5rem;
  background: #fafad5;
}
.cta ul li:last-child a img{
  display: block;
  width: 70%;
  margin: 0 auto;
}



/* --------------- topに戻るボタン --------------- */
#pageTop {
  width: 4rem;
  height: 4rem;
  position: fixed;
  right: 2rem;
  bottom: 8rem;
  z-index: 9999;
}
#pageTop .toTop a {
  display: block;
  background: #70b02d;
  width: 4rem;
  height: 4rem;
  padding-top: 4rem;
  overflow: hidden;
  border-radius: 4rem;
  position: relative;
}
#pageTop .toTop a::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 1rem;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#pageTop .toTop a::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px #fff solid;
  border-left: 2px #fff solid;
  position: absolute;
  left: 1.5rem;
  top: 1.4rem;
  transform: rotate(45deg);
}
#pageTop .follow-bnr-pc {
  display: none;
}



/* --------------- footer --------------- */
footer {
  background: #fff;
  color: #333;
  font-size: 1.2rem;
  text-align: center;
  padding: 2.5rem 0 8rem;
}



/* --------------- 追従バナー --------------- */

.follow-bnr {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
}
.follow-bnr a {
  display: block;
  text-align: center;
  padding: 1rem 0 0;
  background: var(--or);
  transition: .3s;
}
.follow-bnr a:hover {
  background: #f2967a;
  opacity: 1;
}
.follow-bnr a img {
  height: 5rem;
}





/*----------------------------------------------------
SP用 375未満- 
----------------------------------------------------*/
@media screen and (max-width:374px) {

  .follow-bnr a img {
    height: 4rem;
  }

}

/*----------------------------------------------------
タブレット用 750- 
----------------------------------------------------*/
@media screen and (min-width:750px) {

  /* .head-bgcol{
    padding: 0;
    background: linear-gradient(180deg, #fff 0%, #fff 25%, #b4df9c 25%, #b4df9c 100%);
  }  
  .head-block{
    width: 100%;
    height: auto;
    border-top: 0;
    background: none;
    position: static;
  } */
  .head-nav{
    padding: 2rem 0 0;
  }
  /* .logo{
    width: 10rem;
    top: 2rem;
  } */

  /* humburger
   ------------------------*/
  .hamNav {
    display:none;
  }

  /* スマホメニュー CTA TB ------ */
  .sp-header-bnr{
    display: none;
  }

  /* FV TB
   --------------- */
  .fv-pc{    
    max-width: 1820px;
    margin: 0 1rem;
    background: url(../img/fv-pc.png) no-repeat center top;
    background-size: 100%;
  }

  .fv-catch{
    padding: 6.5rem 2rem 1.5rem;
    background: transparent;
  }
  .fv-catch_ph{
    display: none;
  }

  /* fv テキスト TB ------------- */
  .fv-catch-block{
    width: 50%;
    padding: 2rem 0 18%;
  }
  @media screen and (min-width:900px) {
    .fv-catch-block{
      padding: 2rem 0 24%;
    }
  }
  .fv-catch-block dl{
    margin: 0 0 1rem; 
  }

  /* fv イラスト TB　---------- */
  .fv-catch_ill{
    display: none;
  }

  /* fv ポイント TB　---------- */
  .fv-point{
    padding: 2rem 1.5rem;
  }
  .fv-point > p{
    display: block;
    width: 18rem;
    position: absolute;
    top: -120px;
    left: 10px;
  }
  .fv-point ol{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .fv-point ol li:first-child{
    width: 38.5%;
    margin: 0;
  }
  .fv-point ol li{
    width: 29%;
  }

  /* fv CTA ボタン TB　---------- */
  .cta ul{
    flex-direction: row;
    padding: 2rem 1rem;
  }
  .cta ul li:first-child{
    width: 60%;
    margin: 0;
  }
  .cta ul li:last-child{
    width: 38%;
    padding: 0.5rem 0 0;
  }
  .cta ul li:last-child a{
    padding:1.5rem 0;
  }
  .cta ul li:last-child a img{
    width: 70%;
    margin: 0 auto;
  }



/* --------------- topに戻るボタン --------------- */
  #pageTop {
    width: 35rem;
    height:17.5rem;
    position: fixed;
    right: 0;
    bottom: 6rem;
  }
  #pageTop .toTop a {
    width: 8rem;
    height: 8rem;
    padding-top: 8rem;
    margin: 0 2rem 1rem auto;
    border-radius: 4rem;
  }
  #pageTop .toTop a::before {
    content: "";
    display: block;
    width: 0.3rem;
    height: 3rem;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #pageTop .toTop a::after {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    border-top: 3px #fff solid;
    border-left: 3px #fff solid;
    position: absolute;
    left: 2.8rem;
    top: 2.8rem;
    transform: rotate(45deg);
  }
  #pageTop .follow-bnr-pc {
    display: block;
  }
  #pageTop .follow-bnr-pc a {
    display: block;
    background: var(--or);
    width: 35rem;
    height: 8.4rem;
    padding: 1rem 1rem 0 2rem;
    border-radius: 1rem 0 0 1rem;
  }
  #pageTop .follow-bnr-pc a:hover {
    background: #f2967a;
    opacity: 1;
  }



/* --------------- footer --------------- */
  footer {
    padding: 2rem 0;
  }



/* --------------- 追従バナー --------------- */

  .follow-bnr {
    display: none;
  }
  .follow-bnr a img {
    height: 6rem;
  }



}


/*----------------------------------------------------
PC / タブレット用 1000- 
----------------------------------------------------*/
@media screen and (min-width:1000px) {

  .head-block {
    height: 10rem;
  }
  .head-nav{
    padding: 1rem 0 0;
  }
  .logo{
    width: 18rem;
    top: 3.5rem;
  }

  /* fv CTA ボタン 1000　---------- */
  .cta ul{
    flex-direction: row;
    padding: 2rem;
  }
  .cta ul li:last-child{
    padding: 1rem 0 0;
  }
  .cta ul li:last-child a{
    padding: 1.8rem 0;
  }



}





/*----------------------------------------------------
PC / タブレット用 1100- 
----------------------------------------------------*/
@media screen and (min-width:1100px) {
  header {
    background: url("../img/fv_sp.png") no-repeat 120% top;
    background-size:contain;
  }

}
/*----------------------------------------------------
PC / タブレット用 1200- 
----------------------------------------------------*/
@media screen and (min-width:1200px) {

  /* fv CTA ボタン 1200　---------- */
  .cta ul li:last-child a{
    padding: 2.2rem 0;
  }



}





/*----------------------------------------------------
PC用 1400- 
----------------------------------------------------*/
@media screen and (min-width: 1400px) {

  /* fv CTA ボタン 1400　---------- */
  .cta ul{
    padding: 4rem 2rem 2rem;
  }
  .cta ul li:last-child{
    padding: 1.5rem 0;
  }
  .cta ul li:last-child a{
    padding: 2.4rem 0;
  }



}






