@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-transition: opacity 1.5s ease-out, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.5s ease-out, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.5s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.5s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 左から右へふわっと出る設定 */
.fade-in-left {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in-left.is-in-view {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* 2番目、3番目の要素にディレイをかける（これがあると綺麗です） */
.js-in-view:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.js-in-view:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.sending-loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
}
.sending-loader.is-active {
  display: grid;
  place-items: center;
}

.sending-loader__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sending-loader__content p {
  color: #275f8d;
  font-weight: bold;
  margin-top: 10px;
}

.sending-loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  place-items: center;
}
.sending-loader.is-active {
  display: grid;
}

.sending-loader__content {
  text-align: center;
}
.sending-loader__content .spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top: 5px solid #275f8d;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.sending-loader__text {
  font-weight: 700;
  color: #333;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: #275f8d;
  border: 2px solid #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
  line-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-decoration: none;
}
.back-to-top::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(2px) rotate(-45deg);
          transform: translateY(2px) rotate(-45deg);
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.back-to-top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.back-to-top:hover {
  background-color: #333333;
}
.back-to-top:hover::before {
  border-color: #fff;
}

html {
  scroll-behavior: smooth;
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 54px;
  padding: 14px 50px 14px 30px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  overflow: hidden;
  -webkit-transition: color 0.3s, background-color 0.3s, border-color 0.3s ease;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s ease;
  background-color: #275f8d;
  color: #fff;
  border: 1px solid #275f8d;
}
@media (width >= 768px) {
  .c-btn {
    width: 320px;
    min-width: 320px;
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 105%;
  height: 100%;
  -webkit-transform: translateX(-105%);
          transform: translateX(-105%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  background-color: #bf021e;
}
.c-btn::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9px;
  height: 9px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 15'%3E%3Cpath d='M0.707153 0.707092L7.07111 7.07105L0.707153 13.435L2.12137 14.8496L9 7.07105L2.12137 -0.707092Z' fill='%23fff'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 15'%3E%3Cpath d='M0.707153 0.707092L7.07111 7.07105L0.707153 13.435L2.12137 14.8496L9 7.07105L2.12137 -0.707092Z' fill='%23fff'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  z-index: 2;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
.c-btn:hover {
  color: #fff;
  border-color: #bf021e;
}
.c-btn:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-btn:hover::after {
  background-color: #fff;
  -webkit-transform: translateY(-50%) translateX(5px);
          transform: translateY(-50%) translateX(5px);
}
.c-btn {
  /* --- パターン1：青ボタン（ホバーで赤） --- */
}
.c-btn {
  /* --- パターン2：枠線ボタン（初期：白背景/青枠 → ホバー：全体青） --- */
}
.c-btn--outline {
  background-color: rgba(255, 255, 255, 0.7);
  color: #275f8d;
  border-color: #275f8d;
}
.c-btn--outline::before {
  background-color: #275f8d;
}
.c-btn--outline::after {
  background-color: #275f8d;
}
.c-btn--outline:hover {
  color: #fff;
  border-color: #275f8d;
}

.card__img {
  width: 100%;
}
.card__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 375/240;
  -o-object-fit: cover;
     object-fit: cover;
}

.card__body {
  margin-top: 12px;
}

.card__title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
}
@media (width >= 768px) {
  .card__title {
    font-size: 20px;
  }
}

.card__text {
  margin-top: 10px;
}
@media (width >= 768px) {
  .card__text {
    margin-top: 10px;
  }
}

.card__title {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}
@media (width >= 768px) {
  .card__title {
    font-size: 20px;
    margin-top: 15px;
  }
}

.card__text {
  margin-top: 5px;
}

