@charset "UTF-8";
/* CSS Document */

/* --------------- 共通 --------------- */
:root {
  --blue: #009fe8;
  --indigo: #013248;
  --green: #4cba7a;
  --orange: #ec6941;
  --red: #c00;
  --bgbl: #e2f3fa;
  --bggr: #f3f3f3;
  --bggr2: #eeecec;
  --bgyl: #f9f8f4;
  --pink: #D45A97;
}




/* --------------- header --------------- */
.header {
  background: #fff;
  height: 8rem;
  width: 100vw;
  padding-top: 3rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header p.logo {
  width: 15rem;
  margin-left: 1rem;
}



/* --------------------- humburger --------------------- */
.hamNav {
  position: relative;
  width: 6rem;
  font-size: 1.6rem;
  float: none;
  display: none;
/*  opacity: 0.8;*/
}


/*------------- .gnavBtn -------------*/
/*   ボタンタグ設定   */
button.gnavBtn {
  display: block;
  background: #fff;
/*  border: 1px #ccc solid;*/
  border: none;
  padding: 2rem 1.5rem 1.5rem;
  width: 6rem;
  height: 8rem;
  color: #fff;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  outline: none;
  transition: 0.5s;
}
/*   ハンバーガーボタン3本線   */
button span.bar {
  display: block;
  height: 0.2rem;
  background-color: var(--blue);
  margin: 0.5rem 0 0.7rem;
  transition: 0.3s;
  transform-origin: 0 0;
}
button span.bar:last-child {
  margin-bottom: 0;
}
/*  メニューアクティブ時  */
button.active span.bar {
  width: 3.4rem;
}
button.active .bar1 {
  transform: rotate(33deg);
}
button.active .bar2 {
  opacity: 0;
}
button.active .bar3 {
  transform: rotate(-33deg);
}
button.gnavBtn:hover span {
  opacity: 0.6;
}
button.active.gnavBtn:hover .bar2 {
  opacity: 0;
}
/*------------- .gnavBtn li -------------*/
.hamNav ul {
  background: #fff;
  color: #333;
  width: 100vw;
  font-size: 1.4rem;
  font-weight: bold;
}
.hamNav > ul {
  padding: 0 2.5rem 0.1rem;/*下0.1remは.sp-header-bnrとのすきま調整*/
  position: fixed;
  top: 7.9rem;/*.headerに合わせてtopを8remにすると背景画像が微妙に見えるため調整*/
  right: -100vw;
  transition: 0.5s;
}
.hamNav.active > ul {
  right: 0;
}
.hamNav li {
  border-bottom: 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(--blue) solid;
  border-bottom: 0.2rem var(--blue) solid;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: rotate(45deg) translateY(-50%);
}
.hamNav > ul > li:first-child a::after {
  display: none;
}
.hamNav > ul > li:nth-child(2) {
  padding-top: 1.8rem;
}
.hamNav li ul {
  width: 100%;
}
.hamNav li li {
  font-size: 1.2rem;
  font-weight: normal;
}
.hamNav li li span {
  font-weight: bold;
  padding-right: 0.5em;
}
.hamNav li li a {
  padding: 1.9rem 3.5rem 1.9rem 1rem;
}

.sp-header-bnr {
  width: 100vw;
  background: var(--blue);
  padding: 1rem;
  position: fixed;
  top: 53rem;
  right: -100vw;
  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%;
}



/* --------------- main --------------- */

/* --------------- #flow --------------- */
#flow{
  padding-top: 60px;
  margin-top:-60px;
}

#flow .flow-wrap{
  background: var(--bggr2);
}

#flow section {
  padding: 5rem 1rem;
}
#flow h2 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
#flow ol li {
  background: #fff;
  padding: 6rem 2.2rem 2rem;
  margin: 8rem auto;
  text-align: center;
  position: relative;
}
#flow ol li:last-child {
  margin-bottom: 3rem;
}
#flow ol li .step {
  background: var(--blue);
  width: 7rem;
  height: 7rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  border-radius: 3.5rem;
  padding-top: 1.7rem;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
}
#flow ol li .step span {
  display: block;
  font-size: 2.4rem;
}
#flow ol li p {
  font-size: 1.4rem;
  margin-top: 2rem;
}
#flow ol li p span {
  display: block;
  font-size: 1.6rem;;
}
#flow ol li::before, #flow ol li::after {
  content: "";
  display: block;
  width: 14px;
  height: 6px;
  background: var(--blue);
  position: absolute;
  bottom: -2.8rem;
}
#flow ol li::before {
  transform: rotate(30deg) skewX(30deg);
  left: calc(50% - 12px);
}
#flow ol li::after {
  transform: rotate(-30deg) skewX(-30deg);
  left: 50%;
}
#flow ol li:last-child::before, #flow ol li:last-child::after {
  display: none;
}

#flow section > p {
  text-align: center;
}

.convenient {
  background: #fff url("../img/flow-image.svg") no-repeat center bottom;
  margin: 3rem auto 0;
  padding: 3rem 1.5rem 60%;
  border-radius: 1rem;
}
.convenient h3 {
  color: var(--red);
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 1.5rem 0 2rem 9rem;
  position: relative;
}
.convenient h3 strong {
  display: block;
  width: 8rem;
  height: 8rem;
  padding-top: 1.8rem;
  color: #f00;
  font-size: 2.4rem;
  text-align: center;
  white-space: nowrap;
  border: 5px var(--red) solid;
  border-radius: 4rem;
  position: absolute;
  left: 0;
  top: 0;
}
.convenient h3 strong span {
  font-size: 2.8rem;
  padding-left: 2px;
}
.convenient ul {
  margin-top: 2.5rem;
}
.convenient li {
  background: url("../img/icon-check.svg") no-repeat left 0.5rem;
  background-size: 3rem;
  padding-left: 3.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}
