@charset "utf-8";
@import "html5reset-1.6.1.css";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/* ---------------------------------------------------------
common
----------------------------------------------------------*/
*{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html{
  font-size: 62.5%;/* 10px */
}
body{
  font-size: 1.6em;/* 16px */
  line-height: 1.8;
  color: #111;
  font-family: 'Noto Sans JP', 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  background: #fff;
}
a{
  text-decoration: none;
  color: #111;
}
img{
  max-width: 100%;
  vertical-align: bottom;
}
.sp_view{
  display: block;
}
.pc_view{
  display: none;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}


#wrapper{
  width: 100%;
  min-width: 32rem;
  overflow: hidden;
  position: relative;
}


/* ---------------------------------------------------------
header
----------------------------------------------------------*/
header{
  padding: 1rem;
  border-bottom: 1px solid #ccc;
  text-align: center;
}
header h1 a img{
  height: 4rem;
}

/* ---------------------------------------------------------
.first_view
----------------------------------------------------------*/
.first_view{
  padding-bottom: 5rem;
  background-color: #eff9ff;
}
.first_view h2 {
  position: relative;
  margin: 4rem 4rem 3rem;
  text-align: center;
}
.first_view h2:before,
.first_view h2:after {
  position: absolute;
  z-index: 0;
  bottom: -1rem;
  display: block;
  content: '';
  border: 3rem solid #064a86;
  box-sizing: inherit;
}
.first_view h2:before {
  left: -30px;
  border-left-width: 15px;
  border-left-color: transparent;
}
.first_view h2:after {
  right: -30px;
  border-right-width: 15px;
  border-right-color: transparent;
}
.first_view h2 span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1rem;
  font-size: 2rem;
  line-height: 1.5;
  color: #fff;
  background: #0057A4;
}
.first_view h2 span:before,
.first_view h2 span:after {
  position: absolute;
  bottom: -20px;
  display: block;
  width: 20px;
  height: 20px;
  content: '';
  border-style: solid;
  border-color: #01213e transparent transparent transparent;
  box-sizing: inherit;
}
.first_view h2 span:before {
  left: 0;
  border-width: 10px 0 0 10px;
}
.first_view h2 span:after {
  right: 0;
  border-width: 10px 10px 0 0;
}
.first_view > p{
  padding: 0 2rem 3rem;
}
.first_view dl{
  padding: 3rem 2rem;
  margin: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid #e5edf2;
  background-color: #fff;
  border-radius: 1rem;
}
.first_view dl dt{
  position: relative;
  padding: .3rem 2.5rem 0;
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
}
.first_view dl dt:before,
.first_view dl dt:after { 
  content:'';
  width: 1rem;
  height: 100%;
  position: absolute;
  top: 0;
  display: inline-block;
}
.first_view dl dt:before {
  border-left: solid 3px #0057A4;
  border-top: solid 3px #0057A4;
  border-bottom: solid 3px #0057A4;
  left: 0;
}
.first_view dl dt:after {
  border-top: solid 3px #0057A4;
  border-right: solid 3px #0057A4;
  border-bottom: solid 3px #0057A4;
  right: 0;
}
.first_view dl dd{
  width: 100%;
  margin-top: 2rem;
  padding-left: 2rem;
  font-weight: bold;
  position: relative;
}
.first_view dl dd::before {
  display: block;
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 1rem;
  height: .5rem;
  border-left: 3px solid #3498db;
  border-bottom: 3px solid #3498db;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ---------------------------------------------------------
.point_wrap
----------------------------------------------------------*/
.point_wrap{
  padding: 5rem 2rem;
}
.point_wrap h3 {
  font-size: 2rem;
  padding-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
  position: relative;
  color: #0057A4;
}
.point_wrap h3:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #0057A4, #0057A4 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #0057A4, #0057A4 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.point_wrap h3 span{
  font-size: 3rem;
}
.point{
  padding: 2rem;
  margin-top: 3rem;
  /* background-color: #eff9ff; */
  border-radius: 3px;
  color: #0057A4;
  border: 1px solid #0057A4;
}
.point h4{
  font-size: 1.8rem;
  padding-bottom: 1rem;
  line-height: 1.5;
  text-align: center;
  position: relative;
  border-bottom: 2px solid #5281a6;
}
.point h4 span{
  padding-right: .5rem;
  font-style: italic;
  font-size: 2.2rem;
  vertical-align: -2px;
}
.point p{
  padding: 1rem .5rem 0;
}
.point ul{
  padding: 1rem .5rem 0;
}
.point li{
  list-style-type: disc;
  margin-left: 1em;
}
.point img{
  width: 200px;
  display: block;
  margin: 15px auto 0;
}