.heading {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (width >= 768px) {
  .heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.heading__main {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
@media (width >= 768px) {
  .heading__main {
    font-family: "Poppins";
    font-size: 56px;
  }
}

.heading__sub {
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
}
@media (width >= 768px) {
  .heading__sub {
    font-size: 16px;
    white-space: nowrap;
  }
}

.read__text {
  margin-top: 25px;
}
@media (width >= 768px) {
  .read__text {
    margin-top: 20px;
  }
}

/* --- ローダー全体の親 --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  /* --- 会社ロゴ --- */
}
.loader__logo {
  position: relative;
  z-index: 100;
  width: 180px;
  height: auto;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: logoFadeIn 0.5s ease-out forwards 0.3s;
          animation: logoFadeIn 0.5s ease-out forwards 0.3s;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.loader {
  /* --- 背景パネル --- */
}
.loader__panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.7, 0, 0.3, 1) 0.4s;
  transition: -webkit-transform 0.8s cubic-bezier(0.7, 0, 0.3, 1) 0.4s;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1) 0.4s;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1) 0.4s, -webkit-transform 0.8s cubic-bezier(0.7, 0, 0.3, 1) 0.4s;
}
.loader__panel--top {
  top: 0;
}
.loader__panel--bottom {
  bottom: 0;
}
.loader {
  /* --- アニメーション完了時 --- */
}
.loader.is-loaded .loader__logo {
  opacity: 0 !important;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  pointer-events: none;
}
.loader.is-loaded .loader__panel--top {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.loader.is-loaded .loader__panel--bottom {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.loader.is-loaded {
  pointer-events: none;
}

/* --- ロゴがふわっと出るアニメーションの定義 --- */
@-webkit-keyframes logoFadeIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes logoFadeIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* --- コンテンツ側（FVなど）を後から出す設定 --- */
.fv {
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease, -webkit-transform 1.2s ease;
}

body.is-active .fv {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media (width < 768px) {
  .hidden-sp {
    display: none;
  }
}

@media (width >= 768px) {
  .hidden-pc {
    display: none;
  }
}

@media (width >= 768px) {
  .sp--head {
    display: none !important;
  }
}

.pc--head {
  display: none !important;
}
@media (width >= 768px) {
  .pc--head {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.link-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* お問い合わせページだけバッジを再表示 */
.page-contact .grecaptcha-badge {
  visibility: visible;
}

.header {
  padding-block: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.7);
  z-index: 100;
}
@media (width >= 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 15px;
}
@media (width >= 768px) {
  .header__inner {
    width: 100%;
    max-width: 1440px;
    padding-inline: 20px;
    margin-inline: auto;
  }
}

.header__logo a img {
  display: block;
  width: 110px;
}
@media (width >= 768px) {
  .header__logo a img {
    width: 140px;
  }
}

.header__nav {
  display: none;
}
@media (width >= 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(20px, 1.5vw, 30px);
  }
}

.header__link {
  font-weight: 500;
  letter-spacing: 0.5px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__link:hover {
  color: #275f8d;
}

.recruit_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.recruit_link::after {
  content: "";
  width: 18px;
  height: 18px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 2H2V12L12 12L12 8.5L14 8.5V14H1.32813e-08V-1.32813e-08H5.5L5.5 2ZM14 7.5H12V3.5957L7.88867 7.70703L6.47461 6.29297L10.7676 2L6.5 2L6.5 -1.32813e-08H14V7.5Z' fill='%23333333'/%3E%3C/svg%3E%0A");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 2H2V12L12 12L12 8.5L14 8.5V14H1.32813e-08V-1.32813e-08H5.5L5.5 2ZM14 7.5H12V3.5957L7.88867 7.70703L6.47461 6.29297L10.7676 2L6.5 2L6.5 -1.32813e-08H14V7.5Z' fill='%23333333'/%3E%3C/svg%3E%0A");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.h-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 42px;
  min-width: 120px;
  padding-inline: 15px;
}
.h-btn--outline {
  height: 42px;
  background-color: transparent;
}

.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.h-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 120px;
  padding: 8px 10px;
  background-color: #275f8d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #275f8d;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.h-btn:hover {
  background-color: #bf021e;
  border-color: #bf021e;
  color: #fff;
}
.h-btn--outline {
  background-color: transparent;
  color: #275f8d;
  border-color: #275f8d;
  padding: 10px 10px;
}
.h-btn--outline:hover {
  background-color: #275f8d;
  border-color: #275f8d;
  color: #fff;
}
@media (width >= 768px) {
  .h-btn {
    min-width: 140px;
  }
}
.h-btn--narrow {
  min-width: 100px;
}

.header__information-btm {
  display: inline-block;
  padding: 8px 15px;
  color: #275f8d;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 2px solid #275f8d;
}

@media (width >= 768px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 10px;
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 3px;
  background: #333333;
  border-radius: 6px;
  -webkit-transition: top 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: top 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, top 0.3s ease-out;
  transition: transform 0.3s ease-out, top 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 230px;
  height: 100%;
  background-color: #275f8d;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  padding: 140px 20px;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.drawer-content.is-checked {
  opacity: 1;
  pointer-events: auto;
}

.drawer-content__link {
  display: block;
  padding-block: 15px;
  color: #fff;
  letter-spacing: 0.48px;
  text-align: center;
}

.footer {
  background-color: #275f8d;
  padding-block: 60px 30px;
}

@media (width >= 768px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-block: 60px;
  }
}

.footer__logo {
  width: 140px;
}
.footer__logo img {
  width: 100%;
}
@media (width >= 768px) {
  .footer__logo {
    width: 200px;
  }
}

.footer__address {
  margin-top: 35px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.footer__address p + p {
  margin-top: 10px;
}
@media (width >= 768px) {
  .footer__address {
    margin-top: 30px;
    font-size: 16px;
  }
  .footer__address p + p {
    margin-top: 15px;
  }
}

@media (width >= 768px) {
  .footer__nav {
    text-align: right;
  }
}

.footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 20px;
  margin-top: 20px;
}
@media (width >= 768px) {
  .footer__sns-list {
    margin-top: 0;
  }
}

.footer__sns-link img {
  height: 20px;
}
@media (width >= 768px) {
  .footer__sns-link img {
    height: 30px;
  }
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  margin-bottom: 20px;
}
.footer__links a {
  font-size: 14px;
}
.footer__links a + a {
  margin-top: 8px;
}
@media (width >= 768px) {
  .footer__links a + a {
    margin-top: 0;
  }
}
@media (width >= 768px) {
  .footer__links {
    margin-top: 60px;
    margin-bottom: 30px;
    line-height: 2;
  }
}

.footer__link {
  font-size: 14px;
  color: #fff;
}

.footer__copyright {
  color: #fff;
  border-top: 1px solid #fff;
  padding-top: 12px;
  font-size: 10px;
  display: block;
  width: 100%;
  text-align: center;
}
@media (width >= 768px) {
  .footer__copyright {
    text-align: right;
  }
}

@media (width >= 768px) {
  .footer__tel-link {
    pointer-events: none; /* クリック無効化 */
    color: inherit; /* 周りの文字色に合わせる */
    text-decoration: none;
  }
}

.inner {
  padding-inline: 20px;
}
@media (width >= 768px) {
  .inner {
    max-width: 1280px;
    padding-inline: 40px;
    margin-inline: auto;
  }
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

.fv {
  height: 100vh;
  min-height: 500px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(53%, rgba(199, 226, 255, 0.5)), to(rgba(30, 46, 63, 0.8))), url("../img/sp/sp-readvance-top.webp") center/cover no-repeat;
  background: linear-gradient(to bottom, rgba(199, 226, 255, 0.5) 53%, rgba(30, 46, 63, 0.8) 100%), url("../img/sp/sp-readvance-top.webp") center/cover no-repeat;
  background-blend-mode: multiply;
  position: relative;
}
@media (width >= 768px) {
  .fv {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(53%, rgba(199, 226, 255, 0.5)), to(rgba(30, 46, 63, 0.8))), url("../img/leadvance-top.webp") center/cover no-repeat;
    background: linear-gradient(to bottom, rgba(199, 226, 255, 0.5) 53%, rgba(30, 46, 63, 0.8) 100%), url("../img/leadvance-top.webp") center/cover no-repeat;
    padding-bottom: 46px;
  }
}

.bg-text {
  position: absolute;
  left: 0;
  bottom: 180px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 52px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
}
@media (width >= 768px) {
  .bg-text {
    bottom: 320px;
    font-size: 7.7777777778vw;
  }
}

.fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-inline: 15px;
  padding-bottom: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (width >= 768px) {
  .fv__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 30px;
    max-width: 1280px;
    padding-inline: 40px;
    width: 100%;
    margin-inline: auto;
    z-index: 1;
  }
}

