@charset "UTF-8";

/* --------------- 共通 --------------- */
:root {
  --pink: #ec7185;
  --bgpink: #f9f5f6;
  --red: #c6384f;
  --yl: #ffff00;
}

/* --------------------- 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: 0.5rem;
  color: var(--pink);
  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(--pink);
  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(--pink) solid;
  border-bottom: 0.2rem var(--pink) solid;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: rotate(45deg) translateY(-50%);
}

.sp-header-bnr {
  width: 100vw;
  background: var(--pink);
  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: 32%;
  padding: 1.2rem 0.5rem 0;
  background: #fff;
  border-radius: 1rem;
}
.sp-header-bnr li:last-child{
  padding: 0;
}



/* CTA 
--------------- */
.cta {
  max-width: 140rem;
  margin: 0 auto;
  padding:3rem 1rem;
}
.cta ul{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta ul li {
  text-align: center;
  padding: 0.4rem 0.5rem;
}
.cta ul li img {
  width: 60rem;
  filter: drop-shadow(0 0.3rem 0.3rem #bbb);
}
.cta ul li:last-child {
  padding: 0.4rem 1rem;
}
.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: var(--red);
  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;
  border-top: 2px solid #fff;
}
.follow-bnr ul {
  display: flex;
}
.follow-bnr li {
  width: 50%;
}
.follow-bnr li a {
  display: block;
  padding: 1rem 2.5rem 0;
}
.follow-bnr li a:hover{
  opacity: 1;
}
/* ホバー SP */
.follow-bnr li:nth-child(1) a {
  background: var(--pink);
  text-align: right;
}
.follow-bnr li:nth-child(1) a:hover{
  background: var(--pink);
}
.follow-bnr li:nth-child(2) a{
    background: var(--red);
}
.follow-bnr li:nth-child(2) a:hover{
    background: var(--red);
}

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




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

  /* 追従バナー　374 */
  .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) {

  /* --------------------- 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;
  }

  /* ホバー 1000 */
  .follow-bnr li:nth-child(1) a:hover{
    background: #b52e45;
  }
  .follow-bnr li:nth-child(2) a:hover{
    background: #771a29;
  }

}




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

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


}