/* ---------------------------------------------------------
.amount_wrap
----------------------------------------------------------*/
.amount_wrap{
  padding: 5rem 2rem;
}
.amount_wrap h3 {
  font-size: 2rem;
  padding-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
  position: relative;
  color: #0057A4;
}
.amount_wrap h3:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #0057A4, #0057A4 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #0057A4, #0057A4 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.amount_wrap h3 span{
  font-size: 3rem;
}
.amount{
  padding: 2rem;
  margin-top: 3rem;
  /* background-color: #eff9ff; */
  border-radius: 3px;
  color: #0057A4;
  border: 1px solid #0057A4;
}
.amount h4{
  font-size: 1.8rem;
  padding-bottom: 1rem;
  line-height: 1.5;
  text-align: center;
  position: relative;
  border-bottom: 2px solid #5281a6;
}
.amount h4 span{
  padding-right: .5rem;
  font-style: italic;
  font-size: 2.2rem;
  vertical-align: -2px;
}
.amount p{
  padding: 1rem;
  /* border: 2px solid #5281a6; */
  text-align: center;
  margin-top: 20px;
  background-color: #0057A4;
  color: #ffffff;
  font-weight: bold;
}
.amount ul{
  padding: 1rem .5rem 0;
  text-align: center;
  color: #000000;
}
.amount li{
  list-style-type: none;
  margin-left: 1em;
}
.amount img{
  width: 90%;
  display: block;
  margin: 15px auto 0;
}




/* ---------------------------------------------------------
.testimonials_wrap
----------------------------------------------------------*/
.testimonials_wrap{
  padding: 3rem 2rem 0rem;
}
.testimonials_wrap h3 {
  font-size: 2rem;
  padding-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
  position: relative;
  color: #0057A4;
}
.testimonials_wrap h3 span{
  font-size: 3rem;
}
.testimonials_wrap h3:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #0057A4, #0057A4 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #0057A4, #0057A4 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.testimonials_wrap_logo{
  display: block;
  width: 100%;
  /* max-width: 900px; */
  margin: 5rem auto;
}

