@charset "UTF-8";
/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0;
  /* 最初は非表示 */
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  /* 下に30pxの位置から */
  -webkit-transition: opacity 1s, -webkit-transform .4s;
  transition: opacity 1s, -webkit-transform .4s;
  transition: opacity 1s, transform .4s;
  transition: opacity 1s, transform .4s, -webkit-transform .4s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  -webkit-transform: translateY(0);
          transform: translateY(0);
  /* 30px上に移動する */
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  /* フェード開始を0.5秒遅らせる */
}

/* フェードイン(初期値) */
.js-fadeUp2 {
  opacity: 0;
  /* 最初は非表示 */
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  /* 下に30pxの位置から */
  -webkit-transition: opacity .1s, -webkit-transform .2s;
  transition: opacity .1s, -webkit-transform .2s;
  transition: opacity .1s, transform .2s;
  transition: opacity .1s, transform .2s, -webkit-transform .2s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp2.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  -webkit-transform: translateY(0);
          transform: translateY(0);
  /* 30px上に移動する */
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  /* フェード開始を0.5秒遅らせる */
}

/* フェードイン(初期値) */
.js-fadeUp3 {
  opacity: 0;
  /* 最初は非表示 */
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  /* 下に30pxの位置から */
  -webkit-transition: opacity .5s, -webkit-transform .4s;
  transition: opacity .5s, -webkit-transform .4s;
  transition: opacity .5s, transform .4s;
  transition: opacity .5s, transform .4s, -webkit-transform .4s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp3.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  -webkit-transform: translateY(0);
          transform: translateY(0);
  /* 30px上に移動する */
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  /* フェード開始を0.5秒遅らせる */
}

/*------------------------------------------------------------------------------------
 reset
------------------------------------------------------------------------------------*/
br.clear {
  clear: both;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure,
footer, header, main, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

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

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select ,textarea{
  vertical-align: middle;
  font-size:18px;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
  color: #000000;
  overflow-x:hidden;
}

html {
  height: 100%;
  width: 100%;
  font-size: 100%;
}

body {
  height: 100%;
  background: #fff;
  width: 100%;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.625rem;
}

section {
  position: relative;
}

a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
  color: #000000;
}

a:hover {
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

/*------------------------------------------------------------------------------------
 common
------------------------------------------------------------------------------------*/
br.brsp {
  display: none;
}

img {
  width: 100%;
}

img.sp {
  display: none;
}

img.pc {
  display: inline;
}

@media screen and (max-width: 750px) {
  br.brsp {
    display: block;
  }
  img.sp {
    display: inline;
  }
  img.pc {
    display: none;
  }
  body {
    font-size: 0.875rem;
    line-height: 1.75rem;
  }
}

/*------------------------------------------------------------------------------------
 index
------------------------------------------------------------------------------------*/
section#mv {
  line-height: 0;
}

section.btns {
  background: #3d4596;
  padding: 30px 0;
}

/* 山根 変更 */
section.btns p {
/*  width: 70%; */
  width: 60%;
  margin: 0 auto -20px auto;
}

section.btns p a {
  display: inline-block;
}

/* 山根 変更 */
section.btns p img {
/*  width: 20%; */
  width: 17%;
}

section.btns h2 {
  color: #fff;
  text-align: center;
  padding: 0 0 30px 0;
}

section.btns h2 b {
  padding: 0 5px;
  font-size: 30px;
  color: #d02c2b;
  text-shadow: 3px 3px 0 #fff, -3px -3px 0 #fff, -3px 3px 0 #fff,  3px -3px 0 #fff, 3px 0 0 #fff, -3px  0 0 #fff, 0 3px 0 #fff,  0 -3px 0 #fff;
}

/* 山根 変更 */
section.btns ul {
/*  width: 70%; */
  width: 55%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.btns ul li {
  width: 30%;
}

section.btns ul li img {
  -webkit-transition: .3s;
  transition: .3s;
}

section.btns ul li img:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

/* 山根 追加 */
section.btns div{
  padding-top: 30px;
  font-size: 1.1rem;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}

/* 山根 追加 */
section.btns div a{
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}

/* 山根 変更 */
section#worries {
/*  padding: 60px 0; */
  padding: 100px 0;
  background: #e5e5e5;
  position: relative;
  z-index: 2;
}

