@charset "UTF-8";
/*===
  #common
  ===*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

body {
  color: #000;
  background-color: #f7f7f7;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.5;
  font-size: 16px;
}

.main {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  transition: all 0.5s ease;
}

a:hover {
  opacity: 0.6;
}

.container-in {
  width: 1440px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container-in {
    padding: 0 15px;
  }
}

.container {
  width: 1560px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.container-out {
  width: 1680px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container-out {
    padding: 0 15px;
  }
}

/* ===============================================
# ヘッダー
=============================================== */
#header {
  z-index: 20;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: transparent;
}

@media screen and (max-width: 767px) {
  #header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
  }
}

#header.change-color {
  transition: 0.3s;
  background-color: rgba(60, 87, 131, 0.86);
}

#header > .container > .inner {
  padding-bottom: 50px;
  padding-top: 55px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  #header > .container > .inner {
    display: block;
    padding-bottom: 15px;
    padding-top: 15px;
  }
}

.header-left {
  margin-right: auto;
}

.header-logo {
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .header-logo {
    margin-top: 3px;
  }
}

.header-logo a {
  transition: all 0.3s ease 0s;
}

.header-logo a img {
  max-width: 223px;
}

.header-logo a:hover {
  opacity: 0.6;
}

.header-right {
  margin-left: auto;
}

.header-nav {
  top: 100px;
  left: 0;
  right: 0;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.60416vw, 50px);
}

.header-nav li > a {
  color: #fff;
  display: block;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  opacity: 1;
  line-height: 1;
  text-align: center;
}

.header-nav li > a:hover {
  opacity: 0.6;
}

/* ===============================================
# 共通
=============================================== */
.sec_ttl {
  text-align: center;
}

.sec_ttl .en_ttl {
  font-weight: 900;
  letter-spacing: 0.05em;
}

.sec_ttl .ja_ttl {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #124387;
}

@media screen and (max-width: 767px) {
  .sec_ttl .ja_ttl {
    font-size: 24px;
  }
}

.sec_ttl-white {
  text-align: left;
}

.sec_ttl-white .en_ttl {
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}

.sec_ttl-white .ja_ttl {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .sec_ttl-white .ja_ttl {
    font-size: 24px;
  }
}

/* ===============================================
# ドロワー 
=============================================== */
.drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .drawer {
    display: block;
  }
}

.drawer-icon {
  color: #124387;
  cursor: pointer;
  font-size: 20px;
  font-weight: 300;
  position: absolute;
  right: 8px;
  text-align: center;
  top: 4px;
  z-index: 41;
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-open {
  display: block;
}

.m_checked .drawer-open {
  display: none;
}

.drawer-close {
  display: none;
}

.m_checked .drawer-close {
  display: block;
}

.drawer-content {
  background: rgba(28, 88, 173, 0.96);
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: auto;
  padding: 100px 16px 160px;
  position: fixed;
  text-align: left;
  top: 0;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 100%;
  z-index: 40;
}

.m_checked .drawer-content {
  opacity: 1;
  visibility: visible;
}

.drawer-nav li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 6px solid transparent;
  color: #fff;
  display: block;
  font-size: 22px;
  padding: 20px 12px 24px 5px;
  text-decoration: none;
  text-align: center;
}

.fa-times::before {
  color: #405F8A;
}

.drawer-cta {
  margin-top: 30px;
}

/* ===============================================
# mv
=============================================== */
.mv {
  position: relative;
  min-height: 100dvh;
  padding-bottom: 12vw;
}

.mv::before {
  position: absolute;
  content: "";
  background: url(../img/fv-parts.webp) center center/cover no-repeat;
  height: calc(100% + 12vw);
  top: -12vw;
  right: 0;
  left: 0;
  z-index: 1;
}

.mv_back-img {
  background: url(../img/fv.webp) center center/cover no-repeat;
  position: relative;
}