.testimonials_wrap_voice{
  margin: 5rem auto 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.testimonials_wrap_voice_img{
  max-width: 48%;
}


/* ---------------------------------------------------------
aside
----------------------------------------------------------*/
aside{
  padding: 3rem 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #0057A4;
}
aside p span{
  font-size: 2.2rem;
}
aside .btn_apply{
  width: 100%;
  margin-top: 2rem;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  font-size: 2rem;
  padding: 1rem 0;
  border-bottom: 6px solid #b77f00;
  background-color: #ffd400;
  border-radius:100vh;
}

/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
footer{
  text-align: center;
  padding: 3rem 2rem 2rem;
  color: #fff;
  background-color: #333;
}
footer a img{
  width: 20rem;
}
footer p{
  margin-top: 1rem;
  font-size: 1.4rem;
}

.footer-link a{
  color: #ffffff;
}

@media screen and (min-width:751px){
  /* ---------------------------------------------------------
  common
  ----------------------------------------------------------*/
  body{
    font-size: 2em;/* 16px */
    line-height: 2;
  }
  a{
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  a:hover{
    opacity: .5;
  }
  .sp_view{
    display: none;
  }
  .pc_view{
    display: block;
  }

  /* ---------------------------------------------------------
  .first_view
  ----------------------------------------------------------*/
  .first_view{
    padding-bottom: 10rem;
  }
  .fv_img{
    overflow: hidden;
    position: relative;
  }
  .fv_img:before{
    content: "";
    width: 100%;
    height: 100%;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(15px);
    background-position: center center;
    /* background-image: url(../images/bnr_catalog.jpg); */
    background-size: cover;
  }
  .fv_img img{
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .first_view h2 {
    max-width: 100rem;
    width: 80%;
    margin: 10rem auto 3rem;
  }
  .first_view h2:before,
  .first_view h2:after {
    bottom: -2rem;
    border: 5rem solid #064a86;
  }
  .first_view h2:before {
    left: -5rem;
    border-left-width: 3rem;
    border-left-color: transparent;
  }
  .first_view h2:after {
    right: -5rem;
    border-right-width: 3rem;
    border-right-color: transparent;
  }
  .first_view h2 span {
    padding: 1.5rem;
    font-size: 3rem;
  }
  .first_view h2 span:before,
  .first_view h2 span:after {
    bottom: -3rem;
    width: 3rem;
    height: 3rem;
  }
  .first_view h2 span:before {
    border-width: 20px 0 0 20px;
  }
  .first_view h2 span:after {
    border-width: 20px 20px 0 0;
  }
  .first_view > p{
    max-width: 100rem;
    width: 80%;
    margin: 0 auto;
    padding: 3rem 0 5rem;
    font-size: 2.2rem;
  }
  .first_view dl{
    max-width: 80rem;
    width: 70%;
    padding: 5rem;
    margin: 0 auto;
  }
  .first_view dl dt{
    font-size: 2.2rem;
  }
  .first_view dl dd{
    text-align: center;
    margin-top: 3rem;
    padding-left: 0;
  }
  .first_view dl dd:before{
    margin-right: 1rem;
    vertical-align: .5rem;
    display: inline-block;
    position: static;
  }

  /* ---------------------------------------------------------
  .point_wrap
  ----------------------------------------------------------*/
  .point_wrap{
    max-width: 100rem;
    width: 80%;
    margin: 0 auto;
    padding: 10rem 0;
  }
  .point_wrap h3 {
    font-size: 3rem;
    padding-bottom: 3rem;
  }
  .point_wrap h3 span{
    font-size: 4rem;
  }
  .point{
    padding: 5rem;
    margin-top: 5rem;
  }
  .point h4{
    font-size: 2.4rem;
  }
  .point h4 span{
    padding-right: 1rem;
    font-size: 3rem;
    vertical-align: 0;
  }
  .point p{
    padding: 2rem 2rem 0;
  }
  .point img{
    float: right;
    margin-left: 20px;
    width: 200px;
    margin-top: 15px;
  }


  /* ---------------------------------------------------------
  .amount_wrap
  ----------------------------------------------------------*/
  .amount_wrap{
    max-width: 100rem;
    width: 80%;
    margin: 0 auto;
    padding: 10rem 0;
  }
  .amount_wrap h3 {
    font-size: 3rem;
    padding-bottom: 3rem;
  }
  .amount_wrap h3 span{
    font-size: 4rem;
  }
  .amount{
    padding: 5rem;
    margin-top: 5rem;
  }
  .amount h4{
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
  .amount h4 span{
    padding-right: 1rem;
    font-size: 3rem;
    vertical-align: 0;
  }
  .amount p{
    padding: 1rem;
  }
  .amount img{
    margin-left: 20px;
    width: 95%;
    margin-top: 15px;
    margin-bottom: 20px;
  }

  /* ---------------------------------------------------------
  .testimonials_wrap
  ----------------------------------------------------------*/
  .testimonials_wrap{
    max-width: 100rem;
    width: 80%;
    margin: 0 auto;
    padding: 3rem 0 3rem;
  }
  .testimonials_wrap h3 {
    font-size: 3rem;
    padding-bottom: 3rem;
  }
  .testimonials_wrap h3 span{
    font-size: 4rem;
  }

  .testimonials_wrap_voice_img{
    max-width: 32%;
  }

  /* ---------------------------------------------------------
  aside
  ----------------------------------------------------------*/
  aside{
    padding: 5rem 0;
    font-size: 2.4rem;
  }
  aside p span{
    font-size: 4rem;
  }
  aside .btn_apply{
    max-width: 70rem;
    width: 70%;
    margin-top: 2rem;
    font-size: 2.8rem;
    padding: 1.5rem 0;
  }
}