.convenient li:first-child {
  border-bottom: 1px #ccc dashed;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.convenient li:last-child {
  padding-top: 0.5rem;
}
.convenient li strong {
  font-size: 2.4rem;
}
.convenient li span {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}


/* --------------- #about --------------- */
#about{
    padding-top: 60px;
    margin-top:-60px;
}
#about .about-wrap{
  background: var(--bgyl);
  padding: 5rem 1rem;
}
#about section:first-child {
  padding-bottom: 5rem;
}
.about-txt h3 {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px #ccc solid;
}
.about-txt p {
  font-size: 1.4rem;
  padding: 1.5em 1rem 1rem;
}
.about-txt strong {
  color: var(--red);
  font-weight: bold;
}
#about figure {
  text-align: center;
}



/* --------------- CTA --------------- */

.cta {
  background: var(--bgbl);
  padding: 3rem 1rem;
}
.cta li {
  margin: 0 0.5rem 1.5rem;
}
.cta li img {
  filter: drop-shadow(0 0.3rem 0.3rem #bbb);
}
.cta li:last-child img {
  filter: none;
}



/* --------------- topに戻るボタン --------------- */
#pageTop {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 9999;
}
#pageTop a {
  display: block;
  background: var(--indigo);
  width: 40px;
  height: 40px;
  padding-top: 40px;
  overflow: hidden;
  border-radius: 40px;
  position: relative;
}
#pageTop a::before {
  content: "";
  display: block;
  width: 2px;
  height: 10px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#pageTop a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px #fff solid;
  border-left: 2px #fff solid;
  position: absolute;
  left: 15px;
  top: 14px;
  transform: rotate(45deg);
}




/* --------------- footer --------------- */
footer {
  background: var(--indigo);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 3.5rem 0 5rem;
}



/*----------------------------------------------------
SP用 375- 
----------------------------------------------------*/
@media screen and (max-width:374px) {
/* --------------- header --------------- */
  
  .sp-header-bnr {
    top: 55.2rem;
  }


/* --------------- #flow --------------- */

  #flow section > p {
    font-size: 1.4rem;
  }

}



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

  .hamNav ul {
    font-size: 1.6rem;
  }
  .hamNav li li {
    font-size: 1.4rem;
  }
  .sp-header-bnr {
    top: 55rem;
  }

}



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


/* --------------- #flow --------------- */
  #flow{
    padding-top:0;
    margin-top:0;
  }
  #flow section {
    max-width: 128rem;
    margin: 0 auto;
  }
  #flow ol {
    display: flex;
    justify-content: space-between;
  }
  #flow ol li {
    width: 30%;
    margin-bottom: 3rem;
  }
  #flow ol li::before, #flow ol li::after {
    width: 6px;
    height: 14px;
    left: 105%;
  }
  #flow ol li::before {
    transform: rotate(30deg) skewY(-30deg);
    top: 50%;
  }
  #flow ol li::after {
    transform: rotate(-30deg) skewY(30deg);
    top: calc(50% - 12px);
  }
  #flow ol li p {
    display: inline-block;
    text-align: left;
  }
  #flow ol li p span {
    text-align: center;
  }

  .convenient {
    background: #fff url("../img/flow-image.svg") no-repeat left bottom;
    background-size: 45%;
    padding: 3rem 1.5rem 1.5rem 50%;
  }


/* --------------- #about --------------- */
  #about .about-wrap{
    padding: 10rem 0;
  }
  #about section {
    max-width: 128rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .about-txt, #about figure {
    width: 49%;
  }
  .about-txt h3 {
    font-size: 2.1rem;
    text-align: left;
    position: relative;
  }
  .about-txt h3::after {
    content: "";
    display: block;
    background: var(--indigo);
    width: 1rem;
    height: 1rem;
    border-radius: 0.5rem;
    position: absolute;
    right: -0.1rem;
    bottom: -0.5rem;
  }
  .about-txt p {
    font-size: 1.4rem;
    padding: 1.5rem 2rem 1rem 0;
  }



/* --------------- CTA --------------- */

  .cta {
    padding: 5rem 1rem;
  }
  .cta ul {
    max-width: 144rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .cta li {
    width: 32%;
  }



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

/* --------------- #flow --------------- */

  .convenient {
    background: #fff url("../img/flow-image.svg") no-repeat 5% bottom;
    background-size: 35%;
  }

}



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

/* --------------- #flow --------------- */

  .convenient h3 {
    padding-top: 3rem;
  }

}



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

  /* --------------- header --------------- */
  header {
    background: var(--bgbl);
  }
  .sp-header {
    display: none;
  }



  /* --------------- main --------------- */

  /* --------------- #flow --------------- */

  .convenient {
    background: #fff url("../img/flow-image.svg") no-repeat 10% bottom;
    background-size: 30%;
  }



}



/*----------------------------------------------------
PC用 1160- 
----------------------------------------------------*/
@media screen and (min-width: 1160px) {
  /* --------------- about --------------- */
  .about-txt h3 {
    font-size: 3.0rem;
  }
  .about-txt p {
    font-size: 1.6rem;
  }



/* --------------- topに戻るボタン --------------- */
  #pageTop {
    width: 80px;
    height: 80px;
    right: 20px;
    bottom: 20px;
  }
  #pageTop a {
    width: 80px;
    height: 80px;
    padding-top: 80px;
  }
  #pageTop a::before {
    width: 3px;
    height: 30px;
    left: 50%;
    top: 50%;
  }
  #pageTop a::after {
    width: 19px;
    height: 19px;
    border-top: 3px #fff solid;
    border-left: 3px #fff solid;
    left: 29px;
    top: 28px;
  }

}