.mv_back-img::after {
  position: absolute;
  content: "";
  background: url(../img/mv-bottom.png) center center/cover no-repeat;
  width: 100%;
  height: 8.59375vw;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.mv_txt-box {
  position: relative;
  height: 100dvh;
  color: #fff;
}

.mv_txt-box .wrapper {
  position: absolute;
  left: 0;
  bottom: 20%;
  z-index: 2;
}

.mv_txt-box .en_ttl {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .mv_txt-box .en_ttl {
    font-size: 15px;
  }
}

.mv_txt-box .mv_ttl {
  font-size: clamp(50px, 4.89583vw, 94px);
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .mv_txt-box .mv_ttl {
    font-size: 42px;
  }
}

.mv_txt-box .mv_ttl span {
  font-weight: 500;
  font-size: clamp(20px, 3.125vw, 68px);
}

@media screen and (max-width: 767px) {
  .mv_txt-box .mv_ttl span {
    font-size: 26px;
  }
}

.mv_txt-box .sub_ttl {
  font-size: clamp(20px, 1.35416vw, 26px);
  font-weight: 500;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .mv_txt-box .sub_ttl {
    font-size: 18px;
    line-height: 1.63;
  }
}

/* ===============================================
# ステップ
=============================================== */
.step {
  padding-top: 100px;
  padding-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .step {
    padding-top: 50px;
  }
}

.step .step_ttl {
  font-size: clamp(32px, 2.60416vw, 50px);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 15px;
  text-align: center;
  color: #262626;
}

@media screen and (max-width: 767px) {
  .step .step_ttl {
    font-size: 28px;
  }
}

.step .txt {
  margin-top: 55px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .step .txt {
    margin-top: 40px;
  }
}

.step_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(80px, 6.25vw, 120px);
  position: relative;
}

@media screen and (max-width: 767px) {
  .step_wrapper {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    gap: 40px;
  }
}

.step_wrapper::after {
  position: absolute;
  content: "";
  background: url(../img/step-arrow.png) center center/cover no-repeat;
  max-width: 640px;
  width: 100%;
  height: 94px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .step_wrapper::after {
    transform: translate(-50%, -50%) rotate(90deg);
    height: 55px;
    width: 380px;
  }
}

.step_wrapper .item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: clamp(300px, 18.75vw, 360px);
  height: clamp(300px, 18.75vw, 360px);
  border: clamp(30px, 2.60416vw, 50px) solid #124387;
  border-radius: 50%;
  background-color: #fff;
  padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .step_wrapper .item {
    border: 30px solid #124387;
    width: 300px;
    height: 300px;
  }
}

.step_wrapper .item .no {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.step_wrapper .item .no span {
  font-size: 21px;
  margin-left: 3px;
}

.step_wrapper .item .icon {
  margin-top: 6px;
}

.step_wrapper .item .icon .icon-hahakei {
  width: 70px;
}

.step_wrapper .item .icon .icon-core {
  width: 104px;
}

.step_wrapper .item .icon .icon-denki {
  width: 80px;
}

.step_wrapper .item .item_ttl {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #124387;
  margin-top: 4px;
}

.step_wrapper .item .item_txt {
  font-weight: 500;
}

.step_bottom {
  font-size: 5.052083vw;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  margin-top: clamp(60px, 6.77083vw, 130px);
}

@media screen and (max-width: 767px) {
  .step_bottom {
    font-size: 40px;
    margin-top: 40px;
  }
}

/* ===============================================
# 選ばれる理由
=============================================== */
.reason {
  max-width: 1800px;
  margin: 0 auto;
}

.reason_back {
  background: url(../img/back-reason.webp) center center/cover no-repeat;
  padding: 150px 0 140px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .reason_back {
    padding: 80px 0;
    background: url(../img/back-reason.webp) 10% center/cover no-repeat;
  }
}

.reason_ttl {
  margin-top: 20px;
  font-size: clamp(32px, 2.60416vw, 50px);
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .reason_ttl {
    font-size: 28px;
  }
}

.reason_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .reason_wrapper {
    flex-wrap: wrap;
    margin-top: 40px;
  }
}

.reason_wrapper .item {
  width: 23.53%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .reason_wrapper .item {
    width: 48%;
  }
  .reason_wrapper .item:nth-child(n + 3) {
    margin-top: 30px;
  }
}

.reason_wrapper .item picture img {
  width: 100%;
}

.reason_wrapper .item .item_ttl {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px dotted #f7f7f7;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .reason_wrapper .item .item_ttl {
    font-size: 18px;
  }
}

