@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
:root {
  /* 基本カラー */
  --c-bg: #f6f7fa;
  --c-text: $c_black;
  --c-primary: #FB5B01;
  --c-secondary: #005BBB;
  --Gray-Grey-300: #B3B3B3;
  --Gray-Grey-50: #F2F2F2;
  /* タイポグラフィ */
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  --font-en: "Lexend", sans-serif;
  --font-size-base: 1rem; /* 基本のフォントサイズ */
  --font-weight-base: 400; /* 通常のフォントウェイト */
  /* レイアウト */
  --spacing: 16px; /* 基本の余白 */
  --radius: 8px; /* 角丸のサイズ */
}

.media-check {
  display: none;
}
@media (min-width: 1200px) {
  .media-check:before {
    content: "xl";
  }
}
@media (min-width: 1100px) and (max-width: 1199.98px) {
  .media-check:before {
    content: "lg";
  }
}
@media (min-width: 768px) and (max-width: 1099.98px) {
  .media-check:before {
    content: "md";
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .media-check:before {
    content: "sm";
  }
}
@media (max-width: 575.98px) {
  .media-check:before {
    content: "xs";
  }
}

/* フェードイン */
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* フェードイン＋スケール */
@keyframes fadein-scale {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* フェードイン＋縦移動 */
@keyframes fadein-translate-y {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ボタン用 */
@keyframes btn_anime {
  0% {
    transform: scale(1);
  }
  3% {
    transform: scale(1.1);
  }
  6% {
    transform: scale(1);
  }
  9% {
    transform: scale(1.1);
  }
  12% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes btn_arrow {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(-5px, -50%);
  }
}
@keyframes btn_arrow_entry {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-5px);
  }
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

html {
  font-size: 100%;
}

body {
  font-size: 1rem;
}

body,
body input,
body textarea {
  font-size: var(--font-size-base);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: var(--font-weight-base);
  color: var(--c-text);
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.f--en {
  font-family: var(--font-en);
  font-optical-sizing: auto;
  font-style: normal;
}

code, .code {
  font-family: var(--font-mono);
}

a {
  text-shadow: none;
  outline: none;
  text-decoration: none;
  color: var(--c-text);
}
a:link, a:visited, a:hover, a:active {
  color: var(--c-text);
}
a:hover {
  color: var(--c-text);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
  font-size: 2.1333333333vw;
}

@media (min-width: 1100px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
[data-ruby] {
  position: relative;
}

[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.2em;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 0.5em;
  display: inline-block;
  text-align: center;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  width: 100%;
  word-break: break-word;
}
.home body {
  background-color: var(--c-bg);
}

.home .l_main {
  background-color: var(--c-bg);
}

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

img.icon {
  max-width: 100px;
}

body.is-fixed {
  overflow: hidden;
}
@media (min-width: 1100px) {
  body.is-fixed {
    width: calc(100vw - var(--scrollbar-width));
  }
}

p:empty::before {
  content: none !important;
}

.my-slick {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.my-slick.slick-initialized {
  opacity: 1;
  height: auto;
}

/* reCAPTCHAのロゴの調整 */
.grecaptcha-badge {
  left: 6px !important;
  width: 70px !important;
  right: auto !important;
  transition: left 0.3s, width 0.3s !important;
  z-index: 1000;
}
.grecaptcha-badge:hover {
  left: 6px !important;
  width: 256px !important;
}

/* reCAPTCHAの記載部分 */
.recaptcha-desc {
  padding-top: 32px;
  font-size: 0.7em;
  line-height: 1.5;
  opacity: 0.5;
}
.recaptcha-desc a {
  text-decoration: underline;
  margin: 0 2px;
}
.recaptcha-desc .-name {
  font-weight: bold;
  margin: 0 2px;
}

.section-title-01__main,
.section-title-01__sub {
  display: block;
}

@media (min-width: 576px) {
  .section-title-01__sub {
    margin-top: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .section-title-01__sub {
    margin-top: 4vw;
  }
}

.section-title-01__main,
.section-title-02__main {
  font-weight: 700;
  line-height: 1.4444444444;
  line-height: 1;
}
@media (min-width: 576px) {
  .section-title-01__main,
  .section-title-02__main {
    font-size: 5.625rem;
  }
}
@media (max-width: 575.98px) {
  .section-title-01__main,
  .section-title-02__main {
    font-size: 12vw;
  }
}

.section-title-01__sub,
.section-title-02__sub {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (min-width: 576px) {
  .section-title-01__sub,
  .section-title-02__sub {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .section-title-01__sub,
  .section-title-02__sub {
    font-size: 1rem;
  }
}
.section-title-01__sub::before,
.section-title-02__sub::before {
  content: "●";
  color: #0d6ef3;
  margin-right: 0.5em;
}

.section-title-01.color-white .section-title-01__main,
.section-title-01.color-white .section-title-01__sub,
.section-title-01.color-white .section-title-02__main,
.section-title-01.color-white .section-title-02__sub,
.section-title-02.color-white .section-title-01__main,
.section-title-02.color-white .section-title-01__sub,
.section-title-02.color-white .section-title-02__main,
.section-title-02.color-white .section-title-02__sub {
  color: #ffffff;
}
.section-title-01.color-white .section-title-01__main::before,
.section-title-01.color-white .section-title-01__sub::before,
.section-title-01.color-white .section-title-02__main::before,
.section-title-01.color-white .section-title-02__sub::before,
.section-title-02.color-white .section-title-01__main::before,
.section-title-02.color-white .section-title-01__sub::before,
.section-title-02.color-white .section-title-02__main::before,
.section-title-02.color-white .section-title-02__sub::before {
  color: #ffffff;
}

@media (max-width: 575.98px) {
  .section-title-02 > * {
    display: block;
  }
}
@media (max-width: 575.98px) and (min-width: 576px) {
  .section-title-02 .section-title-02__sub {
    margin-top: 1.5rem;
  }
}
@media (max-width: 575.98px) and (max-width: 575.98px) {
  .section-title-02 .section-title-02__sub {
    margin-top: 4vw;
  }
}

.auto-phrase {
  word-break: auto-phrase;
}

.c-desc {
  line-height: 1.75;
}
@media (min-width: 1100px) {
  .c-desc {
    font-size: 1rem;
  }
}
@media (max-width: 1099.98px) {
  .c-desc {
    font-size: 0.875rem;
  }
}

.common-panel {
  background-color: #ffffff;
}
@media (min-width: 1100px) {
  .common-panel {
    padding: 6.5rem;
    border-radius: 2.5rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .common-panel {
    padding: 4rem 2rem;
    border-radius: 1.875rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 575.98px) {
  .common-panel {
    padding: 4rem 2rem;
    border-radius: 1.875rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }
}

@media (min-width: 1100px) {
  .btn-common-bg-01 {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 1;
    background-color: #191d25;
    color: var(--c-text-btn-common-bg, #fff);
    color: var(--c-text-btn-common-bg, #fff);
    width: 20rem;
    height: 5rem;
    padding: 0rem 0rem;
    font-size: 1.5rem;
    font-weight: 700;
    justify-content: flex-start;
    padding-left: 2.25rem;
    position: relative;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
  .btn-common-bg-01:link, .btn-common-bg-01:visited, .btn-common-bg-01:hover, .btn-common-bg-01:active {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .btn-common-bg-01:hover {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .btn-common-bg-01::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5rem;
    content: "";
    width: 2rem;
    height: 2rem;
    background-image: url(images/icon/icon-arrow-circle-white-01.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
  }
  .btn-common-bg-01::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0d6ef3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
  }
  .btn-common-bg-01:hover::before, .btn-common-bg-01.js-hover::before {
    transform: scaleX(1);
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .btn-common-bg-01 {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 1;
    background-color: #191d25;
    color: var(--c-text-btn-common-bg, #fff);
    color: var(--c-text-btn-common-bg, #fff);
    width: 20rem;
    height: 5rem;
    padding: 0rem 0rem;
    font-size: 1.5rem;
    font-weight: 700;
    justify-content: flex-start;
    padding-left: 2.25rem;
    position: relative;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
  .btn-common-bg-01:link, .btn-common-bg-01:visited, .btn-common-bg-01:hover, .btn-common-bg-01:active {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .btn-common-bg-01:hover {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .btn-common-bg-01::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5rem;
    content: "";
    width: 2rem;
    height: 2rem;
    background-image: url(images/icon/icon-arrow-circle-white-01.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
  }
  .btn-common-bg-01::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0d6ef3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
  }
  .btn-common-bg-01:hover::before, .btn-common-bg-01.js-hover::before {
    transform: scaleX(1);
  }
}
@media (max-width: 575.98px) {
  .btn-common-bg-01 {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 1;
    background-color: #191d25;
    color: var(--c-text-btn-common-bg, #fff);
    color: var(--c-text-btn-common-bg, #fff);
    width: 53.3333333333vw;
    height: 13.3333333333vw;
    padding: 0rem 0rem;
    font-size: 4.2666666667vw;
    font-weight: 700;
    justify-content: flex-start;
    padding-left: 5.8666666667vw;
    position: relative;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
  .btn-common-bg-01:link, .btn-common-bg-01:visited, .btn-common-bg-01:hover, .btn-common-bg-01:active {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .btn-common-bg-01:hover {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .btn-common-bg-01::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4vw;
    content: "";
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    background-image: url(images/icon/icon-arrow-circle-white-01.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
  }
  .btn-common-bg-01::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0d6ef3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
  }
  .btn-common-bg-01:hover::before, .btn-common-bg-01.js-hover::before {
    transform: scaleX(1);
  }
}

@media (min-width: 1100px) {
  .btn-common-outline-white-01 {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 1;
    background-color: transparent;
    border: 0.125rem solid #fff;
    color: var(--c-text-btn-common-bg, #fff);
    color: var(--c-text-btn-common-bg, #fff);
    width: 20rem;
    height: 5rem;
    padding: 0rem 0rem;
    font-size: 1.5rem;
    font-weight: 700;
    justify-content: flex-start;
    padding-left: 2.25rem;
    position: relative;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
  .btn-common-outline-white-01:link, .btn-common-outline-white-01:visited, .btn-common-outline-white-01:hover, .btn-common-outline-white-01:active {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .btn-common-outline-white-01:hover {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .btn-common-outline-white-01::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5rem;
    content: "";
    width: 2rem;
    height: 2rem;
    background-image: url(images/icon/icon-arrow-circle-white-01.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
  }
  .btn-common-outline-white-01::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #191d25;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
  }
  .btn-common-outline-white-01:hover::before, .btn-common-outline-white-01.js-hover::before {
    transform: scaleX(1);
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .btn-common-outline-white-01 {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 1;
    background-color: transparent;
    border: 0.125rem solid #fff;
    color: var(--c-text-btn-common-bg, #fff);
    color: var(--c-text-btn-common-bg, #fff);
    width: 20rem;
    height: 5rem;
    padding: 0rem 0rem;
    font-size: 1.5rem;
    font-weight: 700;
    justify-content: flex-start;
    padding-left: 2.25rem;
    position: relative;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
  .btn-common-outline-white-01:link, .btn-common-outline-white-01:visited, .btn-common-outline-white-01:hover, .btn-common-outline-white-01:active {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .btn-common-outline-white-01:hover {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .btn-common-outline-white-01::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5rem;
    content: "";
    width: 2rem;
    height: 2rem;
    background-image: url(images/icon/icon-arrow-circle-white-01.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
  }
  .btn-common-outline-white-01::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #191d25;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
  }
  .btn-common-outline-white-01:hover::before, .btn-common-outline-white-01.js-hover::before {
    transform: scaleX(1);
  }
}
@media (max-width: 575.98px) {
  .btn-common-outline-white-01 {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 1;
    background-color: transparent;
    border: 0.125rem solid #fff;
    color: var(--c-text-btn-common-bg, #fff);
    color: var(--c-text-btn-common-bg, #fff);
    width: 53.3333333333vw;
    height: 13.3333333333vw;
    padding: 0rem 0rem;
    font-size: 4.2666666667vw;
    font-weight: 700;
    justify-content: flex-start;
    padding-left: 5.8666666667vw;
    position: relative;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
  .btn-common-outline-white-01:link, .btn-common-outline-white-01:visited, .btn-common-outline-white-01:hover, .btn-common-outline-white-01:active {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .btn-common-outline-white-01:hover {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .btn-common-outline-white-01::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4vw;
    content: "";
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    background-image: url(images/icon/icon-arrow-circle-white-01.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
  }
  .btn-common-outline-white-01::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #191d25;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
  }
  .btn-common-outline-white-01:hover::before, .btn-common-outline-white-01.js-hover::before {
    transform: scaleX(1);
  }
}

@media (min-width: 1100px) {
  .btn-common-outline-black-01 {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 1;
    background-color: transparent;
    border: 0.125rem solid #191d25;
    color: var(--c-text-btn-common-bg, #191d25);
    color: var(--c-text-btn-common-bg, #191d25);
    width: 20rem;
    height: 5rem;
    padding: 0rem 0rem;
    font-size: 1.5rem;
    font-weight: 700;
    justify-content: flex-start;
    padding-left: 2.25rem;
    position: relative;
    transition: opacity 0.3s ease;
  }
  .btn-common-outline-black-01:link, .btn-common-outline-black-01:visited, .btn-common-outline-black-01:hover, .btn-common-outline-black-01:active {
    color: var(--c-text-btn-common-bg, #191d25);
  }
  .btn-common-outline-black-01:hover {
    color: var(--c-text-btn-common-bg, #191d25);
  }
  .btn-common-outline-black-01::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5rem;
    content: "";
    width: 2rem;
    height: 2rem;
    background-image: url(images/icon/icon-arrow-circle-black-01.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
  }
  .btn-common-outline-black-01:hover {
    opacity: 0.6;
  }
}
@media (min-width: 1100px) and (max-width: 575.98px) {
  .btn-common-outline-black-01.js_hover {
    opacity: 0.6;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .btn-common-outline-black-01 {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 1;
    background-color: transparent;
    border: 0.125rem solid #191d25;
    color: var(--c-text-btn-common-bg, #191d25);
    color: var(--c-text-btn-common-bg, #191d25);
    width: 20rem;
    height: 5rem;
    padding: 0rem 0rem;
    font-size: 1.5rem;
    font-weight: 700;
    justify-content: flex-start;
    padding-left: 2.25rem;
    position: relative;
    transition: opacity 0.3s ease;
  }
  .btn-common-outline-black-01:link, .btn-common-outline-black-01:visited, .btn-common-outline-black-01:hover, .btn-common-outline-black-01:active {
    color: var(--c-text-btn-common-bg, #191d25);
  }
  .btn-common-outline-black-01:hover {
    color: var(--c-text-btn-common-bg, #191d25);
  }
  .btn-common-outline-black-01::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5rem;
    content: "";
    width: 2rem;
    height: 2rem;
    background-image: url(images/icon/icon-arrow-circle-black-01.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
  }
  .btn-common-outline-black-01:hover {
    opacity: 0.6;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) and (max-width: 575.98px) {
  .btn-common-outline-black-01.js_hover {
    opacity: 0.6;
  }
}
@media (max-width: 575.98px) {
  .btn-common-outline-black-01 {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 1;
    background-color: transparent;
    border: 0.125rem solid #191d25;
    color: var(--c-text-btn-common-bg, #191d25);
    color: var(--c-text-btn-common-bg, #191d25);
    width: 53.3333333333vw;
    height: 13.3333333333vw;
    padding: 0rem 0rem;
    font-size: 4.2666666667vw;
    font-weight: 700;
    justify-content: flex-start;
    padding-left: 5.8666666667vw;
    position: relative;
    transition: opacity 0.3s ease;
  }
  .btn-common-outline-black-01:link, .btn-common-outline-black-01:visited, .btn-common-outline-black-01:hover, .btn-common-outline-black-01:active {
    color: var(--c-text-btn-common-bg, #191d25);
  }
  .btn-common-outline-black-01:hover {
    color: var(--c-text-btn-common-bg, #191d25);
  }
  .btn-common-outline-black-01::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4vw;
    content: "";
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    background-image: url(images/icon/icon-arrow-circle-black-01.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
  }
  .btn-common-outline-black-01:hover {
    opacity: 0.6;
  }
}
@media (max-width: 575.98px) and (max-width: 575.98px) {
  .btn-common-outline-black-01.js_hover {
    opacity: 0.6;
  }
}

.works-entry__actions-link i {
  margin-left: 1em;
}
@media (min-width: 576px) {
  .works-entry__actions-link {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 1;
    background-color: #191d25;
    color: var(--c-text-btn-common-bg, #fff);
    color: var(--c-text-btn-common-bg, #fff);
    width: 100%;
    height: 3rem;
    padding: 0rem 0rem;
    font-size: 0.875rem;
    font-weight: 700;
  }
  .works-entry__actions-link:link, .works-entry__actions-link:visited, .works-entry__actions-link:hover, .works-entry__actions-link:active {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .works-entry__actions-link:hover {
    color: var(--c-text-btn-common-bg, #fff);
  }
}
@media (max-width: 575.98px) {
  .works-entry__actions-link {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-weight: 700;
    line-height: 1;
    background-color: #191d25;
    color: var(--c-text-btn-common-bg, #fff);
    color: var(--c-text-btn-common-bg, #fff);
    width: 100%;
    height: 10.6666666667vw;
    padding: 0rem 0rem;
    font-size: 4.2666666667vw;
    font-weight: 700;
  }
  .works-entry__actions-link:link, .works-entry__actions-link:visited, .works-entry__actions-link:hover, .works-entry__actions-link:active {
    color: var(--c-text-btn-common-bg, #fff);
  }
  .works-entry__actions-link:hover {
    color: var(--c-text-btn-common-bg, #fff);
  }
}

.js-s.js-s-f {
  transition: opacity 0.5s, transform 0.5s;
}

.js-s.js-s-f--l {
  transition: opacity 0.5s, transform 0.5s;
}

.js-s.js-s-f--d {
  transition: all 0.5s 0.4s;
}

.js-s.js-s-f--dd {
  transition: all 0.5s 0.8s;
}

.js-s.js-s-f,
.js-s.js-s-f--l,
.js-s.js-s-f--d,
.js-s.js-s-f--dd {
  opacity: 0;
}
.js-s.js-s-f.active,
.js-s.js-s-f--l.active,
.js-s.js-s-f--d.active,
.js-s.js-s-f--dd.active {
  opacity: 1;
}

.js-s.js-s-left {
  transform: translateX(-10px);
}
.js-s.js-s-left.active {
  transform: translateX(0px);
}

.js-s.js-s-right {
  transform: translateX(10px);
}
.js-s.js-s-right.active {
  transform: translateX(0px);
}

.js-s.js-s-bottom {
  transform: translateY(20px);
}
.js-s.js-s-bottom.active {
  transform: translateY(0px);
}

.is-d1 {
  transition-delay: 0.4s !important;
}

.is-d2 {
  transition-delay: 0.8s !important;
}

.is-d3 {
  transition-delay: 1.2s !important;
}

.js-s-f-b {
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(20px);
  opacity: 0;
}
.js-s-f-b.active {
  opacity: 1;
  transform: translateY(0px);
}

@media (max-width: 1099.98px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .sp-only {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .tab-only {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .tab-pc-only {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .sp-tab-only {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .xl-only {
    display: none;
  }
}

@media (min-width: 1200px) {
  .lg-only {
    display: none;
  }
}
@media (max-width: 1099.98px) {
  .lg-only {
    display: none;
  }
}

@media (min-width: 1100px) {
  .md-only {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .md-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sm-only {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .sm-only {
    display: none;
  }
}

@media (min-width: 576px) {
  .xs-only {
    display: none;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body .site-main {
  flex: 1 0 auto;
}

body {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.mw-01 {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(1240px + 16px * 2)) {
  .mw-01 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1240px + 16px * 2)) and (min-width: 1100px) {
  .mw-01 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1240px + 16px * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .mw-01 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1240px + 16px * 2)) and (max-width: 575.98px) {
  .mw-01 {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}

.mw-01-2 {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(1240px + 16px * 2)) {
  .mw-01-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1240px + 16px * 2)) and (min-width: 1100px) {
  .mw-01-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1240px + 16px * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .mw-01-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1240px + 16px * 2)) and (max-width: 575.98px) {
  .mw-01-2 {
    padding-left: 2.1333333333vw;
    padding-right: 2.1333333333vw;
  }
}

.mw-02 {
  max-width: 1392px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(1392px + 16px * 2)) {
  .mw-02 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1392px + 16px * 2)) and (min-width: 1100px) {
  .mw-02 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1392px + 16px * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .mw-02 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1392px + 16px * 2)) and (max-width: 575.98px) {
  .mw-02 {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}

.mw-03 {
  max-width: 1182px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: calc(1182px + 16px * 2)) {
  .mw-03 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1182px + 16px * 2)) and (min-width: 1100px) {
  .mw-03 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1182px + 16px * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .mw-03 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1182px + 16px * 2)) and (max-width: 575.98px) {
  .mw-03 {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}

@media (min-width: 1100px) {
  .ph {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .ph {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 575.98px) {
  .ph {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}

@media (min-width: 1100px) {
  .ph-pc {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 576px) and (max-width: 1099.98px) {
  .ph-tab {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 575.98px) {
  .ph-sp {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}

@media (min-width: 1100px) {
  .ph-0 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .ph-0 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 575.98px) {
  .ph-0 {
    padding-left: 0;
    padding-right: 0;
  }
}

.site-header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1000;
}
@media screen and (max-width: calc(1240px + 16px * 2)) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1240px + 16px * 2)) and (min-width: 1100px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1240px + 16px * 2)) and (min-width: 576px) and (max-width: 1099.98px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: calc(1240px + 16px * 2)) and (max-width: 575.98px) {
  .site-header {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}
@media (min-width: 1100px) {
  .site-header {
    top: 20px;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-header {
    top: 20px;
  }
}
@media (max-width: 575.98px) {
  .site-header {
    top: 3.2vw;
  }
}

@media (min-width: 1100px) {
  .site-header {
    transition: width 0.3s ease;
  }
  .site-header.is-scrolled {
    padding-left: 0;
    padding-right: 0;
    width: 52.5rem;
  }
}

.header-inner {
  background: #fff;
  width: 100%;
  border-radius: 1000px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1100px) {
  .header-inner {
    height: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .header-inner {
    height: 5rem;
  }
}
@media (max-width: 575.98px) {
  .header-inner {
    height: 14.6666666667vw;
  }
}
@media (min-width: 1100px) {
  .header-inner {
    padding-left: 20px;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .header-inner {
    padding-left: 20px;
  }
}
@media (max-width: 575.98px) {
  .header-inner {
    padding-left: 1rem;
  }
}
@media (min-width: 1100px) {
  .header-inner {
    padding-right: 20px;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .header-inner {
    padding-right: 40px;
  }
}
@media (max-width: 575.98px) {
  .header-inner {
    padding-right: 1.875rem;
  }
}

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

.site-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.site-overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  display: none;
}
.site-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.site-header .site-logo a {
  display: block;
  position: relative;
}
@media (min-width: 1100px) {
  .site-header .site-logo a {
    width: 170px;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-header .site-logo a {
    width: 170px;
  }
}
@media (max-width: 575.98px) {
  .site-header .site-logo a {
    width: 32vw;
  }
}
.site-header .site-logo a img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.site-header .site-logo a img.logo-mark {
  width: auto;
  height: 59.15px;
  opacity: 0;
}
@media (min-width: 1100px) {
  .site-header.is-scrolled .site-logo a {
    width: 100px;
  }
  .site-header.is-scrolled .site-header__logo-image.logo-full {
    opacity: 0;
  }
  .site-header.is-scrolled .site-header__logo-image.logo-mark {
    opacity: 1;
  }
}
.site-header .site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1099.98px) {
  .site-header .site-header__nav {
    display: none;
  }
}
.site-header .btn-contact {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  font-weight: 700;
  line-height: 1;
  background-color: #191d25;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  padding: 0.8125rem 1.875rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.site-header .btn-contact:link, .site-header .btn-contact:visited, .site-header .btn-contact:hover, .site-header .btn-contact:active {
  color: #ffffff;
}
.site-header .btn-contact:hover {
  color: #ffffff;
}
.site-header .btn-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0d6ef3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}
.site-header .btn-contact:hover::before, .site-header .btn-contact.js-hover::before {
  transform: scaleX(1);
}
.site-header .global-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  transform: gap 0.3s ease;
}
.header-scrolled .site-header .global-nav ul {
  gap: 1.5rem;
}
.site-header .global-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.site-header .global-nav a:hover {
  opacity: 0.6;
}
@media (max-width: 575.98px) {
  .site-header .global-nav a.js_hover {
    opacity: 0.6;
  }
}
.site-header .nav-toggle {
  display: flex;
}
@media (min-width: 1100px) {
  .site-header .nav-toggle,
  .site-header .nav-toggle-body {
    display: none;
  }
}
.site-header .nav-toggle {
  flex-direction: column;
  justify-content: space-between;
  border: none;
  position: relative;
  width: 28px;
  height: 22px;
  border: none;
  cursor: pointer;
  z-index: 1000;
}
.site-header .nav-toggle-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header .nav-toggle-bar:nth-child(1) {
  top: 0;
}
.site-header .nav-toggle-bar:nth-child(2) {
  top: 9px;
}
.site-header .nav-toggle-bar:nth-child(3) {
  bottom: 0;
}
.site-header .nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.site-header .nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header .nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.site-header .header-inner {
  position: relative;
}
.site-header .site-logo {
  position: relative;
  z-index: 1;
}
.site-header .nav-toggle-body {
  position: absolute;
  left: 0;
  width: 100%;
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-header .nav-toggle-body {
    top: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .site-header .nav-toggle-body {
    top: 7.3333333333vw;
  }
}
.site-header .nav-toggle-body {
  max-height: 0;
  transition: max-height 0.4s ease;
}
.site-header .nav-toggle-body.is-active {
  max-height: 80vh;
}
.site-header .nav-toggle-body {
  overflow-y: auto;
  background-color: #fff;
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-header .nav-toggle-body {
    border-radius: 0 0 1.5rem 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .site-header .nav-toggle-body {
    border-radius: 0 0 4.4vw 4.4vw;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-header .nav-toggle-body-inner {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 4.5rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 575.98px) {
  .site-header .nav-toggle-body-inner {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
    padding-top: 12.3333333333vw;
    padding-bottom: 5vw;
  }
}
.site-header .nav-toggle-body-inner .menu {
  list-style: none;
  margin: 0;
}
@media (min-width: 576px) {
  .site-header .nav-toggle-body-inner .menu {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .site-header .nav-toggle-body-inner .menu {
    margin-bottom: 5.3333333333vw;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-header .nav-toggle-body-inner .menu {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575.98px) {
  .site-header .nav-toggle-body-inner .menu {
    padding: 0 2em;
  }
}
.site-header .nav-toggle-body-inner .menu .menu-item {
  border-bottom: 1px solid #eee;
}
.site-header .nav-toggle-body-inner .menu a {
  display: block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.25em;
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-header .nav-toggle-body-inner .menu a {
    padding: 1em 0;
  }
}
@media (max-width: 575.98px) {
  .site-header .nav-toggle-body-inner .menu a {
    padding: 1em 0;
  }
}
.site-header .nav-toggle-body-inner .header-contact {
  display: flex;
  justify-content: center;
}
.site-header .nav-toggle-body-inner .btn-contact {
  width: 100%;
  max-width: 400px;
}

.site-footer-main {
  background-color: #191d25;
  color: #ffffff;
}
.site-footer-main a {
  color: #ffffff;
}
.site-footer-main a:link, .site-footer-main a:visited, .site-footer-main a:hover, .site-footer-main a:active {
  color: #ffffff;
}
.site-footer-main a:hover {
  color: #ffffff;
}
@media (min-width: 1100px) {
  .site-footer-main {
    padding-top: 4.5rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer-main {
    padding-top: 2.25rem;
  }
}
@media (min-width: 1100px) {
  .site-footer-main {
    padding-bottom: 1.875rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer-main {
    padding-bottom: 1.5625rem;
  }
}
@media (min-width: 1100px) {
  .site-footer-main .site-footer-main-02__info {
    margin-top: 6.25rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer-main .site-footer-main-02__info {
    margin-top: 3.125rem;
  }
}
@media (min-width: 1100px) {
  .site-footer-main .site-footer-main-01 {
    padding-bottom: 2.375rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer-main .site-footer-main-01 {
    padding-bottom: 1.1875rem;
  }
}
@media (min-width: 1100px) {
  .site-footer-main .site-footer-main__address {
    margin-top: 1.5rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer-main .site-footer-main__address {
    margin-top: 0.75rem;
  }
}
@media (min-width: 1100px) {
  .site-footer-main .site-footer-main__sns-nav {
    margin-top: 1.5rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer-main .site-footer-main__sns-nav {
    margin-top: 1.125rem;
  }
}
@media (min-width: 1100px) {
  .site-footer-main .site-footer-main-02 {
    padding-bottom: 3.125rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer-main .site-footer-main-02 {
    padding-bottom: 1.5625rem;
  }
}
@media (min-width: 1100px) {
  .site-footer-main .site-footer-main__branding {
    margin-top: 0rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer-main .site-footer-main__branding {
    margin-top: 1rem;
  }
}
@media (min-width: 1100px) {
  .site-footer-main .site-footer-main__contact {
    margin-top: 0rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer-main .site-footer-main__contact {
    margin-top: 1rem;
  }
}
@media (min-width: 1100px) {
  .site-footer-main .site-footer-main-02__sub-nav {
    margin-top: 0rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer-main .site-footer-main-02__sub-nav {
    margin-top: 0.625rem;
  }
}
@media (min-width: 1100px) {
  .site-footer-main .site-footer-main__nav {
    padding-bottom: 0rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer-main .site-footer-main__nav {
    padding-bottom: 1.25rem;
  }
}
@media (min-width: 1100px) {
  .site-footer-main .site-footer-main-02__rights-text {
    margin-top: 0.5rem;
  }
}
@media (max-width: 1099.98px) {
  .site-footer-main .site-footer-main-02__rights-text {
    margin-top: 0.5rem;
  }
}
.site-footer-main .site-footer-main__logo {
  height: auto;
}
@media (min-width: 576px) {
  .site-footer-main .site-footer-main__logo {
    width: 8.75rem;
  }
}
@media (max-width: 575.98px) {
  .site-footer-main .site-footer-main__logo {
    width: 42.6666666667vw;
  }
}
.site-footer-main .site-footer-main__sns-nav .menu-item img {
  height: auto;
  transition: opacity 0.3s ease;
}
@media (min-width: 576px) {
  .site-footer-main .site-footer-main__sns-nav .menu-item img {
    width: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .site-footer-main .site-footer-main__sns-nav .menu-item img {
    width: 8vw;
  }
}
.site-footer-main .site-footer-main__sns-nav .menu-item img:hover {
  opacity: 0.8;
}
@media (max-width: 575.98px) {
  .site-footer-main .site-footer-main__sns-nav .menu-item img.js_hover {
    opacity: 0.8;
  }
}
.site-footer-main .site-footer-main-01__sub-nav .menu-item a {
  transition: opacity 0.3s ease;
}
@media (min-width: 576px) {
  .site-footer-main .site-footer-main-01__sub-nav .menu-item a {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .site-footer-main .site-footer-main-01__sub-nav .menu-item a {
    font-size: 3.2vw;
  }
}
.site-footer-main .site-footer-main-01__sub-nav .menu-item a:hover {
  opacity: 0.8;
}
@media (max-width: 575.98px) {
  .site-footer-main .site-footer-main-01__sub-nav .menu-item a.js_hover {
    opacity: 0.8;
  }
}
.site-footer-main .site-footer-main__address {
  line-height: 1.8333333333;
}
@media (min-width: 576px) {
  .site-footer-main .site-footer-main__address {
    font-size: 0.75rem;
  }
}
@media (max-width: 575.98px) {
  .site-footer-main .site-footer-main__address {
    font-size: 3.2vw;
  }
}
.site-footer-main .site-footer-main__address .site-footer-main__address-name {
  font-weight: bold;
}
@media (min-width: 576px) {
  .site-footer-main .site-footer-main__address .site-footer-main__address-name {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .site-footer-main .site-footer-main__address .site-footer-main__address-name {
    font-size: 4.2666666667vw;
  }
}
.site-footer-main .site-footer-main-02__copyright {
  font-weight: 700;
  color: #9f9f9f;
  letter-spacing: 0.06em;
}
@media (min-width: 576px) {
  .site-footer-main .site-footer-main-02__copyright {
    font-size: 1.125rem;
  }
}
@media (max-width: 575.98px) {
  .site-footer-main .site-footer-main-02__copyright {
    font-size: 4.2666666667vw;
  }
}
.site-footer-main .site-footer-main-02__rights-text {
  color: #9f9f9f;
}
@media (min-width: 576px) {
  .site-footer-main .site-footer-main-02__rights-text {
    font-size: 0.75rem;
  }
}
@media (max-width: 575.98px) {
  .site-footer-main .site-footer-main-02__rights-text {
    font-size: 2.6666666667vw;
  }
}
.site-footer-main .site-footer-main-02__sub-nav .menu-item a {
  color: #9f9f9f;
  letter-spacing: 0.06em;
  font-weight: 700;
  transition: opacity 0.3s ease;
}
@media (min-width: 576px) {
  .site-footer-main .site-footer-main-02__sub-nav .menu-item a {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .site-footer-main .site-footer-main-02__sub-nav .menu-item a {
    font-size: 3.2vw;
  }
}
.site-footer-main .site-footer-main-02__sub-nav .menu-item a:hover {
  opacity: 0.8;
}
@media (max-width: 575.98px) {
  .site-footer-main .site-footer-main-02__sub-nav .menu-item a.js_hover {
    opacity: 0.8;
  }
}
.site-footer-main .site-footer-main__contact .btn-contact {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  font-weight: 700;
  line-height: 1;
  background-color: #ffffff;
  color: #ffffff;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  color: #191d25;
  padding: 0.6875rem 1.375rem;
  transition: opacity 0.3s ease;
}
.site-footer-main .site-footer-main__contact .btn-contact:link, .site-footer-main .site-footer-main__contact .btn-contact:visited, .site-footer-main .site-footer-main__contact .btn-contact:hover, .site-footer-main .site-footer-main__contact .btn-contact:active {
  color: #191d25;
}
.site-footer-main .site-footer-main__contact .btn-contact:hover {
  color: #191d25;
}
.site-footer-main .site-footer-main__contact .btn-contact:hover {
  opacity: 0.8;
}
@media (max-width: 575.98px) {
  .site-footer-main .site-footer-main__contact .btn-contact.js_hover {
    opacity: 0.8;
  }
}
@media (min-width: 1100px) {
  .site-footer-main .site-footer-main-01__inner {
    display: flex;
    justify-content: space-between;
  }
  .site-footer-main .site-footer-main__sns-nav .menu {
    display: flex;
    gap: 1rem;
  }
  .site-footer-main .site-footer-main__nav {
    display: flex;
    align-items: center;
    height: max-content;
  }
  .site-footer-main .site-footer-main-01__sub-nav .menu {
    display: flex;
    justify-content: space-between;
    gap: 2em;
  }
  .site-footer-main .site-footer-main-02__sub-nav .menu {
    display: flex;
    justify-content: space-between;
    gap: 2em;
  }
  .site-footer-main .site-footer-main__contact {
    margin-left: 3.5rem;
  }
  .site-footer-main .site-footer-main-02__inner {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 1099.98px) {
  .site-footer-main .site-footer-main-01__inner {
    display: flex;
    flex-direction: column;
  }
  .site-footer-main .site-footer-main__branding {
    order: 2;
  }
  .site-footer-main .site-footer-main__nav {
    order: 1;
  }
  .site-footer-main .site-footer-main__nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .site-footer-main .site-footer-main-02__inner {
    display: flex;
    flex-direction: column;
  }
  .site-footer-main .site-footer-main-02__sub-nav {
    order: 1;
  }
  .site-footer-main .site-footer-main-02__info {
    order: 2;
  }
  .site-footer-main .site-footer-main-01__sub-nav .menu-item {
    display: inline-block;
    margin-bottom: 1.5em;
    margin-right: 1em;
  }
  .site-footer-main .site-footer-main-02__sub-nav .menu {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-footer-main .site-footer-main__nav {
    display: flex;
    justify-content: space-between;
  }
  .site-footer-main .site-footer-main__contact {
    margin-top: 0;
  }
}

.site-footer-banner-01 {
  background-color: #3a3a3a;
  color: #ffffff;
}
.site-footer-banner-01 a {
  color: #ffffff;
}
.site-footer-banner-01 a:link, .site-footer-banner-01 a:visited, .site-footer-banner-01 a:hover, .site-footer-banner-01 a:active {
  color: #ffffff;
}
.site-footer-banner-01 a:hover {
  color: #ffffff;
}
@media (min-width: 1100px) {
  .site-footer-banner-01 {
    padding: 2rem 0;
  }
  .site-footer-banner-01 .site-footer-banner-01_list {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  .site-footer-banner-01 .site-footer-banner-01_item {
    max-width: 10rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .site-footer-banner-01 {
    padding: 2rem 0;
  }
  .site-footer-banner-01 .site-footer-banner-01_list {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  .site-footer-banner-01 .site-footer-banner-01_item {
    max-width: 10rem;
  }
}
@media (max-width: 575.98px) {
  .site-footer-banner-01 {
    padding: 1.5rem 0;
  }
  .site-footer-banner-01 .site-footer-banner-01_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.2666666667vw;
  }
  .site-footer-banner-01 .site-footer-banner-01_item:last-child:nth-child(odd) {
    grid-column: span 2;
    justify-self: center;
    width: 50%;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: min(90vh, 900px);
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .hero {
    height: min(80vh, 600px);
  }
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  animation: fadein 1.5s ease forwards;
}

.hero-content {
  position: relative;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60, 10, 200, 0.45) 0%, rgba(0, 110, 255, 0.28) 55%, rgba(0, 210, 255, 0.08) 100%);
  z-index: 0;
}

@media screen and (min-width: 1300px) {
  .hero {
    margin-top: 40px;
  }
  .hero-video-wrapper,
  .hero::after {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 24px;
  }
}
@media screen and (max-width: 1300px) {
  .hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* ← ここが三角の高さ */
    background: var(--c-bg);
    z-index: 1;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
  }
}
@media screen and (max-width: 1300px) and (min-width: 1100px) {
  .hero::before {
    height: 60px;
  }
}
@media screen and (max-width: 1300px) and (min-width: 576px) and (max-width: 1099.98px) {
  .hero::before {
    height: 60px;
  }
}
@media screen and (max-width: 1300px) and (max-width: 575.98px) {
  .hero::before {
    height: 8vw;
  }
}
.hero-content {
  height: 100%;
}

.hero-title {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.hero-title-01,
.hero-title-02 {
  display: block;
  width: max-content;
  position: relative;
  overflow: hidden;
}
@media (min-width: 576px) {
  .hero-title-01,
  .hero-title-02 {
    border-radius: 1rem;
  }
}
@media (max-width: 575.98px) {
  .hero-title-01,
  .hero-title-02 {
    border-radius: 1.6vw;
  }
}
.hero-title-01 .-inner,
.hero-title-02 .-inner {
  display: inline-block;
  line-height: 1;
  color: #ffffff;
  padding: 0.08em 0.2em 0.2em 0;
  text-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1100px) {
  .hero-title-01 .-inner,
  .hero-title-02 .-inner {
    font-size: clamp(100px, 8vw, 132px);
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .hero-title-01 .-inner,
  .hero-title-02 .-inner {
    font-size: 12vw;
  }
}
@media (max-width: 575.98px) {
  .hero-title-01 .-inner,
  .hero-title-02 .-inner {
    font-size: 12.6666666667vw;
  }
}
.hero-title-01::before,
.hero-title-02::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0d6ef3;
  z-index: 2;
}

.hero-title-01 {
  margin-bottom: 0.4em;
}

.hero-description {
  display: inline-block;
  margin-top: 0.8em;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media (max-width: 575.98px) {
  .hero-description {
    font-size: 3.7333333333vw;
  }
}

.hero-title-01,
.hero-title-02 {
  opacity: 0;
  transition: opacity 0s ease 0.6s;
}
.hero-title-01 .-inner,
.hero-title-02 .-inner {
  opacity: 0;
  transition: opacity 0.1s ease 1.1s;
}

.hero-description {
  opacity: 0;
  transition: opacity 0.8s ease 2s;
}

.hero-title.active .hero-title-01,
.hero-title.active .hero-title-02 {
  opacity: 1;
}
.hero-title.active .hero-title-01 .-inner,
.hero-title.active .hero-title-02 .-inner {
  opacity: 1;
}
.hero-title.active .hero-title-01::before,
.hero-title.active .hero-title-02::before {
  animation: reveal-slide 1.3s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation-delay: 0.6s;
}
.hero-title.active .hero-description {
  opacity: 1;
}

@keyframes reveal-slide {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: scroll-indicator-fadein 1s ease 2s forwards;
}
@media (min-width: 1100px) {
  .hero-scroll-indicator {
    right: 60px;
    bottom: 40px;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1300px) {
  .hero-scroll-indicator {
    right: 24px;
    bottom: 80px;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .hero-scroll-indicator {
    right: 24px;
    bottom: 80px;
  }
}
@media (max-width: 575.98px) {
  .hero-scroll-indicator {
    bottom: 10.6666666667vw;
    right: 4.2666666667vw;
  }
}

.scroll-indicator__text {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media (max-width: 575.98px) {
  .scroll-indicator__text {
    font-size: 3.4666666667vw;
  }
}

.scroll-indicator__bar {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .scroll-indicator__bar {
    height: 8vw;
  }
}

.scroll-indicator__bar-inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #ffffff;
  animation: scroll-bar-slide 1.8s cubic-bezier(0.76, 0, 0.3, 1) 2.5s infinite;
}

@keyframes scroll-indicator-fadein {
  to {
    opacity: 1;
  }
}
@keyframes scroll-bar-slide {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateY(200%);
    opacity: 0;
  }
}
.news-section {
  /* 親に position: relative を付ける */
  /* タブコンテンツをすべて重ねる */
  /* 表示状態 */
}
@media (min-width: 576px) {
  .news-section {
    padding-top: 2.9375rem;
  }
}
@media (max-width: 575.98px) {
  .news-section {
    padding-top: 6.2666666667vw;
  }
}
@media (min-width: 576px) {
  .news-section {
    padding-bottom: 5.25rem;
  }
}
@media (max-width: 575.98px) {
  .news-section {
    padding-bottom: 0vw;
  }
}
@media (min-width: 1100px) {
  .news-section .news-section__content {
    margin-top: 3.75rem;
  }
}
@media (max-width: 1099.98px) {
  .news-section .news-section__content {
    margin-top: 1.25rem;
  }
}
@media (min-width: 1100px) {
  .news-section .news-section__list-wrapper {
    margin-top: 0rem;
  }
}
@media (max-width: 1099.98px) {
  .news-section .news-section__list-wrapper {
    margin-top: 1.25rem;
  }
}
@media (min-width: 576px) {
  .news-section .news-section__actions {
    margin-top: 3.75rem;
  }
}
@media (max-width: 575.98px) {
  .news-section .news-section__actions {
    margin-top: 1.875rem;
  }
}
@media (min-width: 1100px) {
  .news-section .news-section__content__inner {
    display: flex;
  }
  .news-section .news-section__list-wrapper {
    flex: 1 0 0;
  }
  .news-section .news-section__nav {
    padding-right: 7.5rem;
  }
  .news-section .news-section__actions {
    display: flex;
    justify-content: flex-end;
  }
}
@media (max-width: 1099.98px) {
  .news-section .news-section__content__inner {
    display: flex;
    flex-direction: column;
  }
  .news-section .news-section__actions {
    display: flex;
    justify-content: flex-start;
  }
}
.news-section .news-section__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 575.98px) {
  .news-section .news-section__nav {
    flex-direction: row;
    gap: 2.1333333333vw;
  }
}
.news-section .news-section__list-wrapper {
  position: relative;
}
.news-section .news-tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}
.news-section .news-tab-content.is-active {
  opacity: 1;
  visibility: visible;
  position: relative; /* 高さ反映したい場合はここを relative に */
}
.news-section .news-section__nav-item {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  font-weight: 700;
  line-height: 1;
  width: 13.125rem;
  height: 2.5rem;
  justify-content: flex-start;
  padding-left: 1.25rem;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: #ffffff;
  color: #191d25;
}
.news-section .news-section__nav-item:link, .news-section .news-section__nav-item:visited, .news-section .news-section__nav-item:hover, .news-section .news-section__nav-item:active {
  color: #191d25;
}
.news-section .news-section__nav-item:hover {
  color: #191d25;
}
.news-section .news-section__nav-item.is-active {
  background-color: #0d6ef3;
  cursor: default;
  color: #ffffff;
}
.news-section .news-section__nav-item.is-active:link, .news-section .news-section__nav-item.is-active:visited, .news-section .news-section__nav-item.is-active:hover, .news-section .news-section__nav-item.is-active:active {
  color: #ffffff;
}
.news-section .news-section__nav-item.is-active:hover {
  color: #ffffff;
}
.news-section .news-section__nav-item.is-active:hover {
  opacity: 1;
}
.news-entry__title {
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (min-width: 576px) {
  .news-entry__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .news-entry__title {
    font-size: 4.2666666667vw;
  }
}

.news-entry__date {
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (min-width: 576px) {
  .news-entry__date {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .news-entry__date {
    font-size: 2.9333333333vw;
  }
}

.news-entry__tag {
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (min-width: 576px) {
  .news-entry__tag {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .news-entry__tag {
    font-size: 1rem;
  }
}

.news-entry__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aabbcc;
  border: 2px solid #aabbcc;
  border-radius: 1000px;
}
@media (min-width: 1100px) {
  .news-entry__tag {
    padding: 0rem 1.375rem 0rem;
  }
}
@media (max-width: 1099.98px) {
  .news-entry__tag {
    padding: 0rem 0.6875rem 0rem;
  }
}
@media (min-width: 1100px) {
  .news-entry__tag {
    height: 1.75rem;
  }
}
@media (max-width: 1099.98px) {
  .news-entry__tag {
    height: 1.375rem;
  }
}

@media (min-width: 1100px) {
  .news-entry {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #e3e3e9;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    gap: 1rem;
  }
  .news-entry .news-entry__title {
    flex: 1 0 auto;
    white-space: normal;
    word-break: break-all;
  }
  .entry-wrapper:last-child .news-entry {
    border-bottom: 1px solid #e3e3e9;
  }
  .news-entry .news-entry__title {
    width: calc(100% - 9.375rem - 1rem);
    overflow-wrap: break-word;
  }
  .news-entry .news-entry__info {
    width: 9.375rem;
  }
  .news-entry .news-entry__tag {
    margin-top: 0.625rem;
  }
}
@media (max-width: 1099.98px) {
  .news-entry {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #e3e3e9;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .news-entry .news-entry__title {
    flex: 1 0 auto;
    white-space: normal;
    word-break: break-all;
  }
  .entry-wrapper:last-child .news-entry {
    border-bottom: 1px solid #e3e3e9;
  }
  .news-entry .news-entry__info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
  }
}

.about-section {
  position: relative;
  overflow: hidden;
}
.about-section .about-section__bg {
  position: absolute;
  width: 100%;
  height: 90%;
  right: -20px;
  bottom: 0;
}
@media (max-width: 575.98px) {
  .about-section .about-section__bg {
    width: 83vw;
    height: 87vw;
    right: 0;
    top: 84.2666666667vw;
  }
}
.about-section .about-section__bg {
  background-image: url(images/pages/top/bg-about-section-01.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .about-section .about-section__bg {
    background-size: min(80%, 600px) auto;
  }
}
@media (max-width: 575.98px) {
  .about-section .about-section__bg {
    background-size: 100% auto;
  }
}
.about-section .about-section__inner {
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .about-section {
    padding-top: 7.5rem;
  }
}
@media (max-width: 575.98px) {
  .about-section {
    padding-top: 4.0625rem;
  }
}
@media (min-width: 576px) {
  .about-section {
    padding-bottom: 11.25rem;
  }
}
@media (max-width: 575.98px) {
  .about-section {
    padding-bottom: 5rem;
  }
}
.about-section .about-section__lead {
  margin-top: 3.375rem;
}
@media (min-width: 576px) {
  .about-section .about-section__lead {
    margin-top: 3.375rem;
  }
}
@media (max-width: 575.98px) {
  .about-section .about-section__lead {
    margin-top: 1.9375rem;
  }
}
.about-section .about-section__desc {
  margin-top: 2rem;
}
@media (min-width: 576px) {
  .about-section .about-section__desc {
    margin-top: 2rem;
  }
}
@media (max-width: 575.98px) {
  .about-section .about-section__desc {
    margin-top: 1.5625rem;
  }
}
@media (min-width: 576px) {
  .about-section .about-section__actions {
    margin-top: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .about-section .about-section__actions {
    margin-top: 52.5333333333vw;
  }
}
.about-section .about-section__lead {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (min-width: 576px) {
  .about-section .about-section__lead {
    font-size: 3.125rem;
  }
}
@media (max-width: 575.98px) {
  .about-section .about-section__lead {
    font-size: 8.5333333333vw;
  }
}
.about-section .about-section__desc {
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media (min-width: 576px) {
  .about-section .about-section__desc {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .about-section .about-section__desc {
    font-size: 4.2666666667vw;
  }
}
.about-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 55%;
  background-color: #ffffff;
  transform: skewY(-8deg);
  transform-origin: top right;
}
@media (max-width: 575.98px) {
  .about-section::before {
    top: 21.3333333333vw;
  }
}

.service-section {
  position: relative;
  z-index: 2;
}
@media (min-width: 576px) {
  .service-section {
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 575.98px) {
  .service-section {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 576px) {
  .service-section {
    margin-top: -1.25rem;
  }
}
@media (max-width: 575.98px) {
  .service-section {
    margin-top: 0rem;
  }
}
@media (min-width: 576px) {
  .service-section .service-section__lead {
    margin-top: 3.375rem;
  }
}
@media (max-width: 575.98px) {
  .service-section .service-section__lead {
    margin-top: 1.9375rem;
  }
}
@media (min-width: 576px) {
  .service-section .service-section__desc {
    margin-top: 2rem;
  }
}
@media (max-width: 575.98px) {
  .service-section .service-section__desc {
    margin-top: 1.5625rem;
  }
}
@media (min-width: 576px) {
  .service-section .service-section__actions {
    margin-top: 3.75rem;
  }
}
@media (max-width: 575.98px) {
  .service-section .service-section__actions {
    margin-top: 1.875rem;
  }
}
@media (min-width: 576px) {
  .service-section .service-section-list {
    margin-top: 4.5rem;
  }
}
@media (max-width: 575.98px) {
  .service-section .service-section-list {
    margin-top: 1.875rem;
  }
}
.service-section .service-section__lead {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (min-width: 576px) {
  .service-section .service-section__lead {
    font-size: 3.125rem;
  }
}
@media (max-width: 575.98px) {
  .service-section .service-section__lead {
    font-size: 8.5333333333vw;
  }
}
.service-section .service-section__desc {
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media (min-width: 576px) {
  .service-section .service-section__desc {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .service-section .service-section__desc {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 575.98px) {
  .service-section .service-section__inner {
    padding-left: 0;
  }
}
.service-section .service-section__panel {
  background-color: #ffffff;
  border-radius: 2.5rem;
  padding: 3.75rem 3.75rem 3.125rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
@media (max-width: 575.98px) {
  .service-section .service-section__panel {
    border-radius: 0 1.875rem 1.875rem 0;
    padding: 1.875rem 0 1.875rem 4.2666666667vw;
  }
  .service-section .service-section__panel .service-section__lead,
  .service-section .service-section__panel .service-section__desc,
  .service-section .service-section__panel .service-section__actions {
    padding-right: 4.2666666667vw;
  }
}
.service-section .service-section__actions {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 575.98px) {
  .service-section .service-section__actions {
    justify-content: flex-start;
  }
}
.service-section .service-section-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-section-list__item {
  color: #ffffff;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  position: relative;
}
.service-section-list__item:link, .service-section-list__item:visited, .service-section-list__item:hover, .service-section-list__item:active {
  color: #ffffff;
}
.service-section-list__item:hover {
  color: #ffffff;
}
.service-section-list__item .service-section-list__item-title-en {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media (min-width: 576px) {
  .service-section-list__item .service-section-list__item-title-en {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .service-section-list__item .service-section-list__item-title-en {
    font-size: 7.2vw;
  }
}
@media (max-width: 1099.98px) {
  .service-section-list__item .service-section-list__item-title-en {
    line-height: 1.2;
  }
}
.service-section-list__item .service-section-list__item-title-jp {
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .service-section-list__item .service-section-list__item-title-jp {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .service-section-list__item .service-section-list__item-title-jp {
    font-size: 4.2666666667vw;
  }
}
.service-section-list__item .service-section-list__item-desc {
  font-weight: 700;
  line-height: 1.7142857143;
}
@media (min-width: 576px) {
  .service-section-list__item .service-section-list__item-desc {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .service-section-list__item .service-section-list__item-desc {
    font-size: 3.2vw;
  }
}
.service-section-list__item .service-section-list__item-icon {
  background-image: url(images/icon/icon-arrow-circle-large-white.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (min-width: 1100px) {
  .service-section-list__item {
    display: flex;
    align-items: center;
    border-radius: 1.25rem;
    height: 10.625rem;
    padding-left: 3.125rem;
  }
  .service-section-list__item .service-section-list__item-title {
    width: 37.5rem;
    display: flex;
    flex-direction: column;
  }
  .service-section-list__item .service-section-list__item-desc {
    padding-right: 7.75rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .service-section-list__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 1.25rem;
    height: 15.625rem;
    padding-left: 2.5rem;
  }
  .service-section-list__item .service-section-list__item-title {
    display: flex;
    flex-direction: column;
    padding-right: 7rem;
  }
  .service-section-list__item .service-section-list__item-desc {
    padding-top: 0.75rem;
    padding-right: 7rem;
  }
}
@media (max-width: 575.98px) {
  .service-section-list__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 5.3333333333vw 0 0 5.3333333333vw;
    height: 45.3333333333vw;
    padding-left: 5.3333333333vw;
  }
  .service-section-list__item .service-section-list__item-title {
    width: 28.125rem;
    display: flex;
    flex-direction: column;
    gap: 1.0666666667vw;
    padding-right: 7rem;
  }
  .service-section-list__item .service-section-list__item-desc {
    padding-top: 1.6vw;
    padding-right: 14.9333333333vw;
  }
}
.service-section-list__item .service-section-list__item-title,
.service-section-list__item .service-section-list__item-desc,
.service-section-list__item .service-section-list__item-icon {
  position: relative;
  z-index: 1;
}
.service-section-list__item.service-section-list__item-general::before {
  background-image: url(images/pages/top/bg-service-link-general.jpg);
}
.service-section-list__item.service-section-list__item-inhouse::before {
  background-image: url(images/pages/top/bg-service-link-inhouse.jpg);
}
.service-section-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1) translateX(0);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: brightness(0.92) saturate(85%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-section-list__item:hover::before {
  transform: translate(-50%, -50%) scale(1.04) translateX(-1%);
  filter: brightness(1.05) saturate(120%);
}
.service-section-list__item .service-section-list__item-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 576px) {
  .service-section-list__item .service-section-list__item-icon {
    right: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .service-section-list__item .service-section-list__item-icon {
    right: 4.2666666667vw;
  }
}
@media (min-width: 576px) {
  .service-section-list__item .service-section-list__item-icon {
    width: 4rem;
  }
}
@media (max-width: 575.98px) {
  .service-section-list__item .service-section-list__item-icon {
    width: 8.5333333333vw;
  }
}
@media (min-width: 576px) {
  .service-section-list__item .service-section-list__item-icon {
    height: 4rem;
  }
}
@media (max-width: 575.98px) {
  .service-section-list__item .service-section-list__item-icon {
    height: 8.5333333333vw;
  }
}

.business-section {
  padding-top: 6.25rem;
  padding-bottom: 5rem;
}

@media (min-width: 576px) {
  .business-section__content {
    margin-top: 3.375rem;
  }
}
@media (max-width: 575.98px) {
  .business-section__content {
    margin-top: 1.9375rem;
  }
}

.business-section__image-wrapper {
  margin-top: 3rem;
}
@media (min-width: 576px) {
  .business-section__image-wrapper {
    margin-top: 3rem;
  }
}
@media (max-width: 575.98px) {
  .business-section__image-wrapper {
    margin-top: 2rem;
  }
}

.business-section__list {
  margin-top: 5rem;
}
@media (min-width: 576px) {
  .business-section__list {
    margin-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  .business-section__list {
    margin-top: 2.5rem;
  }
}

.business-section__list__items {
  margin-top: 2.5rem;
}
@media (min-width: 576px) {
  .business-section__list__items {
    margin-top: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .business-section__list__items {
    margin-top: 1.875rem;
  }
}

@media (min-width: 576px) {
  .business-section__actions {
    margin-top: 3.375rem;
  }
}
@media (max-width: 575.98px) {
  .business-section__actions {
    margin-top: 1.875rem;
  }
}

.business-list {
  margin-top: 2.5rem;
}
@media (min-width: 576px) {
  .business-list {
    margin-top: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .business-list {
    margin-top: 2rem;
  }
}

.business-section__lead {
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (min-width: 576px) {
  .business-section__lead {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  .business-section__lead {
    font-size: 6.4vw;
  }
}

.business-section__list__title-jp {
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media (min-width: 576px) {
  .business-section__list__title-jp {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  .business-section__list__title-jp {
    font-size: 6.4vw;
  }
}

.business-section__list__title-en {
  color: #0d6ef3;
  line-height: 1.5;
  font-weight: 700;
}
@media (min-width: 576px) {
  .business-section__list__title-en {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .business-section__list__title-en {
    font-size: 3.2vw;
  }
}

.business-section__list__title {
  display: flex;
  align-items: center;
}
@media (min-width: 576px) {
  .business-section__list__title {
    gap: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .business-section__list__title {
    gap: 4.2666666667vw;
  }
}

.business-section__actions {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1099.98px) {
  .business-section__actions {
    justify-content: flex-start;
  }
}

.business-section__image-wrapper figure {
  overflow: hidden;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 20px rgba(7, 84, 217, 0.15));
}
@media (max-width: 575.98px) {
  .business-section__image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .business-section__image-wrapper figure {
    border-radius: 0;
    filter: none;
  }
}

.business-section {
  position: relative;
}
.business-section .business-section__inner {
  position: relative;
  z-index: 1;
}
.business-section::before {
  content: "";
  position: absolute;
  top: 380px;
  left: 0;
  width: 100%;
  height: 382px;
  background-color: #3a88ff;
  transform: skewY(8deg);
  transform-origin: top left;
}
@media (min-width: 1100px) and (max-width: 1199.98px) {
  .business-section::before {
    top: 400px;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .business-section::before {
    top: 460px;
    height: 30vw;
  }
}
@media (max-width: 575.98px) {
  .business-section::before {
    top: 23.125rem;
    height: 30vw;
  }
}

@media (min-width: 1100px) {
  .business-list {
    display: flex;
    gap: 2.25rem 6%;
    flex-wrap: wrap;
  }
  .business-list > * {
    width: calc(33.3333333333% - 12% / 3);
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .business-list {
    display: flex;
    gap: 2.25rem 4%;
    flex-wrap: wrap;
  }
  .business-list > * {
    width: calc(50% - 4% / 2);
  }
}
@media (max-width: 575.98px) {
  .business-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}

@media (min-width: 576px) {
  .business-item .business-item__image {
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 575.98px) {
  .business-item .business-item__image {
    margin-bottom: 1rem;
  }
}
@media (min-width: 576px) {
  .business-item .business-item__title {
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 575.98px) {
  .business-item .business-item__title {
    margin-bottom: 0.75rem;
  }
}
.business-item .business-item__image {
  aspect-ratio: 360/240;
  overflow: hidden;
  border: 2px solid #f1f1f1;
  position: relative;
}
@media (min-width: 576px) {
  .business-item .business-item__image {
    border-radius: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .business-item .business-item__image {
    border-radius: 5.3333333333vw;
  }
}
.business-item .business-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.business-item .business-item__image::after {
  content: "";
  position: absolute;
  background-image: url(images/icon/icon-arrow-circle-white-01.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.1));
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media (min-width: 576px) {
  .business-item .business-item__image::after {
    width: 2rem;
  }
}
@media (max-width: 575.98px) {
  .business-item .business-item__image::after {
    width: 8vw;
  }
}
@media (min-width: 576px) {
  .business-item .business-item__image::after {
    height: 2rem;
  }
}
@media (max-width: 575.98px) {
  .business-item .business-item__image::after {
    height: 8vw;
  }
}
@media (min-width: 576px) {
  .business-item .business-item__image::after {
    right: 1rem;
  }
}
@media (max-width: 575.98px) {
  .business-item .business-item__image::after {
    right: 2.6666666667vw;
  }
}
@media (min-width: 576px) {
  .business-item .business-item__image::after {
    bottom: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .business-item .business-item__image::after {
    bottom: 2.6666666667vw;
  }
}
.business-item:hover .business-item__image img {
  transform: scale(1.08);
}
.business-item:hover .business-item__image::after {
  opacity: 0.7;
}
.business-item .business-item__title {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (min-width: 576px) {
  .business-item .business-item__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .business-item .business-item__title {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 575.98px) {
  .business-item .business-item__title {
    font-weight: 600;
  }
}
.business-item .business-item__desc {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .business-item .business-item__desc {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .business-item .business-item__desc {
    font-size: 3.2vw;
  }
}

.works-entry {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  color: #191d25;
  color: #191d25;
}
.works-entry:link, .works-entry:visited, .works-entry:hover, .works-entry:active {
  color: #191d25;
}
.works-entry:hover {
  color: #191d25;
}
@media (min-width: 576px) {
  .works-entry {
    border-radius: 1rem;
  }
}
@media (max-width: 575.98px) {
  .works-entry {
    border-radius: 5.3333333333vw;
  }
}
.works-entry .works-entry__upper {
  flex-grow: 1;
}
@media (min-width: 576px) {
  .works-entry {
    padding-top: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .works-entry {
    padding-top: 4.2666666667vw;
  }
}
@media (min-width: 576px) {
  .works-entry {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .works-entry {
    padding-bottom: 4.2666666667vw;
  }
}
.works-entry .works-entry__actions {
  margin-top: 1.25rem;
}
@media (min-width: 576px) {
  .works-entry .works-entry__actions {
    margin-top: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .works-entry .works-entry__actions {
    margin-top: 1rem;
  }
}
.works-entry .works-entry__tags {
  margin-top: 0.75rem;
}
@media (min-width: 576px) {
  .works-entry .works-entry__tags {
    margin-top: 0.75rem;
  }
}
@media (max-width: 575.98px) {
  .works-entry .works-entry__tags {
    margin-top: 0.75rem;
  }
}
@media (min-width: 576px) {
  .works-entry .works-entry__title {
    padding-bottom: 0.75rem;
  }
}
@media (max-width: 575.98px) {
  .works-entry .works-entry__title {
    padding-bottom: 0.75rem;
  }
}
.works-entry .works-entry__category {
  font-weight: 600;
}
@media (min-width: 576px) {
  .works-entry .works-entry__category {
    font-size: 0.75rem;
  }
}
@media (max-width: 575.98px) {
  .works-entry .works-entry__category {
    font-size: 3.2vw;
  }
}
.works-entry .works-entry__title {
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (min-width: 576px) {
  .works-entry .works-entry__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .works-entry .works-entry__title {
    font-size: 5.3333333333vw;
  }
}
.works-entry .works-entry__tags {
  color: #32c666;
  font-weight: 600;
}
@media (min-width: 576px) {
  .works-entry .works-entry__tags {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .works-entry .works-entry__tags {
    font-size: 3.7333333333vw;
  }
}
@media (min-width: 1100px) {
  .works-entry .works-entry__category-wrapper,
  .works-entry .works-entry__tags,
  .works-entry .works-entry__actions {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .works-entry .works-entry__category-wrapper,
  .works-entry .works-entry__tags,
  .works-entry .works-entry__actions {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .works-entry .works-entry__category-wrapper,
  .works-entry .works-entry__tags,
  .works-entry .works-entry__actions {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}
@media (min-width: 1100px) {
  .works-entry .works-entry__title {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  .works-entry .works-entry__title {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .works-entry .works-entry__title {
    margin-left: 4.2666666667vw;
    margin-right: 4.2666666667vw;
  }
}
.works-entry .works-entry__image-wrapper {
  overflow: hidden;
  aspect-ratio: 1/0.8;
}
@media (max-width: 575.98px) {
  .works-entry .works-entry__image-wrapper {
    aspect-ratio: 1/0.6;
  }
}
.works-entry .works-entry__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.works-entry .works-entry__category {
  display: inline-block;
  border: solid 2px #0d6ef3;
  color: #0d6ef3;
  border-radius: 1000px;
  padding: 0.4375rem 0.9375rem;
}
.works-entry .works-entry__title {
  border-bottom: solid 1px #dedede;
}

.works-section {
  background: #3a88ff;
  color: #ffffff;
}
@media (min-width: 576px) {
  .works-section {
    padding-top: 6.25rem;
  }
}
@media (max-width: 575.98px) {
  .works-section {
    padding-top: 3.125rem;
  }
}
@media (min-width: 576px) {
  .works-section {
    padding-bottom: 5rem;
  }
}
@media (max-width: 575.98px) {
  .works-section {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1100px) {
  .works-section .works-section__desc {
    margin-top: 0;
  }
}
@media (max-width: 1099.98px) {
  .works-section .works-section__desc {
    margin-top: 1.9375rem;
  }
}
@media (min-width: 576px) {
  .works-section .works-section__content {
    margin-top: 3.125rem;
  }
}
@media (max-width: 575.98px) {
  .works-section .works-section__content {
    margin-top: 2.5rem;
  }
}
@media (min-width: 576px) {
  .works-section .works-section__actions {
    margin-top: 3.5rem;
  }
}
@media (max-width: 575.98px) {
  .works-section .works-section__actions {
    margin-top: 1.875rem;
  }
}
.works-section .works-section__desc {
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media (min-width: 576px) {
  .works-section .works-section__desc {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .works-section .works-section__desc {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 1100px) {
  .works-section .works-section__header {
    display: flex;
    flex-wrap: wrap;
  }
  .works-section .works-section__title {
    width: 400px;
  }
  .works-section .works-section__desc {
    width: calc(100% - 400px);
    padding-top: 1.25rem;
  }
}
@media (min-width: 1100px) {
  .works-section .entry-list {
    display: flex;
    gap: 4rem;
  }
  .works-section .entry-list > * {
    flex: 1 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1099.98px) {
  .works-section .entry-list {
    display: flex;
    gap: 2rem;
  }
  .works-section .entry-list > * {
    flex: 1 0 0;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .works-section .entry-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 575.98px) {
  .works-section .entry-list {
    display: flex;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}
.works-section .works-section__actions {
  display: flex;
  justify-content: flex-start;
}

.recruit-section {
  background-color: #191d25;
  background-image: url(img/pagetitle/bg_pagetitle_recruit_2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  color: #ffffff;
}
.recruit-section:after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
  transition: all ease 0.4s;
}
.recruit-section .recruit-section__inner {
  position: relative;
  z-index: 1;
}
.recruit-section a {
  color: #ffffff;
}
.recruit-section a:link, .recruit-section a:visited, .recruit-section a:hover, .recruit-section a:active {
  color: #ffffff;
}
.recruit-section a:hover {
  color: #ffffff;
}
@media (min-width: 576px) {
  .recruit-section {
    padding-top: 6.875rem;
  }
}
@media (max-width: 575.98px) {
  .recruit-section {
    padding-top: 3.125rem;
  }
}
@media (min-width: 576px) {
  .recruit-section {
    padding-bottom: 6.875rem;
  }
}
@media (max-width: 575.98px) {
  .recruit-section {
    padding-bottom: 3.75rem;
  }
}
@media (min-width: 576px) {
  .recruit-section .recruit-section__lead {
    margin-top: 3.375rem;
  }
}
@media (max-width: 575.98px) {
  .recruit-section .recruit-section__lead {
    margin-top: 1.9375rem;
  }
}
@media (min-width: 576px) {
  .recruit-section .recruit-section__desc {
    margin-top: 2rem;
  }
}
@media (max-width: 575.98px) {
  .recruit-section .recruit-section__desc {
    margin-top: 1.5625rem;
  }
}
@media (min-width: 1100px) {
  .recruit-section .recruit-section__footer {
    margin-top: 0rem;
  }
}
@media (max-width: 1099.98px) {
  .recruit-section .recruit-section__footer {
    margin-top: 2.5rem;
  }
}
.recruit-section .recruit-section__lead {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 576px) {
  .recruit-section .recruit-section__lead {
    font-size: 2.25rem;
  }
}
@media (max-width: 575.98px) {
  .recruit-section .recruit-section__lead {
    font-size: 6.4vw;
  }
}
.recruit-section .recruit-section__desc {
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media (min-width: 576px) {
  .recruit-section .recruit-section__desc {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .recruit-section .recruit-section__desc {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 1100px) {
  .recruit-section {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .recruit-section .recruit-section__inner {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .recruit-section .recruit-section__title {
    display: flex;
    align-items: center;
  }
  .recruit-section .recruit-section__title .recruit-section__title-sub {
    margin-left: 2.25rem;
  }
  .recruit-section .recruit-section__footer {
    padding-left: 6.25rem;
  }
}
body.business .business-page__header {
  text-align: center;
}
body.business .business-page__lead {
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (min-width: 576px) {
  body.business .business-page__lead {
    font-size: 3.125rem;
  }
}
@media (max-width: 575.98px) {
  body.business .business-page__lead {
    font-size: 6.4vw;
  }
}
body.business .business-page__desc {
  margin-top: 1rem;
  line-height: 1.75;
}
@media (min-width: 1100px) {
  body.business .business-page__desc {
    font-size: 1rem;
  }
}
@media (max-width: 1099.98px) {
  body.business .business-page__desc {
    font-size: 3.3vw;
  }
}
@media (min-width: 576px) {
  body.business .business-section__image-wrapper figure {
    overflow: hidden;
    border-radius: 20px;
    filter: drop-shadow(0px 0px 20px rgba(7, 84, 217, 0.15));
  }
}
@media (max-width: 575.98px) {
  body.business .business-section__image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  body.business .business-section__image-wrapper figure {
    border-radius: 0;
    filter: none;
  }
}

@media (min-width: 576px) {
  body.single-business .page {
    padding-bottom: 7.5rem;
  }
}
@media (max-width: 575.98px) {
  body.single-business .page {
    padding-bottom: 5rem;
  }
}
@media (min-width: 576px) {
  body.single-business .business-single__title {
    padding-top: 4rem;
  }
}
@media (max-width: 575.98px) {
  body.single-business .business-single__title {
    padding-top: 2.25rem;
  }
}
@media (min-width: 576px) {
  body.single-business .business-single__desc {
    margin-top: 2rem;
  }
}
@media (max-width: 575.98px) {
  body.single-business .business-single__desc {
    margin-top: 1.5rem;
  }
}
@media (min-width: 576px) {
  body.single-business .business-single__main-image {
    margin-top: 2rem;
  }
}
@media (max-width: 575.98px) {
  body.single-business .business-single__main-image {
    margin-top: 2rem;
  }
}
@media (min-width: 576px) {
  body.single-business .business-single__action {
    margin-top: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  body.single-business .business-single__action {
    margin-top: 2rem;
  }
}
@media (min-width: 576px) {
  body.single-business .business-single__info-wrapper {
    margin-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  body.single-business .business-single__info-wrapper {
    margin-top: 3rem;
  }
}
@media (min-width: 576px) {
  body.single-business .business-single__action-back {
    margin-top: 7.5rem;
  }
}
@media (max-width: 575.98px) {
  body.single-business .business-single__action-back {
    margin-top: 3.75rem;
  }
}
body.single-business .business-single__title {
  font-weight: 600;
  line-height: 1.3;
}
@media (min-width: 576px) {
  body.single-business .business-single__title {
    font-size: 3rem;
  }
}
@media (max-width: 575.98px) {
  body.single-business .business-single__title {
    font-size: 6.4vw;
  }
}
body.single-business .business-single__desc {
  line-height: 1.8;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media (min-width: 576px) {
  body.single-business .business-single__desc {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  body.single-business .business-single__desc {
    font-size: 4.2666666667vw;
  }
}
body.single-business .business-single__info-list dt,
body.single-business .business-single__info-list dd {
  line-height: 1.7;
}
@media (min-width: 576px) {
  body.single-business .business-single__info-list dt,
  body.single-business .business-single__info-list dd {
    font-size: 1.125rem;
  }
}
@media (max-width: 575.98px) {
  body.single-business .business-single__info-list dt,
  body.single-business .business-single__info-list dd {
    font-size: 3.7333333333vw;
  }
}
body.single-business .business-single__info-list dt {
  font-weight: 600;
}
body.single-business .business-single__main-image {
  aspect-ratio: 16/6;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}
body.single-business .business-single__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  body.single-business .business-single__main-image {
    aspect-ratio: 16/9;
  }
}
body.single-business .business-single__action,
body.single-business .business-single__action-back {
  display: flex;
  justify-content: center;
}
body.single-business .business-single__info-wrapper {
  display: flex;
  gap: 32px;
}
body.single-business .business-single__info-wrapper > * {
  flex: 1 1 0;
}
@media (max-width: 767.98px) {
  body.single-business .business-single__info-wrapper {
    flex-direction: column;
  }
}
body.single-business .business-single__map-inner {
  aspect-ratio: 1/1;
  aspect-ratio: 2/1;
}
body.single-business .business-single__map-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}
body.single-business .business-single__info-list {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-top: 1px solid #111;
}
@media (min-width: 1100px) {
  body.single-business .business-single__info-list {
    grid-template-columns: 180px 1fr;
  }
}
@media (min-width: 576px) and (max-width: 1099.98px) {
  body.single-business .business-single__info-list {
    grid-template-columns: 180px 1fr;
  }
}
@media (max-width: 575.98px) {
  body.single-business .business-single__info-list {
    grid-template-columns: 5.5em 1fr;
  }
}
body.single-business .business-single__info-list dt,
body.single-business .business-single__info-list dd {
  border-bottom: 1px solid #111;
}
@media (min-width: 576px) {
  body.single-business .business-single__info-list dt,
  body.single-business .business-single__info-list dd {
    padding-top: 2rem;
  }
}
@media (max-width: 575.98px) {
  body.single-business .business-single__info-list dt,
  body.single-business .business-single__info-list dd {
    padding-top: 2rem;
  }
}
@media (min-width: 576px) {
  body.single-business .business-single__info-list dt,
  body.single-business .business-single__info-list dd {
    padding-bottom: 2rem;
  }
}
@media (max-width: 575.98px) {
  body.single-business .business-single__info-list dt,
  body.single-business .business-single__info-list dd {
    padding-bottom: 2rem;
  }
}
body.single-business .business-single__info-list dt,
body.single-business .business-single__info-list dd {
  display: flex;
  align-items: center;
}

.formcontent_wrapper {
  margin-top: 30px;
}

.t-d-03 {
  transition-delay: 0.3s;
}

.t-d-05 {
  transition-delay: 0.5s;
}

.t-d-06 {
  transition-delay: 0.6s;
}

.t-d-10 {
  transition-delay: 1s;
}

.grecaptcha-badge {
  display: none;
}

.recaptcha-note {
  padding-top: 3rem;
  font-size: 0.7em;
  text-align: center;
  color: var(--Gray-Grey-300);
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.recaptcha-note a {
  color: var(--Gray-Grey-300);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.recaptcha-note a:hover {
  opacity: 0.6;
}
@media (max-width: 575.98px) {
  .recaptcha-note a.js_hover {
    opacity: 0.6;
  }
}

/*# sourceMappingURL=renew_2025.css.map */
