@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;
}

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-size: 14px;
  font-weight: 400;
  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: #233439;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  background-color: #203D7A;
}

@media screen and (max-width: 767px) {
  .l-footer {
    background-position: center;
  }
}

.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(43vw / 14.4) calc(50vw / 14.4) calc(10vw / 14.4);
}

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

.l-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12vw / 14.4), 9999px);
  text-align: center;
  margin-top: calc(43vw / 14.4);
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .l-footer__copyright {
    text-align: center;
    width: 100%;
    font-size: calc(12vw / 3.75);
    margin-top: 60px;
  }
}

.l-footer__nav {
  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(62vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: calc(15vw / 3.75);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__nav > li {
    line-height: 1;
  }
}

.l-footer__nav > li > a {
  display: inline-block;
  font-weight: 400;
  font-size: clamp(12px, calc(14vw / 14.4), 9999px);
  position: relative;
}

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

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

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

.l-footer__nav > li.m-contact > a {
  width: 88px;
  height: 32px;
  line-height: 30px;
  border: 1px solid #fff;
  text-align: center;
}

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

@media screen and (min-width: 768px) {
  .l-footer__nav > li.m-contact > a {
    width: 106px;
    height: 40px;
    line-height: 38px;
  }
}

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

/*=======================
  header
=======================*/
.l-header {
  width: 100%;
  height: 80px;
  background-color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

@media screen and (max-width: 767px) {
  .l-header {
    height: 70px;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  }
}

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

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

.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  font-size: clamp(20px, calc(34vw / 14.4), 34px);
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}

@media screen and (max-width: 767px) {
  .l-header__logo {
    font-size: calc(24vw / 3.75);
    font-size: clamp(12px, calc(24vw / 3.75), 24px);
  }
}

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

.l-header__logo a:hover {
  opacity: .6;
}

.l-header__logo a img {
  width: 100%;
}

.l-header__logo a.m-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 56px;
}

@media screen and (min-width: 768px) {
  .l-header__logo a.m-logo {
    width: 80px;
  }
}

@media screen and (min-width: 1441px) {
  .l-header__logo a.m-logo {
    width: 91px;
  }
}

.l-header__logo a.m-text {
  display: block;
  width: 120px;
  margin-left: 16px;
}

@media screen and (min-width: 768px) {
  .l-header__logo a.m-text {
    width: 160px;
    margin-left: 30px;
  }
}

@media screen and (min-width: 1441px) {
  .l-header__logo a.m-text {
    width: 171px;
    margin-left: 72px;
  }
}

.l-header__contact {
  background-color: #203D7A;
  color: #fff;
  display: none;
  position: relative;
  z-index: 998;
}

@media screen and (max-width: 767px) {
  .l-header__contact {
    display: block;
    width: 70px;
    height: 70px;
  }
}

.l-header__contact > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .l-header__contact > a {
    padding: 7px;
    gap: 8px;
  }
}

.l-header__contact > a > img {
  display: block;
  width: calc(21vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-header__contact > a > img {
    width: 23px;
  }
}

.l-header__contact > a > p {
  font-weight: 400;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .l-header__contact > a > p {
    font-size: 10px;
    letter-spacing: -0.08em;
    line-height: 1;
  }
}

.l-header__contact-box {
  display: none;
}

@media screen and (max-width: 767px) {
  .l-header__contact-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-navbtn {
  display: inline-block;
  width: 70px;
  height: 70px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  z-index: 900;
}

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

.l-navbtn__bar {
  display: block;
  width: 35px;
  height: 2px;
  background-color: #3C3C3C;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  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 {
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .l-gnav {
    -webkit-box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.08);
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: 100vh;
    margin: 70px 0;
    padding: 0 calc(19vw / 3.75);
    background-color: white;
    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: 2.5vw;
}

@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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .l-gnav__item {
    text-align: center;
    height: calc(56vw / 3.75);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    border-bottom: 1px solid #FFD700;
  }
}

.l-gnav__item:last-child {
  background-color: #203D7A;
  color: #fff;
  height: 100%;
  width: 120px;
}

@media screen and (max-width: 767px) {
  .l-gnav__item:last-child {
    width: 180px;
    height: auto;
    display: none;
  }
}

.l-gnav__item:last-child > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .l-gnav__item:last-child > a {
    padding: 20px;
  }
}

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

@media screen and (max-width: 767px) {
  .l-gnav__item:last-child > a > img {
    width: 21px;
  }
}

.l-gnav__item:last-child > a > p {
  font-weight: 400;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .l-gnav__item:last-child > a > p {
    font-size: 14px;
  }
}

