* {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

html,
body {
  background: #F7FBFC;
}

body {
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #0A4A65;
}

/* .only-pc */
.only-pc {
  display: none;
}

/* .header */
.header {
  border-bottom: 1px solid #E9E9E9;
  background: #fff;
}
.header__inner {
  padding: 15px;
  font-size: 10px;
  line-height: 10px;
}

/* .wrapper */
.wrapper {
  padding: 40px 20px 20px;
}

/* .intro */
.intro {
  margin-bottom: 40px;
}
.intro__thanksIllust {
  margin-bottom: 30px;
  text-align: center;
}
.intro__thanksIllustImage {
  transform: translateX(-15px);
}
.intro__title {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}
.intro__present {
  margin: 30px 0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.intro__wishesWrap {
  display: none;
}
.intro__contact {
  border-radius: 5px;
  border: 1px solid #C1CDD0;
  margin: 30px 0 20px;
  padding: 25px;
  text-align: center;
}
.intro__contactCompany {
  margin: 20px 0;
  font-weight: 700;
}
.intro__offices {
  margin-bottom: 5px;
}
.intro__office {
  margin: 3px 0;
}
.intro__office::before {
  content: url(../img/icon-tel.svg);
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: bottom;
}
.intro__officeName {
  margin: 0 5px;
  font-size: 18px;
}
.intro__officeNumber {
  font-size: 22px;
  font-weight: 700;
}
.intro__officeNumber a {
  text-decoration: underline;
  color: inherit;
}
.intro__time {
  margin-top: 20px;
  font-size: 15px;
}
/* .entry */
.entry {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 15px rgba(123, 160, 167, 0.4);
  padding: 25px 20px;
  color: #505050;
}
.entry .field:not(:last-child) {
  margin-bottom: 20px;
}
.entry .field.is-grouped {
  margin-bottom: 0;
  gap: 20px;
}
.entry .field.is-grouped .field {
  width: 50%;
}
.entry .field.is-agree {
  margin: 20px 0;
  text-align: center;
}
.entry .field.is-agree .require {
  margin-left: 0;
  margin-right: 5px;
  transform: translateY(-3px);
}
.entry .field.is-submit {
  text-align: center;
}
.entry .field.is-submit .button {
  border: none;
  background: #FF9C44;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: box-shadow 0.2s ease;
}
.entry .field.is-submit .button:hover {
  box-shadow: 0 5px 5px rgba(0, 16, 14, 0.16);
}
.entry input[type=checkbox] {
  all: revert;
}
.entry .select {
  width: 100%;
  height: 3em;
}
.entry .select select {
  width: 100%;
  padding: 10px 2.5em 10px 20px;
  height: 3em;
}
.entry .input {
  padding: 10px 20px;
  height: 3em;
}
.entry .textarea {
  padding: 10px 20px;
}
.entry .control.is-error input,
.entry .select.is-error select,
.entry .textarea.is-error textarea{
  border: 1px solid #f00;
}
.entry .any,
.entry .require {
  display: inline-block;
  border-radius: 3px;
  border: 1px solid #6B8389;
  margin-left: 10px;
  padding: 2px 5px 4px;
  color: #6B8389;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  transform: translateY(-1px);
}
.entry .require {
  border-color: #FF564E;
  color: #FF564E;
}
.entry .help {
  margin-top: 10px;
}
.entry .help.is-error {
  color: #f00;
  font-weight: bold;
}
.entry .help + .help.is-error {
  margin-top: 5px;
}
.entry__privacy {
  border: 1px dashed #ccc;
  overflow: scroll;
  height: 170px;
  padding: 10px;
  font-size: 13px;
  line-height: 20px;
}
.entry__privacyTitle {
  margin-bottom: 15px;
  font-size: 15px;
}
.entry__privacyTitle:not(:first-child) {
  margin-top: 30px;
}
.entry__privacy a {
  text-decoration: underline;
}
.entry__marks {
  padding: 30px 0;
  text-align: center;
}
.entry__mark {
  display: inline;
  margin: 0 3px;
}

/* .footer */
.footer {
  padding: 20px;
}
.footer__copyright {
  text-align: center;
  font-size: 12px;
}

/* =============================================
for PC
============================================= */
@media screen and (min-width: 600px) {
  /* .only-pc */
  .only-pc {
    display: unset;
  }
  /* .only-sp */
  .only-sp {
    display: none;
  }
  /* .header */
  .header__inner {
    width: 1300px;
    margin: 0 auto;
    padding: 20px 0;
  }
  .header img {
    width: auto;
    height: 28px;
  }
  /* .wrapper */
  .wrapper {
    display: flex;
    justify-content: space-between;
    width: 1080px;
    margin: 0 auto;
    padding: 50px 0 0;
  }
  #inquiry_thanks .wrapper {
    display: block;
    padding-top: 30px;
  }
  /* .intro */
  .intro {
    width: 480px;
  }
  #inquiry_thanks .intro {
    width: auto;
    text-align: center;
  }
  .intro__thanksIllust {
    margin-bottom: 20px;
  }
  .intro__thanksIllustImage {
    width: auto;
    height: 180px;
  }
  .intro__title {
    font-size: 30px;
  }
  .intro__present {
    margin: 30px 0 20px;
    font-size: 16px;
  }
  .intro__wishesWrap {
    display: block;
    background: url(../img/operator.svg) no-repeat right/230px;
    margin: 20px 0;
  }
  .intro__wishes {
    margin-bottom: 10px;
  }
  .intro__wish::before {
    display: inline-block;
    content: url(../img/icon-check.svg);
    margin-right: 7px;
    vertical-align: middle;
  }
  .intro__contact {
    padding: 20px;
  }
  #inquiry_thanks .intro__contact {
    width: 480px;
    margin-right: auto;
    margin-left: auto;
  }
  .intro__contactCompany {
    margin: 20px 0 5px;
    font-size: 15px;
  }
  .intro__offices {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  .intro__office {
    margin: 0;
  }
  .intro__office::before {
    transform: scale(0.7);
  }
  .intro__officeName {
    margin: 0 0 0 -2px;
    font-size: 15px;
  }
  .intro__officeNumber {
    font-size: 19px;
  }
  .intro__officeNumber a {
    color: unset;
    pointer-events: none;
    text-decoration: none;
    cursor: none;
  }
  .intro__time {
    margin: 10px 0 0;
  }
  /* .entry */
  .entry {
    width: 530px;
  }
  .entry__marks {
    padding: 20px 0;
  }
  /* .footer */
  .footer {
    padding: 50px 0 30px;
  }
}/*# sourceMappingURL=style.css.map */