.reason_wrapper .item .txt {
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .reason_wrapper .item .txt {
    padding: 0;
    line-height: 1.5;
    text-align: justify;
  }
}

/* ===============================================
# 設備
=============================================== */
.equip {
  padding: clamp(100px, 7.8125vw, 150px) 0 clamp(180px, 11.97916vw, 230px);
  position: relative;
}

@media screen and (max-width: 767px) {
  .equip {
    padding: 80px 0 100px;
  }
}

.equip .illust {
  position: absolute;
  background: url(../img/equip-illust.webp) center center/cover no-repeat;
  width: 20.83vw;
  left: 0;
  top: 30%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .equip .illust {
    top: 2%;
    width: 170px;
  }
}

.equip_ttl {
  font-size: clamp(32px, 2.60416vw, 50px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  color: #262626;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .equip_ttl {
    font-size: 28px;
  }
}

.equip_txt {
  margin-top: clamp(40px, 3.125vw, 60px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .equip_txt {
    margin-top: 35px;
  }
}

.equip_wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
}

@media screen and (max-width: 767px) {
  .equip_wrapper {
    flex-direction: column-reverse;
  }
}

.equip_wrapper .left {
  width: 65.44%;
}

@media screen and (max-width: 767px) {
  .equip_wrapper .left {
    width: 100%;
    margin-top: 20px;
  }
}

.equip_wrapper .left .item {
  position: relative;
  display: none;
}

.equip_wrapper .left .item.is-active {
  display: block;
}

.equip_wrapper .left .item .content {
  position: absolute;
  background-color: #fff;
  display: inline-block;
  bottom: 50px;
  left: 0;
  padding: 15px 35px;
}

@media screen and (max-width: 767px) {
  .equip_wrapper .left .item .content {
    position: static;
    padding: 15px;
  }
}

.equip_wrapper .left .item .content_ttl {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #124387;
}

@media screen and (max-width: 767px) {
  .equip_wrapper .left .item .content_ttl {
    font-size: 18px;
  }
}

.equip_wrapper .left .item .content_txt {
  font-weight: 500;
}

.equip_wrapper .right {
  width: 25%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .equip_wrapper .right {
    width: 100%;
  }
}

.equip_wrapper .right .equip_tab {
  width: 100%;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .equip_wrapper .right .equip_tab {
    margin-top: 0;
  }
}

.equip_wrapper .right .equip_tab li {
  width: 100%;
  border-top: 1px dotted #124387;
  padding: 40px 0 40px 70px;
  cursor: pointer;
  color: #717171;
  font-weight: 500;
  font-size: clamp(18px, 1.14583vw, 22px);
  letter-spacing: 0.04em;
  position: relative;
}

@media screen and (max-width: 767px) {
  .equip_wrapper .right .equip_tab li {
    font-size: 18px;
    padding: 20px 0 20px 70px;
  }
}

.equip_wrapper .right .equip_tab li.is-active {
  color: #124387;
}

.equip_wrapper .right .equip_tab li.is-active::before {
  background: url(../img/equip-arrow-blue.png) center center/cover no-repeat;
}

.equip_wrapper .right .equip_tab li::before {
  position: absolute;
  content: "";
  background: url(../img/equip-arrow-gray.png) center center/cover no-repeat;
  width: 28px;
  height: 43px;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .equip_wrapper .right .equip_tab li::before {
    transform: translateY(-50%) rotate(270deg);
    width: 19px;
    height: 26px;
    left: 30px;
  }
}

/* ===============================================
# エリア
=============================================== */
.area {
  max-width: 1800px;
  margin: 0 auto;
}

.area_back {
  padding: clamp(120px, 9.63542vw, 185px) 0 clamp(150px, 10.416vw, 200px);
  background: url(../img/back-area.webp) center center/cover no-repeat;
  position: relative;
}

@media screen and (max-width: 767px) {
  .area_back {
    padding: 90px 0 100px;
  }
}

.area_wrapper {
  max-width: 730px;
}