.l-gnav__item > a {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .l-gnav__item > a {
    font-size: calc(13.5vw / 3.75);
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .l-gnav__item > a::after {
    content: "";
    position: absolute;
    background-image: url(../img/component/icon-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 5px;
    height: 11px;
    right: calc(27vw / 3.75);
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

.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-contact {
  display: none;
}

@media screen and (max-width: 767px) {
  .l-gnav__item-contact {
    display: block;
    border: 1px solid #203D7A;
    width: calc(300vw / 3.75);
    height: calc(50vw / 3.75);
    font-size: calc(16vw / 3.75);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1px;
    font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
    color: #203D7A;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin-top: 40px;
  }
}

.l-gnav__item-contact > a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-gnav__item-contact > a:hover {
  color: #fff;
  background-color: #203D7A;
  opacity: 1;
}

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

.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
=======================*/
.l-main {
  display: block;
  padding-top: 80px;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

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

body.is-active {
  height: 100%;
  overflow: hidden;
}

/* -----------------------------------------------------------------
 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;
  }
}

.ff-yu {
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}

.c-title__box {
  text-align: center;
}

.c-title__jp {
  font-size: calc(50vw / 14.4);
  font-weight: 500;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  color: #203D7A;
  letter-spacing: 1.8px;
  line-height: 1.15;
}

@media screen and (max-width: 767px) {
  .c-title__jp {
    font-size: calc(32vw / 3.75);
    line-height: 1;
  }
}

.c-title__en {
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  font-size: calc(16vw / 14.4);
  line-height: 1.6;
  letter-spacing: 0;
  color: #ffD166;
}

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

.c-link {
  background-color: #203D7A;
  position: relative;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  width: calc(220vw / 14.4);
  height: calc(50vw / 14.4);
  border: 1px solid #fff;
  color: #fff;
  background-color: #203D7A;
  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;
  margin: 0 auto;
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.8px;
  min-height: 40px;
  -webkit-transition: .3s;
  transition: .3s;
}

.c-link:hover {
  opacity: .6;
}

@media screen and (max-width: 767px) {
  .c-link {
    width: calc(220vw / 3.75);
    height: calc(50vw / 3.75);
    font-size: calc(16vw / 3.75);
  }
}

.c-link::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  right: calc(15vw / 14.4);
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .c-link::after {
    right: calc(15vw / 3.75);
  }
}

.c-under-fv__container {
  position: relative;
}

.c-under-fv__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.c-under-fv__title-jp {
  font-size: calc(46vw / 14.4);
  font-weight: 500;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  color: #fff;
  letter-spacing: 1.8px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c-under-fv__title-jp {
    font-size: calc(32vw / 3.75);
    line-height: 1;
  }
}

.c-under-fv__title-en {
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  font-size: calc(17vw / 14.4);
  line-height: 1.2;
  letter-spacing: 0;
  color: #ffD166;
}

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

.c-contact__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

.c-contact__box {
  width: 50%;
  padding: 45px calc(45vw / 14.4);
  text-align: center;
}

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

.c-contact__box:first-child {
  background-image: url(../img/component/recruit-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.c-contact__box:first-child > .c-contact__title-en {
  text-shadow: 0 0 0 white, 0 0 6px white, 3px 0 6px white, -3px 0 6px white, 0 3px 6px white, 0 -3px 6px white;
}

.c-contact__box:first-child > .c-contact__link-box {
  text-align: center;
}

.c-contact__box:first-child > .c-contact__link-box > .c-contact__link {
  position: relative;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  width: 220px;
  height: 50px;
  border: 1px solid #fff;
  color: #fff;
  background-color: #203D7A;
  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;
  margin: 24px auto 0;
  font-size: 16px;
  letter-spacing: 0.8px;
}

.c-contact__box:first-child > .c-contact__link-box > .c-contact__link::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-contact__box:last-child {
  background-color: #203D7A1f;
}

.c-contact__box:last-child > .c-contact__link-box {
  text-align: center;
}

.c-contact__box:last-child > .c-contact__link-box > .c-contact__link {
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  width: 300px;
  height: 50px;
  border: 1px solid #203D7A;
  color: #203D7A;
  background-color: #fff;
  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;
  margin: 24px auto 0;
  font-size: 16px;
  letter-spacing: 0.8px;
}

.c-contact__title {
  font-size: calc(34vw / 14.4);
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.32;
  color: #203D7A;
  text-align: center;
}

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

.c-contact__title-en {
  display: inline-block;
  padding: 3px;
  font-size: calc(14vw / 14.4);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 1px;
  color: #FFD166;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}

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

.c-contact__text {
  font-size: calc(16vw / 14.4);
  letter-spacing: 1px;
  line-height: 2;
  color: #333;
  font-weight: 300;
  margin-top: 10px;
}

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

.c-contact__link {
  -webkit-transition: .3s;
  transition: .3s;
}

.c-contact__link:hover {
  opacity: .6;
}

/* -----------------------------------------------------------------
 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
=======================*/
.ctt-main__container {
  padding: calc(140vw / 14.4) calc(100vw / 14.4) calc(100vw / 14.4);
}

@media screen and (max-width: 767px) {
  .ctt-main__container {
    padding: calc(35vw / 3.75) calc(20vw / 3.75) calc(60vw / 3.75);
  }
}

.ctt-main__text {
  text-align: center;
  font-weight: 500;
  font-size: calc(16vw / 14.4);
  line-height: 1.7;
  letter-spacing: 0;
}

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

.ctt-main__boxes {
  margin: 60px auto 0;
  padding: calc(60vw / 14.4) calc(100vw / 14.4);
  width: calc(880vw / 14.4);
  background-color: #203D7A1f;
}

@media screen and (max-width: 767px) {
  .ctt-main__boxes {
    padding: calc(30vw / 3.75) calc(10vw / 3.75);
    width: 100%;
    margin-top: 35px;
  }
}

.ctt-main__box {
  width: calc(600vw / 14.4);
  margin: 0 auto;
}

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

.ctt-main__label {
  display: block;
}

.ctt-main__label:nth-child(n+2) {
  margin-top: 20px;
}

.ctt-main__title {
  font-size: calc(16vw / 14.4);
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0;
  color: #343434;
  font-weight: normal;
}

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

.ctt-main__title > span {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  padding: 4px 6px;
  background-color: #203D7A;
  border-radius: 3px;
  margin-left: 10px;
}

.ctt-main__privacy {
  text-align: center;
  font-weight: 500;
  font-size: calc(15vw / 14.4);
  line-height: 1;
  letter-spacing: 0;
  margin-top: 32px;
}

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

.ctt-main__privacy > a {
  text-decoration: underline;
  -webkit-transition: .3s;
  transition: .3s;
  color: #203D7A;
}

.ctt-main__privacy > a:hover {
  opacity: .6;
}

.ctt-main__recaptcha {
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 2.2;
  font-size: calc(15vw / 14.4);
  text-align: center;
  margin-top: 8px;
}

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

.ctt-main__recaptcha > a {
  color: #0075FF;
  -webkit-transition: .3s;
  transition: .3s;
}

.ctt-main__recaptcha > a:hover {
  opacity: .6;
}

input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #AFAFAF;
  background-color: #fff;
  padding: calc(7vw / 14.4) calc(13vw / 14.4);
  font-weight: 500;
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-top: 8px;
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 767px) {
  input {
    padding: 10px;
    font-size: calc(14vw / 3.75);
  }
}

input::-webkit-input-placeholder {
  color: #AAAAAA;
}

input:-ms-input-placeholder {
  color: #AAAAAA;
}

input::-ms-input-placeholder {
  color: #AAAAAA;
}

input::placeholder {
  color: #AAAAAA;
}

textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #AFAFAF;
  background-color: #fff;
  padding: calc(7vw / 14.4) calc(13vw / 14.4);
  font-weight: 500;
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-top: 8px;
  text-align: left;
  width: 100%;
  height: 300px;
}

@media screen and (max-width: 767px) {
  textarea {
    padding: 10px;
    font-size: calc(13vw / 3.75);
    height: 200px;
  }
}

textarea::-webkit-input-placeholder {
  color: #AAAAAA;
}

textarea:-ms-input-placeholder {
  color: #AAAAAA;
}

textarea::-ms-input-placeholder {
  color: #AAAAAA;
}

textarea::placeholder {
  color: #AAAAAA;
}

/* input自体を非表示 */
input[type="checkbox"] {
  opacity: 0;
  left: 1px;
  top: 1px;
  margin: 0;
  height: 16px;
  width: 16px;
  position: absolute;
}

.ctt-main__privacy .wpcf7-list-item {
  position: relative;
  display: inline-block;
  /* 横並びにしたい場合 */
}

/* カスタムチェックボックス：span::before */
.wpcf7-list-item::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 1px solid #BFC0C3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  background-color: #fff;
  margin-right: 8px;
}

/* チェック時：チェックマーク表示 */
.ctt-main__privacy .wpcf7-list-item.checked::before {
  content: "✔";
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 14px;
  background-color: #0075FF;
}

.ctt-main__submit-container {
  text-align: center;
}

.ctt-main__submit-box {
  margin-top: 60px;
  display: block;
}

@media screen and (max-width: 767px) {
  .ctt-main__submit-box {
    margin-top: 30px;
  }
}

input[type="submit"] {
  width: 312px;
  height: 60px;
  background-color: #203D7A;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
  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;
  margin: auto;
  text-align: center;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
  border: none;
}

@media screen and (max-width: 767px) {
  input[type="submit"] {
    width: 100%;
    max-width: 312px;
    padding: 16px;
    font-size: 16px;
  }
}

input[type="submit"]:hover {
  opacity: .6;
}

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

/*=======================
  home
=======================*/
.hm-fv__container {
  position: relative;
  padding-top: 7px;
}

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

.hm-fv__box {
  position: relative;
}

.hm-fv__title {
  position: absolute;
  font-size: calc(50vw / 14.4);
  font-weight: 500;
  line-height: 1.5;
  color: #203D7A;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  left: calc(120vw / 14.4);
  top: calc(19vw / 14.4);
  letter-spacing: 6px;
}

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

.hm-fv__point {
  margin: 0 auto;
  position: absolute;
  bottom: calc(-71vw / 14.4);
  right: 0;
  left: 0;
}

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

.hm-fv__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(27vw / 14.4);
}

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

.hm-fv__item {
  position: relative;
  width: calc(210vw / 14.4);
}

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

.hm-fv__item-box {
  position: absolute;
  top: calc(51vw / 14.4);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

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

.hm-fv__item-number {
  display: inline-block;
  font-weight: 500;
  font-size: calc(40vw / 14.4);
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  line-height: 1;
  letter-spacing: 2.5px;
  color: #fff;
  border-bottom: 2px solid #FFD166;
}

@media screen and (max-width: 767px) {
  .hm-fv__item-number {
    font-size: calc(24vw / 3.75);
    letter-spacing: 0;
  }
}

.hm-fv__item-text {
  margin: calc(28vw / 14.4) auto 0;
  font-weight: 500;
  font-size: calc(40vw / 14.4);
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  line-height: 1;
  letter-spacing: 2.5px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .hm-fv__item-text {
    font-size: calc(23vw / 3.75);
    letter-spacing: -1px;
    margin-top: calc(13vw / 3.75);
  }
}

.hm-fv__item-cross {
  width: calc(68vw / 14.4);
  height: calc(68vw / 14.4);
  position: relative;
}

@media screen and (max-width: 767px) {
  .hm-fv__item-cross {
    width: calc(24vw / 3.75);
    height: calc(24vw / 3.75);
  }
}

.hm-fv__item-cross::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #FFD166;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .hm-fv__item-cross::after {
    height: 1.3px;
  }
}

