@charset "utf-8";
/* 共通CSS */

/* 全ページ共通 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  box-sizing: border-box;
  /* line-height: 2em; */
  /* color: #1B1B1B; */
}
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}
@media all and (max-width:750px) {
  body {font-size: 14px;}
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
}

/* flex共通 */
.flex_pc {
  display:-webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex_jsb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex_jc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex_ac {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex_rve {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media all and (max-width:750px) {
  .flex_pc {
    display: block;
  }
}

header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.header__logo {
  width: 50%;
  max-width: 144px;
  margin-left: 1em;
}
#nav__hum-check {
  display: none;
}
.nav__menu {
  width: 590px;
}
.nav__menu a {
  display: inline-block;
  padding: 0.1em 0;
  position: relative;
}
.nav__menu a:hover::after,
.nav__menu a:focus::after {
  position: absolute;
  content: "";
  width: 100%;
  border-bottom: 3px solid #0075C1;
  left: 0;
  right: 0;
  bottom: 0;
}
.nav__menu--contact a {
  background: #0075C1;
  padding: 1.2em 1.25em;
}
.nav__menu--contact a:hover,
.nav__menu--contact a:focus {
  opacity: 0.7;
}
.nav__menu--contact a:hover::after,
.nav__menu--contact a:focus::after {
  border-bottom: none;
}
.nav__menu--contact img {
  width: 30px;
}

#main {
  position: relative;
  padding-top: 70px;
  /* padding-bottom: 0.em; */
}
.inner {
  width: 100%;
  max-width: 1158px;
  padding: 0 1em;
  margin: 0 auto;
}

.breadcrumbs {
  padding: 0.75em 1em;
}
.breadcrumbs li {
  display: inline-block;
  position: relative;
  padding-right: 1.5em;
}
.breadcrumbs li::after {
  position: absolute;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #1B1B1B;
  border-right: 1px solid #1B1B1B;
  top: 50%;
  right: 0.5em;
  transform: translate(0, -50%) rotate(45deg);
}
.breadcrumbs li:last-child:after {
  border: none;
}

.nav__menu {
  font-weight: bold;
}

.page-title {
  text-align: center;
  padding: 3.5em 1em;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 40px;
}
.page-title h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 3.75em;
  color: #fff;
  line-height: 1.25em;
}
.page-title span {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  padding: 0 0.5em;
  position: relative;
}
.page-title span::before,
.page-title span::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 1em;
  background-color: #fff;
  top: 50%;
  transform: translate(0, -50%);
}
.page-title span::before {
  left: 0;
}
.page-title span::after {
  right: 0;
}
.page-title--contact {
  background-image: url(../../../img/contact/contact-title.png);
}

.form__explain {
  font-size: 1.6rem;
  line-height: 3.2rem;
  font-weight: bold;
  text-align: center;
  margin: 40px auto 85px;
}
.form__explain span {
  display: inline-block;
}
.form__explain a {
  text-decoration: underline;
  color: #0075C1;
}
.form__table {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
  border-collapse: collapse;
  border-top: 1px solid #707070;
}
.form__table tr {
  border-bottom: 1px solid #707070;
}
.form__table th,
.form__table td {
  padding: 1em;
  vertical-align: top;
}
.form__table th {
  padding: 1.75em 1em;
}
.form__table td {
  padding-right: 0;
}
.form__table th {
  background: #F5F5F5;
  font-weight: bold;
  width: 260px;
  position: relative;
}
.form__required {
  display: inline-block;
  padding: 0.25em;
  background: #E20216;
  color: #fff;
  line-height: 1em;
  position: absolute;
  top: 2em;
  right: 1em;
}
.form__table input,
.form__table textarea,
.form__table .input-comfirm,
.form__table .textarea-comfirm {
  display: block;
  border: none;
  background: #F5F5F5;
  border-radius: 8px;
  padding: 0.8em;
  width: 100%;
  font-size: 1em;
  min-height: 60px;
}
.form__table textarea,
.form__table .textarea-comfirm {
  height: 15em;
  vertical-align: bottom;
  resize: none;
  outline: none;
}
.form__table .input-comfirm,
.form__table .textarea-comfirm {
  font-weight: bold;
}
.form__table .textarea-comfirm {
  white-space: pre-wrap;
  word-break: break-all;
  height: auto;
  max-width: 710px;
}

