@charset "UTF-8";
/*==============================================================================================

    common css

    ※※※※※ブラウザ対応※※※※※
    safari:9以上
    chrome:63以上
    firefox:43以上
    opera:43以上
    edge:12以上
    IE:10以上


    ※※※※※ベンダープレフィックスを付けるプロパティ※※※※※

    -moz-transform
    -webkit-transform
    transform

    -moz-transition
    -webkit-transition
    transition
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    -moz-animation
    -webkit-animation
    animation

    display: -webkit-flex;
    display: flex;
    

==============================================================================================*/

/*==============================================================================================

	body

==============================================================================================*/


@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 400;
  src: url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Regular.woff2) format('woff2'),
    url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Regular.woff) format('woff'),
    url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Regular.otf) format('opentype');
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 700;
  src: url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff2) format('woff2'),
    url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff) format('woff'),
    url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.otf) format('opentype');
}

body {
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 16px;
  font-size: 16rem;
  color: #333;
  line-height: 1.4;
  font-weight: 200;
  position: relative;
  overflow-x: hidden;
  transition: opacity .5s ease;
}

.bold {
  font-style: normal;
  font-weight: 600;
}

a {
  color: #333;
}

.wrap_contain {
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .wrap_contain {
    width: 100%;
    max-width: 400px;
  }
}

.opabtn {
  -moz-transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.opabtn:hover {
  opacity: .6;
}

.pushbtn {
  position: relative;
  border-radius: 5px;
  font-size: 14px;
  letter-spacing: 1px;
}

.pushbtn span {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -2px;
  left: 0;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 5px;
  font-weight: bold;
}

.pushbtn:hover span {
  top: 0px;
}


.spimage {
  display: none;
}

.spbr {
  display: none;
}

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

  .spimage {
    display: block;
  }

  .spbr {
    display: block;
  }
}


/*==============================================================================================

	header

==============================================================================================*/
#header_contents {
  background: #FFF;
  padding: 2px 0;
  box-shadow: 0px 0px 3px 1px #A8A8A8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header_contain {
  width: 100%;
  max-width: 1000px;
  height: 60px;
  padding: 0 20px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.header_logo {
  width: 180px;
}

.header_nav {
  height: 100%;
  display: -webkit-flex;
  display: flex;
}

.header_btn_wrap {
  height: 100%;
  padding: 8px 0 8px 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.consultate_btn {
  margin-right: 5px;
  width: 120px;
  height: 40px;
  background: #00897C;
}

.consultate_btn span {
  background: #50B6A4;
  color: #FFFFFF;
}

.download_btn {
  margin-right: 5px;
  width: 150px;
  height: 40px;
  background: #CB3E13;
}

.download_btn span {
  background: #E97556;
  color: #FFFFFF;
}


@media screen and (max-width: 768px) {
  .header_contain {
    width: 100%;
    height: 40px;
  }

  .header_logo {
    width: 120px;
  }

  .header_btn_wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 60px;
    padding: 10px;
    background: #FFFFFF;
  }

  .consultate_btn,
  .applicate_btn {
    width: 50%;
    max-width: 200px;
  }
}


/*==============================================================================================

	main

==============================================================================================*/
main {
  min-height: calc(100vh - 126px);
  padding-top: 64px;
}

@media screen and (max-width: 768px) {
  main {
    min-height: calc(100vh - 166px);
    padding-top: 44px;
  }
}

/*==============================================================================================

	form

==============================================================================================*/

#form_section {
  padding: 60px 0;
}

.form_contain {
  padding: 30px 20px;
}

.thanks_text {
  text-align: center;
  padding-top: 30px;
}

.form_contain .pushbtn {
  margin: 60px auto 0;
  width: 100%;
  max-width: 320px;
  height: 60px;
  background: #00897C;
  font-size: 20px;
  letter-spacing: 2px;
}

.form_contain .pushbtn span {
  background: #50B6A4;
  color: #FFFFFF;
}

/*==============================================================================================

	footer

==============================================================================================*/
#footer_contents {
  letter-spacing: 2px;
  padding: 20px 0;
  text-align: center;
  background: #C1E2DC;
}

@media screen and (max-width: 768px) {
  #footer_contents {
    padding-bottom: 80px;
  }
}