section#worries h2 {
  margin: 0 auto 30px auto;
  width: 50%;
}

/* 山根 変更 */
section#worries ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
/*  width: 90%; */
  width: 70%;
  margin: 0 auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

section#worries ul li {
  width: 30%;
}

section#worries p {
  position: absolute;
  bottom: -30px;
  text-align: center;
  width: 100%;
}

/* 山根 変更 */
section#worries p img {
  display: block;
  margin: 0 auto;
/*  width: 20%; */
  width: 15%;
}

/* 山根 変更 */
section#solution {
  position: relative;
  z-index: 1;
  background: #c4d1e2;
/*  padding: 60px 0; */
  padding: 100px 0;
}

/* 山根 変更 */
section#solution h2 {
/*  width: 80%; */
  width: 65%;
  margin: 0 auto;
}

/* 山根 変更 */
section#solution p {
  background: #fff;
  border-radius: 20px;
/*  width: 76%; */
  width: 55%;
/*  margin: 20px auto 0 auto; */
  margin: 30px auto 0 auto;
/*  padding: 10px 2%; */
  padding: 20px 20px;
  font-weight: 500;
}

/* 山根 変更 */
section#reason {
  background: #c4d1e2;
/*  padding: 60px 0; */
  padding: 100px 0;
}

section#reason h2 {
  width: 50%;
  margin: 0 auto 40px auto;
}

/* 山根 変更 */
section#reason #reasons {
/*  width: 80%; */
  width: 65%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 山根 変更 */
section#reason #reasons .reasons {
/*  width: 48%; */
  width: 49%;
  margin: 0 0 20px 0;
  font-size: 20px;
}

section#reason #reasons .reasons dl.head {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #e5e5e5;
  font-weight: bold;
  line-height: 50px;
}

section#reason #reasons .reasons dl.head dt {
  border-top-left-radius: 10px;
  background: #3d4596;
  color: #fff;
  text-align: center;
  width: 10%;
}

section#reason #reasons .reasons dl.head dd {
  width: 88%;
  padding: 0 0 0 2%;
}

section#reason #reasons .reasons dl.foot {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #fff;
}

section#reason #reasons .reasons dl.foot dt {
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
}

section#reason #reasons .reasons dl.foot dd {
  padding: 10px;
}

/* 山根 変更 */
section#faq {
  background: #fff;
/*  padding: 60px 0; */
  padding: 100px 0;
}

section#faq h2 {
  width: 50%;
  margin: 0 auto 40px auto;
}

/* 山根 変更 */
section#faq ul {
/*  width: 80%; */
  width: 65%;
  margin: 0 auto;
}

section#faq ul li dl.q {
  font-size: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 5px 0;
  border-bottom: 2px solid  #3d4596;
  font-weight: bold;
}

section#faq ul li dl.q dt {
  width: 8%;
  text-align: center;
  color: #3d4596;
}

section#faq ul li dl.a {
  padding: 10px 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section#faq ul li dl.a dt {
  color: #d43a3a;
  font-weight: bold;
  padding: 0 20px 50px 0;
}

section#faq ul li dl.a dd {
  font-weight: normal;
  padding: 0 0 50px 0;
}

section#faq p {
  text-align: center;
  font-size: 150%;
}

/* 山根 変更 */
section#form {
  background: #fff;
/*  padding: 60px 0; */
  padding: 100px 0;
}

section#form p#submit {
  text-align: center;
  margin: 40px auto 20px auto;
  width: 30%;
}

section#form p#submit input {
  width: 100%;
}

section#form h2 {
  width: 50%;
  margin: 0 auto 40px auto;
}

section#form h2 img {
  margin-left: -3%;
}

/* 山根 変更 */
section#form .formBox {
  background: #c4d1e2;
/*  width: 80%; */
  width: 65%;
  margin: 0 auto;
}

section#form .formBox h3 {
  background: #3d4596;
  color: #fff;
  padding: 10px;
}

section#form .formBox .formIn {
  padding: 20px 5% 20px 5%;
  background: #c4d1e2;
}

/* 山根 変更 */
section#form .formBox .formIn dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #c4d1e2;
  padding: 20px 0;
