@charset "UTF-8";
/*
Theme Name:KabuK Style
Theme URI:
Description:WordPress Original Theme for KabuK Style
Text Domain: kabukstyle_theme
Version:1.0.0
*/
/* -----------------------------------------------------------------
 base
----------------------------------------------------------------- */
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
/*======================
  reset
======================*/
html, body, div, span, iframe, h1, h2, h3, h4, p, a, img, dl, dt, dd, ol, ul, li, label, table, tbody, tr, th, td, figure, blockquote {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, figure, footer, header, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

li {
  list-style: none;
}

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

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

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

/************************
　スクロールアニメーション用
*************************/
.fadeIn {
  opacity: 0;
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeIn.is-scrolled {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInUp.is-scrolled {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInLeft.is-scrolled {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInRight.is-scrolled {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fadeInZoomOut {
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInZoomOut.is-scrolled {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.fadeInZoomIn {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInZoomIn.is-scrolled {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* ----------------------
  keyframes
---------------------- */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes btnLineOne {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes btnLineOne {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@-webkit-keyframes btnLine {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(2, 1);
            transform: scale(2, 1);
  }
}

@keyframes btnLine {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(2, 1);
            transform: scale(2, 1);
  }
}

@-webkit-keyframes scrollLine {
  from {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes scrollLine {
  from {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

/*======================
  base
======================*/
body {
  color: #3B3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.11em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.11em;
  }
}

body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* -----------------------------------------------------------------
 Layout
----------------------------------------------------------------- */
/*=======================
  footer
=======================*/
.l-footer {
  z-index: 10;
  position: relative;
  background-color: #1E293B;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
}

.l-footer__inner {
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: calc(50vw / 14.4) calc(140vw / 14.4) calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding: calc(60vw / 3.75) calc(15vw / 3.75) calc(20vw / 3.75);
    display: block;
  }
}

.l-footer__box {
  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;
}

@media screen and (max-width: 767px) {
  .l-footer__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.l-footer__logo {
  display: block;
  width: calc(171vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: calc(171vw / 3.75);
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__logo-box {
    text-align: center;
  }
}

.l-footer__logo-company {
  font-size: calc(15vw / 14.4);
  font-weight: 500;
  line-height: 2;
  margin-top: 7px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .l-footer__logo-company {
    font-size: calc(16vw / 3.75);
    margin-top: 6px;
    line-height: 1.6;
  }
}

.l-footer__address {
  font-size: calc(16vw / 14.4);
  line-height: 2;
  font-weight: 300;
  color: #ffffff8f;
  margin-top: 8px;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .l-footer__address {
    font-size: calc(16vw / 3.75);
    margin-top: 6px;
    line-height: 1.6;
  }
}

.l-footer__tel {
  font-size: calc(16vw / 14.4);
  line-height: 2;
  font-weight: 300;
  color: #ffffff8f;
  margin-top: 8px;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .l-footer__tel {
    font-size: calc(16vw / 3.75);
    margin-top: 6px;
    line-height: 1.6;
  }
}

.l-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16vw / 14.4);
  letter-spacing: 0;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid #ffffff1f;
  color: #ffffff8f;
}

@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: calc(16vw / 3.75);
  }
}

.l-footer__nav {
  width: calc(360vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}

@media screen and (max-width: 767px) {
  .l-footer__nav {
    width: 100%;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-footer__nav > li > a {
  display: inline-block;
  font-weight: bold;
  font-size: calc(15vw / 14.4);
  letter-spacing: 0;
  position: relative;
  color: #ffffff8f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .l-footer__nav > li > a {
    font-size: calc(15vw / 3.75);
  }
}

.l-footer__nav > li > a > img {
  width: 16px;
  margin-left: 4px;
  opacity: .6;
}

.l-footer__cv {
  display: block;
}

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

.l-footer__cv-item:last-child {
  margin-top: 15px;
}

.l-footer__cv-item > a {
  font-weight: 500;
  letter-spacing: 0;
  font-size: calc(15vw / 14.4);
  line-height: 1.59;
  color: #fff;
  height: calc(50vw / 14.4);
  width: calc(360vw / 14.4);
  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;
  border: 1px solid #FFFFFF3f;
  border-radius: 6px;
}

@media screen and (max-width: 767px) {
  .l-footer__cv-item > a {
    height: calc(50vw / 3.75);
    width: 100%;
    max-width: 345px;
    font-size: calc(15vw / 3.75);
  }
}

.l-footer__privacy {
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .l-footer__privacy {
    margin-left: 20px;
  }
}

.l-footer__privacy > a:hover {
  opacity: .75;
}

.l-footer .c-language-swich {
  margin: 38px 0 38px;
}

@media screen and (max-width: 767px) {
  .l-footer .c-language-swich {
    margin: 0;
    font-weight: normal;
  }
}

/*=======================
  header
=======================*/
.l-header {
  width: 100%;
  height: calc(100vw / 14.4);
  background-color: white;
  -webkit-transition: .3s;
  transition: .3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 994;
}

@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
  }
}

.l-header.is-hidden {
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
}

.l-header__inner {
  position: relative;
  height: 100%;
  padding: 0 0 0 calc(50vw / 14.4);
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
}

.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 997;
}

.l-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}

.l-header__logo a > p {
  font-size: calc(10vw / 14.4);
  line-height: 1.5;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .l-header__logo a > p {
    display: none;
  }
}

.l-header__logo a img {
  width: calc(152vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-header__logo a img {
    width: calc(131vw / 3.75);
    max-width: 131px;
  }
}

.l-navbtn {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: transparent;
  cursor: pointer;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 999;
}

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

.l-navbtn__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3B3C3E;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  -webkit-transition: .3s;
  transition: .3s;
}

.l-navbtn__bar:nth-child(1) {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.l-navbtn__bar:nth-child(3) {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

.l-gnav {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .l-gnav {
    width: 100%;
    height: 100vh;
    padding: 80px calc(20vw / 3.75) 40px;
    background-color: #EBEEF3;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    overflow-y: scroll;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
  }
  .l-gnav.is-open {
    display: block;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (min-width: 768px) {
  .l-gnav {
    display: block !important;
  }
}

.l-gnav__list {
  color: #2F3034;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  gap: calc(32vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-gnav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: calc(32vw / 3.75);
  }
}

.l-gnav__list-min {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .l-gnav__list-min {
    height: calc(60vw / 3.75);
    width: 100%;
  }
}

.l-gnav__link-img {
  width: 16px;
  margin-left: 4px;
  opacity: .6;
}

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

.l-gnav__item > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: calc(15vw / 14.4);
  letter-spacing: 0;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .l-gnav__item > a {
    font-size: calc(15vw / 3.75);
    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;
  }
}

.l-gnav__item > a:hover {
  opacity: .6;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-gnav__item.m-contact > a {
  width: 140px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #3B3C3E;
  background-color: #3B3C3E;
  text-align: center;
  color: #fff;
}

.l-gnav__item.m-contact > a::before {
  content: none;
}

@media screen and (min-width: 768px) {
  .l-gnav__item.m-contact > a {
    width: 160px;
    height: 80px;
    line-height: 78px;
  }
}

.l-gnav__item.m-contact > a:hover {
  background-color: #fff;
  color: #3B3C3E;
}

.l-gnav__item-min {
  height: 100%;
}

@media screen and (max-width: 767px) {
  .l-gnav__item-min {
    height: calc(60vw / 3.75);
    width: 50%;
  }
}

.l-gnav__item-min:first-child {
  background-color: #EB1D23;
  color: #fff;
}

.l-gnav__item-min:first-child > a img {
  width: calc(38vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-gnav__item-min:first-child > a img {
    width: calc(38vw / 3.75);
  }
}

.l-gnav__item-min:last-child {
  background-color: #fff;
  color: #EB1D23;
}

.l-gnav__item-min:last-child > a img {
  width: calc(24vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-gnav__item-min:last-child > a img {
    width: calc(24vw / 3.75);
  }
}

.l-gnav__item-min > a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: calc(17vw / 14.4) calc(24vw / 14.4);
  gap: calc(8vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-gnav__item-min > a {
    gap: 10px;
  }
}

.l-gnav__item-min > a > p {
  font-weight: bold;
  font-size: calc(15vw / 14.4);
  text-align: left;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .l-gnav__item-min > a > p {
    font-size: calc(13vw / 3.75);
  }
}

.l-gnav__item-min > a > p > span {
  display: block;
  font-size: calc(11vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-gnav__item-min > a > p > span {
    font-size: calc(9vw / 3.75);
  }
}

.l-gnav__item-hover > a::before {
  display: block;
  content: '';
  width: 0;
  height: 2px;
  background-color: #3B3C3E;
  position: absolute;
  left: 0;
  bottom: -4px;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-gnav__item-hover > a:hover::before {
  width: 100%;
  opacity: 1;
}

.l-gnav__link-contact {
  line-height: 80px;
  width: 150px;
  text-align: center;
  background-color: blue;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-gnav__link-contact:hover {
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .7;
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(1) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(2) {
  display: none;
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(3) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

/*=======================
  main
=======================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(100vw / 14.4);
}

@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}

.l-main {
  display: block;
  padding-top: calc(100vw / 14.4);
  color: #1F1F1F;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 60px;
  }
}

/* -----------------------------------------------------------------
 Component
----------------------------------------------------------------- */
/*=======================
  404
=======================*/
.c-404 {
  padding: 100px 0;
}

.c-404__title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 1em;
}

.c-404__description {
  line-height: 2;
  letter-spacing: 0;
  text-align: center;
}

.c-404__link {
  display: block;
  margin-top: 1em;
  color: #004EA2;
  text-align: center;
  text-decoration: underline;
}

.c-btn > a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
  width: 320px;
  height: 70px;
  border: 1px solid #3B3C3E;
  background-color: #3B3C3E;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .c-btn > a {
    font-size: 16px;
    width: 240px;
    height: 56px;
  }
}

.c-btn > a::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: .4s;
  transition: .4s;
  z-index: -1;
}

.c-btn > a > .arrow::before, .c-btn > a > .arrow::after {
  display: block;
  content: '';
  height: 1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn > a > .arrow::before {
  width: 60px;
  background-color: #3B3C3E;
  right: -22px;
}

@media screen and (max-width: 1023px) {
  .c-btn > a > .arrow::before {
    width: 40px;
    right: -15px;
  }
}

.c-btn > a > .arrow::after {
  width: 30px;
  background-color: #fff;
  right: 8px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

@media screen and (max-width: 1023px) {
  .c-btn > a > .arrow::after {
    width: 20px;
    right: 4px;
  }
}

.c-btn > a:hover {
  color: #3B3C3E;
}

.c-btn > a:hover::before {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

.c-btn > a:hover > .arrow::before {
  background-color: transparent;
}

.c-btn > a:hover > .arrow::after {
  background-color: #3B3C3E;
  -webkit-animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
          animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
}

.c-btn.m-small > a {
  width: 225px;
  height: 55px;
  font-size: 14px;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-small > a {
    width: 190px;
    height: 50px;
  }
}

.c-btn.m-small > a > .arrow::before {
  width: 40px;
  right: -20px;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-small > a > .arrow::before {
    width: 30px;
    right: -15px;
  }
}

.c-btn.m-white > a {
  color: #3B3C3E;
  font-weight: 300;
  background-color: #fff;
}

.c-btn.m-white > a::before {
  background-color: #F0F0F0;
}

.c-btn.m-white > a > .arrow::before {
  background-color: #3B3C3E;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.c-btn.m-white > a > .arrow::after {
  content: none;
}

.c-btn.m-white > a:hover > .arrow::before {
  background-color: #3B3C3E;
  -webkit-animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
          animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
}

.c-btn.m-align-center {
  text-align: center;
}

.c-btn.m-align-right {
  text-align: right;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-align-right {
    margin-right: 20px;
  }
}

.c-btn.m-fw-normal > a {
  font-weight: 400;
}

.sp-only {
  display: none;
}

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

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

a {
  -webkit-transition: .3s;
  transition: .3s;
}

a:hover {
  opacity: .6;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 0 0 20px !important;
  background: #ccc;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin-left: 15px;
  }
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  background: #EB1D23;
}

.swiper-button-prev,
.swiper-button-next {
  width: 30px;
  /* ボタンの幅 */
  height: 30px;
  /* ボタンの高さ */
  background-size: 30px 30px;
  /* 表示したいサイズ */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

/* 次ページボタンのスタイル */
.swiper-button-next {
  right: 13px;
  background-image: url(../img/home/icon-next.png);
}

/* 前ページボタンのスタイル */
.swiper-button-prev {
  left: 13px;
  background-image: url(../img/home/icon-prev.png);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: calc(43vw / 14.4);
}

@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: calc(42vw / 3.75);
  }
}

.c-title-en {
  font-size: calc(76vw / 14.4);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  color: #1F1715;
  font-family: "Bayon", sans-serif;
}

@media screen and (max-width: 767px) {
  .c-title-en {
    font-size: calc(40vw / 3.75);
  }
}

.c-title-en > span {
  color: #EB1D23;
}

.c-title-jp {
  font-weight: bold;
  font-size: calc(24vw / 14.4);
  line-height: 1;
  letter-spacing: 0;
  margin-top: calc(16vw / 14.4);
}

@media screen and (max-width: 767px) {
  .c-title-jp {
    font-size: calc(16vw / 3.75);
    margin-top: calc(16vw / 3.75);
  }
}

/* -----------------------------------------------------------------
 Utility
----------------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .u-pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .u-sp-none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-only-tl {
    display: none !important;
  }
}

/* -----------------------------------------------------------------
Project
----------------------------------------------------------------- */
/*=======================
  contact
=======================*/
/*=======================
  home
=======================*/
.hm-fv__container {
  position: relative;
}

.hm-fv__boxes {
  position: absolute;
  width: calc(739vw / 14.4);
  left: calc(147vw / 14.4);
  bottom: calc(120vw / 14.4);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .hm-fv__boxes {
    width: calc(352vw / 3.75);
    left: 0;
    right: 0;
    bottom: calc(118vw / 3.75);
    margin: auto;
  }
}

.hm-fv__title {
  font-weight: bold;
  color: #fff;
  font-size: calc(56vw / 14.4);
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  .hm-fv__title {
    font-size: calc(26vw / 3.75);
    line-height: 1.6;
  }
}

.hm-fv__box {
  margin-top: calc(44vw / 14.4);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .hm-fv__box {
    margin: calc(44vw / 3.75) auto 0;
    width: calc(335vw / 3.75);
  }
}

.hm-fv__text {
  display: inline-block;
  position: relative;
  font-size: calc(18vw / 14.4);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.98;
}

@media screen and (max-width: 767px) {
  .hm-fv__text {
    font-size: calc(16vw / 3.75);
    line-height: 1.7;
  }
}

.hm-fv__text::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-63vw / 14.4);
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: calc(41vw / 14.4);
  height: 2px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .hm-fv__text::after {
    width: calc(41vw / 3.75);
    left: calc(-51vw / 3.75);
  }
}

.hm-fv__text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(-63vw / 14.4);
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: calc(41vw / 14.4);
  height: 2px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .hm-fv__text::before {
    width: calc(41vw / 3.75);
    right: calc(-51vw / 3.75);
  }
}

.hm-fv__link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(20vw / 14.4);
  margin-top: calc(16vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-fv__link-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(16vw / 3.75);
    margin-top: calc(16vw / 3.75);
  }
}

.hm-fv__link {
  padding: calc(17.5vw / 14.4) calc(32vw / 14.4);
  font-weight: bold;
  font-size: calc(17vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 1.6;
  border-radius: calc(36vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .hm-fv__link {
    width: 100%;
    padding: calc(17.5vw / 3.75);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: calc(36vw / 3.75);
    font-size: calc(15vw / 3.75);
  }
}

.hm-fv__link:first-child {
  background-color: #EB1D23;
  color: #fff;
  -webkit-box-shadow: 0 4px 15px #ff00003f;
          box-shadow: 0 4px 15px #ff00003f;
}

.hm-fv__link:first-child > img {
  width: calc(38vw / 14.4);
  margin-left: calc(12vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-fv__link:first-child > img {
    width: calc(38vw / 3.75);
    margin-left: calc(12vw / 3.75);
  }
}

.hm-fv__link:last-child {
  background-color: #fff;
  border: 2px solid #EB1D23;
  color: #EB1D23;
}

.hm-fv__link:last-child > span {
  font-size: calc(13vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-fv__link:last-child > span {
    font-size: calc(10vw / 3.75);
  }
}

.hm-fv__link:last-child > img {
  width: calc(32vw / 14.4);
  margin-left: calc(12vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-fv__link:last-child > img {
    width: calc(32vw / 3.75);
    margin-left: calc(12vw / 3.75);
  }
}

.hm-service {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#F8F9FA), color-stop(45%, #F8F9FA), color-stop(45%, #EBEEF3), to(#EBEEF3));
  background-image: linear-gradient(to bottom, #F8F9FA 0%, #F8F9FA 45%, #EBEEF3 45%, #EBEEF3 100%);
}

@media screen and (max-width: 767px) {
  .hm-service {
    background-image: linear-gradient(160deg, #F8F9FA 0%, #F8F9FA 40%, #EBEEF3 40%, #EBEEF3 80%, #F8F9FA 80%, #F8F9FA 100%);
  }
}

.hm-service__container {
  padding: calc(80vw / 14.4) calc(120vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-service__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.hm-service__title-box {
  text-align: center;
}

.hm-service__copy {
  font-weight: bold;
  font-size: calc(19vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  margin-top: calc(16vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-service__copy {
    font-size: calc(14vw / 3.75);
    margin-top: calc(16vw / 3.75);
  }
}

.hm-service__text {
  font-size: calc(18vw / 14.4);
  line-height: 1.7;
  letter-spacing: 0;
  width: calc(792vw / 14.4);
  margin: calc(32vw / 14.4) auto 0;
}

@media screen and (max-width: 767px) {
  .hm-service__text {
    font-size: calc(14vw / 3.75);
    margin-top: calc(16vw / 3.75);
    width: 100%;
  }
}

.hm-service__boxes {
  width: calc(1160vw / 14.4);
  margin: calc(32vw / 14.4) auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(40vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-service__boxes {
    margin-top: calc(32vw / 14.4);
    width: 100%;
    gap: calc(40vw / 3.75);
  }
}

.hm-service__box {
  width: calc(403vw / 14.4);
  background-color: #fff;
  border-radius: calc(32vw / 14.4);
  padding: calc(30vw / 14.4) calc(19vw / 14.4) calc(19vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-service__box {
    border-radius: calc(32vw / 3.75);
    padding: calc(26vw / 3.75) calc(19vw / 3.75);
    width: 100%;
  }
}

.hm-service__box-title {
  font-weight: bold;
  font-size: calc(18vw / 14.4);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .hm-service__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.hm-service__img {
  height: calc(83vw / 14.4);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: calc(24vw / 14.4) auto 0;
}

@media screen and (max-width: 767px) {
  .hm-service__img {
    height: calc(62vw / 3.75);
    margin-top: calc(24vw / 3.75);
  }
}

.hm-service__img > img {
  height: 100%;
  width: auto;
}

.hm-service__box-text {
  font-size: calc(13vw / 14.4);
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-service__box-text {
    font-size: calc(14vw / 3.75);
    margin-top: calc(20vw / 3.75);
  }
}

.hm-service__price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-top: 17px;
  margin-top: 20px;
  border-top: 2px solid #1F1F1F;
}

.hm-service__price-title {
  font-size: calc(11vw / 14.4);
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .hm-service__price-title {
    font-size: calc(11vw / 3.75);
  }
}

.hm-service__price-text {
  font-weight: bold;
  font-size: calc(15vw / 14.4);
  line-height: 1.5;
  color: #1E293B;
}

@media screen and (max-width: 767px) {
  .hm-service__price-text {
    font-size: calc(15vw / 3.75);
  }
}

.hm-service__link-box {
  text-align: center;
  margin-top: calc(26vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-service__link-box {
    margin-top: calc(26vw / 3.75);
  }
}

.hm-service__link {
  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: calc(13vw / 14.4);
  width: calc(247vw / 14.4);
  height: calc(52vw / 14.4);
  border-radius: calc(32vw / 14.4);
  background-color: #EB1D23;
  color: #fff;
  font-weight: bold;
  font-size: calc(13vw / 14.4);
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .hm-service__link {
    width: calc(247vw / 3.75);
    font-size: calc(13vw / 3.75);
    height: calc(52vw / 3.75);
    border-radius: calc(30vw / 3.75);
    font-size: calc(13vw / 3.75);
    gap: 14px;
  }
}

.hm-service__link > img {
  width: 8px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.hm-reason {
  background-image: linear-gradient(-25deg, #F8F9FA 0%, #F8F9FA 50%, #EBEEF3 50%, #EBEEF3 100%);
}

@media screen and (max-width: 767px) {
  .hm-reason {
    background-image: unset;
    background-color: #F8F9FA;
  }
}

.hm-reason__container {
  padding: calc(80vw / 14.4) calc(90vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-reason__container {
    padding: calc(80vw / 3.75) calc(40vw / 3.75);
  }
}

.hm-reason__title-box {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .hm-reason__title-box {
    text-align: center;
  }
}

.hm-reason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: calc(69vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-reason__list {
    margin-top: calc(56vw / 3.75);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(40vw / 3.75);
  }
}

.hm-reason__item {
  background-color: #fff;
  border-radius: calc(30vw / 14.4);
  position: relative;
  padding: calc(53vw / 14.4) calc(20vw / 14.4) calc(30vw / 14.4);
  width: calc(294vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-reason__item {
    width: 100%;
    padding: calc(53vw / 3.75) calc(20vw / 3.75) calc(30vw / 3.75);
    border-radius: calc(30vw / 3.75);
  }
}

.hm-reason__item:nth-child(2) {
  margin-top: 140px;
}

@media screen and (max-width: 767px) {
  .hm-reason__item:nth-child(2) {
    margin-top: 0;
  }
}

.hm-reason__item:nth-child(3) {
  margin-top: 210px;
}

@media screen and (max-width: 767px) {
  .hm-reason__item:nth-child(3) {
    margin-top: 0;
  }
}

.hm-reason__item:nth-child(4) {
  margin-top: 280px;
}

@media screen and (max-width: 767px) {
  .hm-reason__item:nth-child(4) {
    margin-top: 0;
  }
}

.hm-reason__number {
  position: absolute;
  top: calc(10vw / 14.4);
  left: calc(10vw / 14.4);
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: calc(45vw / 14.4);
  line-height: 1;
  color: #ED393F;
}

@media screen and (max-width: 767px) {
  .hm-reason__number {
    top: calc(10vw / 3.75);
    left: calc(10vw / 3.75);
    font-size: calc(45vw / 3.75);
  }
}

.hm-reason__number::after {
  content: "";
  position: absolute;
  height: 2px;
  width: calc(55vw / 14.4);
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
  right: calc(-30vw / 14.4);
  bottom: calc(-5vw / 14.4);
  background-color: #ED393F;
}

@media screen and (max-width: 767px) {
  .hm-reason__number::after {
    width: calc(55vw / 3.75);
    right: calc(-30vw / 3.75);
    bottom: calc(-5vw / 3.75);
  }
}

.hm-reason__item-title {
  margin-left: calc(69vw / 14.4);
  font-weight: bold;
  font-size: calc(23vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .hm-reason__item-title {
    margin-left: calc(69vw / 3.75);
    font-size: calc(23vw / 3.75);
  }
}

.hm-reason__item-img {
  margin-top: 24px;
}

.hm-reason__item-text {
  font-size: calc(16vw / 14.4);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #1f1f1f;
  margin-top: calc(16vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-reason__item-text {
    font-size: calc(16vw / 3.75);
    margin-top: 16px;
  }
}

.hm-about {
  background-image: url(../img/home/about-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.hm-about__container {
  padding: calc(30vw / 14.4) 0 calc(100vw / 14.4) calc(140vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-about__container {
    padding: calc(80vw / 3.75) 0 calc(130vw / 3.75) calc(20vw / 3.75);
  }
}

.hm-about__title-box {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .hm-about__img {
    display: block;
    margin-top: calc(57vw / 3.75);
  }
}

.hm-about__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: calc(70vw / 14.4);
  padding-right: calc(223vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-about__boxes {
    padding-right: calc(20vw / 3.75);
    margin-top: calc(107vw / 3.75);
  }
}

.hm-about__text-box {
  width: calc(728vw / 14.4);
  padding: calc(56vw / 14.4) calc(93vw / 14.4) calc(50vw / 14.4) calc(50vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-about__text-box {
    width: 100%;
    padding: 0;
  }
}

.hm-about__box-title {
  font-size: calc(23vw / 14.4);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #1F1715;
  padding-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .hm-about__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.hm-about__box-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 29px;
  height: 2px;
  background-color: #EB1D23;
}

.hm-about__box-copy {
  font-size: calc(22vw / 14.4);
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: calc(18vw / 14.4);
  color: #1F1715;
}

@media screen and (max-width: 767px) {
  .hm-about__box-copy {
    font-size: calc(18vw / 3.75);
    margin-top: calc(18vw / 3.75);
  }
}

.hm-about__box-text {
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 2.6;
  color: #1F1715;
  margin-top: calc(18vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-about__box-text {
    font-size: calc(14vw / 3.75);
    margin-top: calc(18vw / 3.75);
  }
}

.hm-message {
  background-color: #f7f7f7;
}

.hm-message__container {
  padding: calc(80vw / 14.4) calc(120vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-message__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.hm-message__title-box {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .hm-message__title-box {
    text-align: center;
  }
}

.hm-message__img {
  width: calc(459vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-message__img {
    display: block;
    width: 100%;
  }
}

.hm-message__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: calc(112vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-message__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: calc(32vw / 3.75);
  }
}

@media screen and (max-width: 767px) {
  .hm-message__text-box {
    margin-top: calc(40vw / 3.75);
  }
}

.hm-message__text-box {
  width: calc(560vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-message__text-box {
    width: 100%;
    padding: 0;
  }
}

.hm-message__box-title {
  font-size: calc(23vw / 14.4);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #1F1715;
  padding-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .hm-message__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.hm-message__box-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 29px;
  height: 2px;
  background-color: #EB1D23;
}

.hm-message__box-text {
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 2;
  color: #1F1715;
  margin-top: calc(18vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-message__box-text {
    font-size: calc(14vw / 3.75);
    margin-top: calc(8vw / 3.75);
  }
}

.hm-message__box-name {
  font-weight: bold;
  font-size: calc(16vw / 14.4);
  line-height: 1.8;
  text-align: right;
  margin-top: calc(17vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-message__box-name {
    font-size: calc(16vw / 3.75);
    margin-top: calc(16vw / 3.75);
  }
}

.hm-message__slider {
  padding: 0 0 80px;
}

@media screen and (max-width: 767px) {
  .hm-message__slider {
    padding: 0 calc(15vw / 3.75) 80px;
  }
}

.hm-voice {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#F8F9FA), color-stop(65%, #F8F9FA), color-stop(65%, #EBEEF3), to(#EBEEF3));
  background-image: linear-gradient(to bottom, #F8F9FA 0%, #F8F9FA 65%, #EBEEF3 65%, #EBEEF3 100%);
}

.hm-voice__container {
  padding: calc(80vw / 14.4) calc(120vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-voice__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.hm-voice__title-box {
  text-align: center;
}

.hm-voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(30vw / 14.4);
  margin-top: calc(56vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-voice__list {
    margin-top: calc(32vw / 3.75);
    gap: calc(30vw / 3.75);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.hm-voice__item {
  width: calc(366vw / 14.4);
  background-color: #fff;
  border-radius: 12px;
  padding: calc(30vw / 14.4) calc(30vw / 14.4) calc(77vw / 14.4);
  position: relative;
}

@media screen and (max-width: 767px) {
  .hm-voice__item {
    width: 100%;
    padding: calc(30vw / 3.75);
  }
}

.hm-voice__img {
  display: block;
  width: calc(112vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-voice__img {
    width: calc(98vw / 3.75);
  }
}

.hm-voice__text {
  margin-top: 16px;
  font-size: calc(16vw / 14.4);
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .hm-voice__text {
    font-size: calc(14vw / 3.75);
  }
}

.hm-voice__name {
  margin-top: 14px;
  text-align: right;
  font-size: calc(16vw / 14.4);
  font-weight: 500;
  color: #4B5563;
  line-height: 2;
  position: absolute;
  right: calc(30vw / 14.4);
  bottom: calc(30vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-voice__name {
    position: relative;
    font-size: calc(14vw / 3.75);
  }
}

.hm-access {
  background-color: #fff;
}

.hm-access__container {
  padding: calc(80vw / 14.4) calc(140vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-access__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.hm-access__title-box {
  text-align: center;
}

.hm-access__boxes {
  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;
  margin-top: calc(56vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-access__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(32vw / 3.75);
  }
}

.hm-access__list {
  width: calc(550vw / 14.4);
}

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

.hm-access__item:not(:first-child) {
  margin-top: calc(30vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-access__item:not(:first-child) {
    margin-top: calc(30vw / 3.75);
  }
}

.hm-access__item-title {
  font-weight: 500;
  font-size: calc(19vw / 14.4);
  line-height: 1.6;
  color: #2D1B1B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .hm-access__item-title {
    font-size: calc(19vw / 3.75);
  }
}

.hm-access__item-title > img {
  display: inline-block;
  width: calc(24vw / 14.4);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-right: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-access__item-title > img {
    width: calc(24vw / 3.75);
    padding-right: calc(20vw / 3.75);
  }
}

.hm-access__item-text {
  font-size: calc(16vw / 14.4);
  line-height: 2;
  margin-top: 8px;
  padding-left: calc(44vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-access__item-text {
    font-size: calc(16vw / 3.75);
    padding-left: calc(44vw / 3.75);
  }
}

.hm-access__map {
  width: calc(550vw / 14.4);
  height: calc(400vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-access__map {
    width: 100%;
    height: calc(400vw / 3.75);
  }
}

.hm-access__map > iframe {
  width: 100%;
  height: 100%;
}

.hm-contact {
  background-image: linear-gradient(-165deg, #F8F9FA 0%, #F8F9FA 50%, #EBEEF3 50%, #EBEEF3 100%);
}

.hm-contact__container {
  padding: calc(80vw / 14.4) calc(140vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-contact__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.hm-contact__title-box {
  text-align: center;
}

.hm-contact__text {
  margin-top: calc(48vw / 14.4);
  font-size: calc(18vw / 14.4);
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .hm-contact__text {
    font-size: calc(14vw / 3.75);
    text-align: left;
    margin-top: calc(48vw / 3.75);
  }
}

.hm-contact__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 48px;
}

@media screen and (max-width: 767px) {
  .hm-contact__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.hm-contact__tel-box {
  width: calc(440vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-contact__tel-box {
    width: 100%;
  }
}

.hm-contact__line-title {
  font-weight: 500;
  font-size: calc(19vw / 14.4);
  line-height: 1.6;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(20vw / 14.4);
  margin-bottom: 20px;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .hm-contact__line-title {
    font-size: calc(17vw / 3.75);
    gap: calc(38vw / 3.75);
  }
}

.hm-contact__line-title > img {
  width: calc(32vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-contact__line-title > img {
    width: calc(32vw / 3.75);
  }
}

.hm-contact__tel-title {
  font-weight: 500;
  font-size: calc(19vw / 14.4);
  line-height: 1.6;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-contact__tel-title {
    font-size: calc(17vw / 3.75);
    gap: calc(38vw / 3.75);
  }
}

.hm-contact__tel-title > img {
  width: calc(32vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-contact__tel-title > img {
    width: calc(32vw / 3.75);
  }
}

.hm-contact__tel-number {
  font-size: calc(32vw / 14.4);
  font-weight: bold;
  line-height: 1.6;
  color: #2D1B1B;
  padding-left: calc(52vw / 14.4);
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .hm-contact__tel-number {
    font-size: calc(30vw / 3.75);
    padding-left: calc(68vw / 3.75);
  }
}

.hm-contact__tel-text {
  font-size: calc(16vw / 14.4);
  line-height: 2;
  color: #333;
  padding-left: calc(52vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-contact__tel-text {
    font-size: calc(14vw / 3.75);
    padding-left: calc(68vw / 3.75);
    margin-top: 8px;
  }
}

.hm-contact__form-box {
  background-color: #fff;
  width: calc(660vw / 14.4);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: calc(40vw / 14.4);
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .hm-contact__form-box {
    width: 100%;
    padding: calc(40vw / 3.75) calc(20vw / 3.75);
    margin-top: 60px;
  }
}

.hm-contact__form-title {
  font-weight: 500;
  font-size: calc(24vw / 14.4);
  line-height: 1.6;
  color: #2D1B1B;
}

@media screen and (max-width: 767px) {
  .hm-contact__form-title {
    font-size: calc(22vw / 3.75);
  }
}

.hm-contact__form-item {
  margin-top: 24px;
}

.hm-contact__form-name {
  display: block;
  font-weight: 500;
  font-size: calc(16vw / 14.4);
  line-height: 2;
  color: #2D3748;
}

@media screen and (max-width: 767px) {
  .hm-contact__form-name {
    font-size: calc(14vw / 3.75);
  }
}

.hm-contact__form-name > span {
  color: #E53E3E;
}

.hm-contact__form-submit {
  position: relative;
  display: inline-block;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .hm-contact__form-submit {
    width: 100%;
  }
}

.hm-contact__form-submit::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(90vw / 14.4);
  margin: auto;
  background-image: url(../img/component/link-arrow.png);
  width: 9px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .hm-contact__form-submit::after {
    right: calc(90vw / 3.75);
  }
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  background-color: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 14px;
  font-size: 16px;
  margin-top: 8px;
}

.hm-contact__form-item input[type="text"]:focus,
.hm-contact__form-item input[type="email"]:focus,
.hm-contact__form-item input[type="tel"]:focus,
.hm-contact__form-item textarea:focus,
.hm-contact__form-item select:focus {
  border: 1px solid #E2E8F0;
}

textarea {
  height: 124px;
}

select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  background-color: #EFEFEF;
  color: #000;
  border-radius: 6px;
  padding: 14px;
  font-size: 16px;
  margin-top: 8px;
}

input[type="submit"] {
  width: calc(306vw / 14.4);
  height: calc(64vw / 14.4);
  font-size: calc(16vw / 14.4);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  border-radius: calc(38vw / 14.4);
  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;
  background-color: #EB1D23;
  border: none;
}

@media screen and (max-width: 767px) {
  input[type="submit"] {
    width: 100%;
    font-size: calc(14vw / 3.75);
    height: calc(64vw / 3.75);
    border-radius: calc(38vw / 3.75);
  }
}

.wpcf7-spinner {
  position: absolute !important;
}

.page-id-8 .l-main {
  padding-top: calc(80vw / 14.4);
}

@media screen and (max-width: 767px) {
  .page-id-8 .l-main {
    padding-top: 60px;
  }
}

.page-id-8 .l-header {
  height: calc(80vw / 14.4);
}

.page-id-8 .l-header__logo a p {
  color: #ED1C22;
  font-size: calc(11vw / 14.4);
}

@media screen and (max-width: 767px) {
  .page-id-8 .l-header {
    height: 60px;
  }
}

.page-id-8 .l-gnav__link {
  font-size: calc(13vw / 14.4);
}

@media screen and (max-width: 767px) {
  .page-id-8 .l-gnav__link {
    font-size: calc(15vw / 3.75);
  }
}

.page-id-8 .l-footer {
  background-color: #000;
}

.page-id-8 .l-footer__nav {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
      -ms-flex-direction: unset;
          flex-direction: unset;
  gap: calc(18vw / 14.4);
}

@media screen and (max-width: 767px) {
  .page-id-8 .l-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: unset;
        flex-wrap: unset;
    gap: 8px;
  }
}

.page-id-8 .l-footer__item {
  display: inline-block;
  min-width: calc(99vw / 14.4);
}

@media screen and (max-width: 767px) {
  .page-id-8 .l-footer__item {
    display: block;
    width: auto;
  }
}

.page-id-8 .l-footer__item > a {
  font-size: calc(13vw / 14.4);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .page-id-8 .l-footer__item > a {
    font-size: calc(13vw / 3.75);
  }
}

.page-id-8 .l-footer__item > a > img {
  opacity: 1;
}

.rct-fv__container {
  position: relative;
}

.rct-fv__boxes {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .rct-fv__boxes {
    width: calc(352vw / 3.75);
    top: unset;
    bottom: calc(98vw / 3.75);
    margin: auto;
  }
}

.rct-fv__title {
  font-weight: bold;
  color: #fff;
  font-style: italic;
  font-size: calc(56vw / 14.4);
  letter-spacing: 0.1em;
  line-height: 1.2;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), color-stop(50%, #ffffff), color-stop(50%, #FFC7C7), to(#FFC7C7));
  background: linear-gradient(to bottom, #FFFFFF 0%, #ffffff 50%, #FFC7C7 50%, #FFC7C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 8px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .rct-fv__title {
    font-size: calc(26vw / 3.75);
    line-height: 1.6;
    text-align: center;
  }
}

.rct-fv__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(130deg, #FF0000, #CC0000);
  z-index: -1;
}

.rct-fv__box {
  margin-top: calc(44vw / 14.4);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .rct-fv__box {
    margin: calc(44vw / 3.75) auto 0;
    width: calc(335vw / 3.75);
  }
}

.rct-fv__text {
  display: inline-block;
  position: relative;
  font-size: calc(18vw / 14.4);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.98;
}

@media screen and (max-width: 767px) {
  .rct-fv__text {
    font-size: calc(14vw / 3.75);
    line-height: 1.7;
  }
}

.rct-fv__text::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-63vw / 14.4);
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: calc(41vw / 14.4);
  height: 2px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .rct-fv__text::after {
    width: calc(31vw / 3.75);
    left: calc(-41vw / 3.75);
  }
}

.rct-fv__text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(-63vw / 14.4);
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: calc(41vw / 14.4);
  height: 2px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .rct-fv__text::before {
    width: calc(31vw / 3.75);
    right: calc(-41vw / 3.75);
  }
}

.rct-fv__link-box {
  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: calc(20vw / 14.4);
  margin-top: calc(16vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-fv__link-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(16vw / 3.75);
    margin-top: calc(16vw / 3.75);
  }
}

.rct-fv__link {
  padding: calc(17.5vw / 14.4) calc(48vw / 14.4);
  font-weight: bold;
  font-size: calc(17vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 1.6;
  border-radius: calc(36vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .rct-fv__link {
    width: 100%;
    padding: calc(17.5vw / 3.75);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: calc(36vw / 3.75);
    font-size: calc(15vw / 3.75);
  }
}

.rct-fv__link:first-child {
  background-color: #EB1D23;
  color: #fff;
  -webkit-box-shadow: 0 4px 15px #ff00003f;
          box-shadow: 0 4px 15px #ff00003f;
}

.rct-fv__link:first-child > img {
  width: calc(38vw / 14.4);
  margin-left: calc(12vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-fv__link:first-child > img {
    width: calc(38vw / 3.75);
    margin-left: calc(12vw / 3.75);
  }
}

.rct-fv__link:last-child {
  background-color: #fff;
  border: 2px solid #EB1D23;
  color: #EB1D23;
}

.rct-fv__link:last-child > span {
  font-size: calc(13vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-fv__link:last-child > span {
    font-size: calc(10vw / 3.75);
  }
}

.rct-fv__link:last-child > img {
  width: calc(32vw / 14.4);
  margin-left: calc(12vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-fv__link:last-child > img {
    width: calc(32vw / 3.75);
    margin-left: calc(12vw / 3.75);
  }
}

.rct-problem {
  background-color: #fff;
  background-image: radial-gradient(circle, #f3f4f6 2px, transparent 2px);
  background-position: 0 0;
  background-size: 24px 24px;
}

.rct-problem__container {
  position: relative;
  padding: calc(60vw / 14.4) calc(140vw / 14.4) calc(100vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-problem__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75) calc(256vw / 3.75);
  }
}

.rct-problem__boxes {
  text-align: center;
  width: calc(696vw / 14.4);
  margin: auto;
}

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

.rct-problem__title-en {
  font-size: calc(16vw / 14.4);
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: #666;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .rct-problem__title-en {
    font-size: calc(16vw / 3.75);
  }
}

.rct-problem__title-jp {
  position: relative;
  font-size: calc(30vw / 14.4);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding: calc(20vw / 14.4) 0;
  color: #FFFFFF;
  background-color: #1F2937;
}

@media screen and (max-width: 767px) {
  .rct-problem__title-jp {
    font-size: calc(22vw / 3.75);
    padding: calc(20vw / 3.75) 0;
    line-height: 1.7;
    text-align: center;
  }
}

.rct-problem__title-jp::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -19px;
  border-style: solid;
  border-right: 19px solid transparent;
  border-left: 19px solid transparent;
  border-top: 24px solid #1f2937;
  border-bottom: 0;
}

.rct-problem__box {
  background-color: #F3F4F6;
  padding: 27px 20px;
  margin-top: 32px;
}

.rct-problem__text-box {
  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;
}

@media screen and (max-width: 767px) {
  .rct-problem__text-box {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.rct-problem__text-box:not(:first-child) {
  margin-top: calc(30vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-problem__text-box:not(:first-child) {
    margin-top: 30px;
  }
}

.rct-problem__text-box > img {
  width: calc(29vw / 14.4);
  padding-right: 10px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .rct-problem__text-box > img {
    width: calc(29vw / 3.75);
  }
}

.rct-problem__text {
  color: #1E293B;
  font-size: calc(15vw / 14.4);
  line-height: 1.9;
}

@media screen and (max-width: 767px) {
  .rct-problem__text {
    font-size: calc(13vw / 3.75);
    text-align: left;
  }
}

.rct-problem__text > span {
  font-weight: bold;
}

.rct-problem__solution-box {
  position: absolute;
  bottom: calc(-70vw / 14.4);
  right: 0;
  left: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .rct-problem__solution-box {
    bottom: calc(80vw / 3.75);
  }
}

.rct-problem__solution-title {
  font-size: calc(24vw / 14.4);
  font-weight: bold;
  line-height: 1.5;
  color: #EB1D23;
}

@media screen and (max-width: 767px) {
  .rct-problem__solution-title {
    font-size: calc(17vw / 3.75);
  }
}

.rct-problem__solution-img {
  width: calc(43vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-problem__solution-img {
    width: calc(43vw / 3.75);
  }
}

.rct-reason {
  background-image: linear-gradient(-25deg, #F8F9FA 0%, #F8F9FA 50%, #EBEEF3 50%, #EBEEF3 100%);
}

@media screen and (max-width: 767px) {
  .rct-reason {
    background-image: unset;
    background-color: #F8F9FA;
  }
}

.rct-reason__container {
  padding: calc(160vw / 14.4) calc(90vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-reason__container {
    padding: calc(80vw / 3.75) calc(40vw / 3.75);
  }
}

.rct-reason__title-box {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .rct-reason__title-box {
    text-align: center;
  }
}

.rct-reason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: calc(69vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-reason__list {
    margin-top: calc(56vw / 3.75);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(40vw / 3.75);
  }
}

.rct-reason__item {
  background-color: #fff;
  border-radius: calc(30vw / 14.4);
  position: relative;
  padding: calc(53vw / 14.4) calc(20vw / 14.4) calc(30vw / 14.4);
  width: calc(294vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-reason__item {
    width: 100%;
    padding: calc(53vw / 3.75) calc(20vw / 3.75) calc(30vw / 3.75);
    border-radius: calc(30vw / 3.75);
  }
}

.rct-reason__item:nth-child(2) {
  margin-top: 140px;
}

@media screen and (max-width: 767px) {
  .rct-reason__item:nth-child(2) {
    margin-top: 0;
  }
}

.rct-reason__item:nth-child(3) {
  margin-top: 210px;
}

@media screen and (max-width: 767px) {
  .rct-reason__item:nth-child(3) {
    margin-top: 0;
  }
}

.rct-reason__item:nth-child(4) {
  margin-top: 280px;
}

@media screen and (max-width: 767px) {
  .rct-reason__item:nth-child(4) {
    margin-top: 0;
  }
}

.rct-reason__number {
  position: absolute;
  top: calc(-40vw / 14.4);
  left: calc(0vw / 14.4);
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: calc(67vw / 14.4);
  line-height: 1;
  color: #ED393F;
  font-style: italic;
}

@media screen and (max-width: 767px) {
  .rct-reason__number {
    top: calc(-40vw / 3.75);
    left: calc(0vw / 3.75);
    font-size: calc(65vw / 3.75);
  }
}

.rct-reason__item-title {
  font-weight: bold;
  font-size: calc(21vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-bottom: 5px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .rct-reason__item-title {
    font-size: calc(19vw / 3.75);
  }
}

.rct-reason__item-title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(130deg, #FF0000, #CC0000);
}

.rct-reason__item-img {
  margin-top: 24px;
}

.rct-reason__item-text {
  font-size: calc(16vw / 14.4);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #1f1f1f;
  margin-top: calc(16vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-reason__item-text {
    font-size: calc(16vw / 3.75);
    margin-top: 16px;
  }
}

.rct-reason__item-text > span {
  font-weight: bold;
}

.rct-voice {
  background-color: #F8F9FA;
}

.rct-voice__container {
  padding: calc(80vw / 14.4) 0 0;
}

@media screen and (max-width: 767px) {
  .rct-voice__container {
    padding: calc(80vw / 3.75) 0 0;
  }
}

.rct-voice__title-box {
  text-align: center;
}

.rct-voice__copy {
  font-size: calc(18vw / 14.4);
  line-height: 1.6;
  color: #475569;
  margin-top: 16px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .rct-voice__copy {
    font-size: calc(16vw / 3.75);
    padding: 0 calc(20vw / 3.75);
  }
}

.rct-voice__boxes {
  margin-top: calc(48vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-voice__boxes {
    margin-top: 16px;
  }
}

.rct-voice__box {
  background-color: #1F1715;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: calc(80vw / 14.4);
  gap: calc(56vw / 14.4);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .rct-voice__box {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
    gap: calc(56vw / 3.75);
  }
}

@media screen and (max-width: 767px) {
  .rct-voice__box:first-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.rct-voice__box:last-child {
  border-top: 1px solid #CCCCCC;
}

@media screen and (max-width: 767px) {
  .rct-voice__box:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.rct-voice__img {
  width: calc(249vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-voice__img {
    width: calc(249vw / 3.75);
  }
}

.rct-voice__text-box {
  width: calc(739vw / 14.4);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .rct-voice__text-box {
    width: 100%;
  }
}

.rct-voice__cat {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  border: 2px solid #EA5432;
  color: #CE0515;
  font-size: calc(14vw / 14.4);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  border-radius: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-voice__cat {
    font-size: calc(12vw / 3.75);
    border-radius: calc(20vw / 3.75);
  }
}

.rct-voice__name {
  font-size: calc(24vw / 14.4);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .rct-voice__name {
    font-size: calc(22vw / 3.75);
  }
}

.rct-voice__text {
  font-size: calc(16vw / 14.4);
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .rct-voice__text {
    font-size: calc(14vw / 3.75);
  }
}

.rct-voice__text:last-child {
  margin-top: calc(28vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-voice__text:last-child {
    margin-top: calc(28vw / 3.75);
  }
}

.rct-mecha {
  background-image: url(../img/recruit/mecha-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.rct-mecha__container {
  padding: calc(80vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-mecha__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.rct-mecha__title-box {
  text-align: center;
}

.rct-mecha__img {
  display: block;
  width: calc(768vw / 14.4);
  margin: calc(59vw / 14.4) auto 0;
}

@media screen and (max-width: 767px) {
  .rct-mecha__img {
    width: 100%;
    margin-top: calc(59vw / 3.75);
  }
}

.rct-about {
  background-image: url(../img/recruit/about-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.rct-about__container {
  padding: calc(107vw / 14.4) 0 calc(82vw / 14.4) calc(140vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-about__container {
    padding: calc(80vw / 3.75) 0 calc(130vw / 3.75) calc(20vw / 3.75);
  }
}

.rct-about__title-box {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .rct-about__img {
    display: block;
    margin-top: calc(57vw / 3.75);
  }
}

.rct-about__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: calc(70vw / 14.4);
  padding-right: calc(223vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-about__boxes {
    padding-right: calc(20vw / 3.75);
    margin-top: calc(107vw / 3.75);
  }
}

.rct-about__text-box {
  width: calc(728vw / 14.4);
  padding: calc(56vw / 14.4) calc(93vw / 14.4) calc(50vw / 14.4) calc(50vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-about__text-box {
    width: 100%;
    padding: 0;
  }
}

.rct-about__box:nth-child(n+2) {
  margin-top: calc(100vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-about__box:nth-child(n+2) {
    margin-top: calc(72vw / 3.75);
  }
}

.rct-about__box-title {
  font-size: calc(23vw / 14.4);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #1F1715;
  padding-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .rct-about__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.rct-about__box-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 29px;
  height: 2px;
  background-color: #EB1D23;
}

.rct-about__box-copy {
  font-size: calc(22vw / 14.4);
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: calc(18vw / 14.4);
  color: #1F1715;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  .rct-about__box-copy {
    font-size: calc(17vw / 3.75);
    margin-top: calc(18vw / 3.75);
  }
}

.rct-about__box-text {
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 2.6;
  color: #1F1715;
  margin-top: calc(18vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-about__box-text {
    font-size: calc(14vw / 3.75);
    margin-top: calc(18vw / 3.75);
  }
}

.rct-message {
  background-color: #f7f7f7;
}

.rct-message__container {
  padding: calc(80vw / 14.4) calc(120vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-message__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.rct-message__title-box {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .rct-message__title-box {
    text-align: center;
  }
}

.rct-message__img {
  width: calc(459vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-message__img {
    display: block;
    width: 100%;
  }
}

.rct-message__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: calc(112vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-message__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: calc(32vw / 3.75);
  }
}

@media screen and (max-width: 767px) {
  .rct-message__text-box {
    margin-top: calc(40vw / 3.75);
  }
}

.rct-message__text-box {
  width: calc(560vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-message__text-box {
    width: 100%;
    padding: 0;
  }
}

.rct-message__box-title {
  font-size: calc(23vw / 14.4);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #1F1715;
  padding-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .rct-message__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.rct-message__box-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 29px;
  height: 2px;
  background-color: #EB1D23;
}

.rct-message__box-text {
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 2;
  color: #1F1715;
  margin-top: calc(18vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-message__box-text {
    font-size: calc(14vw / 3.75);
    margin-top: calc(8vw / 3.75);
  }
}

.rct-message__box-name {
  font-weight: bold;
  font-size: calc(16vw / 14.4);
  line-height: 1.8;
  text-align: right;
  margin-top: calc(17vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-message__box-name {
    font-size: calc(16vw / 3.75);
    margin-top: calc(16vw / 3.75);
  }
}

.rct-message__slider {
  padding: 0 0 80px;
}

@media screen and (max-width: 767px) {
  .rct-message__slider {
    padding: 0 calc(15vw / 3.75) 80px;
  }
}

.rct-flow {
  background-color: #fff;
  background-image: radial-gradient(circle, #f3f4f6 2px, transparent 2px);
  background-position: 0 0;
  background-size: 24px 24px;
}

.rct-flow__container {
  padding: calc(80vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-flow__container {
    padding: calc(80vw / 3.75) calc(97vw / 3.75);
  }
}

.rct-flow__title-box {
  text-align: center;
}

.rct-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(48vw / 14.4);
  margin-top: 56px;
}

@media screen and (max-width: 767px) {
  .rct-flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(36vw / 3.75);
  }
}

.rct-flow__item {
  width: calc(180vw / 14.4);
  text-align: center;
}

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

.rct-flow__number {
  position: relative;
  font-size: calc(20vw / 14.4);
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  z-index: 1;
  display: block;
}

@media screen and (max-width: 767px) {
  .rct-flow__number {
    font-size: calc(20vw / 3.75);
  }
}

.rct-flow__number::before {
  content: "";
  position: absolute;
  width: calc(48vw / 14.4);
  height: calc(48vw / 14.4);
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #EB1D23;
  border-radius: 50%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .rct-flow__number::before {
    width: calc(48vw / 3.75);
    height: calc(48vw / 3.75);
  }
}

.rct-flow__item-title {
  font-weight: bold;
  font-size: calc(16vw / 14.4);
  margin-top: 16px;
  color: #1f2937;
}

@media screen and (max-width: 767px) {
  .rct-flow__item-title {
    font-size: calc(16vw / 3.75);
  }
}

.rct-flow__img {
  margin-top: 8px;
}

.rct-flow__text {
  font-size: calc(14vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #1F1715;
  margin-top: 16px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .rct-flow__text {
    font-size: calc(14vw / 3.75);
  }
}

.rct-job {
  background-color: #F8F9FA;
}

.rct-job__container {
  padding: calc(80vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-job__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.rct-job__title-box {
  text-align: center;
}

.rct-job__boxes {
  width: calc(896vw / 14.4);
  margin: 56px auto 0;
  border: 1px solid #CBD5E1;
}

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

.rct-job__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rct-job__box:not(:first-child) {
  border-top: 1px solid #CBD5E1;
}

.rct-job__name {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(298vw / 14.4);
  padding: 16px;
  background-color: #F3F4F6;
  font-size: calc(16vw / 14.4);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #1f2937;
  border-right: 1px solid #CBD5E1;
}

@media screen and (max-width: 767px) {
  .rct-job__name {
    font-size: calc(14vw / 3.75);
    width: calc(120vw / 3.75);
  }
}

.rct-job__text {
  font-size: calc(16vw / 14.4);
  padding: 16px;
  letter-spacing: 0.05em;
  color: #1f2937;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 767px) {
  .rct-job__text {
    font-size: calc(14vw / 3.75);
  }
}

.rct-faq {
  background-color: #F8F9FA;
}

.rct-faq__container {
  padding: calc(80vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-faq__container {
    padding: calc(80vw / 3.75) calc(44vw / 3.75);
  }
}

.rct-faq__title-box {
  text-align: center;
}

.rct-faq__boxes {
  width: calc(720vw / 14.4);
  margin: 56px auto 0;
}

@media screen and (max-width: 767px) {
  .rct-faq__boxes {
    width: 100%;
    margin-top: 32px;
  }
}

.rct-faq__details {
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
}

.rct-faq__details:not(:first-child) {
  margin-top: 28px;
}

.rct-faq__details-summary {
  position: relative;
  border-radius: 10px;
  display: block;
  padding: calc(15vw / 14.4) calc(48vw / 14.4);
  color: #1F2937;
  font-size: calc(16vw / 14.4);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .rct-faq__details-summary {
    padding: calc(16vw / 3.75);
    font-size: calc(14vw / 3.75);
  }
}

.rct-faq__details-summary:hover {
  cursor: pointer;
  opacity: 0.8;
}

.rct-faq__details-summary .btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(48vw / 14.4);
  margin: auto;
  width: 21px;
  height: 21px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

@media screen and (max-width: 767px) {
  .rct-faq__details-summary .btn {
    right: calc(16vw / 3.75);
  }
}

.rct-faq__details-summary .btn:before, .rct-faq__details-summary .btn:after {
  content: "";
  background-color: #EB1D23;
  width: 21px;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: .3s;
  transition: .3s;
}

.rct-faq__details-summary .btn:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.rct-faq__details-summary.is-active .btn:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.rct-faq__details-summary::-webkit-details-marker {
  display: none;
}

.rct-faq__details-content {
  padding: 0 calc(48vw / 14.4) 16px;
}

@media screen and (max-width: 767px) {
  .rct-faq__details-content {
    padding: 0 calc(16vw / 3.75) calc(16vw / 3.75);
  }
}

.rct-faq__details-content p {
  color: #000;
  font-size: calc(15vw / 14.4);
  text-align: left;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .rct-faq__details-content p {
    font-size: calc(13vw / 3.75);
  }
}

.rct-entry {
  background-image: url(../img/recruit/contact-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.rct-entry__container {
  padding: calc(80vw / 14.4) calc(140vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-entry__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.rct-entry__title-box {
  text-align: center;
}

.rct-entry__text-box {
  text-align: center;
}

.rct-entry__copy {
  text-align: center;
  font-weight: bold;
  font-size: calc(36vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-top: 48px;
}

@media screen and (max-width: 767px) {
  .rct-entry__copy {
    font-size: calc(20vw / 3.75);
    line-height: 1.5;
  }
}

.rct-entry__text {
  position: relative;
  margin-top: 16px;
  font-size: calc(18vw / 14.4);
  font-weight: bold;
  line-height: 1.6;
  display: inline-block;
  text-align: center;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .rct-entry__text {
    font-size: calc(14vw / 3.75);
    text-align: left;
    margin-top: calc(48vw / 3.75);
  }
}

.rct-entry__text::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-63vw / 14.4);
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: calc(41vw / 14.4);
  height: 2px;
  background-color: #000;
}

@media screen and (max-width: 767px) {
  .rct-entry__text::after {
    width: calc(31vw / 3.75);
    left: calc(-41vw / 3.75);
  }
}

.rct-entry__text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(-63vw / 14.4);
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: calc(41vw / 14.4);
  height: 2px;
  background-color: #000;
}

@media screen and (max-width: 767px) {
  .rct-entry__text::before {
    width: calc(31vw / 3.75);
    right: calc(-41vw / 3.75);
  }
}

.rct-entry__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 48px;
}

@media screen and (max-width: 767px) {
  .rct-entry__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.rct-entry__tel-box {
  width: calc(440vw / 14.4);
  background-color: #fff;
  border-radius: 10px;
  padding: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-entry__tel-box {
    width: 100%;
    padding: calc(10vw / 3.75);
  }
}

.rct-entry__line-title {
  font-weight: 500;
  font-size: calc(19vw / 14.4);
  line-height: 1.6;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(20vw / 14.4);
  margin-bottom: 20px;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .rct-entry__line-title {
    font-size: calc(17vw / 3.75);
    gap: calc(38vw / 3.75);
  }
}

.rct-entry__line-title > img {
  width: calc(32vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-entry__line-title > img {
    width: calc(32vw / 3.75);
  }
}

.rct-entry__tel-title {
  font-weight: 500;
  font-size: calc(19vw / 14.4);
  line-height: 1.6;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-entry__tel-title {
    font-size: calc(17vw / 3.75);
    gap: calc(38vw / 3.75);
  }
}

.rct-entry__tel-title > img {
  width: calc(32vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-entry__tel-title > img {
    width: calc(32vw / 3.75);
  }
}

.rct-entry__tel-number {
  font-size: calc(32vw / 14.4);
  font-weight: bold;
  line-height: 1.6;
  color: #2D1B1B;
  padding-left: calc(52vw / 14.4);
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .rct-entry__tel-number {
    font-size: calc(30vw / 3.75);
    padding-left: calc(68vw / 3.75);
  }
}

.rct-entry__tel-text {
  font-size: calc(16vw / 14.4);
  line-height: 2;
  color: #333;
  padding-left: calc(52vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rct-entry__tel-text {
    font-size: calc(14vw / 3.75);
    padding-left: calc(68vw / 3.75);
    margin-top: 8px;
  }
}

.rct-entry__form-box {
  background-color: #fff;
  width: calc(660vw / 14.4);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: calc(40vw / 14.4);
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .rct-entry__form-box {
    width: 100%;
    padding: calc(40vw / 3.75) calc(20vw / 3.75);
    margin-top: 60px;
  }
}

.rct-entry__form-title {
  font-weight: 500;
  font-size: calc(24vw / 14.4);
  line-height: 1.6;
  color: #2D1B1B;
}

@media screen and (max-width: 767px) {
  .rct-entry__form-title {
    font-size: calc(22vw / 3.75);
  }
}

.rct-entry__form-item {
  margin-top: 24px;
}

.rct-entry__form-name {
  display: block;
  font-weight: 500;
  font-size: calc(16vw / 14.4);
  line-height: 2;
  color: #2D3748;
}

@media screen and (max-width: 767px) {
  .rct-entry__form-name {
    font-size: calc(14vw / 3.75);
  }
}

.rct-entry__form-name > span {
  color: #E53E3E;
}

.rct-entry__form-submit {
  position: relative;
  display: inline-block;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .rct-entry__form-submit {
    width: 100%;
  }
}

.rct-entry__form-submit::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(90vw / 14.4);
  margin: auto;
  background-image: url(../img/component/link-arrow.png);
  width: 9px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .rct-entry__form-submit::after {
    right: calc(90vw / 3.75);
  }
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  background-color: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 14px;
  font-size: 16px;
  margin-top: 8px;
}

.hm-contact__form-item input[type="text"]:focus,
.hm-contact__form-item input[type="email"]:focus,
.hm-contact__form-item input[type="tel"]:focus,
.hm-contact__form-item textarea:focus,
.hm-contact__form-item select:focus {
  border: 1px solid #E2E8F0;
}

textarea {
  height: 124px;
}

select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  background-color: #EFEFEF;
  color: #000;
  border-radius: 6px;
  padding: 14px;
  font-size: 16px;
  margin-top: 8px;
}

input[type="submit"] {
  width: calc(306vw / 14.4);
  height: calc(64vw / 14.4);
  font-size: calc(16vw / 14.4);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  border-radius: calc(38vw / 14.4);
  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;
  background-color: #EB1D23;
  border: none;
}

@media screen and (max-width: 767px) {
  input[type="submit"] {
    width: 100%;
    font-size: calc(14vw / 3.75);
    height: calc(64vw / 3.75);
    border-radius: calc(38vw / 3.75);
  }
}

.wpcf7-spinner {
  position: absolute !important;
}
/*# sourceMappingURL=style.css.map */