.hm-fv__item-cross::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #FFD166;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .hm-fv__item-cross::before {
    height: 1.3px;
  }
}

.hm-feel {
  background-color: #203D7A1f;
}

.hm-feel__container {
  padding: calc(225vw / 14.4) calc(132vw / 14.4) calc(132vw / 14.4) 0;
}

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

.hm-feel__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;
}

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

.hm-feel__box-img {
  width: calc(700vw / 14.4);
}

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

.hm-feel__box-img > img {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: block;
  width: 100%;
}

.hm-feel__box {
  width: calc(526vw / 14.4);
}

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

.hm-feel__title {
  font-family: "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  color: #203D7A;
  font-size: calc(60vw / 14.4);
  line-height: 1;
  letter-spacing: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #FFD166;
}

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

.hm-feel__box-title {
  text-align: left;
  font-weight: 500;
  font-size: calc(25vw / 14.4);
  line-height: 2;
  letter-spacing: 0;
  color: #333;
  margin-top: calc(40vw / 14.4);
}

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

.hm-feel__box-text {
  text-align: left;
  font-size: calc(16vw / 14.4);
  line-height: 2;
  letter-spacing: 0;
  color: #333;
  margin-top: calc(20vw / 14.4);
}

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

.hm-feel__link-box {
  margin-top: calc(60vw / 14.4);
}

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

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