.fv__text-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -moz-text-align-last: left;
       text-align-last: left;
  width: 100%;
}
@media (width >= 768px) {
  .fv__text-contents {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.fv__main-copy {
  font-family: "Poppins";
  overflow: hidden;
  display: block;
  font-size: clamp(48px, 12vw, 110px);
  width: 100%;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  opacity: 0;
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
  -webkit-transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media (width >= 768px) {
  .fv__main-copy {
    font-size: clamp(64px, 7.6vw, 114px);
  }
}

.fv__read-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  letter-spacing: 1.5px;
  margin-top: 10px;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  opacity: 0;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
  -webkit-transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
@media (width >= 768px) {
  .fv__read-text {
    font-size: 18px;
    line-height: 1.7;
  }
}

/* --- bodyにis-activeがついたら元の位置に戻す --- */
body.is-active .fv__main-copy,
body.is-active .fv__read-text {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fv__btn--pc {
  display: none;
}
@media (width >= 768px) {
  .fv__btn--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 17px;
  }
}

.fv__btn--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-inline: 15px;
  gap: 10px;
  margin-top: 15px;
}
@media (width >= 768px) {
  .fv__btn--sp {
    display: none;
  }
}

.about {
  margin-top: 200px;
  padding-block: 60px 30px;
  font-size: 14px;
  overflow-x: hidden;
  position: relative;
}
@media (width >= 768px) {
  .about {
    margin-top: 0;
    padding-block: 90px 60px;
  }
}
.about::after {
  content: "";
  background: url(../img/leadvance-symbol.png) center/contain no-repeat;
  position: absolute;
  width: 240px;
  height: 50px;
  top: 0;
  right: 15px;
}
@media (width >= 768px) {
  .about::after {
    width: clamp(320px, 50vw, 802px);
    height: 157px;
    top: 70px;
    right: 17px;
    z-index: -1;
  }
}

@media (width >= 768px) {
  .about__inner {
    margin-inline: auto;
  }
}

.about__heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.6px;
  font-size: clamp(24px, 5vw, 60px);
  text-align: center;
  color: #333333;
}
@media (width >= 768px) {
  .about__heading {
    font-size: 55px;
    text-align: left;
  }
}

.about__contents {
  margin-top: 30px;
}
@media (width >= 768px) {
  .about__contents {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
  }
}

@media (width >= 768px) {
  .about__img {
    width: 410px;
  }
}
.about__img img {
  width: 100%;
}
@media (width >= 768px) {
  .about__img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.about__text {
  text-align: center;
  margin-top: 30px;
}
@media (width >= 768px) {
  .about__text {
    margin-top: 20px;
    text-align: left;
    line-height: 2;
    margin-top: 0;
  }
}

.why-us {
  padding-block: 60px;
  overflow: hidden;
}
@media (width >= 768px) {
  .why-us {
    padding-block: 120px;
  }
}

.why-us__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
  gap: 50px;
}
@media (width >= 768px) {
  .why-us__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (width >= 768px) {
  .why-us__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 40px;
  }
}

.why__btn {
  margin-top: 30px;
  text-align: center;
}
@media (width >= 768px) {
  .why__btn {
    margin-top: 60px;
  }
}

.news {
  padding-block: 60px;
  background-color: #275f8d;
}
@media (width >= 768px) {
  .news {
    padding-block: 120px;
  }
}

.news__card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
}
@media (width >= 768px) {
  .news__card {
    max-width: 1140px;
    padding: 60px;
  }
}

