@charset "UTF-8";

/* --------------- 共通 --------------- */
:root {
  --red: #c00;
  --gn: #5f9982;
  --bggn: #edf3f1;
  --linegn: #aac6bb;
  --or: #ec6941;
  --yl: #f9fc03;
}

/*-------- FV SP--------------- */
header{
  background: var(--bggn);
}

/* FV ロゴ SP ----- */
header .logo{
  padding: 0 0 8rem;
  position: relative;
}
header .logo p{
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
header .logo p span{
  display: block;
  width: 16rem;
  margin: 0 auto;
  text-align: center;
  background: url(../img/logo-bg.svg) no-repeat center top;
  background-size: 16rem;
}
header .logo p span img{
  display: block;
  width: 12rem;
  margin: 0 auto;
  padding: 3.6rem 0 2rem;
}
@media screen and (min-width:540px) {
  header .logo p span{
    width: 18rem;
    background: url(../img/logo-bg.svg) no-repeat center top;
    background-size: 18rem;
  }
  header .logo p span img{
    width: 14rem;
  }
}

/*FV キャッチ SP ----- */
.fv-catch-pc{
  display: none;
}
.fv-catch-sp{
  display: block;
  position: relative;
}
.fv-catch-sp h1{
  width: 100%;
  padding: 0 8%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fv-catch-sp h1 + p{
  width: 42%;
  position: absolute;
  left: 0;
  top: 0;  
}

/*-------- humburger--------------- */
.hamNav {
  position: relative;
  font-size: 1.6rem;
  display: none;
}

/*------------- .gnavBtn -------------*/
/*   ボタンタグ設定   */
button.gnavBtn {
  display: block;
  padding: 0.5rem 0 0;
  background: rgba(255,255,255,0.7);
  border: none;
  width: 5rem;
  height: 5rem;
  border-radius: 3rem;
  color: var(--gn);
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  position: fixed;
  top: 1.3rem;
  right: 1.4rem;
  z-index: 9999;
  outline: none;
  transition: 0.5s;
}
/*   ハンバーガーボタン3本線   */
button span.bar {
  display: block;
  width: 2rem;
  height: 0.2rem;
  background-color: var(--gn);
  margin: 0.4rem auto;
  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(30deg);
}
button.active .bar2 {
  opacity: 0;
}
button.active .bar3 {
  transform: rotate(-30deg);
  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: 0;
  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 var(--or) solid;
  border-bottom: 0.2rem var(--or) solid;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: rotate(45deg) translateY(-50%);
}

.sp-header-bnr {
  width: 100vw;
  background: var(--gn);
  padding: 1rem;
  position: fixed;
  top: 44rem;
  right: -100vw;
  z-index: 999;
  transition: 0.5s;
}
.hamNav.active + .sp-header-bnr {
  right: 0;
}
.sp-header-bnr ul {
  display: flex;
  justify-content: space-between;
}
.sp-header-bnr li {
  width: 31.5%;
  background: #fff;
  border-radius: 1rem;
}



/* --------------- CTA --------------- */
.cta {
  max-width: 140rem;
  margin: 0 auto;
  padding:2rem 1rem;
}
.cta ul{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta ul li {
  text-align: center;
  padding: 0.4rem 0;
}
.cta ul li img {
  width: 60rem;
  filter: drop-shadow(0 0.3rem 0.3rem #bbb);
}
.cta ul li:last-child img {
  filter: none;
}



/* --------------- topに戻るボタン --------------- */
#pageTop {
  width: 4rem;
  height: 4rem;
  position: fixed;
  right: 2rem;
  bottom: 8rem;
  z-index: 9999;
}
#pageTop a {
  display: block;
  background: #4a7967;
  width: 4rem;
  height: 4rem;
  padding-top: 4rem;
  overflow: hidden;
  border-radius: 4rem;
  position: relative;
}
#pageTop a::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 1rem;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#pageTop 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);
}



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



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

.follow-bnr {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
}
.follow-bnr ul {
  display: flex;
}
.follow-bnr li {
  width: 50%;
}
.follow-bnr li a {
  display: block;
  padding: 1rem 2.5rem 0;
}
.follow-bnr li:nth-child(1) a {
  background: #4a7967;
  text-align: right;
}
.follow-bnr li:nth-child(2) a {
  background: var(--or);
}
.follow-bnr li a img {
  height: 5rem;
}





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

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

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


/* --------------- topに戻るボタン --------------- */
  #pageTop {
    width: 8rem;
    height: 8rem;
    position: fixed;
    right: 2rem;
    bottom: 12rem;
  }
  #pageTop a {
    width: 8rem;
    height: 8rem;
    padding-top: 8rem;
    border-radius: 4rem;
  }
  #pageTop a::before {
    content: "";
    display: block;
    width: 0.3rem;
    height: 3rem;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #pageTop 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);
  }

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

  /* --------------- 追従バナー --------------- */
  .follow-bnr li a {
    padding: 1rem 5rem 0;
  }
  .follow-bnr li a img {
    height: 9rem;
  }

}


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

  header{
    background-image: url(../img/fv01-pc.png),url(../img/fv02-pc.png);
    background-repeat: no-repeat,no-repeat;
    background-size: 50%,50%;
    background-position: left top,right top;
    background-color: transparent;
  }
  /*FV ロゴ 1000 ----- */
  header .logo{
    padding: 0;
  }

  /*FV キャッチ 1000 ----- */
  .fv-catch-sp{
    display: none;
  }
  .fv-catch-pc{
    display: block;
  }
  .fv-catch-pc-ttl{
    width: 30rem;
    margin: 0 auto;
    padding: 9rem 0 6rem;
    background: var(--bggn);
  }
  .fv-catch-pc-ttl h1{
    margin: 0 0 1rem;
    padding: 0 0 7rem;
    text-align: center;
    position: relative;
  }
  .fv-catch-pc-ttl h1 span{
    display: block;
  }
  .fv-catch-pc-ttl h1 span:first-child{
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--gn);
  }
  .fv-catch-pc-ttl h1 span:last-child{
    width: 32rem;
    position: absolute;
    bottom: 0;
    left: -10px;
  }
  /* 2000円 1000 ------- */
  .fv-catch-pc-ttl h1 + p{
    margin: 0rem 4rem 2rem;
    padding: 2rem 0;
    border-top: 1px solid #88b1a1;
    border-bottom: 1px solid #88b1a1;
  }
  /* 75歳 1000 ------- */
  .fv-catch-pc-ttl h1 + p + p{
    margin: 0 4rem;
    padding: 2rem 0 1.5rem;
    line-height: 1.2;
    text-align: center;
    border-radius: 1rem;
    color: #fff;
    background: #6fac4e;
    font-size: 1.8rem;
    font-weight: bold;
    position: relative;
  }
  .fv-catch-pc-ttl h1 + p + p:before{
    display: block;
    width: 30px;
    content: url(../img/fv-light.svg);
    position: absolute;
    left: 31%;
    top: -3px;
  }
  .fv-catch-pc-ttl h1 + p + p span{
    padding: 0 0.5rem;
    color: #ff0;
    font-size: 3rem;
  }
  .fv-catch-pc-ttl h1 + p + p br{
    display: block;
  }  


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

  /* --------------- CTA 1000 --------------- */
  .cta {
    padding:2rem 1rem;
  }
  .cta ul{
    flex-direction: row;
  }
  .cta ul li {
    width: 33%;
    padding: 0 0.5rem;
  }



}

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

  header{
    background-image: url(../img/fv01-pc.png),url(../img/fv02-pc.png);
    background-repeat: no-repeat,no-repeat;
    background-size: 40%,40%;
    background-position: left top,right top;
  }

}

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

  header{
    background-image: url(../img/fv01-pc.png),url(../img/fv02-pc.png);
    background-repeat: no-repeat,no-repeat;
    background-size: 35%,35%;
    background-position: left top,right top;
  }
  .fv-catch-pc-ttl{
    width: 50rem;
    margin: 0 auto;
    padding: 9rem 0 5rem;
    background: var(--bggn);
  }
  .fv-catch-pc-ttl h1{
    padding: 0 0 11rem;
  }  
  .fv-catch-pc-ttl h1 span:first-child{
    font-size: 3.2rem;
  }  
  .fv-catch-pc-ttl h1 span:last-child{
    width: 52rem;
  }
  .fv-catch-pc-ttl h1 + p + p br{
    display: none;
  }  

  .fv-catch-pc-ttl h1 + p + p:before{
    left: 19%;
    top: -3px;
  }

  /* --------------- CTA 1600 --------------- */
  .cta {
    padding:5rem 0;
  }


}

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

  header{
    background-image: url(../img/fv01-pc.png),url(../img/fv02-pc.png);
    background-repeat: no-repeat,no-repeat;
    background-size: 36%,36%;
    background-position: left top,right top;
  }
  .fv-catch-pc-ttl{
    width: 52rem;
    padding: 9rem 0 10rem;
  }
  .fv-catch-pc-ttl h1 span:last-child{
    width: 54rem;
  }
  .fv-catch-pc-ttl h1 + p + p:before{
    left: 20%;
    top: -3px;
  }
  
}

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

  header{
    background-image: url(../img/fv01-pc.png),url(../img/fv02-pc.png);
    background-repeat: no-repeat,no-repeat;
    background-size: 36%,36%;
    background-position: left top,right top;
  }

  /*FV ロゴ 1800 ----- */
  header .logo p span{
    width: 26rem;
    background: url(../img/logo-bg.svg) no-repeat center top;
  }
  header .logo p span img{
    width: 18rem;
    padding: 5.4rem 0 4rem;
  }

  /*FV キャッチ 1800 ----- */
  .fv-catch-pc-ttl{
    width: 57rem;
    padding: 14rem 0 8rem;
  }
  .fv-catch-pc-ttl h1{
    margin: 0 0 2rem;
    padding: 0 0 12rem;
  }
  .fv-catch-pc-ttl h1 span:first-child{
    font-size: 3.6rem;
  }  
  .fv-catch-pc-ttl h1 span:last-child{
    width: 59rem;
  }
  /* 2000円 1800 ------- */
  .fv-catch-pc-ttl h1 + p{
    margin: 0rem 4rem 3rem;
    padding: 2.5rem 0;
  }
  /* 75歳 1800 ------- */
  .fv-catch-pc-ttl h1 + p + p{
    margin: 0 4rem;
    padding: 3rem 0 2.5rem;
    line-height: 1.2;
    font-size: 2.8rem;
  }
  .fv-catch-pc-ttl h1 + p + p:before{
    width: 40px;
    left: 9%;
    top: -2px;
  }
  .fv-catch-pc-ttl h1 + p + p span{
    font-size: 4.4rem;
  }

}