@charset "UTF-8";
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #001346;
  z-index: 9999;
  animation: slide-cover 1.2s ease forwards;
}

@keyframes slide-cover {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.l-heaer {
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  background-color: #fff;
  z-index: 999;
}
.l-heaer.is-home {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease;
}
@media screen and (max-width: 768px) {
  .l-heaer {
    height: 60px;
  }
}
.l-heaer .p-sitelogo {
  width: 260px;
  margin: 5px 0 16px 3.8%;
}
@media screen and (max-width: 768px) {
  .l-heaer .p-sitelogo {
    width: 170px;
  }
}
.l-heaer .btn--cta a,
.l-heaer .btn--menu {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .l-heaer .btn--cta a,
  .l-heaer .btn--menu {
    width: 60px;
    height: 60px;
  }
}
.l-heaer .btn--cta a {
  background-color: #C69000;
}
@media screen and (max-width: 768px) {
  .l-heaer .btn--cta a img {
    width: 20px;
  }
}
.l-heaer .btn--menu {
  background-color: #001346;
  flex-direction: column;
  row-gap: 6px;
  z-index: 1002;
}
.l-heaer .btn--menu span {
  background-color: #fff;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  display: block;
  transition: 0.3s;
}
.l-heaer.is-fixed {
  position: fixed;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .l-heaer.is-fixed {
    height: 40px;
  }
}
.l-heaer.is-fixed .p-sitelogo {
  width: 180px;
  transition: width 0.3s;
}
@media screen and (max-width: 768px) {
  .l-heaer.is-fixed .p-sitelogo {
    width: 130px;
  }
}
.l-heaer.is-fixed .btn--cta a,
.l-heaer.is-fixed .btn--menu {
  width: 60px;
  height: 60px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .l-heaer.is-fixed .btn--cta a,
  .l-heaer.is-fixed .btn--menu {
    height: 40px;
    width: 40px;
  }
}

.header--nav {
  margin-right: 200px;
}
@media screen and (max-width: 1470px) {
  .header--nav {
    display: none;
  }
}

.header--nav--list a {
  font-size: clamp(11px, 11px + (18 - 11) * (100vw - 375px) / (1920 - 375), 18px);
  padding: 14px 1vw;
  font-weight: 500;
}
.header--nav--list a:hover {
  color: #C69000;
}

.header--cta {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 10;
}
.menu--img {
  width: 50%;
  background-image: url(../images/mv_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.menu--nav {
  width: 50%;
  padding: 100px 100px 60px 5%;
}
@media screen and (max-width: 768px) {
  .menu--nav {
    width: 100%;
    padding: 80px 5% 60px 5%;
  }
}
.menu nav ul {
  margin-bottom: 20px;
}
.menu nav ul li a {
  padding: 1em 0;
  color: #fff;
  font-weight: 600;
  width: 100%;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1920 - 375), 20px);
}

.top--kv {
  margin-left: 3.8%;
  opacity: 0;
  transition: all 0.8s ease;
}
@media screen and (max-width: 768px) {
  .top--kv {
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top--kv .img {
    margin-left: -54px;
    margin-bottom: 24px;
  }
}
.top--kv .scroll-indicator {
  position: absolute;
  bottom: 0;
  left: -35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  opacity: 0;
  transition: all 0.8s ease;
}
@media screen and (max-width: 1024px) {
  .top--kv .scroll-indicator {
    left: -21px;
  }
}
@media screen and (max-width: 768px) {
  .top--kv .scroll-indicator {
    left: 8px;
    bottom: 10px;
  }
}
.top--kv .scroll-indicator .scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 600;
  color: #001346;
  font-size: clamp(13px, 13px + (15 - 13) * (100vw - 375px) / (1920 - 375), 15px);
  margin-bottom: 10px;
  line-height: 1;
}
.top--kv .scroll-indicator .scroll-line {
  position: relative;
  width: 1px;
  height: 80px;
  background-color: #dcdcdc;
  overflow: hidden;
}
.top--kv .scroll-indicator .scroll-line__bar {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001346;
  animation: scrollLineAnim 2s linear infinite;
}
@keyframes scrollLineAnim {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
.top--kv .txtarea {
  width: 62.4%;
  padding: 4vw 3vw;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 768px) {
  .top--kv .txtarea {
    width: 100%;
    padding: 30px 24px;
    border-radius: 8px 0 0 8px;
  }
}
.top--kv .txtarea .c-title {
  line-height: 1;
  opacity: 0.22;
  font-weight: 600;
  margin-bottom: 70px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}
.top--kv .txtarea .subttl {
  margin-bottom: 70px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}
@media screen and (max-width: 768px) {
  .top--kv .txtarea .subttl {
    margin-bottom: 24px;
  }
}
.top--kv .txtarea .js-hover {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}
.top--kv .imgarea {
  width: 37.6%;
  background-image: url(../images/mv_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.top--content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

@media screen and (max-width: 768px) {
  .t-aboutus .img {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .t-aboutus .readarea {
    margin-bottom: 0;
  }
}

.t-mfc {
  position: relative;
}
@media screen and (max-width: 768px) {
  .t-mfc {
    padding-top: 170px;
  }
}
.t-mfc .bg-mfc {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .t-mfc .bg-mfc {
    width: 100%;
  }
}
.t-mfc .container {
  position: relative;
  z-index: 1;
}
.t-mfc .readarea {
  width: min(1480px, 100%);
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
}
.t-mfc .readarea a {
  text-decoration: underline;
}

.features--list {
  gap: 16px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .features--list {
    padding: 0;
    gap: 8px;
    margin-bottom: 35px;
  }
}
.features--list li {
  width: calc(33.3333333333% - 11px);
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .features--list li {
    width: calc(50% - 11px);
    background-color: rgba(255, 255, 255, 0.85);
  }
}
@media screen and (max-width: 768px) {
  .features--list li {
    width: 100%;
  }
}
.features--list li .txt {
  color: #001346;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1920 - 375), 20px);
  padding: 0 1vw;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .features--list li .txt {
    padding: 3px 1em;
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .features--list li .icon {
    width: 40px;
  }
}

.note--mf {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .note--mf {
    margin-bottom: 60px;
  }
}
.note--mf .ttlwrap {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .note--mf .ttlwrap {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .note--mf .ttlwrap {
    margin-bottom: 10px;
  }
}
.note--mf .icon {
  width: 128px;
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .note--mf .icon {
    width: 60px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .note--mf .icon {
    width: 40px;
    margin-right: 10px;
  }
}
.note--mf .ttl {
  color: #001346;
  font-size: clamp(16px, 16px + (30 - 16) * (100vw - 375px) / (1920 - 375), 30px);
  font-weight: 600;
  line-height: 1.5;
  width: calc(96% - 148px);
  margin-right: 4%;
}
@media screen and (max-width: 1024px) {
  .note--mf .ttl {
    width: calc(100% - 100px);
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .note--mf .ttl {
    width: calc(100% - 60px);
  }
}
.note--mf .kakkoarea {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .note--mf .kakkoarea {
    width: 100%;
  }
}
.note--mf .kakkoarea p {
  font-size: clamp(12px, 12px + (20 - 12) * (100vw - 375px) / (1920 - 375), 20px);
}

.case--list__card {
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  .case--list__card {
    padding: 40px 16px;
  }
}
.case--list__card .num--wrap {
  align-items: baseline;
}
.case--list__card .num--wrap .num {
  color: #001346;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 375px) / (1920 - 375), 20px);
  line-height: 1;
  position: relative;
  margin-right: 20px;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .case--list__card .num--wrap .num {
    margin-right: 8px;
  }
}
.case--list__card .num--wrap .num:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #001346;
  position: absolute;
  bottom: -6px;
  left: 0;
}
.case--list__card .thumbnail--wrap {
  gap: 5%;
  margin-bottom: 20px;
}
.case--list__card .thumbnail--wrap .thumbnail {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .case--list__card .thumbnail--wrap .thumbnail {
    width: 70%;
    margin: 0 auto 16px;
  }
}
.case--list__card .thumbnail--wrap .txtarea {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .case--list__card .thumbnail--wrap .txtarea {
    width: 100%;
  }
}
.case--list__card .thumbnail--wrap .txtarea .ttl {
  font-size: clamp(16px, 16px + (22 - 16) * (100vw - 375px) / (1920 - 375), 22px);
  font-weight: 600;
  margin-bottom: 10px;
  color: #001346;
}
.case--list__card .thumbnail--wrap .txtarea p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .case--list__card .thumbnail--wrap .txtarea p {
    font-size: 12px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

.cate--list {
  gap: 5px;
  margin-bottom: 20px;
  width: calc(100% - 50px);
}
@media screen and (max-width: 768px) {
  .cate--list {
    margin-bottom: 8px;
  }
}
.cate--list .cate--chip {
  line-height: 1.3;
  background-color: #001346;
  color: #fff;
  font-size: clamp(10px, 10px + (15 - 10) * (100vw - 375px) / (1920 - 375), 15px);
  font-weight: 500;
  padding: 7px 9px 5px;
}
@media screen and (max-width: 768px) {
  .cate--list .cate--chip {
    font-size: 10px;
  }
}

.knowledge--wrap {
  gap: 10%;
}

.knowledge--box {
  width: 45%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .knowledge--box {
    width: 100%;
    margin-bottom: 24px;
  }
}
.knowledge--box:first-of-type {
  border-right: 1px solid #ededed;
}
.knowledge--box .imgwrap {
  position: relative;
}
.knowledge--box .imgwrap .genre--chip {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(130px, 20%);
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 0;
  color: #001346;
  font-weight: 600;
  font-size: clamp(10px, 10px + (16 - 10) * (100vw - 375px) / (1920 - 375), 16px);
}
.knowledge--box .txtarea {
  padding: 40px 10%;
  display: flex;
  flex-direction: column;
  justify-self: center;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .knowledge--box .txtarea {
    padding: 24px;
  }
}
.knowledge--box .txtarea .ttl {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .knowledge--box .txtarea .ttl {
    width: 140px;
    margin: 0 auto 16px;
  }
}
.knowledge--box .txtarea p {
  min-height: 6em;
}
@media screen and (max-width: 768px) {
  .knowledge--box .txtarea p {
    font-size: clamp(12px, 12px + (14 - 12) * (100vw - 375px) / (1920 - 375), 14px);
  }
}

.news--list .news--list__card {
  border: 1px solid #D6D6D6;
  padding: 28px;
  border-radius: 3px;
  background-color: #fff;
}
.news--list .news--list__card .thumbnail {
  margin-bottom: 20px;
  display: flex;
}
.news--list .news--list__card .thumbnail img {
  aspect-ratio: 1.65/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.news--list .news--list__card .ttl {
  color: #001346;
  font-size: clamp(14px, 14px + (20 - 14) * (100vw - 375px) / (1920 - 375), 20px);
  margin: 1em auto;
  line-height: 1.4;
  display: block;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: 2.9em;
}
.news--list .news--list__card .datewrap {
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .news--list .news--list__card .datewrap {
    font-size: clamp(10px, 10px + (14 - 10) * (100vw - 375px) / (1920 - 375), 14px);
  }
}
.news--list .news--list__card .datewrap .cate--chip2 {
  background-color: #EEF3FB;
  border: 1px solid #c9ced7;
  border-radius: 3px;
  padding: 8px 10px 5px;
  line-height: 1;
}

.bnr--navi {
  width: min(1334px, 90%);
  margin: 0 auto;
  background-color: #fff;
  padding: 3.74% 4.8%;
  box-shadow: 0 0 38px rgba(0, 23, 84, 0.11);
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .bnr--navi {
    padding: 40px 16px;
  }
}
.bnr--navi .logo {
  width: 34%;
  margin-right: 4.8%;
}
@media screen and (max-width: 768px) {
  .bnr--navi .logo {
    width: 70%;
    margin: 0 auto 24px;
  }
}
.bnr--navi .txtarea {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .bnr--navi .txtarea {
    width: 100%;
  }
}
.bnr--navi .txtarea .ttl {
  font-size: clamp(14px, 14px + (20 - 14) * (100vw - 375px) / (1920 - 375), 20px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5em;
  text-align: center;
}
.bnr--navi .txtarea .ttl strong {
  font-size: clamp(16px, 16px + (30 - 16) * (100vw - 375px) / (1920 - 375), 30px);
  color: #00BCA1;
  font-weight: 600;
}
.bnr--navi .txtarea .txt {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .bnr--navi .txtarea .txt {
    font-size: clamp(12px, 12px + (16 - 12) * (100vw - 375px) / (1920 - 375), 16px);
  }
}

@media screen and (max-width: 768px) {
  .t-recruit {
    padding-top: 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .t-recruit .txtarea {
    order: 2;
  }
}
.t-recruit .slidein {
  order: 1;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 24px;
}

.p-ctaarea {
  background: url(../images/p-cta--bg.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .p-ctaarea {
    background: url(../images/p-cta--bg.jpg) #001346;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 170px;
  }
}
.p-ctaarea .cta--box {
  width: min(1600px, 90%);
  margin: 0 auto;
  background-color: #fff;
}
.p-ctaarea .cta--box .l-flex__item {
  width: 50%;
  padding: 0 5%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-ctaarea .cta--box .l-flex__item {
    padding: 30px 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-ctaarea .cta--box .l-flex__item.leftarea {
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 768px) {
  .p-ctaarea .cta--box .leftarea {
    padding-bottom: 0px;
  }
}
.p-ctaarea .cta--box .leftarea .ttl {
  font-size: clamp(18px, 18px + (38 - 18) * (100vw - 375px) / (1920 - 375), 38px);
  color: #001346;
  margin-bottom: 0.5em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-ctaarea .cta--box .leftarea .ttl {
    margin-bottom: 1em;
  }
}
.p-ctaarea .cta--box .leftarea .rxrarea {
  margin-bottom: 2em;
}
.p-ctaarea .cta--box .rightarea {
  padding: 3%;
}
@media screen and (max-width: 768px) {
  .p-ctaarea .cta--box .rightarea {
    padding: 30px 16px;
  }
}
.p-ctaarea .cta--box .rightarea .ttl {
  font-size: clamp(16px, 16px + (28 - 16) * (100vw - 375px) / (1920 - 375), 28px);
  color: #001346;
  margin-bottom: 0.5em;
  font-weight: 600;
}

.l-footer {
  padding-top: 150px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .footer--logowrap {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
  }
}
.l-footer .footer--sitelogo {
  width: 280px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .l-footer .footer--sitelogo {
    width: 200px;
  }
}
.l-footer .description {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 375px) / (1920 - 375), 14px);
}
.l-footer > .container {
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .l-footer > .container {
    gap: 40px;
  }
}
.l-footer .leftarea {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .l-footer .leftarea {
    width: 100%;
  }
}
.l-footer .rightarea {
  width: calc(100% - 400px);
}
@media screen and (max-width: 768px) {
  .l-footer .rightarea {
    width: 100%;
  }
}
.l-footer .rightarea > .l-flex {
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .l-footer .rightarea > .l-flex {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .addrarea {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
  }
}
.l-footer .addr--list li {
  margin-bottom: 3em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .l-footer .addr--list li {
    margin-bottom: 2em;
  }
}
.l-footer .addr--list li .ttl {
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.65em;
}
.l-footer .addr--list li .txt {
  font-weight: 400;
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 375px) / (1920 - 375), 14px);
}
.l-footer .footer--nav li {
  position: relative;
  padding-left: 2em;
  line-height: 1;
  margin-bottom: 1em;
}
.l-footer .footer--nav li:before {
  content: "";
  width: 1.2em;
  height: 1px;
  background-color: #c2c2c2;
  position: absolute;
  top: 50%;
  left: 0;
}
.l-footer .linkarea {
  gap: 16px;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .l-footer .linkarea {
    gap: 8px;
  }
}
.l-footer .linkarea .link--bnr {
  width: calc(33.3333333333% - 11px);
}
@media screen and (max-width: 768px) {
  .l-footer .linkarea .link--bnr {
    width: calc(33.3333333333% - 6px);
  }
}
.l-footer small {
  font-size: clamp(10px, 10px + (14 - 10) * (100vw - 375px) / (1920 - 375), 14px);
}

/*ラジオボタン*/
.c-radio,
[type=radio] {
  display: none;
}

.c-radio + span,
[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding: 0 1em 0 1.9em;
  position: relative;
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
}

.c-radio + span::before,
[type=radio] + span::before {
  background: #fff;
  border: 1px solid #bdbdbd;
  content: "";
  display: block;
  height: 1.5em;
  left: 0;
  position: absolute;
  top: 0.3em;
  width: 1.5em;
}

.c-radio + span::after,
[type=radio] + span::after {
  background: #001346;
  border: 1px solid #9e9e9e;
  box-shadow: 0 0 0 0.1em #fff inset;
  content: "";
  display: block;
  height: 1.5em;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0.3em;
  transition: all 0.3s ease 0s;
  width: 1.5em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

.c-radio:checked + span::before,
:checked[type=radio] + span::before {
  border: 1px solid #9e9e9e;
}

.c-radio:checked + span::after,
:checked[type=radio] + span::after {
  opacity: 1;
}

.contactform {
  width: min(900px, 90%);
  margin: 0 auto;
}
.contactform .q--zip dd {
  display: flex;
  align-items: center;
}
.contactform .q--zip dd .zip-mark {
  font-size: 20px;
  margin-right: 5px;
}
.contactform .q--pref input {
  margin-bottom: 10px;
}
.contactform .captcha {
  text-align: center;
}
.contactform .captcha input {
  margin: 0 auto 60px;
  width: 8em;
  display: block;
  text-align: center;
  padding: 7px;
}

.contactform dl {
  margin-bottom: 30px;
}

.contactform dt {
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 375px) / (1920 - 375), 18px);
  font-weight: 500;
  color: #001346;
  margin-bottom: 8px;
}

.contactform dd {
  width: 100%;
}

.contactform input,
.contactform textarea {
  width: 100%;
  border-radius: 2px;
  border: 1px solid #CECECE;
  background-color: #F7F7F7;
  padding: 1em;
  font-size: 18px;
}

.contactform .p--w_auto input {
  width: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .contactform .p--w_auto input {
    width: 100%;
  }
}

.req {
  font-size: 68%;
  background-color: #DB0A0A;
  padding: 5px 0.7em 3px;
  line-height: 1;
  display: inline-block;
  letter-spacing: 0;
  color: #fff;
  margin-left: 5px;
}

.privacyarea {
  margin: 60px auto 30px;
  text-align: center;
}

.privacyarea a {
  text-decoration: underline;
}

.btnwrap p {
  display: flex;
  justify-content: center;
  gap: 8px;
}

input.wpcf7-submit {
  background: #001346;
  color: #fff;
  width: 70%;
  font-size: clamp(16px, 16px + (26 - 16) * (100vw - 375px) / (1920 - 375), 26px);
  font-weight: 600;
  padding: 1em;
  display: block;
  margin: 0 auto;
}

.q--kinds .wpcf7-list-item {
  display: block;
  margin-bottom: 8px;
}

.floating--btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.floating--btn a {
  width: 100%;
  background: #C69000;
  height: 60px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
}
.floating--btn a .ico {
  width: 18px;
}
.floating--btn a .ico img {
  vertical-align: text-top;
}