.area_ttl {
  font-size: clamp(32px, 2.60416vw, 50px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .area_ttl {
    font-size: 28px;
  }
}

.area_txt {
  margin-top: clamp(40px, 3.125vw, 60px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #fff;
  padding-left: clamp(0px, 2.083vw, 40px);
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .area_txt {
    margin-top: 30px;
    padding-left: 0;
  }
}

.area_map {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 48.9583vw;
}

@media screen and (max-width: 767px) {
  .area_map {
    position: static;
    transform: none;
    width: 80%;
    max-width: 100%;
    margin: 30px auto 0;
  }
}

/* ===============================================
# よくある質問
=============================================== */
.faq {
  padding-top: 180px;
}

@media screen and (max-width: 767px) {
  .faq {
    padding-top: 100px;
  }
}

.faq_ttl {
  position: relative;
}

.faq_ttl::after {
  position: absolute;
  content: "QUESTION";
  font-size: 97px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .faq_ttl::after {
    font-size: 55px;
    top: -20px;
  }
}

.faq_wrapper {
  max-width: 1080px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .faq_wrapper {
    flex-direction: column;
  }
}

.faq_wrapper .item {
  max-width: 530px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .faq_wrapper .item {
    margin-top: 25px;
  }
  .faq_wrapper .item:first-child {
    margin-top: 0;
  }
}

.faq-box-item {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .faq-box-item {
    margin-top: 25px;
  }
}

.faq-box-item:first-child {
  margin-top: 0;
}

.faq-box-content {
  background-color: #124387;
  cursor: pointer;
  position: relative;
}

.faq-box-content::after {
  position: absolute;
  content: "";
  background: url(../img/faq-arrow.png) center center/cover no-repeat;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
}

.faq-box-content .txt {
  font-size: 18px;
  font-weight: bold;
  color: #fbfbfb;
  padding: 16px 30px 16px 30px;
}

@media screen and (max-width: 767px) {
  .faq-box-content .txt {
    padding: 10px 30px 10px 15px;
    font-size: 16px;
  }
}

.faq-acd-area {
  margin: 20px 10px 0;
}

@media screen and (max-width: 767px) {
  .faq-acd-area {
    margin: 15px 0 0;
  }
}

.faq-acd-area .txt {
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .faq-acd-area .txt {
    line-height: 1.5;
  }
}

/* ===============================================
# 会社概要
=============================================== */
.company {
  padding-top: 240px;
}

@media screen and (max-width: 767px) {
  .company {
    padding-top: 100px;
  }
}

.company_ttl {
  position: relative;
}

.company_ttl::after {
  position: absolute;
  content: "INFORMTAION";
  font-size: 97px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .company_ttl::after {
    font-size: 46px;
    top: -20px;
  }
}

.company_wrapper {
  max-width: 1080px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .company_wrapper {
    flex-direction: column;
    margin-top: 40px;
  }
}

.company_wrapper .item {
  max-width: 530px;
  width: 100%;
  border-top: 1px dotted #124387;
}

@media screen and (max-width: 767px) {
  .company_wrapper .item:last-child {
    border-top: none;
  }
}

.company_wrapper .item dl {
  display: flex;
  border-bottom: 1px dotted #124387;
  padding: 40px 35px;
}

@media screen and (max-width: 767px) {
  .company_wrapper .item dl {
    flex-direction: column;
    padding: 20px 15px;
  }
}

.company_wrapper .item dl dt {
  font-weight: 500;
  width: 140px;
}

@media screen and (max-width: 767px) {
  .company_wrapper .item dl dt {
    width: 100%;
  }
}

.company_wrapper .item dl dd {
  font-weight: 500;
  width: calc(100% - 140px);
}

@media screen and (max-width: 767px) {
  .company_wrapper .item dl dd {
    width: 100%;
    margin-top: 10px;
    padding-left: 5px;
  }
}

/* ===============================================
# バナー
=============================================== */
.banner {
  padding: 80px 0 120px;
}

@media screen and (max-width: 767px) {
  .banner {
    padding: 55px 0 80px;
  }
}

/* ===============================================
# お問い合わせ
=============================================== */
.contact {
  max-width: 1800px;
  margin: 0 auto;
}

.contact_back {
  background: url(../img/back-contact.webp) center center/cover no-repeat;
  padding: 130px 0 150px;
}

@media screen and (max-width: 767px) {
  .contact_back {
    padding: 80px 0 100px;
  }
}

.contact_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .contact_wrapper {
    flex-direction: column;
  }
}

.contact_wrapper .left {
  width: 42.35%;
}

@media screen and (max-width: 767px) {
  .contact_wrapper .left {
    width: 100%;
  }
}

.contact_wrapper .right {
  width: 47.79%;
}

@media screen and (max-width: 767px) {
  .contact_wrapper .right {
    width: 100%;
    margin-top: 30px;
  }
}

.contact_ttl .en_ttl {
  font-size: 97px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
}

@media screen and (max-width: 767px) {
  .contact_ttl .en_ttl {
    font-size: 60px;
  }
}

.contact_ttl .ja_ttl {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 10px;
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  .contact_ttl .ja_ttl {
    font-size: 24px;
  }
}

.contact_txt {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #fff;
  margin-top: 20px;
  padding-left: 60px;
}

@media screen and (max-width: 767px) {
  .contact_txt {
    font-size: 16px;
    padding-left: 0;
  }
}

.contact-contents__item--required + .contact-contents__item--required {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .contact-contents__item--required + .contact-contents__item--required {
    margin-top: 25px;
  }
}

.contact-contents__item-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .contact-contents__item-title {
    font-size: 16px;
    margin-bottom: 5px;
    height: auto;
    line-height: 1;
  }
}

