@charset "UTF-8";
.js-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.js-fadeIn.visible {
  -webkit-animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@font-face {
  font-family: "Quentin";
  src: url("../fonts/Quentin.woff2") format("woff2"), url("../fonts/Quentin.woff") format("woff"), url("../fonts/Quentin.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*reset---------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
  word-break: break-all;
  line-height: 1.5;
}

table {
  border-spacing: 0px !important;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

a {
  text-decoration: none;
  color: #2F2F2F;
  display: block;
}

ul {
  list-style: none;
}

input[type=text]:focus {
  outline: 0;
}

input[type=checkbox] {
  outline: none;
  cursor: pointer;
  margin: 0;
}

textarea:focus {
  outline: 0;
}

textarea {
  border: none;
  resize: none;
  font-family: sans-serif;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

::-ms-expand { /* select要素のデザインを無効にする（IE用） */
  display: none;
}

sub {
  vertical-align: baseline;
}

input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

input[type=search] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

input[type="radio"] {
  appearance: none; /* デフォルトのスタイルを無効化 */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px; /* ラジオボタンのサイズ */
  height: 16px;
  border: 1px solid #fff; /* 外枠の色 */
  border-radius: 50%; /* 丸くする */
  background-color: transparent; /* 背景を透明に */
  position: relative;
  cursor: pointer;
}

input[type="radio"]:checked {
  border-color: #fff; /* 選択時の枠の色を青に */
}

input[type="radio"]::after {
  content: "";
  width: 8px; /* 内側のチェックマーク（黒丸）のサイズ */
  height: 8px;
  border-radius: 50%;
  background-color: transparent; /* デフォルトでは透明 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input[type="radio"]:checked::after {
  background-color: #4f9bff; /* 選択時に青い丸を表示 */
}


select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 135px;
  font-family: sans-serif;
  font-size: 16px;
  color: #fff;
  background-color: #1C1C1D;
}
@media (max-width: 900px) {
  body {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  body {
    padding-top: 80px;
  }
}
body.noScroll {
  overflow: hidden;
}
body:not(.home) .c-title__contentTitle {
  margin-top: 135px;
}
@media (max-width: 900px) {
  body:not(.home) .c-title__contentTitle {
    margin-top: 60px;
  }
}
body:not(.home) .c-title__contentTitle + * {
  margin-top: 85px;
}
@media (max-width: 900px) {
  body:not(.home) .c-title__contentTitle + * {
    margin-top: 25px;
  }
}

body p,
body a,
body li,
body dt,
body dd {
  letter-spacing: 0.08em;
  line-height: 2.1;
  color: #fff;
}
@media (max-width: 900px) {
  body p,
  body a,
  body li,
  body dt,
  body dd {
    line-height: 2.2;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .pcOnly {
    display: none !important;
  }
}

@media (min-width: 901px) {
  .spOnly {
    display: none !important;
  }
}

.nowrap {
  white-space: nowrap;
}

.grecaptcha-badge {
  visibility: hidden;
}

.c-section {
  margin-top: 140px;
  scroll-margin-top: 135px;
}
@media (max-width: 900px) {
  .c-section {
    margin-top: 80px;
    scroll-margin-top: 80px;
  }
}
.c-section.js-fadeIn {
  scroll-margin-top: 185px;
}
@media (max-width: 900px) {
  .c-section.js-fadeIn {
    scroll-margin-top: 130px;
  }
}
.c-section.js-fadeIn.visible {
  scroll-margin-top: 135px;
}
@media (max-width: 900px) {
  .c-section.js-fadeIn.visible {
    scroll-margin-top: 80px;
  }
}
.c-section:not(:first-of-type) {
  margin-top: 270px;
}
@media (max-width: 900px) {
  .c-section:not(:first-of-type) {
    margin-top: 164px;
  }
}
.c-section__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1440px;
  margin-inline: auto;
  padding: 0 30px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 900px) {
  .c-section__container {
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-section__textArea {
  position: relative;
  width: 48%;
  -webkit-transform: translateX(170px);
          transform: translateX(170px);
  z-index: 2;
}
@media (max-width: 900px) {
  .c-section__textArea {
    width: 100%;
    margin-top: 40px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.c-section__title {
  position: relative;
  padding-bottom: 24px;
}
@media (max-width: 900px) {
  .c-section__title {
    padding-bottom: 12px;
  }
}
.c-section__title::before {
  content: attr(data-title);
  position: absolute;
  font-family: "Quentin", sans-serif;
  font-size: clamp(115px, 115px + 52 * (100vw - 901px) / 539, 167px);
  color: #363636;
  top: 0;
  letter-spacing: 0.03em;
  left: -160px;
  white-space: nowrap;
  line-height: 1;
  -webkit-transform: translateY(-90%) rotate(-8deg);
          transform: translateY(-90%) rotate(-8deg);
}
@media (max-width: 900px) {
  .c-section__title::before {
    font-size: 88px;
    left: 47%;
    top: auto;
    bottom: -348%;
    -webkit-transform: translate(-50%, -50%) rotate(-8deg);
            transform: translate(-50%, -50%) rotate(-8deg);
    z-index: -1;
  }
}
.c-section__title h1,
.c-section__title h2 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 28px;
  letter-spacing: 0.32em;
  line-height: 2.1;
  text-shadow: 0 0 3px black;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
}
@media (max-width: 900px) {
  .c-section__title h1,
  .c-section__title h2 {
    font-size: 16px;
    letter-spacing: 0.12em;
  }
}
.c-section__title h1::after,
.c-section__title h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  right: -33px;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}
@media (max-width: 900px) {
  .c-section__title h1::after,
  .c-section__title h2::after {
    right: -17px;
  }
}
.c-section__title span {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.32em;
  line-height: 2.1;
}
@media (max-width: 900px) {
  .c-section__title span {
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 2.4;
    font-weight: 600;
  }
}
.c-section__text {
  width: 100%;
  padding: 52px 20px 55px 0;
  line-height: 2;
  text-shadow: 0 0 3px black;
  width: clamp(235px, 235px + 265 * (100vw - 901px) / 539, 500px);
}
@media (max-width: 900px) {
  .c-section__text {
    width: 100%;
    height: auto;
    padding: 0;
    line-height: 2.2;
    background-color: transparent;
  }
}
.c-section .c-section__btn {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 22.5px;
  font-size: 12px;
  background-color: #fff;
  bottom: -5px;
  left: 0;
  -webkit-transform: translateY(65%);
          transform: translateY(65%);
  z-index: 3;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
@media (max-width: 900px) {
  .c-section .c-section__btn {
    position: relative;
    margin-top: 23px;
    margin-right: auto;
    padding: 5px 20px;
    font-size: 13px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    line-height: 1.8;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
.c-section .c-section__btn:hover > p {
  color: #fff;
}
.c-section .c-section__btn:hover::before {
  -webkit-transform: scale(1.02, 1.1);
          transform: scale(1.02, 1.1);
  -webkit-transform-origin: right;
          transform-origin: right;
  left: 1.5px;
}
.c-section .c-section__btn > p {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  color: #141418;
  z-index: 1;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
@media (max-width: 900px) {
  .c-section .c-section__btn > p {
    font-size: 12px;
  }
}
.c-section .c-section__btn::before {
  position: absolute;
  top: 0px;
  left: -1px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #141418;
  -webkit-transform: scale(0, 1.1);
          transform: scale(0, 1.1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.c-section__image {
  position: relative;
  padding-bottom: 10px;
  width: 52%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-section__image {
    width: calc(100% + 20px);
    margin-top: 16px;
    padding-bottom: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.c-section__image figure {
  width: 100%;
  height: 451px;
  aspect-ratio: 760/478;
  overflow: hidden;
}
@media (max-width: 900px) {
  .c-section__image figure {
    height: auto;
  }
}
.c-section.reverse .c-section__container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .c-section.reverse .c-section__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-section.reverse .c-section__textArea {
  position: relative;
  width: 48%;
  -webkit-transform: translateX(-150px);
          transform: translateX(-150px);
  z-index: 2;
}
@media (max-width: 900px) {
  .c-section.reverse .c-section__textArea {
    width: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.c-section.reverse .c-section__title {
  padding-left: 100px;
  text-align: right;
}
@media (max-width: 900px) {
  .c-section.reverse .c-section__title {
    padding-left: 0;
    text-align: left;
  }
}
.c-section.reverse .c-section__title::before {
  top: 0px;
  left: 45px;
  -webkit-transform: translateY(-115%) rotate(-8deg);
          transform: translateY(-115%) rotate(-8deg);
}
@media (max-width: 900px) {
  .c-section.reverse .c-section__title::before {
    font-size: 88px;
    left: 50%;
    top: auto;
    bottom: -300%;
    -webkit-transform: translate(-50%, -50%) rotate(-8deg);
            transform: translate(-50%, -50%) rotate(-8deg);
    z-index: -1;
  }
}
.c-section.reverse .c-section__title h1,
.c-section.reverse .c-section__title h2 {
  margin-left: auto;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
}
.c-section.reverse .c-section__title h1::after,
.c-section.reverse .c-section__title h2::after {
  top: 50%;
  left: -33px;
  right: auto;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}
@media (max-width: 900px) {
  .c-section.reverse .c-section__title h1::after,
  .c-section.reverse .c-section__title h2::after {
    left: 0;
    -webkit-transform: translate(-120%, -50%);
            transform: translate(-120%, -50%);
  }
}
.c-section.reverse .c-section__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  right: 0;
  bottom: 0;
  left: auto;
}
@media (max-width: 900px) {
  .c-section.reverse .c-section__btn {
    margin-right: 0;
  }
}
.c-section.reverse .c-section__text {
  margin-left: auto;
  padding: 52px 0px 55px 0px;
  text-align: right;
  width: clamp(260px, 260px + 240 * (100vw - 901px) / 539, 500px);
}
@media (max-width: 900px) {
  .c-section.reverse .c-section__text {
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.c-section.reverse .c-section__image {
  position: relative;
  padding-bottom: 10px;
  width: 52%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-section.reverse .c-section__image {
    width: calc(100% + 20px);
    padding-bottom: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (max-width: 900px) {
  .c-section__title[data-title=Concept]::before {
    font-size: 92px;
  }
}
.c-section__title[data-title=Service]::before {
  left: 145px !important;
}
@media (max-width: 900px) {
  .c-section__title[data-title=Service]::before {
    font-size: 98px !important;
    left: 45% !important;
  }
}
@media (max-width: 900px) {
  .c-section__title[data-title=Recruit]::before {
    font-size: 98px !important;
    left: 45% !important;
  }
}
.c-section__title[data-title=Business]::before {
  font-size: clamp(97px, 97px + 47 * (100vw - 901px) / 539, 144px);
}
@media (max-width: 900px) {
  .c-section__title[data-title=Business]::before {
    font-size: 90px !important;
  }
}
@media (max-width: 900px) {
  .c-section__title[data-title="Our Staff"]::before {
    font-size: 80px;
  }
}
@media (max-width: 900px) {
  .c-section__title[data-title="Car Purchase"]::before {
    font-size: 57px;
    bottom: -120%;
  }
}
@media (max-width: 900px) {
  .c-section__title[data-title=Contact]::before {
    font-size: 85px !important;
    bottom: -280% !important;
  }
}
@media (max-width: 900px) {
  .c-section__title[data-title=Access]::before {
    font-size: 88px !important;
    left: 49% !important;
    bottom: -400% !important;
  }
}

.page .c-section {
  margin-top: 115px;
}
@media (max-width: 900px) {
  .page .c-section {
    margin-top: 70px;
  }
}
.page .c-section:first-child + * {
  margin-top: 150px;
}
@media (max-width: 900px) {
  .page .c-section:first-child + * {
    margin-top: 55px;
  }
}
@media (max-width: 900px) {
  .page .c-section__image {
    margin-top: 25px;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.c-section02.c-section {
  margin-top: 95px;
}
@media (max-width: 900px) {
  .c-section02.c-section {
    margin-top: 80px;
  }
}
.c-section02__container {
  max-width: 1440px;
  margin-inline: auto;
  padding: 0 30px;
}
@media (max-width: 900px) {
  .c-section02__container {
    padding: 0 20px;
  }
}
.c-section02__container h2 {
  max-width: 270px;
  font-size: 20px;
  color: #585858;
  letter-spacing: 0.3em;
  border-bottom: 2px solid #004381;
}
@media (max-width: 900px) {
  .c-section02__container h2 {
    max-width: 170px;
    font-size: 14px;
    border-width: 1px;
  }
}
.c-section02__container h2::first-letter {
  font-size: 28px;
  color: #004381;
  letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  .c-section02__container h2::first-letter {
    font-size: 20px;
  }
}
.c-section02__container h3 {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.1;
}
@media (max-width: 900px) {
  .c-section02__container h3 {
    margin-top: 16px;
    font-size: 14px;
  }
}
.c-section02__container h4 {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.1;
}
@media (max-width: 900px) {
  .c-section02__container h4 {
    margin-top: 16px;
    font-size: 14px;
  }
}
.c-section02__container h4:nth-of-type(1) {
  margin-top: 30px;
}
.c-section02__container h4 + .c-section02__normalText {
  margin-top: 8px;
}
@media (max-width: 900px) {
  .c-section02__container h4 + .c-section02__normalText {
    margin-top: 12px;
  }
}
.c-section02__container dl {
  margin-top: 24px;
}
@media (max-width: 900px) {
  .c-section02__container dl {
    margin-top: 16px;
  }
}
.c-section02__container dl > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 900px) {
  .c-section02__container dl > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-section02__container dl > div:not(:first-child) {
  margin-top: 15px;
}
@media (max-width: 900px) {
  .c-section02__container dl > div:not(:first-child) {
    margin-top: 24px;
  }
}
.c-section02__container dl dt {
  width: 25%;
  padding-right: 20px;
  font-weight: 500;
  line-height: 2.1;
}
@media (max-width: 900px) {
  .c-section02__container dl dt {
    width: 100%;
    padding-right: 0px;
    font-size: 13px;
  }
}
.c-section02__container dl dd {
  width: 75%;
  line-height: 2.1;
}
@media (max-width: 900px) {
  .c-section02__container dl dd {
    width: 100%;
    margin-top: 6px;
    font-size: 13px;
  }
}
.c-section02:last-child {
  margin-bottom: 250px;
}
@media (max-width: 900px) {
  .c-section02:last-child {
    margin-bottom: 150px;
  }
}
.c-section02__normalText {
  margin-top: 24px;
  line-height: 2.1;
  font-size: 16px;
}
@media (max-width: 900px) {
  .c-section02__normalText {
    margin-top: 16px;
    font-size: 13px;
  }
}
.c-section02__normalText + .c-section02__normalText {
  margin-top: 8px;
}

.c-btn {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16.5px 60px 16.5px 40px;
  font-size: 12px;
  color: #fff;
  background-color: #002F82;
  border: 1px solid #002F82;
  line-height: 1.1;
  -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  /* ホバー時の背景色とテキスト色の変化 */
  /* ::afterで白い矢印アイコン */
  /* ::beforeで青い矢印アイコン */
  /* ホバー時のアイコン切り替え */
}
.c-btn:hover {
  background-color: #fff;
  color: #002F82;
}
.c-btn::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  background-image: url("/assets/img/icon_arrow-white.svg");
  background-size: cover;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 1;
}
.c-btn::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  background-image: url("/assets/img/icon_arrow-blue.svg");
  background-size: cover;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.c-btn:hover::after {
  opacity: 0; /* 白いアイコンをフェードアウト */
}
.c-btn:hover::before {
  opacity: 1; /* 青いアイコンをフェードイン */
}

.header {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 135px;
  padding: 10.5px 45px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  background-color: #141418;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 900px) {
  .header {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 80px;
    padding: 30px 20px 0 20px;
  }
}
.header__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  font-size: 16px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .header__logo {
    font-size: 11px;
    z-index: 11;
  }
}
.header nav {
  width: 77%;
}
@media (max-width: 900px) {
  .header nav {
    width: 100%;
  }
}
.header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 900px) {
  .header__menu {
    display: none;
  }
}
.header__menu > li {
  font-size: clamp(11px, 11px + 3 * (100vw - 900px) / 539, 14px);
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-inline: clamp(17px, 17px + 31 * (100vw - 901px) / 539, 48px);
  border-right: 1px solid #A9B1C1;
}
.header__menu > li:first-of-type {
  padding-left: 0;
}
.header__menu > li a {
  position: relative;
  padding: 0;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__menu > li a::before {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("../img/icon_arrow-white2.svg");
  background-size: cover;
}
.header__menu > li a::after {
  background: #fff;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -5px;
  margin: auto;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__menu > li a:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header__menuWrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 900px) {
  .header__menuWrapper {
    display: none;
  }
}
.header__contactList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.header__contactList li {
  width: 30px;
  height: 30px;
  border-radius: 100vh;
  background-color: #4C4C4C;
}
.header__contactList li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__contactList li a img {
  height: auto;
}
.header__contactList li:nth-of-type(1) img {
  width: 16px;
}
.header__contactList li:nth-of-type(2) img {
  width: 14px;
}
.header__contactList li:nth-of-type(3) img {
  width: 17px;
}
.header__hamburgerButton {
  position: relative;
  display: none;
  width: 24px;
  height: 7px;
  margin-left: auto;
  z-index: 20;
}
@media (max-width: 900px) {
  .header__hamburgerButton {
    display: block;
  }
}
.header__hamburgerButton > span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  border-radius: 1px;
}
.header__hamburgerButton > span:nth-child(1) {
  top: 0;
}
.header__hamburgerButton > span:nth-child(2) {
  bottom: 0;
}
.header__hamburgerButton.close > span:first-child {
  top: 50% !important;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.header__hamburgerButton.close > span:nth-child(2) {
  bottom: 50% !important;
  -webkit-transform: translateY(50%) rotate(45deg);
          transform: translateY(50%) rotate(45deg);
}
.header__hamburgerContents {
  display: none;
  overflow: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 900px) {
  .header__hamburgerContents {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100svh;
    overflow: auto;
    background-color: #18181B;
    z-index: 1;
    padding: 34px 0 0 0;
  }
  .header__hamburgerContents.open {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header__hamburgerContents.open .header__hamburgerMenu li {
    opacity: 1;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(1) {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(2) {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(3) {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(4) {
    -webkit-transition-delay: 0.7s;
            transition-delay: 0.7s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(5) {
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(6) {
    -webkit-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(7) {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(8) {
    -webkit-transition-delay: 1.1s;
            transition-delay: 1.1s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(9) {
    -webkit-transition-delay: 1.2s;
            transition-delay: 1.2s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(10) {
    -webkit-transition-delay: 1.3s;
            transition-delay: 1.3s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(11) {
    -webkit-transition-delay: 1.4s;
            transition-delay: 1.4s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(12) {
    -webkit-transition-delay: 1.5s;
            transition-delay: 1.5s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(13) {
    -webkit-transition-delay: 1.6s;
            transition-delay: 1.6s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(14) {
    -webkit-transition-delay: 1.7s;
            transition-delay: 1.7s;
  }
  .header__hamburgerContents.open .header__hamburgerMenu li:nth-child(15) {
    -webkit-transition-delay: 1.8s;
            transition-delay: 1.8s;
  }
}
.header__hamburgerMenu {
  position: relative;
}
@media (max-width: 900px) {
  .header__hamburgerMenu {
    display: block;
    padding: 70px 0;
    width: 100%;
  }
  .header__hamburgerMenu li {
    opacity: 0;
  }
  .header__hamburgerMenu li:first-child {
    padding-bottom: 27px;
  }
  .header__hamburgerMenu li {
    padding: 27px 0;
    border-bottom: 1px solid #C6C6C6;
  }
  .header__hamburgerMenu li > a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    font-size: 18px;
    letter-spacing: 0.14em;
    line-height: 1.3;
  }
  .header__hamburgerMenu li > a span {
    display: block;
    font-size: 12px;
    text-align: center;
    color: #A3A3A3;
  }
}

.footer {
  padding: 55px 6%;
  border-top: 1px solid #2F2F2F;
}
@media (max-width: 900px) {
  .footer {
    padding: 18px 20px 17px 20px;
    border-top: 1px dashed #4C4C4C;
  }
}
.footer__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1417px;
  margin-inline: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 900px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer__logo {
  width: 90px;
}
@media (max-width: 900px) {
  .footer__logo {
    width: 60px;
  }
}
.footer__info p {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .footer__info p {
    font-size: 12px;
  }
}
.footer__info p:first-of-type {
  margin-top: 16px;
}
.footer__info p:not(:first-of-type) {
  margin-top: 18px;
}
.footer__info p span.footer__campanyName {
  font-size: 20px;
}
@media (max-width: 900px) {
  .footer__info p span.footer__campanyName {
    font-size: 11px;
  }
}
.footer__info a {
  display: inline;
}
.footer__2colInfo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media (max-width: 900px) {
  .footer__2colInfo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer .c-btn {
  display: block;
  margin-top: 48px;
}
.footer__copyright {
  display: block;
  font-size: 15px;
  margin-top: 45px;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 100;
  letter-spacing: 0.1em;
  color: #F9F9F9;
}
@media (max-width: 900px) {
  .footer__copyright {
    margin-top: 28px;
    font-size: 12px;
  }
}
.footer__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 42%;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 3%;
     -moz-column-gap: 3%;
          column-gap: 3%;
  row-gap: 60px;
}
@media (max-width: 900px) {
  .footer__menu {
    display: none;
  }
}
.footer__menu > li {
  width: 31.3333333333%;
  font-size: clamp(12px, 12px + 4 * (100vw - 901px) / 539, 16px);
}
.footer__right {
  margin-top: 28px;
}
.footer__contactList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 900px) {
  .footer__contactList {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer__contactList li {
  width: 30px;
  height: 30px;
  border-radius: 100vh;
  background-color: #4C4C4C;
}
@media (max-width: 900px) {
  .footer__contactList li {
    width: 28px;
    height: 28px;
  }
}
.footer__contactList li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__contactList li a img {
  height: auto;
}
.footer__contactList li:nth-of-type(1) img {
  width: 16px;
}
.footer__contactList li:nth-of-type(2) img {
  width: 14px;
}
.footer__contactList li:nth-of-type(3) img {
  width: 17px;
}

.top-mv {
  position: relative;
  background-color: #141418;
  height: calc(100dvh - 135px);
}
@media (max-width: 900px) {
  .top-mv {
    height: calc(100dvh - 80px);
  }
}
.top-mv figure {
  height: calc(100dvh - 135px);
}
@media (max-width: 900px) {
  .top-mv figure {
    width: calc(100% - 50px);
    height: calc(100dvh - 80px);
    padding-top: 50px;
  }
}
.top-mv figure.spOnly img {
  -o-object-position: center bottom;
     object-position: center bottom;
}
.top-mv__logo {
  position: absolute;
  max-width: 380px;
  top: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top-mv__text {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 7%;
}
@media (max-width: 900px) {
  .top-mv__text {
    top: auto;
    bottom: 5%;
    left: 4%;
  }
}
.top-mv__text > p {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 60px;
  color: #fff;
  letter-spacing: 0.32em;
  font-weight: lighter;
}
@media (max-width: 900px) {
  .top-mv__text > p {
    font-size: 40px;
    line-height: 60px;
  }
}
.top-mv__scroll {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  right: -80px;
  top: 30%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
@media (max-width: 900px) {
  .top-mv__scroll {
    top: 60%;
  }
}
.top-mv__scroll > p {
  font-size: 12px;
  color: #A3A3A3;
  letter-spacing: 0.75em;
}
.top-mv__scroll > span {
  position: relative;
  display: block;
  width: 85px;
  height: 1px;
}
.top-mv__scroll > span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #A3A3A3;
  top: 0;
  left: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-animation: scrollDown 2s infinite;
          animation: scrollDown 2s infinite;
}
@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 0;
  }
}
@keyframes scrollDown {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 0;
  }
}
.top .hero_contact a {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: fixed;
  background-color: #F3F3F3;
  color: white;
  right: 0;
  bottom: 0;
  font-size: 12px;
  padding: 70px 18px 30px 18px;
  z-index: 9999;
  white-space: nowrap;
}
@media (min-width: 960px) {
  .top .hero_contact a {
    font-size: 16px;
  }
}
.top .hero_contact p {
  display: inline;
  color: #5D5D5D;
  font-size: 20px;
  text-decoration: none;
  margin-bottom: 10px;
}
.top .hero_contact .bi {
  position: absolute;
  display: block;
  width: 28px;
  height: 28px;
  background-image: url(/assets/img/icon_contact04.svg);
  background-size: cover;
  top: 28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top .hero_contact small {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  color: #5D5D5D;
  letter-spacing: 0.1em;
}
@media (min-width: 960px) {
  .top .hero_contact small {
    font-size: 13px;
  }
}
.top-mvBottom {
  width: 100%;
  height: 87px;
  background: -webkit-gradient(linear, left bottom, left top, from(#1C1C1D), to(#141418));
  background: -webkit-linear-gradient(bottom, #1C1C1D 0%, #141418 100%);
  background: linear-gradient(0deg, #1C1C1D 0%, #141418 100%);
}
.top-message {
  margin-top: 35px;
  padding: 0 20px;
}
.top-message p {
  font-size: 13px;
}
.top-ctaArea {
  margin-top: 265px;
  margin-bottom: 300px;
}
@media (max-width: 900px) {
  .top-ctaArea {
    margin-top: 80px;
    margin-bottom: 115px;
  }
}
.top-ctaArea a {
  max-width: 750px;
  margin-inline: auto;
}
@media (max-width: 900px) {
  .top-ctaArea a {
    max-width: 74.8%;
  }
}
.top-ctaArea a:hover figure > img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.top-ctaArea figure {
  overflow: hidden;
}
.top-ctaArea figure img {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.top-ctaArea + .c-section {
  margin-top: 0;
}
.top-logoArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1160px;
  margin: 410px auto 560px auto;
  padding: 0 30px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 900px) {
  .top-logoArea {
    margin: 100px auto 100px auto;
  }
}
.top-logoArea a {
  width: 44%;
}
.top-logoArea a:hover figure > img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.top-logoArea figure {
  overflow: hidden;
}
.top-logoArea figure img {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.top-access.c-section {
  margin-top: 160px;
  margin-bottom: 322px;
}
@media (max-width: 900px) {
  .top-access.c-section {
    margin-bottom: 67px;
  }
}
.top-access .c-section__container {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0;
}
.top-access .c-section__title::before {
  color: #c8c8c8;
  top: 80% !important;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-8deg);
          transform: translate(-50%, -50%) rotate(-8deg);
  z-index: -1;
  bottom: -30%;
  opacity: 0.1;
}
@media (max-width: 900px) {
  .top-access .c-section__title::before {
    font-size: 115px;
    top: auto !important;
    bottom: -205%;
  }
}
.top-access__textArea {
  position: relative;
  width: 50%;
  min-height: 100%;
  background-color: #333333;
  padding: 5% 4%;
  z-index: 1;
}
.top-access__textArea .c-section__text {
  line-height: 1.4;
  padding-top: 20px;
}
.top-access__textArea p a {
  display: inline;
}
@media (max-width: 900px) {
  .top-access__textArea {
    width: 100%;
    padding: 14% 6%;
  }
}
.top-access__googleMap {
  position: relative;
  width: 50%;
  aspect-ratio: 800/398;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 900px) {
  .top-access__googleMap {
    width: 100%;
    aspect-ratio: 390/293;
  }
}
.top-access__googleMap iframe {
  width: 100%;
  height: 100%;
}

.contact-body {
  margin-top: 190px;
  margin-bottom: 250px;
}
@media (max-width: 900px) {
  .contact-body {
    margin-top: 100px;
    margin-bottom: 150px;
  }
}
.contact-body__title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 900px) {
  .contact-body__title {
    font-size: 22px;
  }
}
.contact__container {
  max-width: 1240px;
  margin-inline: auto;
  padding: 0px 30px;
}
@media (max-width: 900px) {
  .contact__container {
    padding-inline: 40px;
    padding-bottom: 30px;
  }
}
.contact__formItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
align-items: stretch;
}
@media (max-width: 900px) {
  .contact__formItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 900px) {
  .contact__formItem:not(.firstItem) {
    margin-top: 50px;
  }
}
.contact__formItem > p {
  width: 30%;
  min-height: 100%;
}
@media (max-width: 900px) {
  .contact__formItem > p {
    width: 100%;
  }
}
.contact__formItem label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0;
  font-size: 16px;
  border-top: 1px solid #ADADAD;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 900px) {
  .contact__formItem label {
    width: 100%;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    padding: 0;
    font-size: 12px;
    border-top: none;
  }
}
.contact__formItem.firstItem label {
  border-top: 1px solid transparent;
}
.contact__formItem.firstItem .contact__inputArea {
  border-top: 1px solid transparent;
}
.contact__required, .contact__optional {
  display: inline-block;
  padding: 3px 7px;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .contact__required, .contact__optional {
    padding: 4.6px 4.5px;
    border-radius: 4px;
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1;
  }
}
.contact__required {
  background-color: red;
}
.contact__optional {
  background-color: #147EDF;
}
.contact__inputArea {
  width: 66.5%;
  padding: 43px 0;
  border-top: 1px solid #ADADAD;
}
@media (max-width: 900px) {
  .contact__inputArea {
    width: 100%;
    margin-top: 15px;
    padding: 0;
    border: none;
  }
}
.contact__inputArea .wpcf7-text, .contact__inputArea textarea {
  width: 100%;
  padding: 11px 22px;
  background-color: white;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #8B8B8B;
}
@media (max-width: 900px) {
  .contact__inputArea .wpcf7-text, .contact__inputArea textarea {
    width: 100%;
    font-size: 14px;
  }
}
.contact__inputArea textarea {
  width: 100%;
}
@media (max-width: 900px) {
  .contact__inputArea textarea {
    /* height: 40px; */
    padding: 9px 22px;
  }
}
.contact__dropDown {
  position: relative;
  display: inline-block;
  min-width: 333px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #8B8B8B;
}
@media (max-width: 900px) {
  .contact__dropDown {
    width: 100%;
    min-width: auto;
  }
}
.contact__dropDown::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url("/assets/img/decoration_contact01.svg");
  background-size: cover;
  top: 50%;
  right: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact__dropDown select {
  position: relative;
  display: block;
  width: 100%;
  padding: 11px 22px;
  font-size: 16px;
  color: #2F2F2F;
  z-index: 11;
  cursor: pointer;
}
.contact__customerInfoLabel {
  display: block;
  font-size: 16px;
  margin-top: 85px;
  padding-bottom: 80px;
}
.contact__supplementText {
  font-size: 14px;
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .contact__supplementText {
    margin-top: 8px;
    line-height: 1.8;
  }
}
.contact .wpcf7-submit {
  display: block;
  font-size: 12px;
  width: 600px;
  margin-top: 140px;
  margin-inline: auto;
  padding: 18px 0;
  color: #141418;
  background-color: #F9F9F9;
  border: 1px solid #F9F9F9;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  border-radius: 0;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 900px) {
  .contact .wpcf7-submit {
    width: 65%;
    margin-top: 70px;
    padding: 6.5px 0;
    letter-spacing: 0.08em;
  }
}
.contact .wpcf7-submit:hover {
  color: #fff;
  background-color: #1C1C1D;
}
.contact .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 3px;
  font-weight: 800;
}
@media (max-width: 900px) {
  .contact .c-section__title[data-title=Contact]::before {
    font-size: 85px !important;
    bottom: -122% !important;
  }
}

.thanks {
  text-align: center;
}
.thanks__container {
  margin: 100px 0 300px 0;
}
.thanks h1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 90px;
  font-size: 24px;
  letter-spacing: 0.32em;
  color: #F9F9F9;
  border-bottom: 1px solid #F9F9F9;
  line-height: 2.1;
}
@media (max-width: 900px) {
  .thanks h1 {
    padding: 0 35px;
    font-size: 20px;
  }
}
.thanks__message {
  font-size: 16px;
  letter-spacing: 0.32em;
  color: #F9F9F9;
  margin-top: 27px;
}
@media (max-width: 900px) {
  .thanks__message {
    font-size: 13px;
    margin-top: 35px;
  }
}
.thanks__btn {
  width: 323px;
  margin-inline: auto;
  margin-top: 50px;
  background-color: #F9F9F9;
  border: 1px solid #F9F9F9;
  color: #000;
  padding: 16px 0;
  line-height: 1;
  font-size: 12px;
  -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
.thanks__btn:hover {
  background-color: #fff;
  color: #002F82;
}

@media (max-width: 900px) {
  .concept .c-section + .concept-company {
    margin-top: 150px;
  }
}
.concept .c-section__title[data-title=Concept]::before {
  top: 40px;
}
@media (max-width: 900px) {
  .concept .c-section__title[data-title=Concept]::before {
    bottom: -197%;
  }
}
.concept .c-section.reverse .c-section__container {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.concept .c-section.reverse figure {
  height: auto;
  aspect-ratio: 600/451;
}
.concept .c-section.reverse .c-section__title {
  width: clamp(260px, 260px + 280 * (100vw - 901px) / 539, 540px);
  margin-left: auto;
  padding-left: 0px !important;
  padding-bottom: 0px;
}
@media (max-width: 900px) {
  .concept .c-section.reverse .c-section__title {
    width: 100%;
  }
}
.concept .c-section.reverse .c-section__title h2 {
  margin-right: auto;
  margin-left: 0 !important;
}
.concept .c-section.reverse .c-section__title h2::after {
  content: "";
  top: 50%;
  left: auto;
  right: 0;
  -webkit-transform: translate(120%, -50%);
          transform: translate(120%, -50%);
}
.concept .c-section.reverse .c-section__text {
  text-align: left;
  padding: 0px 0px 55px 0px;
  font-size: 15px;
  width: clamp(260px, 260px + 280 * (100vw - 901px) / 539, 540px);
}
@media (max-width: 900px) {
  .concept .c-section.reverse .c-section__text {
    width: 100%;
    font-size: 12px;
    padding-bottom: 10px;
  }
}
.concept .c-section.reverse .c-section__text .strong {
  font-size: 20px;
  line-height: 3;
}
@media (max-width: 900px) {
  .concept .c-section.reverse .c-section__text .strong {
    font-size: 16px;
  }
}
.concept .c-section.reverse .c-section__image {
  width: 46%;
}
@media (max-width: 900px) {
  .concept .c-section.reverse .c-section__image {
    width: 100%;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
.concept .c-section.reverse .c-section__textArea {
  width: 54%;
}
@media (max-width: 900px) {
  .concept .c-section.reverse .c-section__textArea {
    width: 100%;
    margin-top: 0;
    padding: 48px 40px;
    background-color: #333333;
    -webkit-transform: translate(20px, -10%);
            transform: translate(20px, -10%);
  }
}
.concept-company {
  margin-top: 200px;
}
@media (max-width: 900px) {
  .concept-company {
    margin-top: 155px;
  }
}
.concept-company .c-section__container {
  max-width: 1300px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 9%;
     -moz-column-gap: 9%;
          column-gap: 9%;
  row-gap: 65px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 900px) {
  .concept-company .c-section__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 50px;
  }
}
.concept-company__image {
  width: 100%;
}
@media (max-width: 900px) {
  .concept-company__image {
    width: 100vw;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
.concept-company__textArea {
  max-width: 535px;
  width: 43%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-top: 50px;
  padding-inline: 10px;
  scroll-margin-top:185px;
}
@media (max-width: 900px) {
  .concept-company__textArea {
    width: 100%;
    font-size: 13px;
    margin-top: 10px;
    scroll-margin-top:100px;
  }
}
.concept-company__textArea h2 {
  position: relative;
  font-size: 28px;
  color: #F9F9F9;
}
.concept-company__textArea h2 span {
  display: inline-block;
  background-color: #1C1C1D;
  padding-right: 40px;
}
.concept-company__textArea h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #A9B1C1;
  top: 50%;
  right: 0;
  z-index: -1;
}
@media (max-width: 900px) {
  .concept-company__textArea h2 {
    font-size: 18px;
    margin-top: 0;
  }
}
.concept-company__textArea p {
  margin-top: 32px;
}
@media (max-width: 900px) {
  .concept-company__textArea p {
    margin-top: 25px;
  }
}
.concept-company:last-of-type {
  margin-bottom: 410px;
}
@media (max-width: 900px) {
  .concept-company:last-of-type {
    margin-bottom: 105px;
  }
}
.concept-company dl {
  margin-top: 50px;
}
.concept-company dl > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 28px;
}
.concept-company dl > div dt {
  width: 110px;
  min-width: 110px;
  padding-right: 10px;
}
.concept .top-access .c-section__title::before {
  bottom: auto;
  top: 175% !important;
}
@media (max-width: 900px) {
  .concept .top-access .c-section__title::before {
    font-size: 80px;
    top: 145px !important;
  }
}
.top-access__info{
  margin-top: 40px;
}
@media (max-width: 900px) {
  .top-access__info{
    margin-top: 0px;
  }
}
.top-access__info > p{
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 100;
}
@media (max-width: 900px) {
  .top-access__info > p:not(:first-child){
    margin-top: 9px;
  }
}
.top-access.c-section .c-section__btn {
  bottom: 3px;
}

.concept .c-section__text{
  padding: 30px 20px 55px 0;
}
.concept .c-section__title[data-title=Concept]::before {
  top: -21px;
}
@media (max-width: 900px) {
  .concept .c-section__title[data-title=Concept]::before {
    top: 103px;
  }
}
.contact .c-section__text{
  padding: 30px 20px 55px 0px;
}
.contact .c-section__title[data-title=Contact]::before {
  top: -51px;
}
@media (max-width: 900px) {
  .contact .c-section__title[data-title=Contact]::before {
    top: 80px;
  }
}
.contact .inquiryDetails{
  display: flex;
  column-gap: 69px;
}
@media (max-width: 900px) {
  .contact .inquiryDetails{
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .contact .inquiryDetails >div{
    margin-top: 20px;
  }
}

.contact .inquiryDetails >p label{
  font-size: 20px;
}
@media (min-width: 901px) {
  .contact .inquiryDetails .wpcf7-list-item.first{
    margin-right: 30px;
  }
}
.contact .inquiryDetails input[type="radio"] {
  transform: translateY(-2px);
}
.contact__title{
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .contact__title{
    font-size: 22px;
  }
}
@media (max-width: 900px) {
  .inquiryDetailsItem{
    >label{
      display: flex;
      flex-direction: column;
    }
  }
}

.wpcf7-list-item{
  margin-left: 0;
}
@media (max-width: 900px) {
  .wpcf7-form-control.wpcf7-radio{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
}
@media (max-width: 900px) {
  .contact__formItem{
    align-items: initial;
    border-bottom: 1px solid #ADADAD;
    padding-bottom: 50px;
  }
}
.radio-back-white .wpcf7-list-item{
  background-color: #fff;
  color: #000;
  width: 50%;
  padding: 5px 7px;
  border-radius: 4px;
}
.radio-back-white .wpcf7-list-item input[type="radio"] {
  border: 1px solid #000;
  transform: translateY(2px);
}
.radio-back-white .wpcf7-radio{
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
@media (max-width: 900px) {
  .radio-back-white .wpcf7-radio{
    column-gap: 8px;
    flex-direction: row;
  }
}
@media (min-width: 901px) {
  .half-form p{
    width: 50%;
  }
}
@media (min-width: 901px) {
  .last-form >p{
    border-bottom: 1px solid #ADADAD;
  }
  .last-form .contact__inputArea{
    border-bottom: 1px solid #ADADAD;
  }
}
/*# sourceMappingURL=style.css.map */