@media screen and (max-width: 767px) {
  .hm-service {
    background-image: url(../img/home/service-bg-sp.png);
  }
}

.hm-service__container {
  padding: calc(46vw / 14.4) 0 calc(60vw / 14.4);
}

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

.hm-service__title-box {
  margin-top: calc(140vw / 14.4);
}

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

.hm-service__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(1070vw / 14.4);
  margin: calc(58vw / 14.4) auto 0;
}

@media screen and (max-width: 767px) {
  .hm-service__boxes {
    margin-top: calc(40vw / 3.75);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 calc(20vw / 3.75);
    width: 100%;
    gap: calc(30vw / 3.75);
  }
}

.hm-service__box {
  width: calc(505vw / 14.4);
}

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

.hm-service__img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .hm-service__img {
    height: calc(290vw / 3.75);
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.hm-service__box-title {
  font-size: calc(32vw / 14.4);
  line-height: 1;
  letter-spacing: 1.35px;
  font-weight: 500;
  color: #203D7A;
  margin-top: 20px;
}

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

.hm-service__box-text {
  font-size: calc(15vw / 14.4);
  letter-spacing: 0;
  line-height: 1.6;
  color: #333;
  text-align: left;
  margin-top: 20px;
}

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

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

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

.simple-slider {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.simple-slider .swiper-slide {
  width: calc(452vw / 14.4) !important;
}

@media screen and (max-width: 767px) {
  .simple-slider .swiper-slide {
    width: calc(200vw / 3.75) !important;
  }
}

.simple-slider img {
  width: 100%;
  height: auto;
  display: block;
}

.hm-reason {
  background-color: #203D7A1f;
}

.hm-reason__container {
  padding: calc(100vw / 14.4) calc(10vw / 14.4);
}

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

.hm-reason__title > span {
  font-size: calc(24vw / 14.4);
}

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

.hm-reason__boxes {
  width: calc(1397vw / 14.4);
  margin: calc(80vw / 14.4) auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

.hm-reason__box {
  width: calc(342vw / 14.4);
  position: relative;
}

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

.hm-reason__number {
  position: absolute;
  color: #203D7A;
  text-shadow: 0 0 0 #fff, 0 0 14px #fff, 7px 0 14px #fff, -7px 0 14px #fff, 0 7px 14px #fff, 0 -7px 14px #fff;
  left: 0;
  top: calc(-19vw / 14.4);
  font-size: calc(34vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 1;
}

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

.hm-reason__box-text {
  font-size: calc(18vw / 14.4);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.8px;
  color: #364C50;
  margin-top: 18px;
}

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

.hm-house__img {
  display: block;
}

.hm-achieve__container {
  padding: calc(100vw / 14.4) calc(125vw / 14.4) calc(110vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-achieve__container {
    padding: calc(60vw / 3.75) calc(37vw / 3.75);
  }
}

.hm-achieve__boxes {
  margin: calc(68vw / 14.4) auto 0;
  width: calc(1000vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

.hm-achieve__box {
  width: calc(300vw / 14.4);
}

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

.hm-achieve__box-title {
  font-size: calc(16vw / 14.4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: calc(20vw / 14.4);
}

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

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

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

.cpny-president {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(31%, #fff), color-stop(31%, rgba(32, 61, 122, 0.06)), to(rgba(32, 61, 122, 0.06)));
  background: linear-gradient(to bottom, #fff 0%, #fff 31%, rgba(32, 61, 122, 0.06) 31%, rgba(32, 61, 122, 0.06) 100%);
}

.cpny-president__container {
  padding: calc(85vw / 14.4) calc(200vw / 14.4) calc(100vw / 14.4);
}

@media screen and (max-width: 767px) {
  .cpny-president__container {
    padding: calc(40vw / 3.75) calc(20vw / 3.75) calc(60vw / 3.75);
  }
}

.cpny-president__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(1000vw / 14.4);
  background-color: #fff;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .cpny-president__boxes {
    -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;
  }
}

.cpny-president__img-box {
  width: calc(500vw / 14.4);
}

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

.cpny-president__title-box {
  width: calc(440vw / 14.4);
  padding: calc(30vw / 14.4);
  height: calc(380vw / 14.4);
  background-color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media screen and (max-width: 767px) {
  .cpny-president__title-box {
    width: 100%;
    height: calc(350vw / 3.75);
    padding: calc(16vw / 3.75);
  }
}

.cpny-president__box-title {
  font-weight: 500;
  letter-spacing: 0.5em;
  line-height: 1.8;
  font-size: calc(22vw / 14.4);
}

@media screen and (max-width: 767px) {
  .cpny-president__box-title {
    letter-spacing: 0.38em;
    font-size: calc(20vw / 3.75);
    line-height: 1.47;
  }
}

.cpny-president__text-box {
  padding: calc(100vw / 14.4) calc(100vw / 14.4) 0;
  width: calc(1000vw / 14.4);
}

@media screen and (max-width: 767px) {
  .cpny-president__text-box {
    padding: 0;
    margin-top: 20px;
    width: 100%;
  }
}

.cpny-president__text {
  font-size: calc(15vw / 14.4);
  line-height: 2.4;
  letter-spacing: 1.4px;
  text-align: left;
}

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

.cpny-president__text:nth-child(n+2) {
  margin-top: calc(50vw / 14.4);
}

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

.cpny-president__text:last-child {
  text-align: right;
}

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

.cpny-info__container {
  padding: calc(100vw / 14.4) calc(200vw / 14.4) 0;
}

@media screen and (max-width: 767px) {
  .cpny-info__container {
    padding: calc(60vw / 3.75) calc(20vw / 3.75) 0;
  }
}

.cpny-info__list {
  margin: calc(88vw / 14.4) auto 0;
  width: calc(800vw / 14.4);
}

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

.cpny-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: calc(20vw / 14.4) calc(15vw / 14.4);
  border-bottom: 1px solid #EEEEEE;
}

@media screen and (max-width: 767px) {
  .cpny-info__item {
    -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;
    padding: calc(15vw / 3.75) calc(10vw / 3.75);
  }
}

.cpny-info__name {
  width: calc(196vw / 14.4);
  font-size: calc(14vw / 14.4);
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 1.8;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .cpny-info__name {
    width: 100%;
    font-size: calc(14vw / 3.75);
  }
}

.cpny-info__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: calc(14vw / 14.4);
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 1.8;
  text-align: left;
}

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

.cpny-info__img-box {
  width: calc(660vw / 14.4);
  margin: calc(70vw / 14.4) auto 0;
}

@media screen and (max-width: 767px) {
  .cpny-info__img-box {
    width: 100%;
    margin-top: calc(20vw / 3.75);
  }
}

.cpny-access__container {
  padding: calc(80vw / 14.4) calc(200vw / 14.4) calc(80vw / 14.4);
}

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

.cpny-access__box {
  margin: calc(91vw / 14.4) auto 0;
  width: calc(996vw / 14.4);
}

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

.cpny-slider__container {
  padding: calc(60vw / 14.4) 0 calc(50vw / 14.4);
}

@media screen and (max-width: 767px) {
  .cpny-slider__container {
    padding: calc(30vw / 3.75) 0;
  }
}

.svc-about__container {
  padding: calc(100vw / 14.4) calc(200vw / 14.4) calc(48vw / 14.4);
}

@media screen and (max-width: 767px) {
  .svc-about__container {
    padding: calc(30vw / 3.75);
  }
}

.svc-about__title {
  font-weight: 500;
  text-align: center;
  font-size: calc(32vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #203D7A;
  padding-bottom: calc(35vw / 14.4);
  position: relative;
}

@media screen and (max-width: 767px) {
  .svc-about__title {
    font-size: calc(24vw / 3.75);
    padding-bottom: 15px;
    line-height: 2;
  }
}

.svc-about__title::after {
  content: "";
  position: absolute;
  background-color: #FFD700;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 1px;
}

.svc-about__text {
  font-size: calc(15vw / 14.4);
  line-height: 2.2;
  letter-spacing: 1.4px;
  margin-top: calc(36vw / 14.4);
}

@media screen and (max-width: 767px) {
  .svc-about__text {
    font-size: calc(15vw / 3.75);
    margin-top: calc(25vw / 3.75);
  }
}

.svc-content {
  position: relative;
}

.svc-content::after {
  position: absolute;
  content: "";
  width: calc(952vw / 14.4);
  height: calc(644vw / 14.4);
  background-color: #203D7A1f;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .svc-content::after {
    width: 100%;
    height: calc(372vw / 3.75);
  }
}

.svc-content-second::after {
  position: absolute;
  content: "";
  width: calc(952vw / 14.4);
  height: calc(644vw / 14.4);
  background-color: #203D7A1f;
  bottom: calc(100vw / 14.4);
  right: 0;
  left: unset;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .svc-content-second::after {
    width: 100%;
    height: calc(372vw / 3.75);
    bottom: calc(60vw / 3.75);
  }
}

.svc-content__container {
  padding: calc(100vw / 14.4) 0 calc(80vw / 14.4);
}

@media screen and (max-width: 767px) {
  .svc-content__container {
    padding: calc(60vw / 3.75) 0 calc(40vw / 3.75);
  }
}

.svc-content__container-second {
  padding: calc(100vw / 14.4) 0 calc(180vw / 14.4);
}

@media screen and (max-width: 767px) {
  .svc-content__container-second {
    padding: calc(60vw / 3.75) 0 calc(100vw / 3.75);
  }
}

.svc-content__box {
  margin-top: calc(45vw / 14.4);
  text-align: right;
  position: relative;
}

@media screen and (max-width: 767px) {
  .svc-content__box {
    margin-top: calc(20vw / 3.75);
  }
}

.svc-content__box-second {
  text-align: left;
}

.svc-content__img {
  width: calc(840vw / 14.4);
}

@media screen and (max-width: 767px) {
  .svc-content__img {
    width: calc(335vw / 3.75);
  }
}

.svc-content__box-text {
  position: absolute;
  width: calc(445vw / 14.4);
  padding: calc(45vw / 14.4);
  color: #fff;
  font-size: calc(14vw / 14.4);
  letter-spacing: 0;
  line-height: 1.7;
  background-color: #203D7A;
  text-align: left;
  top: calc(45vw / 14.4);
  left: calc(240vw / 14.4);
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .svc-content__box-text {
    position: relative;
    left: calc(10vw / 3.75);
    top: calc(-22vw / 3.75);
    width: calc(320vw / 3.75);
    padding: calc(20vw / 3.75);
    font-size: calc(14vw / 3.75);
  }
}

.svc-content__box-text-second {
  left: unset;
  right: calc(240vw / 14.4);
}

@media screen and (max-width: 767px) {
  .svc-content__box-text-second {
    left: unset;
    right: calc(-45vw / 3.75);
  }
}

.svc-content__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(1040vw / 14.4);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: calc(40vw / 14.4) auto 0;
  padding: 0 calc(100vw / 14.4);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .svc-content__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: calc(11vw / 3.75);
    padding: 0 calc(20vw / 3.75);
    gap: calc(30vw / 3.75);
  }
}

.svc-content__flex-box {
  width: calc(506vw / 14.4);
}

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

.svc-content__flex-img > img {
  aspect-ratio: 506 / 292;
  -o-object-fit: cover;
     object-fit: cover;
}

.svc-content__flex-title {
  padding-left: 26px;
  font-weight: bold;
  font-size: calc(27vw / 14.4);
  line-height: 1;
  letter-spacing: 1.4px;
  color: #203D7A;
  margin-top: calc(20vw / 14.4);
  position: relative;
}

@media screen and (max-width: 767px) {
  .svc-content__flex-title {
    font-size: calc(24vw / 3.75);
    margin-top: calc(20vw / 3.75);
  }
}

.svc-content__flex-title::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 2px;
  background-color: #FFD700;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

.svc-content__flex-text {
  font-size: calc(14vw / 14.4);
  letter-spacing: 0;
  line-height: 1.7;
  text-align: left;
  margin-top: calc(20vw / 14.4);
}

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

.rrt-about__container {
  padding: calc(100vw / 14.4) calc(200vw / 14.4) calc(48vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rrt-about__container {
    padding: calc(30vw / 3.75);
  }
}

.rrt-about__title {
  font-weight: 500;
  text-align: center;
  font-size: calc(32vw / 14.4);
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #203d7a;
  padding-bottom: calc(35vw / 14.4);
  position: relative;
}

@media screen and (max-width: 767px) {
  .rrt-about__title {
    font-size: calc(24vw / 3.75);
    padding-bottom: 15px;
    line-height: 2;
  }
}

.rrt-about__title::after {
  content: "";
  position: absolute;
  background-color: #ffd700;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 1px;
}

.rrt-about__text {
  font-size: calc(15vw / 14.4);
  line-height: 2.2;
  letter-spacing: 1.4px;
  margin-top: calc(36vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rrt-about__text {
    font-size: calc(15vw / 3.75);
    margin-top: calc(25vw / 3.75);
  }
}

.rrt-works {
  position: relative;
}

.rrt-works::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(460vw / 14.4);
  background-color: #203d7a1f;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .rrt-works::after {
    height: calc(814vw / 3.75);
  }
}

.rrt-works__container {
  padding: calc(48vw / 14.4) calc(100vw / 14.4) calc(60vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rrt-works__container {
    padding: calc(70vw / 3.75) calc(20vw / 3.75) calc(50vw / 3.75);
  }
}

.rrt-works__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(1192vw / 14.4);
  margin: calc(64vw / 14.4) auto 0;
}

@media screen and (max-width: 767px) {
  .rrt-works__boxes {
    width: 100%;
    margin-top: calc(20vw / 3.75);
    -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;
  }
}

.rrt-works__img-box {
  width: calc(500vw / 14.4);
  aspect-ratio: 1 / 1;
}

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

.rrt-works__box {
  width: calc(618vw / 14.4);
}

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

.rrt-works__box-title {
  font-size: calc(26vw / 14.4);
  font-weight: 500;
  color: #203d7a;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .rrt-works__box-title {
    font-size: calc(26vw / 3.75);
    line-height: 1.5;
  }
}

.rrt-works__box-text {
  margin-top: 30px;
  font-size: calc(15vw / 14.4);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .rrt-works__box-text {
    margin-top: calc(20vw / 3.75);
    font-size: calc(15vw / 3.75);
    line-height: 1.7;
  }
}

.rrt-works__box-text:nth-child(n + 3) {
  margin-top: 24px;
}

.rrt-person__container {
  padding: calc(120vw / 14.4) calc(150vw / 14.4) 0;
}

@media screen and (max-width: 767px) {
  .rrt-person__container {
    padding: calc(50vw / 3.75) calc(20vw / 3.75);
  }
}

.rrt-person__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(1044vw / 14.4);
  margin: calc(88vw / 14.4) auto 0;
}

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

.rrt-person__box {
  width: calc(328vw / 14.4);
  background-color: #203d7a1f;
  padding: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rrt-person__box {
    padding: calc(20vw / 3.75);
    width: 100%;
  }
}

.rrt-person__box-img {
  width: 100%;
  display: block;
}

.rrt-person__box-title {
  text-align: center;
  font-size: calc(24vw / 14.4);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #203d7a;
  margin-top: calc(27vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rrt-person__box-title {
    font-size: calc(24vw / 3.75);
    margin-top: calc(27vw / 3.75);
  }
}

.rrt-person__box-text {
  font-size: calc(15vw / 14.4);
  line-height: 1.7;
  letter-spacing: 0;
  text-align: left;
  margin-top: 20px;
}

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

.rrt-staff__container {
  padding: calc(80vw / 14.4) calc(100vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rrt-staff__container {
    padding: calc(10vw / 3.75) calc(20vw / 3.75) 0;
  }
}

.rrt-staff__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(1152vw / 14.4);
  margin: calc(88vw / 14.4) auto 0;
}

@media screen and (max-width: 767px) {
  .rrt-staff__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-top: calc(20vw / 3.75);
    gap: calc(10vw / 3.75);
  }
}

.rrt-staff__box {
  width: calc(288vw / 14.4);
  padding: 0 calc(18vw / 14.4) calc(25vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rrt-staff__box {
    width: 100%;
    padding: 0 calc(40vw / 3.75) calc(40vw / 3.75);
  }
}

.rrt-staff__box-title {
  margin-top: calc(25vw / 14.4);
  font-size: calc(16vw / 14.4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  color: #203d7a;
}

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

.rrt-staff__box-depertment {
  margin-top: calc(26vw / 14.4);
  padding-bottom: calc(10vw / 14.4);
  line-height: 1;
  letter-spacing: 0;
  color: #203d7a;
  font-weight: bold;
  text-align: left;
  font-size: calc(14vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rrt-staff__box-depertment {
    margin-top: calc(20vw / 3.75);
    padding-bottom: calc(10vw / 3.75);
    font-size: calc(14vw / 3.75);
  }
}

.rrt-staff__box-year {
  padding-top: calc(10vw / 14.4);
  line-height: 1;
  letter-spacing: 0;
  font-weight: bold;
  text-align: left;
  font-size: calc(14vw / 14.4);
  border-top: 1px solid #ffd700;
  width: calc(168vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rrt-staff__box-year {
    width: calc(168vw / 3.75);
    font-size: calc(14vw / 3.75);
    padding-top: calc(10vw / 3.75);
  }
}

.rrt-pertner__container {
  padding: calc(40vw / 14.4) calc(100vw / 14.4) calc(80vw / 14.4);
}

@media screen and (max-width: 767px) {
  .rrt-pertner__container {
    padding: calc(60vw / 3.75) calc(20vw / 3.75);
  }
}

.rrt-pertner__slider {
  width: calc(1000vw / 14.4);
  margin: calc(64vw / 14.4) auto 0;
  overflow: hidden;
}

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

.acv-main__container {
  padding: calc(140vw / 14.4) calc(100vw / 14.4) calc(100vw / 14.4);
}

@media screen and (max-width: 767px) {
  .acv-main__container {
    padding: calc(60vw / 3.75) calc(37vw / 3.75);
  }
}

.acv-main__boxes {
  width: calc(1000vw / 14.4);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(73vw / 14.4) 0;
}

@media screen and (max-width: 767px) {
  .acv-main__boxes {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(30vw / 3.75);
  }
}

.acv-main__box {
  width: calc(300vw / 14.4);
}

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

.acv-main__box-title {
  font-weight: 500;
  font-size: calc(16vw / 14.4);
  letter-spacing: 0;
  line-height: 1.6;
  margin-top: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .acv-main__box-title {
    font-size: calc(16vw / 3.75);
    margin-top: calc(20vw / 3.75);
  }
}
/*# sourceMappingURL=style.css.map */