.contact-contents__item-input--text {
  width: 100%;
  margin-top: 18px;
}

@media screen and (max-width: 767px) {
  .contact-contents__item-input--text {
    width: 100%;
    margin-top: 10px;
  }
}

.contact-contents__item-textarea {
  width: 100%;
  margin-top: 18px;
}

@media screen and (max-width: 767px) {
  .contact-contents__item-textarea {
    width: 100%;
    margin-top: 10px;
  }
}

.bottom_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .bottom_wrapper {
    flex-direction: column;
  }
}

.contact-contents__submit {
  display: inline-block;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact-contents__submit {
    margin-top: 20px;
  }
}

.contact-contents__btn {
  width: 200px;
  height: 80px;
  border: none;
  background-color: #1d2f5f;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all 0.5s ease;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .contact-contents__btn {
    width: 200px;
    height: 50px;
    font-size: 16px;
  }
}

.contact-contents__btn:hover {
  opacity: 0.6;
}

input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  border: none;
  border-radius: 0 !important;
  height: 50px;
  padding-left: 10px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  input[type="text"], input[type="email"], input[type="tel"] {
    height: 40px;
  }
}

textarea {
  width: 100%;
  min-height: 270px;
  resize: vertical;
  border: none;
  border-radius: 0 !important;
  background: #fff;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  textarea {
    min-height: 120px;
  }
}

.contact_privacy a {
  color: #fff;
  letter-spacing: 0.06em;
  border-bottom: 1px dotted #fff;
}

.contact_privacy span.wpcf7-list-item-label {
  justify-content: center;
  color: #fff;
  font-weight: 500;
}

.contact_privacy input[type="checkbox"] {
  display: none;
}

.contact_privacy .wpcf7-list-item-label {
  position: relative;
  height: 20px;
  line-height: 20px;
  padding-left: 25px;
  display: inline-block;
}

.contact_privacy .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: none;
  background: #fff;
  position: absolute;
  left: -5px;
  top: 0;
  box-sizing: border-box;
}

.contact_privacy input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 8px;
  height: 6px;
  border-top: 3px solid #124387;
  border-right: 3px solid #124387;
  transform: rotate(135deg);
  position: absolute;
  left: 0;
  top: 4px;
}

.wpcf7-spinner {
  display: none !important;
}

/* ===============================================
# フッター
=============================================== */
.footer {
  padding: 90px 0 60px;
}

.footer .copy {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #1d2f5f;
  text-align: right;
  margin-top: 50px;
}

/* ===============================================
# cta
=============================================== */
.cta {
  position: fixed;
  bottom: 20px;
  right: 40px;
  z-index: 999;
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: opacity, transform;
}

@media screen and (max-width: 767px) {
  .cta {
    right: unset;
    bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .cta .cta_img {
    text-align: center;
  }
}

.cta .cta_img img {
  width: 300px;
}

@media screen and (max-width: 767px) {
  .cta .cta_img img {
    width: 90%;
  }
}

.cta.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