.news__lists {
  margin-top: 10px;
}
@media (width >= 768px) {
  .news__lists {
    margin-top: 30px;
  }
}

.news__list:nth-child(n+2) {
  position: relative;
}
.news__list:nth-child(n+2)::before {
  content: "";
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background-color: #333333;
}

.news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-block: 25px;
}
@media (width >= 768px) {
  .news__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 20px;
    gap: 15px;
  }
}

.news__link__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width >= 768px) {
  .news__link__meta {
    width: 240px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media (width >= 768px) {
  .news__date {
    width: 90px;
    white-space: nowrap;
  }
}

.news__label {
  font-size: 12px;
  display: inline-block;
  padding: 2px 20px;
  border: 1px solid #333333;
  min-width: 108px;
  text-align: center;
}
@media (width >= 768px) {
  .news__label {
    padding: 5px 20px;
  }
}

.service-i {
  padding-block: 60px;
}
@media (width >= 768px) {
  .service-i {
    padding-block: 120px;
  }
}

.service-i__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
  gap: 40px;
}
@media (width >= 768px) {
  .service-i__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (width >= 768px) {
  .service-i__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.service__btn {
  margin-top: 30px;
  text-align: center;
}
@media (width >= 768px) {
  .service__btn {
    margin-top: 60px;
  }
}

.service--sub {
  font-size: 12px;
  font-weight: 700;
  display: block;
  color: #275f8d;
}
.service--main {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}
@media (width >= 768px) {
  .service--main {
    font-size: 20px;
    margin-top: 15px;
  }
}

.swiper {
  pointer-events: none;
}

/* スライドの動き等速 */
.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide {
  width: 100px;
  height: 80px;
  overflow: hidden;
}
@media (width >= 768px) {
  .swiper-slide {
    width: 244px;
    height: 150px;
    overflow: hidden;
  }
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.partner {
  padding-block: 60px;
}
@media (width >= 768px) {
  .partner {
    padding-block: 120px;
  }
}

.partner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (width >= 768px) {
  .partner__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.partner__text-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (width >= 768px) {
  .partner__text-content {
    text-align: left;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    gap: 40px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.partner__text {
  margin-top: 10px;
}
@media (width >= 768px) {
  .partner__text {
    margin-top: 0;
    letter-spacing: 1.5px;
  }
}

.partner__btn {
  margin-inline: auto;
  width: 100%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (width >= 768px) {
  .partner__btn {
    margin-left: 0;
  }
}

.partner__img {
  margin-top: 20px;
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (width >= 768px) {
  .partner__img {
    margin-top: 0;
    width: 44.1666666667%;
  }
}
.partner__img img {
  width: 100%;
  aspect-ratio: 530/400;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-page {
  padding-top: 60px;
}
@media (width >= 768px) {
  .sub-page {
    padding-top: 70px;
  }
}
.sub-page.fade-in-right {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}
.sub-page.fade-in-right.is-in-view {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.lower-entry__inner {
  width: 100%;
}
@media (width >= 768px) {
  .lower-entry__inner {
    padding-block: 80px;
  }
}

.lower-entry__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}
@media (width >= 768px) {
  .lower-entry__heading {
    font-size: 56px;
    text-align: left;
  }
}

.lower-entry__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px 20px;
  margin-top: 10px;
}
@media (width >= 768px) {
  .lower-entry__nav {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    gap: 0 40px;
    margin-top: 20px;
  }
}

.lower-entry__list {
  white-space: nowrap;
}

.lower-entry__link {
  color: #fff;
  position: relative;
  padding-left: 12px;
}
@media (width >= 768px) {
  .lower-entry__link {
    font-size: 20px;
  }
}
.lower-entry__link::before {
  content: "";
  width: 8px;
  height: 14px;
  position: absolute;
  background: url(../img/parts/menu_arrow.svg) center/contain no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media (width >= 768px) {
  .lower-entry__link::before {
    width: 10px;
    height: 16px;
  }
}

.about__main-img {
  width: 100%;
  min-height: 160px;
  background: url("../img/office_heading.webp") center/cover no-repeat;
  background-color: rgba(79, 121, 165, 0.5);
  background-blend-mode: multiply;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (width >= 768px) {
  .about__main-img {
    min-height: 330px;
    place-items: center start;
  }
}

.mission {
  padding-block: 40px 60px;
}
@media (width >= 768px) {
  .mission {
    padding-block: 120px;
  }
}

@media (width >= 768px) {
  .mission__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.mission__contents {
  text-align: center;
}
@media (width >= 768px) {
  .mission__contents {
    text-align: left;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

.mission__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mission__en {
  font-size: 12px;
  font-weight: 700;
}
@media (width >= 768px) {
  .mission__en {
    font-size: 14px;
  }
}

.mission__title {
  font-size: 18px;
  font-weight: 700;
}
@media (width >= 768px) {
  .mission__title {
    font-size: clamp(20px, 2.5vw, 32px);
  }
}

.mission__text {
  margin-top: 10px;
  line-height: 1.8;
}

.mission__img {
  margin-top: 30px;
}
@media (width >= 768px) {
  .mission__img {
    margin-top: 0;
    width: 44.1666666667%;
  }
}
.mission__img img {
  width: 100%;
  aspect-ratio: 530/400;
  -o-object-fit: cover;
     object-fit: cover;
}

.value {
  background-color: #e9eef2;
  padding-block: 60px;
}
@media (width >= 768px) {
  .value {
    padding-block: 120px;
  }
}

.value__list {
  display: grid;
  gap: 30px;
  margin-top: 30px;
  width: 100%;
}
@media (width >= 768px) {
  .value__list {
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 2vw, 40px) clamp(30px, 2vw, 60px);
    margin-top: 60px;
  }
}

.value__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 6px solid #275f8d;
}
@media (width >= 768px) {
  .value__item {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-block: clamp(15px, 2vw, 30px);
    padding-inline: clamp(10px, 2vw, 45px);
    border-left: 10px solid #275f8d;
  }
}

.value__text-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (width >= 768px) {
  .value__text-contents {
    gap: clamp(10px, 4vw, 30px);
  }
}

.value__num {
  font-family: "Poppins";
  font-size: 24px;
  font-weight: 700;
  color: #275f8d;
}
@media (width >= 768px) {
  .value__num {
    font-size: 46px;
  }
}

.value__text {
  font-size: 14px;
}
@media (width >= 768px) {
  .value__text {
    font-size: 16px;
  }
}

.value__icon {
  width: 60px;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}
@media (width >= 768px) {
  .value__icon {
    width: clamp(48px, 6vw, 92px);
    aspect-ratio: 1/1;
  }
}
.value__icon img {
  width: 100%;
}

.corporate {
  padding-block: 60px;
}
@media (width >= 768px) {
  .corporate {
    padding-block: 120px;
  }
}

.corporate__contents {
  width: 90%;
  margin-inline: auto;
}
@media (width >= 768px) {
  .corporate__contents {
    max-width: 571px;
  }
}

.corporate__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 30px;
  gap: 12px;
}
@media (width >= 768px) {
  .corporate__list {
    margin-top: 50px;
    gap: 18px;
  }
}

.corporate__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 10px;
  border-left: 6px solid #275f8d;
}
@media (width >= 768px) {
  .corporate__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 0;
    border-left: none;
  }
}

.corporate__term {
  color: #275f8d;
  font-weight: 700;
}
@media (width >= 768px) {
  .corporate__term {
    width: 110px;
    text-align: right;
    padding-right: 30px;
  }
}

.corporate__description {
  font-weight: 500;
  width: 100%;
}
.corporate__description p {
  font-weight: 500;
}
.corporate__description p + p {
  margin-top: 10px;
}
@media (width >= 768px) {
  .corporate__description {
    padding-left: 30px;
    width: 461px;
    border-left: 4px solid #275f8d;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.corporate__map {
  width: 100%;
  margin-top: 40px;
  aspect-ratio: 16/9;
}
@media (width >= 768px) {
  .corporate__map {
    margin-top: 60px;
    max-width: 940px;
    margin-inline: auto;
  }
}
.corporate__map iframe {
  width: 100%;
  height: 450px;
}

.profile {
  padding-block: 60px;
}
@media (width >= 768px) {
  .profile {
    padding-block: 120px;
  }
}

.profile__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (width >= 768px) {
  .profile__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
  }
}

.profile__img {
  margin-top: 30px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width >= 768px) {
  .profile__img {
    width: 400px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.profile__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width >= 768px) {
  .profile__img img {
    aspect-ratio: 400/450;
  }
}

@media (width >= 768px) {
  .profile__text-contents {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.profile__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (width >= 768px) {
  .profile__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.profile__reader {
  margin-top: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.profile__job {
  font-weight: 700;
}

.profile__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (width >= 768px) {
  .profile__name {
    gap: 25px;
  }
}

.profile__name-ja {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (width >= 768px) {
  .profile__name-ja {
    font-size: 32px;
  }
}

.profile__name-en {
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 700;
}

.profile__text {
  margin-top: 10px;
}
.profile__text p + p {
  margin-top: 5px;
}

.about__tel {
  font-weight: 500;
}

.btn__read-text {
  font-size: 12px;
  font-weight: 700;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 50px;
}
@media (width >= 768px) {
  .btn__read-text {
    margin-bottom: 8px;
    font-size: 14px;
  }
}

.service__main-img {
  width: 100%;
  min-height: 160px;
  background: url("../img/service_heading.webp") center/cover no-repeat;
  background-color: rgba(79, 121, 165, 0.5);
  background-blend-mode: multiply;
  display: grid;
  place-items: center;
}
@media (width >= 768px) {
  .service__main-img {
    min-height: 330px;
    place-items: center start;
  }
}

.one-leadvance {
  padding-block: 20px 60px;
}
@media (width >= 768px) {
  .one-leadvance {
    padding-block: 120px;
  }
}

.one-leadvance__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (width >= 768px) {
  .one-leadvance__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
  }
}

.one-leadvance__contents {
  text-align: center;
}
@media (width >= 768px) {
  .one-leadvance__contents {
    text-align: left;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.one-leadvance__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
}
@media (width >= 768px) {
  .one-leadvance__label {
    margin-top: 0;
  }
}

.one-leadvance__en {
  font-size: 12px;
  font-weight: 700;
}
@media (width >= 768px) {
  .one-leadvance__en {
    font-size: 14px;
  }
}

.one-leadvance__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
}
@media (width >= 768px) {
  .one-leadvance__title {
    font-size: clamp(24px, 5vw, 50px);
  }
}

.color-type1 {
  font-weight: 700;
  color: #424bb2;
}

.color-type2 {
  font-weight: 700;
  color: #00205f;
}

.one-leadvance__text {
  margin-top: 30px;
  line-height: 2;
  text-align: left;
}
@media (width >= 768px) {
  .one-leadvance__text {
    margin-top: 40px;
  }
}

.one-leadvance__img {
  margin-top: 20px;
  margin-inline: auto;
}
@media (width >= 768px) {
  .one-leadvance__img {
    margin-top: 0;
    width: 44.1666666667%;
  }
}
.one-leadvance__img img {
  width: 100%;
  max-width: 530px;
  -o-object-fit: cover;
     object-fit: cover;
}

.service {
  padding-block: 60px;
}
@media (width >= 768px) {
  .service {
    padding-block: 120px;
  }
}

.service--heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (width >= 768px) {
  .service--heading {
    gap: 10px;
  }
}

.service--num {
  font-size: 12px;
  font-weight: 700;
  color: #275f8d;
  display: block;
}

.service--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
}
@media (width >= 768px) {
  .service--head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
  }
}

.service--heading-main {
  text-align: left;
}

.service__contents {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (width >= 768px) {
  .service__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
  }
}

.service__text-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (width >= 768px) {
  .service__text-contents {
    min-width: 400px;
    height: 600px;
    overflow-y: auto;
  }
  .service__text-contents::-webkit-scrollbar {
    width: 4px;
  }
  .service__text-contents::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }
}

.service__item:nth-child(n+2) {
  margin-top: 40px;
}
@media (width >= 768px) {
  .service__item:nth-child(n+2) {
    margin-top: 40px;
  }
}

.service__heading {
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (width >= 768px) {
  .service__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.service__num {
  font-family: "Poppins";
  font-size: 25px;
  font-weight: 700;
  color: #275f8d;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.2;
}

.service__title {
  font-weight: 700;
  font-size: 20px;
  padding-left: 20px;
  padding-left: 0;
  line-height: 1.4;
}

.service__text {
  margin-top: 8px;
}
@media (width >= 768px) {
  .service__text {
    margin-top: 10px;
  }
}

.servive__img {
  width: 100%;
  height: 300px;
}
@media (width >= 768px) {
  .servive__img {
    width: 37.5%;
    max-width: 450px;
    height: 600px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.servive__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.service__btn {
  margin-inline: auto;
}
@media (width >= 768px) {
  .service__btn {
    margin-top: 106px;
  }
}

.works {
  padding-block: 60px;
  background-color: #e9eef2;
}
@media (width >= 768px) {
  .works {
    padding-block: 120px;
  }
}

.works__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 30px;
}
@media (width >= 768px) {
  .works__list {
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
    margin-top: 60px;
  }
}

.works-card__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

.works-cord__body {
  margin-top: 25px;
}

.works-card__tag {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  background-color: #275f8d;
}

.works-card__title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
}

.works-card__points {
  margin-top: 10px;
}
.works-card__points li {
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  padding-left: 1.2em;
}
.works-card__points li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.works__btn {
  text-align: center;
}
@media (width >= 768px) {
  .works__btn {
    margin-top: 106px;
  }
}

.contact__main-img {
  width: 100%;
  min-height: 160px;
  background: url("../img/contact_heading.webp") center/cover no-repeat;
  background-color: rgba(79, 121, 165, 0.3);
  background-blend-mode: multiply;
  display: grid;
  place-items: center;
}
@media (width >= 768px) {
  .contact__main-img {
    min-height: 330px;
    place-items: center start;
  }
}

.contact {
  padding-block: 60px;
}
@media (width >= 768px) {
  .contact {
    padding-block: 40px 120px;
  }
}

@media (width >= 768px) {
  .contact__text {
    margin-top: 60px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.contact__form {
  margin-top: 50px;
}
@media (width >= 768px) {
  .contact__form {
    margin-top: 90px;
  }
}

.form {
  width: 100%;
  padding-inline: 15px;
  max-width: 820px;
  margin-inline: auto;
}
@media (width >= 768px) {
  .form {
    padding-inline: 0;
  }
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form__row:nth-child(n+2) {
  margin-top: 25px;
}
@media (width >= 768px) {
  .form__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}

.form__label {
  text-align: left;
  font-weight: 700;
  position: relative;
  display: block;
  padding-right: 0;
}
@media (width >= 768px) {
  .form__label {
    width: 140px;
    text-align: right;
    display: inline-block;
    padding-right: 1.2em;
  }
}
.form__label .accent-color {
  color: #bf021e;
  position: static;
  margin-left: 4px;
}
@media (width >= 768px) {
  .form__label .accent-color {
    position: absolute;
    right: 0;
    top: 0;
    margin-left: 0;
  }
}

.form__input-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.form__input,
.form__textarea {
  background-color: #e9eef2;
  border: none;
  width: 100%;
  padding: 10px;
  border: 1px solid transparent;
  outline: none;
  border-radius: 4px;
}
.form__input:focus,
.form__textarea:focus {
  border: 2px solid #275f8d;
}

.form__input {
  width: 100%;
}
@media (width >= 768px) {
  .form__input {
    width: 460px;
    height: 45px;
  }
}
.form__input::-webkit-input-placeholder {
  font-size: 14px;
}
.form__input::-moz-placeholder {
  font-size: 14px;
}
.form__input:-ms-input-placeholder {
  font-size: 14px;
}
.form__input::-ms-input-placeholder {
  font-size: 14px;
}
.form__input::placeholder {
  font-size: 14px;
}

.form__message {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__input-l {
  width: 100%;
  height: 200px;
  resize: vertical;
}
@media (width >= 768px) {
  .form__input-l {
    width: 460px;
  }
}

.form__privacy {
  margin-top: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__check-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.form__checkbox {
  width: 15px;
  height: 15px;
  margin-top: 6px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.privacy__text a {
  border-bottom: 1px solid #333333;
}

.form__submit {
  margin-top: 38px;
  text-align: center;
}
@media (width >= 768px) {
  .form__submit {
    margin-top: 50px;
  }
}

.form__btn {
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 100%;
  display: inline-block;
  padding: 16px 30px;
  position: relative;
}
@media (width >= 768px) {
  .form__btn {
    width: 320px;
  }
}

.privacy-import {
  padding-inline: 20px;
  font-size: 10px;
  margin-top: 20px;
}
@media (width >= 768px) {
  .privacy-import {
    margin-top: 40px;
    text-align: center;
  }
}

.thank-you {
  padding-block: 60px;
}
@media (width >= 768px) {
  .thank-you {
    padding-block: 200px;
  }
}

.thank-you__content {
  text-align: center;
}

.thank-you__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.thank-you__main {
  font-size: 32px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #275f8d;
}

.thank-you__btn {
  margin-top: 30px;
}

.privacy {
  padding-block: 80px 60px;
}
@media (width >= 768px) {
  .privacy {
    padding-block: 120px 100px;
  }
}

.privacy__heading {
  font-size: 28px;
  font-weight: 700;
  color: #275f8d;
  font-family: "Noto Serif JP", serif;
}
@media (width >= 768px) {
  .privacy__heading {
    font-size: 56px;
  }
}

.privacy__contents {
  margin-top: 40px;
}
@media (width >= 768px) {
  .privacy__contents {
    margin-top: 80px;
  }
}

.privacy__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (width >= 768px) {
  .privacy__list {
    gap: 40px;
  }
}

.privacy__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.privacy__head {
  font-size: 18px;
  font-weight: 700;
  gap: 15px;
}
@media (width >= 768px) {
  .privacy__head {
    font-size: 24px;
  }
}

.list-icon {
  padding-left: 1.2em;
  position: relative;
  line-height: 1.7;
  list-style: none;
}
.list-icon::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #275f8d;
  font-weight: 700;
}

.privacy__link {
  border-bottom: 1px solid #333333;
}