/*  font-size: 14px; */
  font-size: 16px;
}

section#form .formBox .formIn dl dt {
  width: 23%;
  padding: 0 0 0 2%;
}

section#form .formBox .formIn dl dt span.must {
  background: #d12b2b;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  text-align: center;
  padding: 0 5px;
}

section#form .formBox .formIn dl dt span.any {
  background: #8f939c;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  text-align: center;
  padding: 0 5px;
}

section#form .formBox .formIn dl dd {
  width: 70%;
}

section#form .formBox .formIn dl dd label {
  width: 25%;
}

section#form .formBox .formIn dl dd input.full {
  background: #e5e5e5;
  width: 90%;
  border: none;
  padding: 1%;
  margin-right: 1%;
}

section#form .formBox .formIn dl dd textarea {
  background: #e5e5e5;
  width: 90%;
  border: none;
  padding: 1%;
}

section#form .formBox .formIn dl dd input.harf {
  background: #e5e5e5;
  width: 40%;
  border: none;
  padding: 1%;
  margin-right: 1%;
}

/* 山根 変更 */
footer {
  background: #e5e5e5;
  text-align: center;
/*  padding: 10px 0; */
  padding: 10px 0 0 0;
  font-weight: normal;
}

/* 山根 変更 */
footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
/* 追記 */
  font-weight: bold;
}

/* 山根 変更 */
footer ul li {
  border-right: 1px solid #000;
/*   padding: 0 10px; */
  padding: 0 15px;
}

footer ul li:nth-child(2) {
  border-right: none;
}

footer p {
  font-size: 90%;
}

/* 山根 変更 */
section#achievements {
  background: #fff;
/*  padding: 60px 0; */
  padding: 100px 0;
}

section#achievements h2 {
  width: 50%;
  margin: 0 auto 40px auto;
}

section#achievements ul {
  width: 100%;
}

section#achievements ul li div {
  padding: 0 5%;
}

/* 山根 変更 */
section#voice {
  background: #c4d1e2;
/*  padding: 60px 0; */
  padding: 100px 0;
}

section#voice h2 {
  width: 50%;
  margin: 0 auto 40px auto;
}

section#voice ul {
  width: 100%;
}

section#voice ul li div {
  padding: 0 1%;
  display: flex;
  flex-direction: row-reverse;
}

section#voice ul li div img.img02{
  width:58%;
  height: auto;
}

section#voice ul li div img.img01{
  width:41%;  
  height: auto;
}


dd.labels{
  display: flex;
  flex-wrap: wrap;
}
dd.labels p{
  width:30%;
}

#toTop{
  position: fixed;
  bottom:5%;
  right:5%;
  z-index:999;
}
#toTop img{
  width:50px;
  cursor: pointer;
}

p#thanksTxt{
  text-align: center;
  padding:100px 0;
  font-size:23px;
  line-height: 30px;
}

