@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  font-family: "Zen Maru Gothic", serif;
  color: #20378C;
  font-weight: 500;
}

.wrap {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

/*デバイスごとの表示切り替え*/
@media (max-width: 1199px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (max-width: 767px) {
  .pctab-only {
    display: none;
  }
}

.tab-below {
  display: none;
}
@media (max-width: 1199px) {
  .tab-below {
    display: block;
  }
}

@media (min-width: 1200px) {
  .tab-only {
    display: none;
  }
}
@media (max-width: 1199px) {
  .tab-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

/* 文字色 */
.p__orange {
  color: #CA821C;
}

.title__orange {
  color: #CA821C;
}

/* 共通インナー幅 */
.inner-width {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner-width {
    width: 95%;
  }
}

/* セクションタイトル */
.section-title {
  font-size: 40px;
  text-align: center;
}
@media (max-width: 1199px) {
  .section-title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 26px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background-color: #ffffff;
}

.header__wrap {
  max-width: 1440px;
  width: 98%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}

.header__logo {
  width: 200px;
}
@media (max-width: 1199px) {
  .header__logo {
    width: 160px;
  }
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__nav ul li a {
  font-size: 16px;
  font-weight: bold;
  padding: 20px;
  position: relative;
}
.header__nav ul li a::after {
  position: absolute;
  content: "/";
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#drawer-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 450px;
  height: 100vh;
  background: #20378C;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 767px) {
  #drawer-nav {
    width: 100%;
  }
}

#drawer-nav.panelactive {
  right: 0;
}

.drawer-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#drawer-nav ul {
  position: absolute;
  z-index: 999;
  top: 25%;
  left: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#drawer-nav li {
  list-style: none;
}
#drawer-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  white-space: nowrap;
}
#drawer-nav .drawer-under {
  margin-left: 40px;
}

/*========= ボタンのためのCSS ===============*/
.hamburger {
  position: fixed;
  z-index: 9999;
  top: 5px;
  right: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
@media (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}
@media (max-width: 1199px) {
  .hamburger {
    display: none;
  }
}
@media (max-width: 767px) {
  .hamburger {
    display: block;
    top: 5px;
    right: 20px;
  }
}

.hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #20378C;
  width: 45%;
}

.hamburger span:nth-of-type(1) {
  top: 20px;
}

.hamburger span:nth-of-type(2) {
  top: 30px;
}

.hamburger span:nth-of-type(3) {
  top: 40px;
}

.hamburger.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 45%;
  background-color: #fff;
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 45%;
  background-color: #fff;
}

.footer {
  background-color: #20378C;
  color: #ffffff;
  padding: 40px 0;
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1440px;
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer__wrap {
    display: block;
    max-width: 285px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer__left {
    display: block;
  }
}

.footer__logo {
  width: 150px;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 100px;
    margin: 0 auto;
  }
}

.footer__info strong {
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}
.footer__info strong span {
  font-size: 14px;
}

.address {
  display: block;
}

@media (max-width: 767px) {
  .footer__right {
    margin-top: 15px;
  }
}

.footer__tel {
  display: block;
  font-size: 40px;
  font-weight: bold;
  font-family: "Nunito", sans-serif;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .footer__tel {
    font-size: 32px;
  }
}

.fv {
  padding-top: 150px;
  padding-bottom: 50px;
}
@media (max-width: 1199px) {
  .fv {
    padding-top: 100px;
  }
}

/*どこが変わるの?セクション*/
.faq {
  position: relative;
  background-color: #C2E0F7;
  z-index: 1;
}
@media (max-width: 767px) {
  .faq {
    padding-bottom: 40px;
  }
}
.faq::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background: url(../img/faq_bg.png) no-repeat center/100vw 100%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .faq::after {
    display: none;
  }
}

.btn-blue {
  position: absolute;
  content: "";
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.btn-blue a {
  display: block;
  background-color: #20378C;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 15px 60px;
  border-radius: 50px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .btn-blue a {
    font-size: 16px;
    padding: 15px 20px;
  }
}

.faq__title {
  color: #CA821C;
  font-size: 52px;
  text-align: center;
  display: block;
  padding: 60px 0 40px 0;
}
@media (max-width: 1199px) {
  .faq__title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .faq__title {
    font-size: 36px;
  }
}

.faq__lead {
  text-align: center;
  line-height: 35px;
}
@media (max-width: 767px) {
  .faq__lead {
    text-align: left;
  }
}

.faq__boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .faq__boxs {
    display: block;
  }
}

