@charset "UTF-8";

/*----------------------------------------------------------------------------------------------------

  reset

----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight: normal;
  /* Yutaka added */
  vertical-align: baseline;
  box-sizing:border-box;
}

body {
  line-height: 1;
  /*min-width: 1100px;*/
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Yutaka added */
table, tr, th, td, caption {
  vertical-align: middle;
  text-align: left;
}

img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}


/*----------------------------------------------------------------------------------------------------

  body

----------------------------------------------------------------------------------------------------*/

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: clamp(14px, 1.8vw, 30px);
  line-height: 1.8em;
  font-family: "Noto Sans JP", sans-serif;
  color: #141414;
}

a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: #000;
}
  a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
  }

img, table {
  width:100%;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}


/* font
--------------------------------------------------*/


.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}





/*----------------------------------------------------------------------------------------------------

  main

----------------------------------------------------------------------------------------------------*/
.main {
  margin: auto;
  max-width: 750px;
  box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.16);
}


@media screen and (max-width: 768px) {
  .main {
    max-width: inherit;
  }
}

/*----------------------------------------------------------------------------------------------------

  header

----------------------------------------------------------------------------------------------------*/
.header {
  background: #1647ad;
  padding: 2% 0 2% 3%;
}


  .header .logo01{
    width: 10%;
  }


@media screen and (max-width: 768px) {

}


/*----------------------------------------------------------------------------------------------------

  MV

----------------------------------------------------------------------------------------------------*/

