@charset "utf-8";
/* STYLE LIST ------------------------------------------------------

 01. LAYOUT

 02. HEADER & FOOTER

 03. KV

 04. ABOUT

 05. POINT

 06. MEMBER

 07. PROGRAM

 08. VOICE

 09. CTA

 10. FIXED

-------------------------------------------------------------------- */


/* 01. LAYOUT
-------------------------------------------------------------------- */

body {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

a {
  text-decoration: none;
}

a[href^="tel:"] {
  cursor: default;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

p {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.inner1 {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.inner2 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* PC・SP切替 */
.sp {
  display: none;
}


/* MEDIA QUERIE 768px～ */
@media screen and (min-width: 768px) {

  a {
    transition: .5s;
  }

}


/* MEDIA QUERIE ～767px */
@media screen and (max-width: 767px) {

  p {
    font-size: 3.2vw;
    line-height: 1.42;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

}

.sec01, .sec02, .sec03, .sec04, .sec05 { overflow-x: clip; }

/* 02. HEADER & FOOTER
-------------------------------------------------------------------- */

.pagetop {
  position: sticky;
  left: 0;
  bottom: 0;
  z-index: 9999;
  width: 10px;
  cursor: pointer;
  transform: translate(calc(1600px - 43px), -140px);
  height: 0;
}

.copyright {
  font-size: 1.2rem;
  text-align: center;
  padding: 0 0 60px;
}

.sp_cta {
  display: none;
}

/* MEDIA QUERIE 1025px～1600px */
@media screen and (min-width: 1025px) and (max-width: 1600px) {

  .pagetop {
    transform: translate(97vw, -120px);
  }

}

/* MEDIA QUERIE 768px～1024px */
@media screen and (min-width: 768px) and (max-width: 1024px) {

  .pagetop {
    transform: translate(97vw, -130px);
  }

}

/* MEDIA QUERIE ～767px */
@media screen and (max-width: 767px) {

  .sp_cta {
    display: flex;
    background: #1490e0;
    height: 50px;
  }

  .sp_cta .sp_tel {
    width: 58px;
  }

  .sp_cta .sp_tel a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .sp_cta .sp_tel img {
    max-width: 40px;
  }

  .sp_cta .sp_web {
    width: 74px;
    border-left: 1px solid #fff;
  }

  .sp_cta .sp_web a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .sp_cta .sp_web img {
    max-width: 55px;
  }

  .pagetop {
    transform: translate(calc(100vw - 30px), 0);
    bottom: 180px;
  }

}

footer {
  color:#4d4d4f;
  width: 100%; 
  padding: 1% 1.5%;
  border-top: solid 1px #ccc;
}
  @media screen and (max-width: 1024px) {
  footer {
  border-top: none;
  padding: 30px 0 10px;
    }
  }

  @media screen and (max-width: 767px) {
    footer {
      padding-bottom: 75px;
    }
  }

.footer__inner {
  max-width:1600px;
  margin:0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  @media screen and (max-width: 1024px) {
  .footer__inner {
  width: 100%;
  display: block;
    }
  }

.footer__box {
  width: calc( calc(100% - 3%) / 2 );
}
  @media screen and (max-width: 1024px) {
  .footer__box {
  width: 100%;
    }
  }

.footer__box.group {
  display: flex;
  align-items: center;
}
.footer__box.group .footer__box__L__logo {
  width: 80px;
  height: 70px;
}

  @media screen and (max-width: 1024px) {
    .footer__box.group {
      width: 100%;
      flex-direction: column;
      justify-content: center;
      }
    .footer__box.group .footer__box__L__logo {
      margin-bottom: 20px;
      }
    }

.footer__box a {
  font-weight: 400;
  color: #4D4D4F;
  text-decoration: none;
}

.footer__box__L__txt {
  font-size: 1.3rem;
  vertical-align: middle;
  margin-left: 15px;
  display: inline-block;
}
  @media screen and (max-width: 1024px) {
  .footer__box__L__txt {
  font-size: 1.2rem;
  color: #6c6c6c;
  display: block;
  width: 100%;
  background: #dfdfdf;
  margin-left: 0;
    }
  }

.footer__box__L__list {
  display: flex;
}
  @media screen and (max-width: 1024px) {
  .footer__box__L__list + .footer__box__L__list {
  border-top: solid 1px #c5c5c5;
    }
  }

.footer__box__L__list li{
  display: inline;
  margin-bottom: 3px;
}
  @media screen and (max-width: 1024px) {
  .footer__box__L__list li{
  text-align: center;
  width: 50%;
  padding: 10px 0;
  margin-bottom: 0;
  display: block;
    }
  }

.footer__box__L__list li:nth-child(2)::before {
  content: '|';
  padding: 0 10px;
}
  @media screen and (max-width: 1024px) {
  .footer__box__L__list li:nth-child(2){
  border-left: solid 1px #c5c5c5;	
    }
  .footer__box__L__list li:nth-child(2)::before {
  content: '';
  padding: 0;

    }
  }

.footer__box__R__logo {
  text-align: right;
  margin-top: 0px;
}
  @media screen and (max-width: 1024px) {
  .footer__box__R__logo {
  text-align: center;
  margin: 15px 0 5px;
    }
  }

.footer__box__R__logo img {
  width: 176px;
  vertical-align: middle;
}
  @media screen and (max-width: 1024px) {
  .footer__box__R__logo img {
  width: 50%;
    }
  }

.footer__box__R__txt {
  font-size: 1.3rem;
  text-align: right;
}
  @media screen and (max-width: 1024px) {
  .footer__box__R__txt {
  font-size: 1.1rem;
  text-align: center;
    }
}


/* 03. KV
-------------------------------------------------------------------- */

#kv {
  background: url(../img/common/bg01_pc.png) no-repeat center/cover;
  padding: 6.625% 0;
}

.kv_inner {
  background: url(../img/change/kv_pc.jpg) no-repeat center/cover;
  position: relative;
  width: 83.875%;
  padding-top: 39.5%;
  margin: auto;
  height: 0;
  border-radius: 30px;
}

.kv_inner:before {
  position: absolute;
  display: inline-block;
  background: url(../img/common/logo_pc.svg) no-repeat center/contain;
  content: "";
  width: 1.6393%;
  height: 85.918%;
  transform: rotate(180deg);
  top: 0;
  bottom: 0;
  left: -5%;
  margin: auto;
}

.kv_inner:after {
  position: absolute;
  display: inline-block;
  background: url(../img/common/logo_pc.svg) no-repeat center/contain;
  content: "";
  width: 1.6393%;
  height: 85.918%;
  top: 0;
  bottom: 0;
  right: -5%;
  margin: auto;
}

.kv_inner picture {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 46.72%;
  height: 40.98%;
}

.kv_inner picture img {
  opacity: 0;
}


/* MEDIA QUERIE ～767px */
@media screen and (max-width: 767px) {

  #kv {
    padding: 13.333vw 0 8vw;
  }

  .kv_inner {
    background: url(../img/change/kv_sp.jpg) no-repeat center/contain;
    height: 122.93vw;
  }

  .kv_inner:before {
    background: url(../img/common/logo_sp.svg) no-repeat center/contain;
    width: 84.933vw;
    height: 3.4667vw;
    transform: rotate(0);
    top: -8.8vw;
    bottom: auto;
    left: 0;
    right: 0;
  }

  .kv_inner:after {
    display: none;
  }

  .kv_inner picture {
    width: 100%;
    height: 37.6vw;
    transform: translateY(-22%);
  }

}

/* 04. ABOUT
-------------------------------------------------------------------- */

.sec01 {
  position: relative;
}

.sec01:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 46.375%;
  padding-top: 35%;
  background: url(../img/common/img_about_pc.png) no-repeat center/contain;
  right: 8.75%;
  bottom: 0;
}

.sec01 h2 {
  background: #8263d4;
}

.sec01 h2 .inner2 {
  display: flex;
  align-items: center;
  padding: 3.6% 0 4.5% 1%;
}

.sec01 h2 .inner2 img {
  width: 57.5%;
  height: auto;
}

.sec01 .box {
  padding: 4% 0 4% 1%;
}

.sec01 p {
  font-size: 2.6rem;
  line-height: 1.4;
}

.sec01 p + p {
  margin-top: 2.2%;
}

.sec01 .text3 {
  font-size: 3.6rem;
  font-weight: bold;
}

/* MEDIA QUERIE 768px～1600px */
@media screen and (min-width: 768px) and (max-width: 1600px) {

  .sec01 h2 {
    padding-left: 12.5vw;
    padding-right: 12.5vw;
  }

  .sec01 .box {
    margin-left: 12.5vw;
    margin-right: 12.5vw;
  }

  .sec01 h2 .inner2 {
    padding: 3.6vw 0 4.5vw 1vw;
  }

  .sec01 h2 .inner2 img {
    width: 42.5vw;
  }
  
  .sec01 p {
    font-size: 1.625vw;
  }
  
  .sec01 .text3 {
    font-size: 2.25vw;
  }

}

/* MEDIA QUERIE ～767px */
@media screen and (max-width: 767px) {

  .sec01:after {
    width: 100vw;
    padding-top: 81.8667vw;
    background: url(../img/common/img_about_sp.png) no-repeat center/contain;
    right: 0;
    bottom: inherit;
    top: 26.667vw;
  }
  
  .sec01 h2 .inner2 {
    display: block;
    text-align: center;
    padding: 9.3333vw 0;
  }
  
  .sec01 h2 .inner2 img {
    width: 90.9333vw;
  }
  
  .sec01 .box {
    padding: 78.6667vw 0 13.333vw 7.4667vw;
  }
  
  .sec01 p {
    font-size: 4.533vw;
    line-height: 1.26;
  }
  
  .sec01 p + p {
    margin-top: 3.33vw;
  }
  
  .sec01 .text3 {
    font-size: 6.4vw;
  }

}

/* 05. POINT
-------------------------------------------------------------------- */

.sec02 {
  background: url(../img/common/bg02_pc.png) no-repeat center bottom/cover;
  padding-bottom: 16.25%;
}

.sec02 .box {
  position: relative;
  margin-left: 12.5%;
  padding: 4.7% 0 3.3% 6.8%;
  background: #fff;
}

.sec02 .box .point {
  position: absolute;
  width: 86px;
  height: 398px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -54px;
  z-index: 10;
}

.sec02 .box:after {
  display: inline-block;
  content: "";
  background: linear-gradient( 90deg, rgb(103,206,183) 0%, rgb(130,99,212) 100%);
  opacity: 0.271;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}

.sec02 ul {
  display: flex;
  flex-wrap: wrap;
  width: 81%;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.sec02 li {
  background: #fff;
  border-radius: 0 30px 0 30px;
  width: 48.23%;
  padding: 2.3% 0 3.1%;
  text-align: center;
  color: #8263d4;
  font-weight: bold;
  font-size: 3.2rem;
  letter-spacing: .025em;
  margin-bottom: 2%;
}

.sec02 li span {
  display: block;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: .5%;
}

/* MEDIA QUERIE 768px～1600px */
@media screen and (min-width: 768px) and (max-width: 1600px) {

  .sec02 .box .point {
    width: 5.375vw;
    height: 24.875vw;
    left: -3.375vw;
  }

  .sec02 li {
    font-size: 2vw;
  }
  
  .sec02 li span {
    font-size: 1vw;
  }

}

/* MEDIA QUERIE ～767px */
@media screen and (max-width: 767px) {

  .sec02 {
    background: none;
    padding-bottom: 0;
  }
  
  .sec02 .box {
    margin-left: 0;
    padding: 10.667vw 9.8667vw 50vw;
  }
  
  .sec02 .box .point {
    width: 49.0667vw;
    height: 10.533vw;
    bottom: inherit;
    right: 0;
    left: 0;
    top: -4vw;
  }

  .sec02 ul {
    display: block;
    width: 100%;
  }
  
  .sec02 li {
    border-radius: 0 15px 0 15px;
    width: 100%;
    padding: 3.4vw 0;
    font-size: 5.6vw;
    margin-bottom: 2.8vw;
  }
  
  .sec02 li span {
    font-size: 3.2vw;
    margin-top: 0;
    margin-bottom: 1.2vw;
    line-height: 1.25;
  }

}


/* 06. MEMBER
-------------------------------------------------------------------- */

.sec03 {
  background: linear-gradient( 180deg, transparent 0%, transparent 12%, #fffad6 12%, #fffad6 100%);
  margin-top: -12%;
  padding-bottom: 4%;
}

.sec03 h2 {
  background: url(../img/common/bg03_pc.png) no-repeat center/contain;
  padding: 9.6% 0;
  text-align: center;
}

.sec03 .box {
  text-align: center;
}

.sec03 .box img {
  margin: -8% 0 0 5%;
}

/* MEDIA QUERIE 768px～1600px */
@media screen and (min-width: 768px) and (max-width: 1600px) {

  .sec03 h2 img {
    width: 42.375vw;
  }

  .sec03 .box img {
    width: 73.125vw;
  }

}

/* MEDIA QUERIE ～767px */
@media screen and (max-width: 767px) {

  .sec03 {
    background: linear-gradient( 180deg, transparent 0%, transparent 40vw, #fffad6 40vw, #fffad6 100%);
    margin-top: -40vw;
    padding-bottom: 4%;
    position: relative;
    z-index: 100;
  }
  
  .sec03 h2 {
    background: url(../img/common/bg03_sp.png) no-repeat center/cover;
    padding: 21vw 0;
    text-align: center;
  }

  .sec03 h2 img {
    width: 69.2vw;
  }
  
  .sec03 .box {
    text-align: center;
  }
  
  .sec03 .box img {
    margin: -20.9333vw 0 6.133vw;
  }

}


/* 07. PROGRAM
-------------------------------------------------------------------- */

.sec04 {
  padding: 5.5% 0 4%;
  background: url(../img/common/bg05_pc.png) no-repeat bottom center/100% auto;
}

.sec04 .inner2 + .inner2 {
  margin-top: 6.25%;
}

.sec04 .inner2 + .inner2.row {
  margin-top: 0;
}

.sec04 h2 {
  text-align: center;
  margin-bottom: 3%;
}

.sec04 h2 img {
  max-width: 26.375%;
}

.sec04 .box1 {
  display: flex;
}

.sec04 .box1 > div {
  width: 50%;
}

.sec04 .left .photo1 {
  border-radius: 15px;
  width: 97.6667%;
}

.sec04 .left .photo2 {
  border-radius: 15px;
  width: 72%;
  margin-left: 19.5%;
  margin-bottom: 7%;
}

.sec04 .left .photo3 {
  width: 84%;
  margin-left: 7.3333%;
}

.sec04 .left .photo4 {
  border-radius: 15px;
  width: 72%;
  margin: 6% 0 14% 19.5%;
}

.sec04 .left .photo5 {
  border-radius: 15px;
  width: 72%;
  margin-left: 19.5%;
}

.sec04 .right {
  padding: 4% 0 0 6.6%;
}

.sec04 .right.area2 {
  padding: 2% 0 0 6.6%;
}

.sec04 .right.area2-2 {
  padding: 0 0 0 6.6%;
  margin-top: -2%;
}

.sec04 .right.area3 {
  padding: 0 0 0 6.6%;
}

.sec04 .right.area3-2 {
  padding: 4% 0 0 6.6%;
}

.sec04 .box2 {
  display: flex;
}

.sec04 .box2 + .box2 {
  margin-top: 5%;
}

.sec04 .box2 + .box2.mt1 {
  margin-top: 12%;
}

.sec04 .icon {
  width: 26%;
}

.sec04 .icon img {
  width: 72%;
}

.sec04 .icon .double {
  margin-top: -10%;
}

.sec04 .comment {
  display: flex;
  align-items: center;
  line-height: 1.6;
  position: relative;
  padding-left: 6%;
  width: 74%;
  font-weight: normal;
  letter-spacing: .025em;
}

.sec04 .comment:before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 0;
  width: 3.9%;
}

.sec04 .kakko1:before {
  background: url(../img/common/kakko1.svg) no-repeat left center/contain;
  padding-top: 15%;
}

.sec04 .kakko2:before {
  background: url(../img/common/kakko2.svg) no-repeat left center/contain;
  padding-top: 20%;
}

.sec04 .kakko3:before {
  background: url(../img/common/kakko3.svg) no-repeat left center/contain;
  padding-top: 22%;
}

.sec04 .kakko4:before {
  background: url(../img/common/kakko4.svg) no-repeat left center/contain;
  padding-top: 28%;
}

.sec04 .kakko5:before {
  background: url(../img/common/kakko5.svg) no-repeat left center/contain;
  padding-top: 37%;
}

.sec04 .title {
  width: 52.167%;
  padding: 6% 0;
  position: relative;
  background: url(../img/common/bg04_pc.png) no-repeat center/contain;
  margin-left: 6.667%;
}

.sec04 .title .ttl {
  position: absolute;
  width: 27.32%;
  height: auto;
  left: -12.78%;
  top: 12.5%;
}

.sec04 .title .balloon {
  position: absolute;
  right: -79.07%;
  width: 26.04%;
  height: auto;
  top: -45%;
}

.sec04 .title h3 {
  font-size: 3.6rem;
  text-align: center;
  position: relative;
  padding-bottom: 6%;
  font-weight: 500;
  margin-bottom: 3%;
}

.sec04 .title h3:after {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(../img/common/line01.svg) no-repeat center/contain;
  width: 56.71%;
  height: 28%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.sec04 .title p {
  font-weight: normal;
  margin: auto;
  text-align: center;
}

.sec04 .title .photo {
  position: absolute;
  right: -79.07%;
  width: 92.65%;
  height: auto;
  top: 18%;
  border-radius: 15px;
}

.sec04 .support .box2 {
  width: 50%;
  padding: 4% 0 0 6.6%;
  transform: translateX(9.6667%);
}

.sec04 .support .box2 + .box2{
  margin-top: 2%;
  padding-top: 0;
}

.sec04 .support .box2 .comment {
  flex-wrap: wrap;
}

.sec04 .support .box2 .comment span {
  display: block;
  margin-top: 3%;
  width: 100%;
}

.sec04 h2.complete {
  margin-top: 6%;
  position: relative;
}

.sec04 h2.complete .balloon {
  position: absolute;
  right: 26%;
  width: 10%;
  height: auto;
  top: -50%;
}

.sec04 .note {
  text-align: center;
  font-size: 1.5rem;
  font-weight: normal;
  margin-top: 4%;
}

/* MEDIA QUERIE 768px～1300px */
@media screen and (min-width: 768px) and (max-width: 1300px) {

  .sec04 .inner2 {
    margin-left: 3.846153vw;
    margin-right: 3.846153vw;
    width: 92.30769vw;
  }

  .sec04 .comment {
    font-size: 1.230769vw;
    padding-bottom: .2vw;
  }

  .sec04 .title h3 {
    font-size: 2.76923vw;
  }
  
  .sec04 .title p {
    font-size: 1.230769vw;
  }

  .sec04 .note {
    font-size: 1.153846vw;
  }

}

/* MEDIA QUERIE ～767px */
@media screen and (max-width: 767px) {

  .sec04 {
    padding: 15.2vw 0 6.733vw;
    background: url(../img/common/bg05_sp.png) no-repeat bottom center/100% auto;
  }
  
  .sec04 .inner2 + .inner2 {
    margin-top: 12.5333vw;
  }
  
  .sec04 h2 {
    margin-bottom: 6.9333vw;
    position: relative;
  }
  
  .sec04 h2 img {
    max-width: 73.33vw;
  }

  .sec04 h2 img.balloon {
    position: absolute;
    width: 23.867vw;
    left: 6.133vw;
    top: -27.733vw;
    z-index: 100;
  }
  
  .sec04 .box1 {
    display: block;
  }
  
  .sec04 .box1 > div {
    width: 92vw;
    margin: auto;
  }
  
  .sec04 .left .photo1 {
    border-radius: 7.5px;
    width: 100%;
  }
  
  .sec04 .left .photo2 {
    border-radius: 7.5px;
    width: 69.867vw;
    margin: 0 0 0 11.067vw;
  }
  
  .sec04 .left .photo3 {
    width: 81.067vw;
    margin-left: 0;
  }
  
  .sec04 .left .photo4 {
    border-radius: 7.5px;
    width: 69.867vw;
    margin: 0 0 0 11.067vw;
  }
  
  .sec04 .left .photo5 {
    border-radius: 7.5px;
    width: 69.867vw;
    margin: 0 0 0 11.067vw;
  }
  
  .sec04 .right {
    padding: 5.333vw 0 0 2.667vw;
  }
  
  .sec04 .right.area2 {
    padding: 5.333vw 0 5.6vw 2.667vw;
    transform: translateX(8vw);
  }

  .sec04 .right.area2-2 {
    padding: 5.333vw 0 5.6vw 2.667vw;
    transform: translateX(8vw);
    margin-top: 0;
  }
  
  .sec04 .right.area3,
  .sec04 .right.area3-2,
  .sec04 .right.area3-3 {
    padding: 5.333vw 0 5.6vw 2.667vw;
    transform: translateX(8vw);
    margin-top: 0;
  }
  
  .sec04 .box2 + .box2 {
    margin-top: 2.4vw;
  }
  
  .sec04 .box2 + .box2.mt1 {
    margin-top: 2.4vw;
  }
  
  .sec04 .icon {
    width: 26%;
  }
  
  .sec04 .icon img {
    width: 78%;
  }
  
  .sec04 .icon .double {
    margin-top: -10%;
  }
  
  .sec04 .comment {
    line-height: 1.42;
    padding-left: 6%;
    width: 74%;
    padding-bottom: 1.2vw;
  }
  
  .sec04 .comment:before {
    width: 4.3%;
  }
  
  .sec04 .kakko1:before {
    padding-top: 18%;
  }
  
  .sec04 .kakko2:before {
    padding-top: 24%;
  }
  
  .sec04 .kakko3:before {
    padding-top: 25%;
  }

  .sec04 .kakko3sp:before {
    background: url(../img/common/kakko4.svg) no-repeat left center/contain;
    padding-top: 30%;
  }
  
  .sec04 .kakko4:before {
    padding-top: 28%;
  }
  
  .sec04 .kakko5:before {
    padding-top: 37%;
  }
  
  .sec04 .title {
    width: 92vw;
    padding: 8.667vw 0 54.3vw;
    background: url(../img/common/bg04_sp.png) no-repeat center/contain;
    margin: auto;
  }
  
  .sec04 .title .ttl {
    width: 32.8vw;
    left: inherit;
    right: 4.667vw;
    top: -9vw;
  }
  
  .sec04 .title h3 {
    font-size: 7.1067vw;
    padding-bottom: 4.933vw;
    margin-bottom: .5vw;
  }
  
  .sec04 .title h3:after {
    background: url(../img/common/line01.svg) no-repeat center/contain;
    width: 61.6vw;
    height: 4.4vw;
  }
  
  .sec04 .title .photo {
    position: absolute;
    right: 0;
    margin: auto;
    left: 0;
    width: 87.467vw;
    top: inherit;
    bottom: 2.67vw;
    border-radius: 7.5px;
  }
  
  .sec04 .support .box2 {
    width: 100%;
    padding: 5.733vw 4vw 0 7.467vw;
    transform: none;
  }
  
  .sec04 .support .box2 + .box2{
    margin-top: 2.4vw;
    padding-top: 0;
  }

  .sec04 h2.complete {
    margin-top: 13.33vw;
  }
  
  .sec04 h2.complete .balloon {
    position: absolute;
    right: 5.333vw;
    left: inherit;
    width: 22vw;
    top: 5.33vw;
  }
  
  .sec04 .note {
    text-align: left;
    font-size: 3.2vw;
    margin-top: 4.733vw;
    margin-left: 1em;
    text-indent: -1em;
    padding: 5.333vw;
  }
  
}


/* 08. VOICE
-------------------------------------------------------------------- */

.sec05 {
  padding: 4% 0 8%;
  background: url(../img/common/bg06_pc.png) no-repeat bottom center/100% auto;
}

.sec05 h2 {
  text-align: center;
}

.sec05 h2 img {
  max-width: 29.8125%;
}

.sec05 .note {
  font-size: 1.8rem;
  text-align: center;
  font-weight: normal;
  letter-spacing: .025em;
  line-height: 1.6;
  margin-top: 1%;
}

.sec05 ul {
  display: flex;
  width: 68.75%;
  margin: -7.5% auto 0;
  justify-content: space-between;
}

.sec05 li {
  width: 48.18%;
  padding-top: 57.27%;
  height: 0;
  position: relative;
}

.sec05 .f1 {
  background: url(../img/common/img_f1_pc.png) no-repeat bottom center/contain;
}

.sec05 .f2 {
  background: url(../img/common/img_f2_pc.png) no-repeat bottom center/contain;
}

.sec05 h4 {
  position: absolute;
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  bottom: 58.2%;
  right: 0;
  width: 100%;
  padding-right: 11.5%;
  text-align: right;
}

.sec05 .f2 h4 {
  text-align: left;
  padding-right: 0;
  padding-left: 8.5%;
}

.sec05 h4 span {
  font-size: 1.7rem;
  margin-right: 1%;
  vertical-align: 10%;
}

.sec05 h3 {
  position: absolute;
  color: #8263d4;
  font-weight: bold;
  font-size: 3.0rem;
  text-align: left;
  left: 11.5%;
  bottom: 44%;
}

.sec05 .text {
  position: absolute;
  font-size: 1.775rem;
  width: 74.72%;
  text-align: justify;
  line-height: 1.5;
  top: 58.5%;
  left: 11.5%;
  font-weight: normal;
}

/* MEDIA QUERIE 768px～1600px */
@media screen and (min-width: 768px) and (max-width: 1600px) {

  .sec05 .note {
    font-size: 1.125vw;
  }

  .sec05 h4 {
    font-size: 1.625vw;
  }
  
  .sec05 h4 span {
    font-size: 1.0625vw;
  }
  
  .sec05 h3 {
    font-size: 1.875vw;
  }
  
  .sec05 .text {
    font-size: 1.109375vw;
  }

}

/* MEDIA QUERIE ～767px */
@media screen and (max-width: 767px) {

  .sec05 {
    padding: 9.6vw 0 8%;
    background: url(../img/common/bg06_sp.png) no-repeat bottom center/100% auto;
  }
  
  .sec05 h2 img {
    max-width: 92.67vw;
  }
  
  .sec05 .note {
    font-size: 3.6vw;
    margin-top: 1%;
  }
  
  .sec05 ul {
    display: block;
    width: 86.933vw;
    margin: 0 auto;
  }
  
  .sec05 li {
    width: 100%;
    padding-top: 109.867vw;
    transform: translateX(1.8vw);
  }
  
  .sec05 .f1 {
    background: url(../img/common/img_f1_sp.png) no-repeat bottom center/contain;
  }
  
  .sec05 .f2 {
    background: url(../img/common/img_f2_sp.png) no-repeat bottom center/contain;
    margin-top: -11vw;
    width: 103%;
  }
  
  .sec05 h4 {
    font-size: 4.267vw;
    bottom: 66.67vw;
    padding-right: 9.6vw;
  }
  
  .sec05 .f2 h4 {
    padding-left: 8vw;
    bottom: 66vw;
  }
  
  .sec05 h4 span {
    font-size: 2.8vw;
    margin-right: 1%;
    vertical-align: 10%;
  }
  
  .sec05 h3 {
    font-size: 5.6vw;
    left: 10.933vw;
    bottom: 51.867vw;
  }
  
  .sec05 .text {
    font-size: 3.2vw;
    width: 65.067vw;
    top: 59.4vw;
    left: 10.933vw;
  }

}

/* 09. CTA
-------------------------------------------------------------------- */

.cta {
  margin-top: 6%;
}

.cta_inner {
  max-width: 668px;
  margin: auto;
}

.cta_only .cta_inner {
  margin: 0 auto;
}

.cta .sub {
  text-align: center;
  font-size: 3.36rem;
  letter-spacing: .075em;
  color: #e7427c;
  font-weight: bold;
  margin-bottom: 2%;
}

.cta_btn {
  text-align: center;
  background: #e7427c;
  border-radius: 15px;
  padding: 4px;
  position: relative;
}

.cta_btn a:hover {
  opacity: 0.7;
}

.cta_btn:before {
  content: "";
  position: absolute;
  display: block;
  width: 72px;
  height: 72px;
  background: url(../img/common/icon_24h.svg) no-repeat center/cover;
  left: -22px;
  top: -22px;
  z-index: 10;
}

.cta_btn a {
  display: block;
  position: relative;
  font-size: 3.3rem;
  line-height: 1;
  font-weight: 500;
  padding: 30px 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 15px;
  font-feature-settings: normal;
  box-shadow: 15px 15px 0 rgba(0,0,0,.15);
}

.cta_btn a:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 26px;
  background: url(../img/common/arrow_cta_btn.svg) no-repeat center/cover;
  right: calc(50% - 7.5em);
  top: 0;
  bottom: 0;
  margin: auto;
}

/* MEDIA QUERIE 768px～1600px */
@media screen and (min-width: 768px) and (max-width: 1600px) {
  
  .cta_inner {
    max-width: 41.75vw;
  }
  
  .cta .sub {
    font-size: 2.1vw;
  }
  
  .cta_btn {
    border-radius: 0.9375vw;
    padding: 0.25vw;
  }
  
  .cta_btn:before {
    width: 4.5vw;
    height: 4.5vw;
    left: -1.375vw;
    top: -1.375vw;
  }
  
  .cta_btn a {
    font-size: 2.0625vw;
    padding: 1.875vw 0;
    border: 0.125vw solid #fff;
    border-radius: 0.9375vw;
    font-feature-settings: normal;
    box-shadow: 0.9375vw 0.9375vw 0 rgba(0,0,0,.15);
  }
  
  .cta_btn a:after {
    width: 1.25vw;
    height: 1.625vw;
    right: calc(50% - 15.46875vw);
  }

}

/* MEDIA QUERIE ～767px */
@media screen and (max-width: 767px) {

  .cta {
    margin-top: 3vw;
  }

  .cta .sub {
    font-size: 4.8vw;
    margin-bottom: 4vw;
  }

  .cta_btn a {
    box-shadow: 10px 11px 0 rgba(0,0,0,.15);
  }

}


/* MEDIA QUERIE ～600px */
@media screen and (max-width: 600px) {

  .cta {
    padding: 40px 5%;
  }

  .cta_btn a {
    background: url(../img/common/arrow_cta_btn.svg) no-repeat right 20px center;
    background-size: 15px 12px;
    font-size: 1.8rem;
    padding: 20px 0;
  }

  .cta_btn a:after {
    display: none;
  }

  .cta_tel p {
    font-size: 1.6rem;
  }

  .cta_tel a {
    font-size: 4.8rem;
    margin: 0 0 0 23px;
  }

  .cta_tel a:before {
    transform: translateY(4px);
  }

  .cta_tel a:before {
    background-size: 34px 34px;
    width: 34px;
    height: 34px;
    left: -38px;
  }

  .cta_btn:before {
    width: 50px;
    height: 50px;
    left: -11px;
    top: -11px;
    z-index: 10;
  }

}


/* 10. FIXED
-------------------------------------------------------------------- */	

.fixed {
  position: sticky;
  left: 0;
  bottom: 0;
  width: 85px;
  transform: translateY(-600px) translateX(calc(1600px - 85px));
  margin: 0;
  height: 0;
  z-index: 1000;
}

.fixed li a {
  display: block;
  width: 85px;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e7427c url("../img/common/arrow_cta_btn.svg") no-repeat;
  background-position: center bottom 20px;
  background-size: 19px 25px;
  border-radius: 14px 0 0 14px;
  color: #fff;
  font-size: 3.4rem;
  writing-mode: vertical-rl;
  letter-spacing: 1px;
  text-orientation: upright;
  padding: 30px 0 60px;
  box-shadow: 8px 8px 8px rgba(0,0,0,.3);
}


/* MEDIA QUERIE ～768px */
@media screen and (min-width: 768px) {

  .fixed li a:hover {
    opacity: 0.7;
  }

}

/* MEDIA QUERIE 1025px～1600px */
@media screen and (min-width: 1025px) and (max-width: 1600px) {

  .fixed {
    bottom: 0;
    width: 5.3125vw;
    transform: translateY(-38vw) translateX(calc(100vw - 5.3125vw));
  }

}

/* MEDIA QUERIE 768px～1024px */
@media screen and (min-width: 768px) and (max-width: 1024px) {

  .fixed {
    bottom: 0;
    width: 5.3125vw;
    transform: translateY(-45vw) translateX(calc(100vw - 5.3125vw));
  }
  
}

/* MEDIA QUERIE 768px～1600px */
@media screen and (min-width: 768px) and (max-width: 1600px) {
  
  .fixed li a {
    width: 5.3125vw;
    background-position: center bottom 1.25vw;
    background-size: 1.1875vw 1.5625vw;
    border-radius: .875vw 0 0 .875vw;
    font-size: 2.125vw;
    letter-spacing: 0.0625vw;
    padding: 1.875vw 0 3.75vw;
    box-shadow: .5vw .5vw .5vw rgba(0,0,0,.3);
  }
  
}

/* MEDIA QUERIE ～767px */
@media screen and (max-width: 767px) {

  .fixed {
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    position: fixed;
    height: inherit;
  }

  .fixed li a {
    font-size: 1.6rem;
    writing-mode: horizontal-tb;
    width: 100%;
    display: block;
    background-position: right 7% bottom 21px;
    background-size: 9.5px 12.5px;
    border-radius: 7px 7px 0 0;
    text-orientation: upright;
    padding: 15px 0;
    box-shadow: none;
  }

}