.faq-box {
  background: url(../img/faq-box-bg.png) no-repeat center/cover;
  width: 473px;
  height: 250px;
  position: relative;
}
@media (max-width: 767px) {
  .faq-box {
    max-width: 350px;
    width: 98%;
    height: 250px;
    margin: 0 auto;
  }
  .faq-box:not(:last-child) {
    margin-bottom: 20px;
  }
}

.faq-box__content {
  position: absolute;
  content: "";
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
.faq-box__content span {
  display: block;
  color: #CA821C;
  background-color: #ffffff;
  width: 50px;
  height: 60px;
  margin: 0 auto;
  text-align: center;
  border-radius: 50px 50px 0 0;
  font-size: 26px;
  padding-top: 10px;
}
.faq-box__content p {
  margin-top: 15px;
  color: #fff;
  font-size: 22px;
  text-align: center;
}
@media (max-width: 1199px) {
  .faq-box__content p {
    font-size: 18px;
  }
}

.faq__boxs-attention {
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .faq__boxs-attention {
    text-align: left;
    padding: 0 15px;
  }
}

/*アンサーの説明セクション*/
.explanation1 {
  padding: 180px 0;
  padding-bottom: 0;
}

.explanation__title {
  padding: 15px 0;
  border-top: 5px solid #20378C;
  border-bottom: 5px solid #20378C;
  position: relative;
}

.explanation1__title::before {
  position: absolute;
  content: "";
  width: 250px;
  height: 155px;
  top: -136px;
  left: 50%;
  -webkit-transform: translateX(-80%);
          transform: translateX(-80%);
  background: url(../img/explanation-title_img1.png) no-repeat center/cover;
}
@media (max-width: 767px) {
  .explanation1__title::before {
    width: 205px;
    height: 125px;
    top: -112px;
  }
}

.explanation__lead {
  margin-top: 50px;
  text-align: center;
}

.explanation__img {
  margin: 40px 0;
}

.explanation__namely p {
  text-align: center;
  font-size: 20px;
}
.explanation__namely img {
  display: block;
  width: 80px;
  margin: 0 auto;
  margin-top: 20px;
}

.explanation__img2-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media (max-width: 1199px) {
  .explanation__img2-wrap {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .explanation__img2-wrap {
    display: block;
  }
}

.explanation2 {
  padding: 150px 0;
  padding-bottom: 0;
}

.explanation2__title::before {
  position: absolute;
  content: "";
  width: 250px;
  height: 180px;
  top: -165px;
  left: 50%;
  -webkit-transform: translateX(-15%);
          transform: translateX(-15%);
  background: url(../img/explanation-title-img2.png) no-repeat center/cover;
}
@media (max-width: 767px) {
  .explanation2__title::before {
    width: 180px;
    height: 125px;
    top: -118px;
  }
}

.explanation2__text {
  text-align: center;
  font-size: 14px;
  line-height: 35px;
}
@media (max-width: 767px) {
  .explanation2__text {
    text-align: left;
  }
}

/* 特例措置が適用されていた場合の選択肢は？セクション */
.choises {
  padding: 80px 0;
}

@media (max-width: 767px) {
  .choices__title {
    text-align: left;
    font-size: 25px;
  }
}

.choices__text {
  text-align: center;
  line-height: 35px;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .choices__text {
    text-align: left;
  }
}

.choices__flow ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  height: 260px;
}
@media (max-width: 1199px) {
  .choices__flow ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 720px;
    width: 98%;
    margin: 0 auto;
    gap: 40px 0;
  }
}
@media (max-width: 767px) {
  .choices__flow ol {
    gap: 20px 10px;
    max-width: 500px;
    width: 95%;
  }
}