.mv {
  position: relative;
}

  .mv .mv-text-area {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

    .mv .text01{
      padding: 9% 0 0 5.5%;
      max-width: 62%;
    }

    .mv .text02{
      margin: 20% auto 0;
      max-width: 82%;
      
    }

    .mv .text03{
      margin: 1.4% auto 0;
      max-width: 74%;
      
    }

@media screen and (max-width: 768px) {

}


/*----------------------------------------------------------------------------------------------------

  cta-area

----------------------------------------------------------------------------------------------------*/

.cta-area {
  background: #f6c2b3;
  padding: 6% 5.5%;
}

  .cta-area .cta-btn {
    display: block;
    -webkit-animation-name: updown;
            animation-name: updown;
    /* アニメーション名の指定 */
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    /* アニメーションの開始時間指定 */
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    /* アニメーション動作時間の指定 */
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    /* アニメーションの動き指定（徐々に早く）*/
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }


/*----------------------------------------------------------------------------------------------------

  sec01

----------------------------------------------------------------------------------------------------*/

.sec01 {
  padding: 7.4% 5.5% 7.8%;
}

  .sec01 .sec-ttl02{
    padding: 0 0 2.4% 0;
    text-align: center;
    font-weight: 600;
    color: #1647ac;
    font-size: clamp(20px, 5.4vw, 40px);
    border-bottom: solid 4px #d2d2d2;
    line-height: 1.0em;
  }

  .sec01 .text01 {
    padding: 6% 0 0 0;
    text-align: center;
    font-weight: 600;
    font-size: clamp(18px, 5.0vw, 36px);
    line-height: 1.0em;
  }

    .sec01 .text01 .strong01{
      font-weight: 600;
      font-size: 2.0em;
      color: #1647ac;
    }

  .sec01 .text02 {
    padding: 5% 0 0 0;
    display: flex;
    justify-content: space-between;
  }

    .sec01 .text02 .list {
      padding: 1.8% 3.2% 2.2%;
      color: #fff;
      font-weight: 600;
      background: #1647ac;
      font-size: clamp(20px, 5.4vw, 40px);
      line-height: 1.0em;
    }

      .sec01 .text02 .strong01 {
        display: inline-block;
        font-weight: 600;
        font-size: 1.16em;
        vertical-align: bottom;
      }


  .sec01 .text03 {
    margin: 7% 0 0 0;
    padding: 0 0 24px 0;
    border: solid 2px #d2d2d2;
    text-align: center;
    line-height: 1.0em;
  }

    .sec01 .text03 dt {
      display: inline-block;
      color: #1647ac;
      font-weight: 600;
      font-size: clamp(17px, 4.8vw, 34px);
      background: #fff;
      position: relative;
      top: -20px;
      padding: 0 1.6%;
      line-height: 1.0em;
    }

    .sec01 .text03 dd {
      margin: -10px 0 0 0;
      font-weight: 600;
      font-size: clamp(16px, 4.2vw, 32px);
      line-height: 1.0em;
    }

    .sec01 .text03 dd .marker01 {
      padding: 3px 0;
      display: inline-block;
      font-weight: 600;
      background:linear-gradient(transparent 76%, #fed72f 76%);
      line-height: 1.0em;
    }

      .sec01 .text03 dd .spacing01 {
        font-weight: 600;
        letter-spacing: -0.26em;
      }

      .sec01 .text03 dd .small01 {
        margin: 18px 0 0 0;
        display: inline-block;
        font-weight: 300;
        font-size: clamp(12px, 3.2vw, 24px);
        line-height: 1.0em;
      }



@media screen and (max-width: 768px) {

  .sec01 .sec-ttl02 {
    border-bottom: solid 2px #d2d2d2;
  }
  
    .sec01 .text02 .list {
      padding: 2.2% 3.2% 2.2%;
    }

      .sec01 .text02 .strong01 {
        top: 1px;
      }

  .sec01 .text03 {
    padding: 0 0 14px 0;
    border: solid 1px #d2d2d2;
  }

    .sec01 .text03 dt{
      top: -12px;
    }
  
    .sec01 .text03 dd {
      margin: -6px 0 0 0;
    }
  
    .sec01 .text03 dd .marker01 {
      padding: 2px 0;
      background:linear-gradient(transparent 76%, #fed72f 76%);
    }
  
      .sec01 .text03 dd .small01 {
        margin: 12px 0 0 0;
      }
  
}

/*----------------------------------------------------------------------------------------------------

  form-area form-area01

----------------------------------------------------------------------------------------------------*/

.form-area01 {
  padding: 5% 3% 3%;
  background: #d7e7ff;
}


  .form-area01 .sec-ttl03 {
    text-align: center;
    line-height: 1.0em;
  }

    .form-area01 .ttl-sub01{
      display: inline-block;
      padding: 0 4% 1.0%;
      font-weight: 600;
      font-size: clamp(20px, 5.4vw, 40px);
      border-radius: 26px;
      background: #fff;
      line-height: 0.8em;
    }

      .form-area01 .ttl-sub01 .strong01{
        display: inline-block;
        font-weight: 600;
        color: #1647ac;
        font-size: 1.2em;
        line-height: 1.0em;
      }


    .form-area01 .ttl-main01 {
      margin: 2% 0 0 0;
      font-weight: 600;
      font-size: clamp(25px, 6.4vw, 50px);
      color: #1647ac;
      line-height: 1.0em;
    }


  .form-area01 .form {
    padding: 6% 0 0 0;
  }

  .form-area01 .form iframe {
    width: 100%;
    height: 780px;
  }

  .safari .form-area01 .form iframe {
    width: 100%;
    height: 740px;
  }


@media screen and (max-width: 768px) {

    .form-area01 .ttl-sub01{
      padding: 0 4% 1.0%;
      line-height: 0.8em;
    }

    .form-area01 .ttl-main01 {
      margin: 2% 0 0 0;
    }


  .form-area01 .form {
    padding: 5% 0 0 0;
  }

  .form-area01 .form iframe {
    height: 760px;
  }

}


/*----------------------------------------------------------------------------------------------------

  sec-ttl01

----------------------------------------------------------------------------------------------------*/

.sec-ttl01 {
  text-align: center;
  line-height: 1.0em;
}

  .sec-ttl01 .ttl-sub01 {
    font-weight: 600;
    color: #626262;
    font-size: clamp(13px, 3.4vw, 26px);
    line-height: 1.0em;
  }

  .sec-ttl01 .ttl-main01 {
    margin: 1.2% 0 0 0;
    font-weight: 600;
    font-size: clamp(25px, 6.4vw, 50px);
    color: #1647ac;
    line-height: 1.0em;
  }

@media screen and (max-width: 768px) {
  .sec-ttl01 .ttl-main01 {
    margin: 1.6% 0 0 0;
  }
}

/*----------------------------------------------------------------------------------------------------

  sec02

----------------------------------------------------------------------------------------------------*/

.sec02 {
  padding: 8% 3% 2%;
}

  .sec02 .box-area {
    margin: 6.0% 0 0 0;
  }

  .sec02 .box {
    margin: 0 0 6.0% 0;
    border: 2px solid #d2d2d2;
  }

  .sec02 .box .text-area {
    padding: 4% 3%;
    line-height: 1.0em;
  }

    .sec02 .box .box-ttl {
      font-weight: 600;
      font-size: clamp(15px, 4.0vw, 30px);
      color: #1647ac;
      line-height: 1.0em;
    }

    .sec02 .box .text01 {
      margin: 2% 0 0 0;
      font-size: clamp(13px, 3.3vw, 25px);
      font-weight: 300;
      line-height: 1.7em;
    }

      .sec02 .box .text01 .strong01{
        font-weight: 600;
      }

@media screen and (max-width: 768px) {
  .sec02 .box {
    margin: 0 0 6.0% 0;
    border: 1px solid #d2d2d2;
  }
  
  .sec02 .box .text01 {
    margin: 2.0% 0 0 0;
    line-height: 1.6em;
  }
  
}



/*----------------------------------------------------------------------------------------------------

  cta

----------------------------------------------------------------------------------------------------*/

.cta {
}

  .cta .inner {
  }

    .cta .btn-area {
      padding: 0 10%;
    }


  .cta .cta-btn {
    padding: 4.4% 0 5.0%;
    display: block;
    position: relative;
    background: #d41a49;
    color: #fff;
    text-align: center;
    box-shadow: 0px 8px 0px 0px #a6082d;
    border-radius: 10px;
    font-weight: 500;
    font-size: clamp(14px, 4.8vw, 40px);
    line-height: 1.0em;
    -webkit-animation-name: updown;
            animation-name: updown;
    /* アニメーション名の指定 */
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    /* アニメーションの開始時間指定 */
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    /* アニメーション動作時間の指定 */
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    /* アニメーションの動き指定（徐々に早く）*/
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }

    .cta .cta-btn::before {
      position: absolute;
      top: 50%;
      right: 9%;
      margin: -8px;
      display:block;
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 16px solid #ffffff;
      border-right: 0;
    }

  .btn_box{
    padding: 4.4% 5% 8.0%;
    display: block;
    position: relative;
    -webkit-animation-name: updown;
            animation-name: updown;
    /* アニメーション名の指定 */
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    /* アニメーションの開始時間指定 */
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    /* アニメーション動作時間の指定 */
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    /* アニメーションの動き指定（徐々に早く）*/
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
  .btn_box .btn01{
	  margin-bottom: 6%;
  }
@media screen and (max-width: 768px) {
  .cta .cta-btn {
    padding: 4.4% 0 5.0%;
    box-shadow: 0px 4px 0px 0px #a6082d;
    border-radius: 5px;
  }

    .cta .cta-btn::before {
      right: 9%;
      margin: -5px;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 8px solid #ffffff;
    }

}

/*----------------------------------------------------------------------------------------------------

  sec03

----------------------------------------------------------------------------------------------------*/

.sec03 {
  padding: 9% 0 0;
}

  .sec03 .text-area {
    margin: 6.0% 0 0 0;
  }


@media screen and (max-width: 768px) {
  
}


/*----------------------------------------------------------------------------------------------------

  sec04

----------------------------------------------------------------------------------------------------*/

.sec04 {
  padding: 8% 3% 0;
}

  .sec04 .box-area {
    margin: 6.6% 0 0 0;
  }

  .sec04 .box {
    margin: 0 0 6.0% 0;
    border: 2px solid #d2d2d2;
    
  }


    .sec04 .box .box-ttl {
      padding: 3% 0 3.2%;
      font-weight: 600;
      font-size: clamp(15px, 4.0vw, 30px);
      color: #1647ad;
      background: #d7e6ff;
      text-align: center;
      line-height: 1.0em;
      
    }

      .sec04 .box02 .box-ttl {
        font-size: clamp(14px, 3.8vw, 28px);
        color: #141414;
        background: #efeeef;
      }


      .sec04 .box .box-ttl .spacing01 {
        font-weight: 600;
        letter-spacing: -0.5em;
      }


    .sec04 .box .text01 {
      padding: 3% 3% 4%;
      font-size: clamp(13px, 3.4vw, 24px);
      line-height: 1.8em;
      font-weight: 300;
    }

      .sec04 .box .text01 .strong01{
        font-weight: 600;
        background: linear-gradient(transparent 8%, #ffeea1 8%, #ffeea1 96%, transparent 96%);
        
      }

@media screen and (max-width: 768px) {
  .sec04 .box {
    margin: 0 0 6.0% 0;
    border: 1px solid #d2d2d2;
  }
  
    .sec04 .box .text01 {
      line-height: 1.6em;
    }

}

/*----------------------------------------------------------------------------------------------------

  sec05

----------------------------------------------------------------------------------------------------*/

.sec05 {
  padding: 4.0% 3% 7.8%;
}

  .sec05 .sec-ttl05 {
    text-align: center;
    font-weight: 600;
    color: #1647ac;
    font-size: clamp(30px, 7.6vw, 60px);
    line-height: 1.0em;
  }

    .sec05 .sec-ttl05 .strong01 {
      font-weight: 600;
      font-size: 1.1em;
    }

  .sec05 .card-area {
    margin: 6.0% 0 0 0;
    display: flex;
    justify-content: space-between;
  }

    .sec05 .card {
      max-width: 32.5%;
    }


@media screen and (max-width: 768px) {

.sec05 {
  padding: 3.8% 3% 7.8%;
}


    .sec05 .sec-ttl05 .strong01 {
      font-size: 1.1em;
    }

  .sec05 .card-area {
    margin: 5.8% 0 0 0;
  }

    .sec05 .card {
      max-width: 32.5%;
    }
  
}

/*----------------------------------------------------------------------------------------------------

  form-area form-area02

----------------------------------------------------------------------------------------------------*/

.form-area02 {
  padding: 0 3%;
}

  .form-area02 .form iframe{
    width: 100%;
    height: 780px;
  }

  .safari .form-area02 .form iframe{
    width: 100%;
    height: 740px;
  }


@media screen and (max-width: 768px) {

  .form-area02 .form iframe {
    margin: -14px 0 0 0;
    height: 760px;
  }

}

/*----------------------------------------------------------------------------------------------------

  footer

----------------------------------------------------------------------------------------------------*/

.footer {
  padding: 0 0 3% 0;
  margin: auto;
}

.footer .copy{
  font-size: clamp(12px, 3.2vw, 24px);
  text-align: center;
  font-weight: 300;
}

@media screen and (max-width: 768px) {

  
}

/*----------------------------------------------------------------------------------------------------

  fix-cta

----------------------------------------------------------------------------------------------------*/

.fix-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: none;
}

  .fix-cta .inner {
    margin: auto;
    max-width: 750px;
    background: rgba(255,255,255,0.75);
  }

    .fix-cta .btn-area {
      padding: 3% 8%;
    }


  .fix-cta .cta-btn {
	   display: block;
    /*padding: 4.0% 0 4.4%;
    position: relative;
    background-image: linear-gradient(90deg, rgba(231, 121, 48, 1), rgba(224, 96, 11, 1));
    color: #fff;
    text-align: center;
    box-shadow: 0px 8px 0px 0px #aa3711;
    border-radius: 10px;
    font-weight: 500;
    font-size: clamp(14px, 4.8vw, 40px);
    line-height: 1.0em;*/
    -webkit-animation-name: updown;
            animation-name: updown;
    /* アニメーション名の指定 */
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    /* アニメーションの開始時間指定 */
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    /* アニメーション動作時間の指定 */
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    /* アニメーションの動き指定（徐々に早く）*/
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }



@-webkit-keyframes updown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes updown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}


@media screen and (max-width: 768px) {
  .fix-cta .inner{
    max-width: inherit;
  }
  
  .fix-cta .cta-btn {
  }

  
}