@media screen and (max-width: 750px) {
  section.btns {
    padding: 15px 0;
  }
  section.btns h2{
    line-height: 180%;
  }
  section.btns p {
    width: 80%;
  }
  section.btns p img {
    width: 35%;
  }
  section.btns ul {
    width: 75%;
    margin: 0 auto;
    display: block;
  }
  section.btns ul li {
    width: 100%;
  }
  section#worries {
    padding: 30px 0;
  }
  section#worries h2 {
    margin: 25px auto;
    width: 90%;
  }
  section#worries p {
    bottom: -15px;
  }
  section#worries ul {
    width:80%;
    display: block;
    margin:0 auto;
  }
  section#worries ul li {
    width: 100%;
    padding:0 0 20px 0;
  }
  section#worries ul li img{
    width:100%;
  }
  section#solution {
    padding: 30px 0;
  }
  section#solution h2{
    width:90%;
  }
  section#solution p {
    border-radius: 10px;
    margin:20px auto 0 auto;
    width:80%;
    font-size: 1rem;
  }
  section#reason {
    padding: 30px 0;
  }
  section#reason h2 {
    width: 90%;
    margin: 0 auto 20px auto;
  }
  section#reason #reasons {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
  section#reason #reasons .reasons {
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 20px;
  }
  section#reason #reasons .reasons dl.foot dt {
    font-size: 1rem;
  }
  section#faq {
    padding: 30px 0;
  }
  section#faq h2 {
    width: 90%;
    margin: 0 auto 20px auto;
  }
  section#faq ul {
    width: 90%;
  }
  section#faq ul li dl.q {
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  section#faq ul li dl.q dt {
    width: 12%;
  }
  section#faq ul li dl.a {
    padding: 5px 0 0 10px;
    font-size: 1rem;
  }

  section#faq p {
    font-size: 120%;
  }
  section#form {
    padding: 30px 0;
  }
  section#form p#submit {
    margin: 20px auto 10px auto;
    width: 80%;
  }
  section#form h2 {
    width: 90%;
    margin: 0 auto 20px auto;
  }
  section#form .formBox {
    width: 90%;
  }
  section#form .formBox h3{
    padding: 8px 10px;
    font-size:20px;
  }

  section#form .formBox .formIn {
    padding: 10px 5% 10px 5%;
  }
  section#form .formBox .formIn dl {
    display: block;
    font-size:20px;
  }
  section#form .formBox .formIn dl dt {
    width: 98%;
    padding: 0 0 5px 2%;
  }
  section#form .formBox .formIn dl dt span.must {
    font-size: 16px;
    padding: 2px 5px;
  }
  
  section#form .formBox .formIn dl dt span.any {
    font-size: 16px;
    padding: 2px 5px;
  }

  section#form .formBox .formIn dl dd {
    width: 98%;
    padding: 0 0 0 2%;
    font-size: 20px;
    line-height: 20px;
  }
  section#form .formBox .formIn dl dd small{
    font-size:16px;
  }
  section#form .formBox .formIn dl dd label {
    width: 25%;
  }
  section#form .formBox .formIn dl dd input.full {
    background: #e5e5e5;
    width: 90%;
    border: none;
    padding: 1%;
    margin-right: 1%;
  }
  section#form .formBox .formIn dl dd textarea {
    background: #e5e5e5;
    width: 90%;
    border: none;
    padding: 1%;
  }
  section#form .formBox .formIn dl dd input.harf {
    background: #e5e5e5;
    width: 40%;
    border: none;
    padding: 1%;
    margin-right: 1%;
  }
  section#achievements {
    padding: 30px 0;
  }
  section#achievements h2 {
    width: 90%;
    margin: 0 auto 20px auto;
  }
  section#voice {
    padding: 30px 0;
  }
  section#voice h2 {
    width: 90%;
    margin: 0 auto 20px auto;
  }
  section#voice ul {
    width: 100%;
  }
  section#voice ul li div {
    padding: 0 0;
    margin:0 1%;
    display: block;
    background: #fff;
  }
  
  section#voice ul li div img.img02{
    width:100%;
    height: auto;
  }
  
  section#voice ul li div img.img01{
    width:97%;  
    height: auto;
  }

  dd.labels{
    display: flex;
    font-size:14px;
    justify-content: space-between;
    flex-wrap:wrap;
  }

  dd.labels p{
    display: block;
    width:50%;
    font-size:18px;
  }

  #toTop{
    bottom:2.5%;
    right:2.5%;
  }
  #toTop img{
    width:30px;
  }

  p#thanksTxt{
    text-align: center;
    padding: 50px 0;
    font-size: 18px;
    line-height: 27px;
  }
}

/* breadcrumb area style */
#breadcrumb {
  margin: 1em auto 0;
  width: 70%;
  font-size: 16px;
  font-family: 'mplus_medium';
}
#breadcrumb a img {
  width: 20px;
}

@media screen and (max-width: 750px) {
  #breadcrumb {
    width: 90%;
  }
}

/* privacy area style */
#privacy {
  margin: 0 auto;
  width: 70%;
  font-size: 16px;
  line-height: 1.8em;
  font-family: 'mplus_medium';
}
#privacy p {
  margin: 2em auto;
}
#privacy dl div {
  margin-bottom: 2em;
}
#privacy dt {
  font-family: 'mplus_heavy';
  font-weight: bold;
}
#privacy dd {
  margin: 0;
}

@media screen and (max-width: 750px) {
  #privacy {
    width: 90%;
  }
}
/*# sourceMappingURL=styles.css.map */