.choices__flow-circle {
  background-color: #C2E0F7;
  width: calc(25% - 30px);
  height: 100%;
  border-radius: 50%;
  text-align: center;
  padding: 15px 25px;
}
@media (max-width: 1199px) {
  .choices__flow-circle {
    width: 80%;
    height: 260px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .choices__flow-circle {
    max-width: 190px;
    width: 100%;
    height: 190px;
  }
}
.choices__flow-circle span {
  font-size: 60px;
  font-family: "Nunito", sans-serif;
  border-bottom: 1px solid #20378C;
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .choices__flow-circle span {
    font-size: 40px;
  }
}
.choices__flow-circle p {
  font-size: 28px;
  font-weight: bold;
  padding-top: 15px;
  line-height: 35px;
}
@media (max-width: 767px) {
  .choices__flow-circle p {
    font-size: 22px;
    padding-top: 8px;
  }
}

/*本来の業務に集中することができます！セクション*/
.feature__title {
  background-color: #CA821C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .feature__title {
    padding: 30px 0;
  }
}

.feature__title-img {
  width: 300px;
}
@media (max-width: 1199px) {
  .feature__title-img {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .feature__title-img {
    display: none;
  }
}

.feature__title-text {
  color: #ffffff;
  font-size: 50px;
  line-height: 1.4;
  margin-top: -50px;
}
@media (max-width: 1199px) {
  .feature__title-text {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .feature__title-text {
    margin-top: 0;
    font-size: 32px;
  }
}

.font-small {
  font-size: 28px;
  font-weight: 400;
  display: block;
}
@media (max-width: 1199px) {
  .font-small {
    font-size: 16px;
  }
}

.title__blue {
  color: #20378C;
}

.feature__content {
  background-color: #C2E0F7;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .feature__content {
    padding: 40px 0;
  }
}

.feature__support {
  margin-bottom: 150px;
  font-size: 40px;
  text-align: center;
  line-height: 1.8;
  position: relative;
}
@media (max-width: 1199px) {
  .feature__support {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .feature__support {
    font-size: 22px;
    margin-bottom: 80px;
  }
}
.feature__support::after {
  position: absolute;
  content: "";
  bottom: -110px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 700px;
  height: 200px;
  background: url(../img/fukidashi.png) no-repeat center/contain;
}
@media (max-width: 767px) {
  .feature__support::after {
    width: 340px;
  }
}

.feature-cards {
  max-width: 1100px;
  width: 98%;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .feature-cards {
    max-width: 850px;
  }
}
@media (max-width: 767px) {
  .feature-cards {
    width: 95%;
  }
}

.feature__card {
  background: #ffffff;
  padding: 80px 40px;
  margin-bottom: 40px;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 1199px) {
  .feature__card {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .feature__card {
    padding: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    min-height: 400px;
  }
}
.feature__card::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 395px;
  height: 340px;
}
@media (max-width: 1199px) {
  .feature__card::after {
    width: clamp(240px, 1vw, 395px);
    height: clamp(215px, 1vw, 340px);
  }
}
@media (max-width: 767px) {
  .feature__card::after {
    width: clamp(200px, 1vw, 395px);
    height: clamp(180px, 1vw, 340px);
  }
}

.feature__card1::after {
  right: 40px;
  background: url(../img/feature-img1.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .feature__card1::after {
    right: 20px;
  }
}

.feature__card2 .feature-card__text {
  position: absolute;
  right: 40px;
}
@media (max-width: 767px) {
  .feature__card2 .feature-card__text {
    position: static;
    right: 0;
  }
}
.feature__card2::after {
  left: 40px;
  background: url(../img/feature-img2.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .feature__card2::after {
    left: 20px;
  }
}

.feature__card3::after {
  right: 40px;
  background: url(../img/feature-img3.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .feature__card3::after {
    right: 20px;
  }
}

.feature-card__text {
  width: 600px;
}
@media (max-width: 1199px) {
  .feature-card__text {
    width: clamp(420px, 1vw, 600px);
  }
}
@media (max-width: 767px) {
  .feature-card__text {
    width: 100%;
  }
}
.feature-card__text h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 28px;
}
.feature-card__text h4 span {
  color: #CA821C;
  border: 4px solid #20378C;
  border-radius: 50%;
  padding: 0 15px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .feature-card__text h4 span {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .feature-card__text h4 {
    font-size: 20px;
  }
}
.feature-card__text p {
  font-weight: bold;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .feature-card__text p {
    margin-top: 0;
  }
}

.feature__message-arrow {
  display: block;
  width: 80px;
  margin: 0 auto;
  margin-top: 20px;
}

.feature__message {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .feature__message {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .feature__message {
    max-width: 360px;
    width: 92%;
  }
}
.feature__message strong {
  display: inline-block;
  color: #fff;
  background-color: #20378C;
  padding: 8px;
  font-size: 40px;
  margin-bottom: 10px;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .feature__message strong {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .feature__message strong {
    font-size: 28px;
    display: block;
    margin-bottom: -1px;
    padding: 0 10px;
  }
}

.contact {
  padding: 80px 0;
}

.contact__lead {
  margin-top: 40px;
  text-align: center;
}

.form {
  max-width: 1000px;
  width: calc(100% - 30px);
  margin: 0 auto;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .form {
    max-width: 750px;
  }
}
@media (max-width: 767px) {
  .form {
    max-width: 400px;
  }
}

.formTable {
  width: 100%;
}
.formTable tr {
  height: 70px;
  vertical-align: baseline;
}
@media (max-width: 767px) {
  .formTable th, .formTable td {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .formTable th {
    margin-bottom: 10px;
  }
}
.input-th {
  width: 168px;
  text-align: left;
  padding-right: 72px;
  white-space: nowrap;
  color: #20378C;
}
@media (max-width: 1199px) {
  .input-th {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .input-th:first-of-type {
    padding-top: 0;
  }
}
.input-th span {
  background: #CA821C;
  color: #fff;
  border-radius: 30px;
  font-size: 11px;
  padding: 5px 10px;
  margin-left: 8px;
}

input[type=radio] {
  display: none; /* 標準スタイル */
}

.radio-btn {
  position: relative; /* ボックスの位置を指定する */
  padding: 0 0 0 32px; /* ボックス内側の余白を指定する */
  color: #20378C;
}

.radio-btn:after, .radio-btn:before {
  position: absolute; /* ボックスの位置を指定する */
  content: ""; /* ボックスのコンテンツ */
  display: block; /* ブロックレベル要素化する */
  top: 50%; /* 上部から配置の基準位置を決める */
}

.radio-btn:after {
  left: 0; /* 左から配置の基準位置を決める */
  margin-top: -10px; /* チェック枠の位置 */
  width: 16px; /* ボックスの横幅を指定する */
  height: 16px; /* ボックスの高さを指定する */
  border: 1px solid #20378C; /* ボックスの境界線を実線で指定する */
  border-radius: 50%; /* ボックスの角丸を指定する */
}

.radio-btn:before {
  left: 4px; /* 左から配置の基準位置を決める */
  margin-top: -6px; /* チェックマークの位置 */
  width: 8px; /* ボックスの横幅を指定する */
  height: 8px; /* ボックスの高さを指定する */
  background: #20378C; /* ボックスの背景色を指定する */
  border-radius: 50%; /* ボックスの角丸を指定する */
  opacity: 0; /* 要素を透過指定する */
}

input[type=radio]:checked + .radio-btn:before {
  opacity: 1; /* 要素を表示する */
}

.radio-btn:hover:after {
  border-color: #0171bd; /* ボックスの境界線を実線で指定する */
}

.custom-tr {
  vertical-align: baseline;
}
@media (max-width: 767px) {
  .custom-tr td {
    margin-bottom: 20px;
  }
}

.custom-name {
  vertical-align: baseline;
}

.name-td {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 1199px) {
  .name-td {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .name-td {
    margin-top: 0;
  }
}

.input-name {
  width: 100%;
}
.input-name input {
  width: 100%;
}

.textarea-th {
  vertical-align: top;
}

.input-text {
  width: 100%;
  padding: 16px 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #20378C;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  margin-bottom: 25px;
}
.input-text:focus {
  outline: 2px solid #20378C;
}
@media (max-width: 1199px) {
  .input-text {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .input-text {
    font-size: 14px;
  }
}
.input-text ::-webkit-input-placeholder {
  color: #949494;
  line-height: 2;
}
.input-text ::-moz-placeholder {
  color: #949494;
  line-height: 2;
}
.input-text :-ms-input-placeholder {
  color: #949494;
  line-height: 2;
}
.input-text ::-ms-input-placeholder {
  color: #949494;
  line-height: 2;
}
.input-text ::placeholder {
  color: #949494;
  line-height: 2;
}

.input-textarea {
  width: 100%;
  height: 224px;
  padding: 16px 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #20378C;
  background-color: #fff;
  resize: none;
  font-size: 16px;
}
.input-textarea:focus {
  outline: 2px solid #20378C;
}
@media (max-width: 1199px) {
  .input-textarea {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .input-textarea {
    font-size: 14px;
  }
}

.check-btn {
  width: 280px;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .check-btn {
    width: 100%;
  }
}

.submit {
  cursor: pointer;
  border: none;
  text-align: center;
  background-color: #CA821C;
  color: #fff;
  padding: 15px 90px;
  border-radius: 50px;
  font-size: 20px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.submit:hover {
  opacity: 0.7;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.contact-check {
  padding-top: 200px;
}

.contact-check__bg {
  padding-top: 60px;
}
@media (max-width: 767px) {
  .contact-check__bg {
    padding-top: 30px;
    margin-top: 40px;
  }
}

.contact-check__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.check-text {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}

.check-textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  resize: none;
}

.return {
  background-color: #949494;
  border: none;
  padding: 14px 75px;
}
@media (max-width: 767px) {
  .return {
    margin-top: 20px;
  }
}

.top-btn {
  width: 180px;
  margin: 0 auto;
  margin-top: 40px;
  display: block;
  text-align: center;
}
.top-btn a {
  text-align: center;
}

.error_messe {
  margin: 5px 0;
  color: red;
}

.check__err {
  color: red;
  padding-top: 150px;
}

.form__err {
  padding-bottom: 80px;
}
.form__err tr {
  margin-bottom: 25px;
}
.form__err .input-text {
  margin-bottom: 0;
}

.formTable__check {
  margin-top: 40px;
}
.formTable__check tr {
  height: 75px;
}
@media (max-width: 767px) {
  .formTable__check tr {
    height: 100px;
  }
}
@media (max-width: 767px) {
  .formTable__check th, .formTable__check td {
    display: block;
    width: 100%;
  }
}
.formTable__check th {
  padding-right: 60px;
}
.formTable__check .textarea-th {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .formTable__check .textarea-th {
    padding-top: 0;
  }
}
.formTable__check td {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .formTable__check td {
    padding-top: 0;
  }
}

.center {
  max-width: 1100px;
  margin: 0 auto;
}

.return-btn {
  text-align: center;
}

.form-check {
  padding-bottom: 100px;
}

.ok-text {
  text-align: center;
  padding-top: 150px;
}

.formTable__OK {
  margin-top: 50px;
  margin-bottom: 20px;
}
.formTable__OK tr {
  height: 40px;
}
@media (max-width: 767px) {
  .formTable__OK tr {
    height: 100px;
  }
}
@media (max-width: 767px) {
  .formTable__OK th, .formTable__OK td {
    display: block;
    width: 100%;
  }
}
.formTable__OK th {
  text-align: left;
}
.formTable__OK td {
  padding-left: 40px;
}
@media (max-width: 767px) {
  .formTable__OK td {
    padding-left: 0;
  }
}
.formTable__OK td .input-text, .formTable__OK td .input-textarea {
  background-color: #fff;
}

/*送信完了*/
.thanks {
  max-width: 1100px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding-top: 100px;
  text-align: center;
}

.thanks__message {
  font-size: 28px;
}
@media (max-width: 767px) {
  .thanks__message {
    font-size: 24px;
  }
}

.thanks__text {
  margin-top: 20px;
}

.btn {
  margin-top: 40px;
}

/*サンクスページ*/
.thanks {
  padding: 150px 0;
}

.section-title {
  margin-top: 80px;
}

.thanks-text {
  margin: 80px 0;
}

.btn a {
  background-color: #20378C;
  color: #ffffff;
  padding: 20px 60px;
  border-radius: 50px;
  border: 2px solid #20378C;
}
@media (min-width: 1200px) {
  .btn a {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .btn a:hover {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    background-color: #fff;
    border: 2px solid #20378C;
    color: #20378C;
  }
}