.form__submit {
  padding-top: 6em;
  text-align: center;
}
.form__back {
  padding: 1em 0 2em;
  text-align: center;
}
.form__submit .form__submit-confirm,
.form__submit .form__submit-send,
.form__submit .form__submit-back,
.form__back .form__back-link {
  display: inline-block;
  font-weight: bold;
  font-size: 1em;
  line-height: 1em;
  padding: 1.25em;
  width: 300px;
  border: 1px solid #707070;
  border-radius: 2em;
  background: #fff;
  cursor: pointer;
}
.form__submit .form__submit-send {
  background: #0075C1;
  color: #fff;
  margin-left: 3em;
}
.form__submit .form__submit-back {
  background: #9A9A9A;
  color: #fff;
}
.form__submit button:hover,
.form__submit button:focus,
.form__back a:hover,
.form__back a:focus {
  opacity: 0.7;
}

.top-button {
  position: fixed;
  right: 2.5em;
  bottom: 1.5em;
  display: none;
  z-index: 99;
}
.top-button a {
  display: inline-block;
  padding-top: 0.5em;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #3EA1E2;
  position: relative;
}
.top-button a::before {
  position: absolute;
  content: "";
  width: 0.9em;
  height: 0.9em;
  border-top: 4px solid #3EA1E2;
  border-left: 4px solid #3EA1E2;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.footer__address {
  background-color: #1B1B1B;
  padding: 1em 0;
}
.footer__logo {
  width: 200px;
  padding: 0.5em 0;
  margin-right: 1.5em;
}
.footer__address address {
  vertical-align: middle;
  display: inline-block;
  font-size: 0.875em;
  font-style: normal;
  color: #fff;
  line-height: 1.5em;
  text-indent: -3em;
  margin-left: 3em;
  padding: 0.5em 0;
}

.footer__menu {
  padding: 0.5em 0;
  text-align: right;
}
.footer__menu li {
  display: inline-block;
  padding-left: 2em;
}
.footer__menu a,
small {
  font-size: 0.85em;
  color: #585858;
}

@media all and (max-width:900px) {
  .nav__menu {
    width: 540px;
  }
}

@media all and (max-width:750px) {
  header {
    padding: 0.75em 1em;
  }
  .header__logo {
    margin-left: 0;
  }
  .nav__hum {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    transition: all .4s;
    pointer-events: all;
    display: inline-block;
    z-index: 99;
  }
  .nav__hum span {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #1B1B1B;
    border-radius: 3px;
    position: absolute;
    transition: all .3s;
  }
  .nav__hum span:nth-of-type(1) {
    top: 9px;
  }
  .nav__hum span:nth-of-type(2) {
    top: 19px;
  }
  .nav__hum span:nth-of-type(3) {
    top: 29px;
  }
  .nav__menu {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 59px;
    padding: 2em;
    background: #fff;
    width: 100%;
    height: 100vh;
    pointer-events: all;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
  }
  #nav__hum-check:checked ~ .nav__hum span:nth-of-type(1) {
    transform: rotate(315deg);
    top: 18px;
  }
  #nav__hum-check:checked ~ .nav__hum span:nth-of-type(2) {
    opacity: 0;
  }
  #nav__hum-check:checked ~ .nav__hum span:nth-of-type(3) {
    transform: rotate(-315deg);
    top: 18px;
  }
  #nav__hum-check:checked ~ .nav__menu {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transition: all .4s;
  }
  .nav__menu a {
    display: block;
    padding: 1em;
    border-top: 2px solid #0075C1;
  }
  .nav__menu li:first-child a {
    border-top: none;
  }
  .nav__menu--contact a {
    text-align: center;
    border-radius: 2em;
    margin-top: 1.5em;
    padding: 0.75em;
  }

  #main {
    padding-top: 60px;
  }

  .br-sp {
    display: none;
  }

  .form__table th,
  .form__table td {
    display: block;
    width: 100%;
    padding: 1em;
  }
  .form__table th {
    border-bottom: 1px solid #707070;
  }
  .form__required {
    position: relative;
    top: auto;
    right: auto;
    margin-left: 1em;
  }
  .form__submit .form__submit-send {
    display: block;
    margin: 0 auto 1em;
  }

  .top-button {
    right: 1em;
    bottom: 0.5em;
  }

  .form__explain {
    font-size: 1.6rem;
    line-height: 3.2rem;
    font-weight: bold;
    text-align: center;
    margin: 40px auto 85px;
  }
}

.is-error {
  display: none;
}

.contact-lead {
  font-size: 2rem;
  font-weight: bold;
  line-height: 3rem;
  text-align: center;
  margin-bottom: 55px;
}

.form__submit {
  margin-bottom: 74px;
}
