@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

.ie_ObjectFit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

html,
body {
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
  min-height: 100dvh;
  font-size: 1.6rem;
  color: #333333;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.8px;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.obj-fit img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.scroll {
  opacity: 0;
}

.active {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

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

.u-pc-inlineblock {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .u-pc-inlineblock {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

.u-sp-inlineblock {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inlineblock {
    display: inline-block;
  }
}

.u-sp-inline {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inline {
    display: inline;
  }
}

.u-align--center {
  text-align: center;
}

/*********************
/BASE
*********************/
html {
  overflow-y: auto;
  scrollbar-gutter: stable;
  margin-top: 0 !important;
}

html,
body {
  overflow-x: clip;
}

body {
  background: #fff;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.75px;
}

/*************************************************
top
*************************************************/
.hidden-sm {
  display: block;
}
@media screen and (max-width: 768px) {
  .hidden-sm {
    display: none;
  }
}

.hidden-md {
  display: none;
}
@media screen and (max-width: 768px) {
  .hidden-md {
    display: block;
  }
}

.link-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.5s ease;
}

.link-underline:hover {
  color: #1767cf;
}

.l-inner {
  max-width: 1080px;
  margin-inline: auto;
  width: 90%;
}

.text-m {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: clamp(14px, 3.5897435897vw, 16px);
  overflow-wrap: break-word;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .text-m {
    letter-spacing: 0.75px;
  }
}

.text-l {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 3.8461538462vw, 16px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 768px) {
  .text-l {
    letter-spacing: 0.8px;
  }
}

.flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
}

.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .reverse {
    flex-direction: column;
  }
}

.breadcrumb__menu {
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.4px;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
@media screen and (max-width: 768px) {
  .breadcrumb__menu {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
}

.breadcrumb__current {
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 768px) {
  .breadcrumb__current {
    color: #a9a9a9;
    font-size: 12px;
    letter-spacing: 1.2px;
  }
}

.t-section-button__wrapper {
  margin-top: clamp(40px, 10.2564102564vw, 56px);
}

.t-section-button {
  width: 280px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #1767cf;
  position: relative;
  transition: all 0.5s ease;
  border: 1px solid #1767cf;
}

.t-section-button:hover {
  background: #fff;
  color: #1767cf;
}
.t-section-button:hover .t-section-button__text {
  color: #1767cf;
}
.t-section-button:hover .t-section-button__button-arrow {
  background-color: #1767cf;
}
.t-section-button:hover .t-section-button__button-arrow svg {
  color: #fff;
}

.t-section-button__text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.8px;
}

.t-section-button__button-arrow {
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #fff;
  display: grid;
  place-items: center;
  border-radius: 2px;
  z-index: 1;
}

.t-section-button__button-arrow svg {
  color: #1767cf;
  width: 10px;
  height: 19px;
}

/* ▼矢印ボタンとt-section-buttonの共通設定 */
.t-section-button__button-arrow,
.c-news__button {
  overflow: hidden;
}

/* ▼矢印SVGの初期設定 */
.t-section-button__button-arrow svg {
  color: #1767cf;
  width: 10px;
  height: 19px;
  transition: transform 0.4s ease;
  display: block;
}

/* ▼hoverでアニメーション発火 */
.t-section-button:hover .t-section-button__button-arrow svg,
.c-news-link:hover .c-news__button svg {
  animation: arrow-move 0.6s ease forwards;
}

/* ▼hoverで背景色・矢印色反転（必要であれば調整可） */
.c-news-link:hover .c-news__button {
  color: #1767cf;
  background-color: #fff;
}
.c-news-link:hover .c-news__button svg {
  color: #1767cf;
}

/* ▼共通アニメーション */
@keyframes arrow-move {
  0% {
    transform: translateX(0);
  }
  49% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-150%); /* 左側へリセット */
  }
  100% {
    transform: translateX(0);
  }
}
.p-section-title {
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 3.0769230769vw, 24px);
  margin-bottom: 40px;
}

.p-section-title--en {
  color: #1767cf;
  font-family: "Krona One", sans-serif;
  font-size: clamp(32px, 8.2051282051vw, 48px);
  line-height: 1;
}

.p-section-title--ja {
  color: #1767cf;
  font-size: clamp(12px, 3.0769230769vw, 14px);
  font-weight: 700;
  line-height: 1.8;
}

.t-section-title--en {
  color: #1767cf;
  text-align: center;
  font-family: "Krona One", sans-serif;
  font-size: clamp(12px, 3.0769230769vw, 14px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.7px;
}

.t-section-title--ja {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(31px, 7.9487179487vw, 40px);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .t-section-title--ja {
    margin-top: 12px;
  }
}
.t-section-title--ja .small-text {
  display: block;
  text-align: center;
  font-size: clamp(18px, 4.6153846154vw, 32px);
  font-weight: 700;
  line-height: 1.4;
}
.t-section-title--ja .large-text {
  display: block;
  font-size: clamp(32px, 8.2051282051vw, 40px);
  font-weight: 700;
  line-height: 1.4;
}

.l-section {
  padding-top: clamp(64px, 16.4102564103vw, 136px);
}

.l-section + .l-section {
  margin-top: clamp(80px, 20.5128205128vw, 120px);
}

.mv__bg {
  width: 100vw;
  position: absolute;
  z-index: -1;
  margin-top: -1px;
}

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

.mv {
  width: 100%;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-bottom: 40px;
  }
}

.mv__inner {
  width: 85%;
  margin-inline: auto;
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .mv__inner {
    width: 90%;
    flex-direction: column-reverse;
    gap: 16px;
  }
}

.mv__image {
  position: absolute;
  right: 5%;
  bottom: 25%;
  z-index: 1; /* 背景扱い */
  width: 245px;
  height: 303px;
}
@media screen and (max-width: 1024px) {
  .mv__image {
    position: static;
    width: 140px;
    height: auto;
  }
}
.mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-swiper {
  position: relative;
  width: 85%;
  padding-top: clamp(96px, 24.6153846154vw, 240px);
  padding-bottom: 140px;
  overflow: visible;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv-swiper {
    width: 100%;
    padding-bottom: 0;
  }
}

.mv-icon__wrapper {
  position: absolute;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mv-lead__title-primary,
.mv-lead__title-secondary {
  color: #1767cf;
  font-family: "Krona One", sans-serif;
  font-size: clamp(25px, 7.1794871795vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 1440px) {
  .mv-lead__title-primary,
  .mv-lead__title-secondary {
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .mv-lead__title-primary,
  .mv-lead__title-secondary {
    letter-spacing: -0.01em;
  }
}

.mv-lead__title-ja {
  margin-top: 16px;
  color: #1767cf;
  font-size: clamp(24px, 6.1538461538vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
}

.mv-lead__text {
  margin-top: 64px;
  font-size: clamp(16px, 4.1025641026vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  .mv-lead__text {
    margin-top: 40px;
  }
}

.mv2__inner {
  width: 98%;
  padding-inline: 8%;
  margin-inline: auto;
}

.mv2__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 60%;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .mv2__content {
    width: 100%;
    gap: 16px;
  }
}

.mv2__lead-en {
  color: #1767cf;
  font-family: "Krona One", sans-serif;
  font-size: clamp(16px, 4.1025641026vw, 28px);
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.mv2__lead-ja {
  font-size: clamp(14px, 3.5897435897vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  .mv2__lead-ja .br__pc {
    display: none;
  }
}

.t-sections {
  margin-top: 127px;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 20.5128205128vw, 120px);
}
@media screen and (max-width: 768px) {
  .t-sections {
    margin-top: 88px;
  }
}

.t-service__text {
  font-size: clamp(15px, 3.8461538462vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.75px;
}

.t-service__items {
  margin-top: 56px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .t-service__items {
    margin-top: 40px;
    flex-direction: column;
    gap: 32px;
  }
}

.t-service-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5.1282051282vw, 32px);
}
@media screen and (max-width: 1024px) {
  .t-service-item {
    margin-inline: auto;
  }
}

.t-service-item__image img {
  width: 100%;
  height: auto;
}

.t-service-item__subtitle {
  margin-bottom: clamp(8px, 2.0512820513vw, 12px);
  font-size: clamp(12px, 3.0769230769vw, 13px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.65px;
}

.t-service-item__title {
  font-size: clamp(20px, 5.1282051282vw, 26px);
  font-weight: 700;
  line-height: 1.2;
}

.t-service-item__text {
  margin-top: clamp(12px, 3.0769230769vw, 24px);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.75px;
}

.t-service__button,
.t-news__button {
  margin-inline: auto 0;
}
@media screen and (max-width: 768px) {
  .t-service__button,
  .t-news__button {
    margin-inline: auto;
  }
}

.t-philosophy__content {
  display: flex;
  align-items: flex-start;
  gap: 2.962962963%;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .t-philosophy__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

.t-philosophy__image {
  width: 47.037037037%;
}
@media screen and (max-width: 1024px) {
  .t-philosophy__image {
    width: 100%;
  }
}

.t-philosophy__image img {
  width: 100%;
  height: auto;
}

.t-philosophy__description {
  width: 45.5555555556%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .t-philosophy__description {
    width: 100%;
  }
}

.t-philosophy__title {
  font-size: clamp(28px, 7.1794871795vw, 32px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.6px;
}

.t-philosophy__text {
  margin-top: clamp(24px, 6.1538461538vw, 32px);
}

.t-philosophy__button-wrapper {
  margin-top: clamp(40px, 10.2564102564vw, 56px);
  margin-inline: 0 auto;
}
@media screen and (max-width: 1024px) {
  .t-philosophy__button-wrapper {
    margin-inline: auto;
  }
}

@media screen and (max-width: 768px) {
  .t-news__section-title {
    margin-bottom: 12px;
  }
}

.p-news__content {
  margin-top: clamp(40px, 10.2564102564vw, 96px);
}

.c-news__lists {
  display: flex;
  flex-direction: column;
}

.c-news-link {
  display: block;
  padding-inline: 40px;
  padding-block: clamp(24px, 6.1538461538vw, 32px);
  border-bottom: 1px solid #dadbdb;
}
@media screen and (max-width: 1024px) {
  .c-news-link {
    padding-inline: 0;
  }
}

.c-news-link:hover .c-news-link__title {
  color: #1767cf;
}

.c-news__lists .c-news-link:first-child,
.c-news-link--first {
  padding-top: 0;
}

.c-news__list {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .c-news__list {
    gap: 16px;
  }
}

.c-news__list-top {
  display: contents;
}
@media screen and (max-width: 1024px) {
  .c-news__list-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.c-news__list__description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.c-news__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .c-news__wrapper {
    display: contents;
  }
}

.c-news__meta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}

.c-news-link__date {
  color: #777;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.56px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-news-link__date {
    font-size: 12px;
    letter-spacing: 0.6px;
  }
}

.c-news-link__cat {
  color: #1767cf;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: 2;
  border-radius: 4px;
  border: 1px solid #1767cf;
  flex-shrink: 0;
  min-width: 90px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .c-news-link__cat {
    padding-inline: 12px;
    min-width: 74px;
  }
}

.c-news__title-wrapper {
  display: contents;
}
@media screen and (max-width: 1024px) {
  .c-news__title-wrapper {
    display: flex;
  }
}

.c-news-link__title {
  font-size: clamp(15px, 3.8461538462vw, 16px);
  line-height: 1.8;
  letter-spacing: 0.75px;
  width: 71%;
  flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .c-news-link__title {
    letter-spacing: 0.8px;
    width: 96%;
  }
}

.c-news__button {
  color: #fff;
  width: 24px;
  height: 24px;
  background-color: #1767cf;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid #1767cf;
  transition: all 0.5s ease;
}

.c-news__button svg {
  color: #fff;
}

.c-recruit {
  background: url(../images/shared/recruit-bg.png) no-repeat top left/cover;
  overflow: hidden;
  height: 620px;
}
@media screen and (max-width: 1024px) {
  .c-recruit {
    height: 976px;
  }
}

.c-recruit__link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.c-recruit__link:hover {
  opacity: 0.8;
}

.c-recruit__content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .c-recruit__content {
    flex-direction: column;
    gap: 0;
  }
}

.c-recruit__description {
  padding-top: clamp(80px, 20.5128205128vw, 120px);
  padding-bottom: clamp(80px, 20.5128205128vw, 120px);
  width: 47.5925925926%;
}
@media screen and (max-width: 1024px) {
  .c-recruit__description {
    padding-bottom: 40px;
    width: 100%;
  }
}

.c-recruit__title {
  font-size: clamp(28px, 7.1794871795vw, 40px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .c-recruit__title {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 389px) {
  .c-recruit__title {
    font-size: 23px;
  }
}

.c-recruit__text {
  margin-top: clamp(32px, 8.2051282051vw, 56px);
}

@keyframes infinityAnimationTop {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes infinityAnimationBottom {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
.c-recruit__images {
  display: flex;
  gap: 30px;
  margin-right: calc((100vw - 100%) / -2 + 5vw);
}
@media screen and (max-width: 1024px) {
  .c-recruit__images {
    margin-inline: calc((100vw - 100%) / -2 + 3vw);
    overflow: hidden;
    gap: 10px;
  }
}

.scroll-infinity__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .scroll-infinity__list {
    gap: 10px;
  }
}

.scroll-infinity__list-left {
  animation: infinityAnimationBottom 20s linear infinite;
}

.scroll-infinity__list-right {
  animation: infinityAnimationTop 20s linear infinite;
}

.scroll-infinity__image {
  width: 240px;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .scroll-infinity__image {
    width: 100%;
  }
}

.scroll-infinity__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/*************************************************
sub
*************************************************/
.main {
  margin-top: 88px;
}
@media screen and (max-width: 768px) {
  .main {
    margin-top: 70px;
  }
}

.p-page-title__wrapper {
  width: 100vw;
  position: relative;
  z-index: 0;
}

.p-page-title__inner {
  position: relative;
  z-index: 0;
  max-width: 1080px;
  margin-inline: auto;
  width: 90%;
  height: 380px;
}
@media screen and (max-width: 768px) {
  .p-page-title__inner {
    height: 300px;
  }
}

.p-page-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 3.0769230769vw, 20px);
}

.p-page-title--en {
  text-align: left;
  color: #1767cf;
  font-family: "Krona One", sans-serif;
  font-size: clamp(40px, 10.2564102564vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .p-page-title--en {
    letter-spacing: 0.6px;
  }
}
@media screen and (max-width: 389px) {
  .p-page-title--en {
    font-size: 26px;
  }
}

.p-page-title--ja {
  color: #1767cf;
  font-size: clamp(12px, 3.0769230769vw, 14px);
  text-align: center;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 768px) {
  .p-page-title--ja {
    letter-spacing: 1.6px;
  }
}

.p-page-title-efforts .p-page-title--en {
  font-size: clamp(31px, 7.9487179487vw, 64px);
}
@media screen and (max-width: 389px) {
  .p-page-title-efforts .p-page-title--en {
    font-size: 26px;
  }
}

.p-page-title-policy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-page-title-policy .p-page-title--en {
    font-size: 32px;
  }
}

.p-page-title__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-page-title__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.breadcrumb {
  padding-top: 25px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding-top: 14px;
  }
}

.breadcrumb__inner {
  display: flex;
  justify-content: flex-start;
  max-width: 1080px;
  width: 90%;
  margin-inline: auto;
}

.breadcrumb__lists {
  text-align: right;
  display: flex;
  align-items: center;
}

.breadcrumb__list {
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 768px) {
  .breadcrumb__list {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
}

.breadcrumb__list-text {
  color: #868686;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.breadcrumb__link {
  color: #333333;
  transition: all 0.5s ease;
  white-space: nowrap;
}
.breadcrumb__link .breadcrumb__list-text {
  color: #333333;
}
.breadcrumb__link:hover {
  color: #1767cf;
}

.list-current .breadcrumb__list-text {
  display: inline-block;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .list-current .breadcrumb__list-text {
    max-width: 160px;
  }
}

.breadcrumb__list + .breadcrumb__list::before {
  content: "-";
  margin: 0 8px; /* 区切りの余白は調整 */
  color: #1767cf;
  font-size: 18px;
}

.p-mv {
  padding-block: 80px 120px;
}
@media screen and (max-width: 768px) {
  .p-mv {
    padding-block: 30px 74px;
  }
}

.p-mv__wrapper {
  margin-top: 48px;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
}
@media screen and (max-width: 1024px) {
  .p-mv__wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}

.p-our-service-mv__wrapper {
  max-width: 993px;
  margin-inline: auto;
}

.p-our-service-mv__image {
  position: relative;
  display: inline-block;
  margin-inline: auto;
}
.p-our-service-mv__image img {
  width: 492px;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-our-service-mv__image img {
    width: 310px;
  }
}
.p-our-service-mv__image dotlottie-player {
  position: absolute;
  pointer-events: none;
  bottom: 74px;
  left: 58px;
  width: 131px;
  height: 121px;
}
@media screen and (min-width: 1440px) {
  .p-our-service-mv__image dotlottie-player {
    bottom: 5.1388888889vw;
    left: 4.0277777778vw;
  }
}
@media screen and (max-width: 768px) {
  .p-our-service-mv__image dotlottie-player {
    margin-top: 46px;
    bottom: 45px;
    left: 37px;
    width: 82px;
    height: 76px;
  }
}
@media screen and (max-width: 768px) and (min-width: 800px) {
  .p-our-service-mv__image dotlottie-player {
    bottom: 11.5384615385vw;
    left: 9.4871794872vw;
  }
}

.p-mv__content {
  margin-top: 63px;
}
@media screen and (max-width: 1024px) {
  .p-mv__content {
    margin-inline: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-our-service-mv__content {
    margin-top: 0;
  }
}

.p-mv__lead {
  font-size: clamp(14px, 5.1282051282vw, 28px);
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 1.4px;
}

.p-mv__description {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-mv__description {
    margin-top: 24px;
  }
}

.p-mv__text {
  font-size: clamp(14px, 3.5897435897vw, 16px);
  line-height: 170%;
  letter-spacing: 0.8px;
}

.p-section__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-section__wrapper {
    gap: 32px;
  }
}

.p-section__subtitle {
  font-size: clamp(18px, 4.6153846154vw, 24px);
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 170%;
}
@media screen and (max-width: 768px) {
  .p-section__subtitle {
    letter-spacing: 0.9px;
  }
}

.p-section__lead {
  font-size: clamp(14px, 3.5897435897vw, 16px);
  line-height: 170%;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .p-section__lead {
    letter-spacing: 0.7px;
  }
}

.p-partners,
.contact-form,
.p-policy,
.p-company,
.p-about,
.p-efforts,
.p-recruit,
.p-service {
  margin-top: clamp(80px, 20.5128205128vw, 120px);
}

.contact-form,
.p-policy,
.single-post-button__wrapper,
.p-news__content,
.p-recruit-detail,
.p-company__container,
.p-efforts-link,
.p-about__content {
  padding-bottom: clamp(80px, 20.5128205128vw, 120px);
}

.p-service__content {
  margin-top: 56px;
  padding-bottom: clamp(80px, 20.5128205128vw, 120px);
}
@media screen and (max-width: 1024px) {
  .p-service__content {
    margin-top: 80px;
  }
}

.p-service-item.flex {
  align-items: flex-start;
  gap: 7.4074074074%;
}
@media screen and (max-width: 768px) {
  .p-service-item.flex {
    gap: 20px;
  }
}

.p-service-item__image {
  width: 31.4814814815%;
}
@media screen and (max-width: 1024px) {
  .p-service-item__image {
    width: 100%;
  }
}

.p-service-item__image img {
  width: 100%;
  height: auto;
}

.p-service-item__description {
  width: 61.1111111111%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .p-service-item__description {
    width: 100%;
  }
}

.p-service-item__subtitle {
  font-size: clamp(12px, 3.0769230769vw, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.7px;
}

.p-service-item__title {
  margin-top: clamp(16px, 4.1025641026vw, 24px);
  font-size: clamp(24px, 6.1538461538vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.p-service-item__text {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 768px) {
  .p-service-item__text {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}

.p-service-item__button-wrapper {
  margin-top: 40px;
  margin-inline: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-service-item__button-wrapper {
    margin-inline: auto;
  }
}

.p-service__boxes {
  margin-top: 80px;
  border: 1px solid #ddd;
  padding-block: clamp(40px, 10.2564102564vw, 80px);
  padding-inline: clamp(20px, 5.1282051282vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 70px;
  max-width: 980px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-service__boxes {
    gap: 80px;
  }
}

.p-service-box.flex {
  align-items: flex-start;
  gap: 9.756097561%;
}
@media screen and (max-width: 768px) {
  .p-service-box.flex {
    gap: 20px;
  }
}

.p-service-box__image {
  width: 41.4634146341%;
}
@media screen and (max-width: 1024px) {
  .p-service-box__image {
    width: 100%;
  }
}

.p-service-box__image img {
  width: 100%;
  height: auto;
}

.p-service-box__description {
  width: 48.7804878049%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .p-service-box__description {
    width: 100%;
  }
}

.p-service-box__title {
  font-size: clamp(20px, 5.1282051282vw, 24px);
  font-weight: 700;
  line-height: 1.6;
}

.p-service-box__text {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 768px) {
  .p-service-box__text {
    font-size: 14px;
    letter-spacing: 0.6px;
  }
}

.p-service-box__button-wrapper {
  margin-top: 24px;
  margin-inline: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-service-box__button-wrapper {
    margin-inline: auto;
  }
}

.p-about__content {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 20.5128205128vw, 120px);
}

.p-about__lead,
.p-recruit__lead {
  text-align: center;
}

.p-about__lead-en {
  font-family: "Krona One", sans-serif;
  font-size: clamp(28px, 7.1794871795vw, 40px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .p-about__lead-en {
    line-height: 1.4;
  }
}
@media screen and (max-width: 389px) {
  .p-about__lead-en {
    font-size: 23px;
  }
}

.p-about__lead-ja,
.p-recruit__lead-ja {
  margin-top: 12px;
  font-size: clamp(16px, 4.1025641026vw, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .p-about__lead-ja,
  .p-recruit__lead-ja {
    line-height: 1.4;
    letter-spacing: 0.8px;
  }
}

@media screen and (max-width: 768px) {
  .p-recruit__lead-ja {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.9px;
  }
}

.p-about-thoughts__content {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 14.358974359vw, 80px);
}

.p-about__section-title {
  margin-bottom: 56px;
}

.p-about-thoughts .p-section-title--en {
  font-size: clamp(30px, 7.1794871795vw, 40px);
}
@media screen and (max-width: 389px) {
  .p-about-thoughts .p-section-title--en {
    font-size: 28px;
  }
}
.p-about-thoughts .p-section-title--ja {
  font-size: clamp(11px, 2.8205128205vw, 14px);
}

.p-about__item.flex {
  justify-content: space-between;
  gap: 7.572815534%;
}
@media screen and (max-width: 768px) {
  .p-about__item.flex {
    gap: 32px;
  }
}

@media screen and (max-width: 768px) {
  .p-about__image {
    width: 74.2857142857%;
    margin-inline: auto;
    max-width: 400px;
  }
}

.p-about__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-about__image--left {
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .p-about__image--left {
    padding-left: 0;
    width: 74.2857142857%;
    margin-inline: auto;
  }
}

.p-about__image--right {
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .p-about__image--right {
    padding-right: 0;
  }
}

.p-about__description {
  width: 58.640776699%;
}
@media screen and (max-width: 768px) {
  .p-about__description {
    width: 100%;
  }
}

.p-about__subtitle {
  margin-bottom: clamp(24px, 6.1538461538vw, 40px);
  font-size: clamp(20px, 5.1282051282vw, 24px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 768px) {
  .p-about__subtitle {
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 768px) {
  .p-about__text {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.75px;
  }
}

.p-about__text + .p-about__text {
  margin-top: 32px;
}

.p-about__text.p-about-vision__tagline {
  font-family: "Krona One", sans-serif;
  font-size: clamp(18px, 4.6153846154vw, 20px);
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .p-about__text.p-about-vision__tagline {
    margin-top: 24px;
  }
}

.p-about-vision__tagline--small {
  display: block;
  font-size: clamp(15px, 3.8461538462vw, 16px);
  font-weight: 700;
  line-height: 1.8;
}

.p-about-vision__message {
  margin-top: 24px;
}

.p-recruit__lead-en {
  font-family: "Krona One", sans-serif;
  font-size: clamp(24px, 6.1538461538vw, 40px);
  line-height: 1.4; /* 40px */
}

.p-recruit-main {
  margin-top: clamp(40px, 10.2564102564vw, 80px);
}

.p-recruit__content.flex {
  align-items: flex-start;
  gap: clamp(30px, 7.6923076923vw, 35px);
}

.p-recruit__description {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 6.1538461538vw, 32px);
  width: 46.5048543689%;
}
@media screen and (max-width: 768px) {
  .p-recruit__description {
    width: 100%;
  }
}

.p-recruit-box__title {
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .p-recruit-box__title .p-section-title--en {
    font-size: 31px;
  }
}
@media screen and (max-width: 389px) {
  .p-recruit-box__title .p-section-title--en {
    font-size: 23px;
  }
}

.p-recruit__subtitle {
  margin-bottom: 8px;
  font-size: clamp(18px, 4.6153846154vw, 20px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .p-recruit__subtitle {
    margin-bottom: 0;
    letter-spacing: 0.9px;
  }
}

.p-recruit__text {
  line-height: 2;
}

.p-recruit__image {
  width: 54.9514563107%;
}
@media screen and (max-width: 768px) {
  .p-recruit__image {
    width: 100%;
  }
}

.p-recruit__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-recruit-box {
  margin-top: clamp(80px, 20.5128205128vw, 120px);
  border: 1px solid #ddd;
  background: #fff;
  padding-block: 40px;
}
@media screen and (max-width: 768px) {
  .p-recruit-box {
    padding-inline: 20px;
  }
}

.p-recruit-box__content.flex {
  align-items: flex-start;
  gap: 35px;
  justify-content: space-between;
  max-width: 820px;
  margin-inline: auto;
}

.p-recruit-box__description {
  width: 56.0975609756%;
}
@media screen and (max-width: 768px) {
  .p-recruit-box__description {
    width: 100%;
  }
}

.p-recruit-box__subtitle {
  font-size: clamp(16px, 4.1025641026vw, 18px);
  font-weight: 700;
  line-height: 1;
}

.p-recruit-box__lists {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-recruit-box__list {
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.75px;
  position: relative;
  z-index: 0;
}

.p-recruit-box__list::before {
  position: absolute;
  display: block;
  content: "ー";
  top: 12px;
  transform: translateY(-50%);
  left: 0;
  color: #1767cf;
  margin-right: 8px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-recruit-box__list::before {
    top: 10px;
  }
}

.p-recruit-box__image {
  width: 30.487804878%;
}
@media screen and (max-width: 768px) {
  .p-recruit-box__image {
    width: 80%;
    margin-inline: auto;
  }
}

.p-recruit-box__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-recruit-detail {
  margin-top: clamp(80px, 20.5128205128vw, 120px);
}
@media screen and (max-width: 768px) {
  .p-recruit-detail .p-section-title--en {
    font-size: 27px;
  }
}
@media screen and (max-width: 389px) {
  .p-recruit-detail .p-section-title--en {
    font-size: 23px;
  }
}

.p-recruit-detail__content {
  display: flex;
  align-items: stretch;
  gap: 24px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-recruit-detail__content {
    flex-direction: column;
    gap: 30px;
  }
}

.p-recruit-detail__header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-recruit-detail__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.p-recruit-detail__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-inline: 20px;
  padding-block: 40px;
  border: 1px solid #ddd;
  background: #fff;
  min-height: 154px;
}
@media screen and (max-width: 768px) {
  .p-recruit-detail__card {
    padding-inline: 18px;
    padding-block: 30px;
  }
}

.p-recruit-detail__lists {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.p-recruit-detail__list {
  padding-left: 22px;
  position: relative;
  z-index: 0;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .p-recruit-detail__list {
    font-size: 14px;
  }
}

.p-recruit-detail__list-designer {
  padding-left: 0;
}

.p-recruit-detail__list-designer::before {
  display: none;
}

.p-recruit-detail__list::before {
  position: absolute;
  display: block;
  content: "ー";
  top: 0;
  left: 0;
  color: #1767cf;
  margin-right: 8px;
  z-index: 1;
}

.p-efforts__lead {
  text-align: center;
  font-size: clamp(22px, 5.641025641vw, 28px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 768px) {
  .p-efforts__lead {
    text-align: left;
    letter-spacing: 1.1px;
  }
}

.p-efforts__content.flex {
  margin-top: clamp(40px, 10.2564102564vw, 56px);
  justify-content: space-between;
  gap: 3.8834951456%;
}
@media screen and (max-width: 768px) {
  .p-efforts__content.flex {
    gap: 40px;
  }
}

.p-efforts__description {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4.1025641026vw, 24px);
  width: 52.2330097087%;
}
@media screen and (max-width: 768px) {
  .p-efforts__description {
    width: 100%;
  }
}

.p-efforts__image {
  width: 43.8834951456%;
}
@media screen and (max-width: 768px) {
  .p-efforts__image {
    width: 100%;
  }
}

.p-efforts__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-efforts-link {
  max-width: 980px;
  margin-inline: auto;
}

.p-efforts-link__boxes.flex {
  margin-top: clamp(80px, 20.5128205128vw, 120px);
  gap: 40px;
  justify-content: space-between;
}

.p-efforts-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 40px 78px;
  border: 1px solid #ddd;
  max-width: 470px;
  transition: all 0.5s ease;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-efforts-box {
    width: 100%;
    padding: 30px 58px;
    height: 173px;
  }
}

.p-efforts-box:hover {
  background-color: #1767cf;
}
.p-efforts-box:hover .p-efforts-box__text-en,
.p-efforts-box:hover .p-efforts-box__text-ja {
  color: #fff;
}

.p-efforts-box__icon {
  text-align: center;
}

.p-efforts-box__icon img {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .p-efforts-box__icon img {
    width: 60px;
    height: 60px;
  }
}

.p-efforts-box__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-efforts-box__text-en {
  color: #1767cf;
  font-family: "Krona One", sans-serif;
  font-size: clamp(24px, 6.1538461538vw, 32px);
  line-height: 1;
  white-space: nowrap;
}

.p-efforts-box__text-ja {
  color: #1767cf;
  font-size: clamp(12px, 3.0769230769vw, 14px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 768px) {
  .p-efforts-box__text-ja {
    letter-spacing: 0.6px;
  }
}

.p-company__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  min-height: 100vh;
  position: relative;
}

.p-company__nav {
  width: 9.0277777778vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  height: -moz-fit-content;
  height: fit-content;
  max-height: calc(100vh - 120px);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-company__nav {
    display: none;
  }
}

.p-company__content {
  width: 60.4166666667vw;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-company__content {
    width: 100%;
  }
}

.p-company__nav-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-company__nav-title-en {
  color: #1767cf;
  font-family: "Krona One", sans-serif;
  font-size: 12px;
  letter-spacing: 0.6px;
}

.p-company__nav-title-ja {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
}

.p-company__nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.5s ease;
}

.p-company__nav-item {
  font-family: "Krona One", sans-serif;
  font-size: 14px;
}

.p-company__nav-link {
  font-family: "Krona One", sans-serif;
  font-size: 14px;
  line-height: 1;
  padding-left: 16px;
  position: relative;
  transition: color 0.3s;
}

.p-company__nav-link.hover {
  color: #1767cf;
}

.p-company__nav-link.active {
  color: #1767cf;
}

.p-company__nav-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #1767cf; /* ブルーの縦線 */
}

.p-company__section {
  padding-block: clamp(40px, 10.2564102564vw, 80px);
  border-bottom: 1px solid #ddd;
}

.p-company__section:first-child {
  padding-top: 0;
}

.p-company__section-subtitle-en {
  margin-bottom: 16px;
  font-family: "Krona One", sans-serif;
  font-size: clamp(24px, 6.1538461538vw, 32px);
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .p-company__message-header .p-company__message-title {
    font-size: 21px;
  }
}
.p-company__message-header .p-company__message-subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-company__message-header .p-company__message-subtitle {
    font-size: 12px;
  }
}
.p-company__message-header .p-company__section-subtitle-en {
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .p-company__message-header .p-company__section-subtitle-en {
    margin-bottom: 8px;
  }
}

.p-company__section-subtitle-ja {
  margin-bottom: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 5.1282051282vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
}

.p-company__message-wrapper {
  margin-top: 32px;
}

.p-company__tagline-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.p-company__section-text {
  letter-spacing: 0.12em;
}

.p-company__section-text + .p-company__section-text {
  margin-top: clamp(24px, 6.1538461538vw, 32px);
}

.p-company__mission-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .p-company__mission-list {
    gap: 22px;
  }
}

.p-company__mission-item {
  position: relative;
  z-index: 0;
}

.p-company__mission-item::before {
  display: block;
  position: absolute;
  content: "";
  top: 0.7em;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../images/common/shape-diamond-black.svg) no-repeat center center/contain;
  z-index: 1;
}

.p-company__mission-text {
  display: block;
  padding-left: 20px;
  font-size: clamp(16px, 4.1025641026vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  .p-company__mission-text {
    line-height: 1.2;
  }
}

.p-company__value-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-company__value-item {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .p-company__value-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

.p-company__value-item::before {
  display: block;
  position: absolute;
  content: "";
  top: 0.7em;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../images/common/shape-diamond-blue.svg) no-repeat center center/contain;
  z-index: 1;
}

.p-company__value-title {
  display: block;
  color: #1767cf;
  font-family: "Krona One", sans-serif;
  font-size: 18px;
  letter-spacing: 0.9px;
  font-weight: 400;
  line-height: 1;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-company__value-title {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}

.p-company__value-text {
  display: flex;
  flex-direction: row;
}

.p-company__value-text-ja {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  .p-company__value-text-ja {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.8px;
  }
}

@media screen and (max-width: 768px) {
  .p-company__value-text-ja:first-child {
    display: block;
    width: 52px;
    flex-shrink: 0;
  }
}

.p-company__message-text {
  line-height: 1.8;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .p-company__message-text {
    letter-spacing: 0.75px;
  }
}

.p-company__message-text + .p-company__message-text {
  margin-top: 27px;
}

.p-company__message-footer {
  margin-top: 50px;
}

.p-company__message-footer-title {
  background: linear-gradient(90deg, #00a0e9 0%, #1767cf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Krona One", sans-serif;
  font-size: clamp(24px, 6.1538461538vw, 32px);
  line-height: 1.4;
}

.p-company__message-footer-text {
  display: block;
  margin-top: clamp(16px, 4.1025641026vw, 24px);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  .p-company__message-footer-text {
    letter-spacing: 0.8px;
  }
}

.p-company__section--company {
  padding-top: 120px;
  padding-bottom: 0;
  border-bottom: none;
}
.p-company__section--company .p-section-title {
  margin-bottom: 64px;
}

.p-company__info-item {
  display: flex;
  align-items: flex-start;
  padding-block: 20px;
  border-bottom: 1px solid #ddd;
  gap: 40px;
}
.p-company__info-item dt {
  width: 180px;
}
@media screen and (max-width: 1024px) {
  .p-company__info-item dt {
    width: 14%;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-company__info-item {
    gap: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .p-partners__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.p-partners__title .p-page-title--en {
  font-size: 64px;
}
@media screen and (max-width: 1320px) {
  .p-partners__title .p-page-title--en {
    font-size: clamp(34px, 8.7179487179vw, 56px);
  }
}
@media screen and (max-width: 1024px) {
  .p-partners__title .p-page-title--en {
    line-height: 1.4;
  }
}

.p-partners-borders__title {
  color: #1767cf;
  font-family: "Krona One", sans-serif;
  font-size: clamp(27px, 6.9230769231vw, 40px);
  line-height: 1.4;
  text-align: center;
}

.p-partners-borders__lead-ja {
  margin-top: clamp(40px, 10.2564102564vw, 42px);
  font-size: clamp(20px, 5.1282051282vw, 24px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.2px;
  text-align: center;
}

.p-partners-borders__lead-en {
  margin-top: 24px;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: clamp(22px, 5.641025641vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.4px;
}

.p-partners-borders__text-wrapper {
  margin-top: 16px;
  display: flex;
  max-width: 820px;
  width: 100%;
  margin-inline: auto;
  gap: 24px;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .p-partners-borders__text-wrapper {
    margin-top: 42px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.p-partners-borders__text {
  padding-top: 42px;
  font-size: clamp(16px, 4.1025641026vw, 18px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.9px;
  width: 64.6341463415%;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .p-partners-borders__text {
    padding-top: 0;
    width: 100%;
  }
}

.p-partners-borders__image {
  width: 248px;
}
@media screen and (max-width: 1024px) {
  .p-partners-borders__image {
    width: 53.1428571429%;
  }
}

.p-partners-borders__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-partners-significance {
  margin-top: clamp(80px, 20.5128205128vw, 90px);
}

.p-partners-significance__content {
  padding-block: 80px;
  background-color: #eefaff;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-partners-significance__content {
    padding-inline: 20px;
  }
}

.p-partners-significance__image-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 105px;
  width: 80px;
  height: 244px;
}
@media screen and (max-width: 1024px) {
  .p-partners-significance__image-left {
    display: none;
  }
}

.p-partners-significance__image-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  width: 215px;
  height: 178px;
}
@media screen and (max-width: 1024px) {
  .p-partners-significance__image-right {
    display: none;
  }
}

.p-partners-significance__image-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-partners-significance__image-sp {
    margin-top: 32px;
    display: block;
    width: 80%;
    margin-inline: auto;
  }
}

.p-partners-significance__image-sp img {
  width: 100%;
  height: auto;
  display: block;
}

.p-partners-significance__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.p-partners-significance__text {
  text-align: center;
  font-size: clamp(16px, 4.1025641026vw, 18px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 1024px) {
  .p-partners-significance__text {
    letter-spacing: 0.8px;
  }
}

.p-partners-logos {
  margin-top: clamp(80px, 20.5128205128vw, 120px);
}

.p-partners-logos__title {
  text-align: center;
}
.p-partners-logos__title .p-section-title--en {
  display: block;
  margin-inline: auto;
}

.p-partners-logos__wrapper {
  margin-top: clamp(40px, 10.2564102564vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5.1282051282vw, 49px);
}
@media screen and (max-width: 1024px) {
  .p-partners-logos__wrapper {
    row-gap: 32px;
  }
}

.p-partners-logos__image {
  width: 112px;
}
@media screen and (max-width: 1024px) {
  .p-partners-logos__image {
    width: 72px;
  }
}

.p-partners-logos__image img {
  width: 100%;
  height: auto;
}

.p-partners-application {
  margin-top: clamp(80px, 20.5128205128vw, 120px);
  border: 1px solid #ddd;
  background: #fff;
  padding-block: clamp(40px, 10.2564102564vw, 64px);
  margin-bottom: clamp(80px, 20.5128205128vw, 120px);
}

.p-partners-application__content {
  padding-inline: 9%;
  width: 100%;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .p-partners-application__content {
    padding-inline: 16px;
    gap: 40px;
  }
}

.p-partners-application__description {
  width: 69.2496924969%;
}
@media screen and (max-width: 1024px) {
  .p-partners-application__description {
    width: 100%;
  }
}

.p-partners-application__title {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1320px) {
  .p-partners-application__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.p-partners-application__title-en {
  color: #1767cf;
  font-family: "Krona One", sans-serif;
  font-size: clamp(22px, 5.641025641vw, 28px);
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .p-partners-application__title-en {
    letter-spacing: -0.01em;
  }
}

.p-partners-application__title-ja {
  color: #1767cf;
  font-size: clamp(18px, 4.6153846154vw, 21px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.05px;
}

.p-partners-application__text {
  margin-top: clamp(24px, 6.1538461538vw, 44px);
  font-size: clamp(16px, 4.1025641026vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 1024px) {
  .p-partners-application__text {
    letter-spacing: 0.8px;
  }
}

.p-partners-application__note {
  margin-top: 12px;
  font-size: clamp(12px, 3.0769230769vw, 14px);
  letter-spacing: 0.7px;
}
@media screen and (max-width: 1024px) {
  .p-partners-application__note {
    letter-spacing: 0.6px;
  }
}

.p-partners-application__image {
  width: 30.7503075031%;
}
@media screen and (max-width: 1024px) {
  .p-partners-application__image {
    width: 250px;
    margin-inline: auto;
  }
}

.p-partners-application__image img {
  width: 100%;
  height: auto;
}

.p-news__lists {
  margin-top: clamp(56px, 14.358974359vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-news__lists {
    grid-template-columns: 1fr;
  }
}

.p-news__list {
  flex: 1;
}

.p-news-link__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-news-link__description {
  margin-top: clamp(24px, 6.1538461538vw, 32px);
}

.p-news-link__meta {
  display: flex;
  gap: 12px;
}

.p-news-link__cat {
  color: #1767cf;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1.2px;
  position: relative;
}

.p-news-link__cat::after {
  position: absolute;
  content: "";
  top: 0;
  right: -12px;
  width: 1px;
  height: 100%;
  background-color: #cacaca;
  z-index: 1;
}

.p-news-link__date {
  padding-left: 12px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1.04px;
}

.p-news-link__title {
  margin-top: 16px;
  font-weight: 500;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
}

.page-numbers.current {
  background: #1767cf;
  color: #fff;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .page-numbers.current {
    width: 40px;
    height: 40px;
  }
}

.archive-list-pagination__list {
  color: #1767cf;
}

.archive-list-pagination {
  margin-top: 58px;
}
@media screen and (max-width: 768px) {
  .archive-list-pagination {
    margin-top: 32px;
  }
}

.archive-list-pagination__lists {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.archive-list-pagination__list {
  color: #1767cf;
  font-size: 16px;
  font-weight: 500;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #1767cf;
}
@media screen and (max-width: 768px) {
  .archive-list-pagination__list {
    width: 40px;
    height: 40px;
  }
}

.archive-list-pagination__image {
  border: none;
  height: 44px;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .archive-list-pagination__image {
    width: 40px;
    height: 40px;
  }
}
.archive-list-pagination__image a {
  border: none !important;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive-list-pagination__image svg {
  width: 12px;
  height: 24px;
  display: block;
}

.current {
  color: #fff;
  background: #1767cf;
}

.p-news-detail {
  margin-top: clamp(80px, 20.5128205128vw, 120px);
}

.p-news-detail__content {
  max-width: 820px;
  width: 100%;
  margin-inline: auto;
}

.p-news-detail__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.p-news-detail__cat {
  color: #1767cf;
  font-size: clamp(14px, 3.5897435897vw, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.28px;
}

.p-news-detail__date {
  font-size: clamp(12px, 3.0769230769vw, 14px);
  line-height: 1;
  letter-spacing: 1.12px;
}
@media screen and (max-width: 768px) {
  .p-news-detail__date {
    letter-spacing: 0.96px;
  }
}

.single-post__title {
  margin-top: clamp(24px, 6.1538461538vw, 40px);
  font-size: clamp(24px, 6.1538461538vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 768px) {
  .single-post__title {
    letter-spacing: 1.2px;
  }
}

.p-news-detail__image {
  margin-top: clamp(16px, 4.1025641026vw, 24px);
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 820/460;
}
@media screen and (max-width: 768px) {
  .p-news-detail__image {
    aspect-ratio: 350/197;
  }
}

.p-news-detail__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.single-post-button__wrapper {
  margin-top: clamp(40px, 10.2564102564vw, 80px);
}

.single-post-button {
  margin-inline: auto;
}

.content-single {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
.content-single h2 {
  font-size: clamp(24px, 6.1538461538vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.6px;
  margin-top: 40px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .content-single h2 {
    margin-top: 24px;
    letter-spacing: 1.2px;
  }
}
.content-single h3 {
  font-size: clamp(22px, 5.641025641vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1.4px;
  position: relative;
  z-index: 0;
  padding-left: 16px;
}
@media screen and (max-width: 768px) {
  .content-single h3 {
    letter-spacing: 1.1px;
    padding-left: 12px;
  }
}
.content-single h3::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 4px;
  height: 1em;
  background: #1767cf;
  border-radius: 4px;
}
.content-single h4 {
  font-size: clamp(20px, 5.1282051282vw, 24px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.2px;
  -webkit-text-decoration: underline solid #dadbdb 1px;
          text-decoration: underline solid #dadbdb 1px;
  text-underline-offset: 12px;
}
@media screen and (max-width: 768px) {
  .content-single h4 {
    letter-spacing: 1px;
  }
}
.content-single h5 {
  font-size: clamp(18px, 4.6153846154vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .content-single h5 {
    letter-spacing: 0.9px;
  }
}
.content-single p {
  font-size: clamp(15px, 3.8461538462vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .content-single p {
    letter-spacing: 0.75px;
  }
}
.content-single p:last-child {
  margin-bottom: 0;
}
.content-single strong {
  font-weight: 700;
}
.content-single .u-line {
  -webkit-text-decoration: underline solid #cbefff 5px;
          text-decoration: underline solid #cbefff 5px;
  text-underline-offset: 4px;
}
.content-single blockquote {
  margin-bottom: 24px;
}
.content-single blockquote p {
  margin-bottom: 0;
}
.content-single blockquote {
  font-size: clamp(14px, 3.5897435897vw, 15px);
  font-weight: 400;
  line-height: 1.8;
  padding-left: 24px;
  border-left: 1px solid #1767cf;
}
.content-single a {
  font-size: clamp(15px, 3.8461538462vw, 16px);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all 0.5s ease;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.8px;
}
.content-single a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .content-single a {
    letter-spacing: 0.75px;
  }
}
.content-single img {
  display: block;
  max-width: 100%;
  height: auto;
}
.content-single h3,
.content-single h4,
.content-single h5 {
  margin-top: 40px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .content-single h3,
  .content-single h4,
  .content-single h5 {
    margin-top: 24px;
  }
}
.content-single p + h3,
.content-single p + h4,
.content-single p + h5,
.content-single img + h3,
.content-single img + h4,
.content-single img + h5 {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .content-single p + h3,
  .content-single p + h4,
  .content-single p + h5,
  .content-single img + h3,
  .content-single img + h4,
  .content-single img + h5 {
    margin-top: 8px;
  }
}
.content-single p {
  margin: 0 0 16px 0;
}
.content-single img {
  margin: 16px 0;
}

.p-policy .text-l {
  line-height: 1.8;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .p-policy .text-l {
    letter-spacing: 0.75px;
  }
}

.p-policy__sections {
  margin-top: clamp(32px, 8.2051282051vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-policy__title__ja {
  font-size: clamp(20px, 5.1282051282vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
  position: relative;
  z-index: 0;
  padding-left: 16px;
  margin-bottom: clamp(20px, 5.1282051282vw, 24px);
}
@media screen and (max-width: 768px) {
  .p-policy__title__ja {
    line-height: 1.4;
    padding-left: 12px;
  }
}

.p-policy__title__ja::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 3px;
  height: 1.1em;
  background: #1767cf;
}

.lists-number {
  margin-top: 8px;
  margin-top: 4px;
  padding-left: 0;
  counter-reset: number; /* カウンター初期化 */
}

.lists-number li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  counter-increment: number; /* カウンター進める */
}

.lists-number li::before {
  content: counter(number) ".";
  position: absolute;
  left: 0;
}

.lists-number-paren {
  margin-top: 8px;
  list-style: none;
  padding-left: 12px;
  counter-reset: number;
}
@media screen and (max-width: 768px) {
  .lists-number-paren {
    margin-top: 14px;
    padding-left: 8px;
  }
}

.lists-number-paren li {
  position: relative;
  padding-left: 28px;
  counter-increment: number;
}

.lists-number-paren li::before {
  content: "(" counter(number) ")";
  position: absolute;
  left: 0;
}

.p-policy__mt {
  margin-top: 16px;
}

.p-policy-date {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-policy-date {
    margin-top: 24px;
  }
}

.p-policy__subtitle {
  margin-top: 16px;
  font-weight: 400;
}

.contact-form {
  max-width: 820px;
  width: 100%;
  margin-inline: auto;
}

.base-form__lead {
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .base-form__lead {
    text-align: left;
  }
}

.base-form__items {
  margin-top: 28px;
}

.base-form__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.base-form__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.required {
  font-size: 10px;
  color: #fff;
  background: #1767cf;
  border-radius: 4px;
  padding: 1px 8px;
  font-weight: 500;
  text-align: center;
  flex-shrink: 0;
}

.base-form__item input[type=text],
.base-form__item input[type=email],
.base-form__item input[type=tel],
.base-form__item textarea {
  margin-top: 4px;
  width: 100%;
  padding: 8px 24px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  box-sizing: border-box; /* パディング込みで100% */
  display: block; /* Safariなどでのズレ防止 */
}
@media screen and (max-width: 768px) {
  .base-form__item input[type=text],
  .base-form__item input[type=email],
  .base-form__item input[type=tel],
  .base-form__item textarea {
    padding: 5px 10px;
  }
}

.base-form__item textarea {
  height: 240px;
}

.base-form__item input[type=text]::-moz-placeholder, .base-form__item input[type=email]::-moz-placeholder, .base-form__item input[type=tel]::-moz-placeholder, .base-form__item textarea::-moz-placeholder {
  font-size: cal-clamp(13, 16);
  color: #ddd;
  font-weight: 500;
}

.base-form__item input[type=text]::placeholder,
.base-form__item input[type=email]::placeholder,
.base-form__item input[type=tel]::placeholder,
.base-form__item textarea::placeholder {
  font-size: cal-clamp(13, 16);
  color: #ddd;
  font-weight: 500;
}

.base-form__privacy {
  margin-top: 24px;
}

.base-form__checkbox input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.base-form__checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.base-form__checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.base-form__checkbox .base-form__checkbox-text {
  position: relative;
  padding-left: 28px;
  font-size: clamp(13px, 3.3333333333vw, 14px);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.7px;
}
.base-form__checkbox .base-form__checkbox-text::before {
  margin-top: 2px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fff;
}
.base-form__checkbox .base-form__checkbox-text::after {
  margin-top: 2px;
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background: url("../images/common/icon-check.svg") no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.2s;
}
.base-form__checkbox input[type=checkbox]:checked + .base-form__checkbox-text::after {
  opacity: 1;
}

.acceptance-button {
  font-size: clamp(12px, 3.0769230769vw, 14px);
  font-weight: 500;
  letter-spacing: 0.7px;
}

.acceptance-button__text {
  font-size: clamp(12px, 3.0769230769vw, 14px);
  font-weight: 500;
  letter-spacing: 0.7px;
}

.base-form__submit {
  margin-top: clamp(32px, 8.2051282051vw, 56px);
}

.base-form__submit button {
  max-width: 280px;
  width: 90%;
  height: 60px;
  aspect-ratio: 280/60;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background: #1767cf;
  border: 1px solid #1767cf;
  display: grid;
  place-items: center;
  margin-inline: auto;
  transition: all 0.5s ease;
  position: relative;
}
.base-form__submit button:hover {
  color: #1767cf;
  background: #fff;
}
.base-form__submit button:hover .button-main__button-arrow {
  color: #1767cf;
}
.base-form__submit button .button-main__button-arrow {
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: #1767cf;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 2px;
  display: grid;
  place-items: center;
}
.base-form__submit button .button-main__button-arrow svg {
  width: 8px;
  height: 10px;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-acceptance input[type=checkbox] {
  display: none; /* 完全に非表示 */
}

.wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
  background: #fff;
}

.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: url("../images/common/icon-check.svg");
  display: inline-block;
  width: 12px;
  height: 8px;
  position: absolute;
  top: 3px; /* 調整 */
  left: 2px; /* 調整 */
}

.wpcf7-list-item {
  margin: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha {
  text-align: center;
  font-size: 12px;
  margin-top: 40px !important;
}
@media screen and (max-width: 768px) {
  .recaptcha {
    margin-top: 24px !important;
  }
}
.recaptcha a {
  text-decoration: underline;
}

.p-contact-thanks {
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .p-contact-thanks {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
}

.p-contact-thanks p {
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-contact-thanks p {
    padding-top: 40px;
    font-size: 16px;
  }
}

.thankspage-button__wrapper {
  margin-top: 40px;
  margin-inline: 0 auto;
}
@media screen and (max-width: 1024px) {
  .thankspage-button__wrapper {
    margin-inline: auto;
  }
}

.p-thanks__button {
  margin-inline: auto;
}

/*************************************************
header
*************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 70px;
  }
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.header.is-open {
  background-color: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 12px 64px 12px 32px;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    height: 70px;
    padding-inline: 5% 2%;
    width: 100%;
    margin-inline: auto;
  }
}

.header-logo {
  position: relative;
  z-index: 51;
}

.header-logo img {
  width: 135px;
  height: auto;
  aspect-ratio: 174/33;
  flex-shrink: 0;
}

.header-logo--drawer {
  display: none;
}

.header-logo a {
  transition: all 0.5s ease;
}
.header-logo a:hover {
  opacity: 0.7;
}

.header-nav__lists {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 1320px) {
  .header-nav__lists {
    gap: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav__lists {
    flex-direction: column;
  }
}

.header-nav__list {
  text-align: center;
  position: relative;
  z-index: 0;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1024px) {
  .header-nav__list {
    text-align: left;
    border-bottom: 1px solid #ddd;
    width: 100%;
  }
}

.header-nav__list.has-submenu > .header-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75em 1em;
}

.header-nav__list:hover {
  opacity: 0.7;
}
.header-nav__list:hover .header-subnav {
  display: block;
}
@media screen and (max-width: 1024px) {
  .header-nav__list:hover .header-subnav {
    display: none;
  }
}

.header-nav__list.is-open .header-subnav {
  display: block;
}

.header-nav__list:last-child {
  border-bottom: none;
}

.header-nav__item {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .header-nav__item {
    justify-content: space-between;
  }
}

.header-nav__list:hover .header-nav__toggle .line-vertical {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.header-nav__toggle {
  color: #1767cf;
  padding-bottom: 3px;
}
@media screen and (max-width: 1024px) {
  .header-nav__toggle {
    display: none;
  }
}

.header-nav__link,
.header-subnav__text,
.header-nav__link-ja {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.7px;
  min-height: 2em;
  transition: all 0.5s ease;
  display: grid;
  place-content: center;
}

.header-nav__link-ja {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .header-nav__link-ja {
    font-size: 16px;
  }
}

.header-nav__link--contact {
  width: 180px;
  height: 48px;
  padding-inline: 16px;
  display: grid;
  place-items: center;
  background-color: #1767cf;
  border: 1px solid #1767cf;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.75px;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header-nav__link--contact {
    width: 280px;
    height: 60px;
    font-size: 14px;
  }
}

.header-nav__list--contact:hover {
  opacity: 1;
}

.header-nav__link--contact:hover {
  background-color: #fff;
  color: #1767cf;
  opacity: 1;
}
.header-nav__link--contact:hover .header-nav__link-ja {
  color: #1767cf;
}
.header-nav__link--contact:hover .header-nav__button-arrow {
  color: #1767cf;
}
.header-nav__link--contact:hover .header-nav__button-arrow svg {
  color: #1767cf;
}

.header-nav__button-arrow {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-nav__button-arrow {
    display: block;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: #fff;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 2px;
    display: grid;
    place-items: center;
  }
}

.header-nav__button-arrow svg {
  color: #1767cf;
  width: 10px;
  height: 19px;
}

.header-subnav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .header-subnav {
    margin-top: 0;
    padding: 0 0 20px 0;
    width: 100%;
  }
}

.header-subnav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  .header-subnav__link {
    gap: 2px;
  }
}

.header-subnav__link:hover .header-subnav__text {
  opacity: 0.7;
}

.header-subnav__text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #333333;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .header-subnav__text {
    font-size: 13px;
    letter-spacing: 0.6px;
  }
}

.header-subnav__icon {
  width: 10px;
  height: 10px;
}

.header-subnav__icon svg {
  display: block;
  width: 8px;
  height: 100%;
  color: #1767cf;
}

/*********************
drawer
*********************/
/* PC表示 */
.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .header-nav {
    display: none;
  }
}

/* SP表示（ドロワー開いたら表示） */
.header-nav.is-open {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  padding-top: 120px;
  background: #fff url(../images/top/mv-bg-sp.svg) no-repeat top left/cover;
}
.header-nav.is-open .header-subnav {
  display: block;
  position: inherit;
}

.header-nav.is-open .header-nav__lists {
  display: block;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 90%;
  margin-inline: auto;
}
.header-nav.is-open .header-nav__lists .header-nav__link {
  display: block;
  padding-block: 25px;
}
.header-nav.is-open .header-nav__lists .header-nav__list--contact {
  margin-top: 32px;
}
.header-nav.is-open .header-nav__lists .header-nav__link--contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__open {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__open {
    display: block;
  }
}

.drawer-icon__wrapper {
  display: none;
}
@media screen and (max-width: 1024px) {
  .drawer-icon__wrapper {
    background: transparent;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: none;
    cursor: pointer;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
  }
  .drawer-icon__wrapper.is-checked .drawer-icon {
    width: 22px;
    height: 20px;
  }
  .drawer-icon__wrapper.is-checked .drawer-icon__bar {
    background-color: #1767cf;
  }
  .drawer-icon__wrapper.is-checked .drawer-icon__bar:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg);
  }
  .drawer-icon__wrapper.is-checked .drawer-icon__bar:nth-of-type(2) {
    display: none;
  }
  .drawer-icon__wrapper.is-checked .drawer-icon__bar:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg);
  }
}

.drawer-icon {
  width: 28px;
  height: 16px;
  position: relative;
  z-index: 51;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #1767cf;
  transition: transform 0.3s linear, top 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 8px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 16px;
}

/*************************************************
footer
*************************************************/
.footer {
  padding-top: 80px;
  padding-bottom: clamp(24px, 6.1538461538vw, 32px);
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-top: 88px;
  }
}

.footer__inner {
  max-width: 1280px;
}

@media screen and (max-width: 1024px) {
  .footer__inner:last-child {
    width: 100%;
    margin-top: 32px;
    border-top: 1px solid #dadbdb;
  }
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 10.2564102564vw, 80px);
  padding-bottom: 72px;
}

.footer-content__head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .footer-content__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.footer-logo img {
  width: 135px;
}

.footer-nav__lists {
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 7.6923076923vw, 40px);
}
@media screen and (max-width: 1320px) {
  .footer-nav__lists {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-nav__lists {
    flex-direction: column;
    margin-top: 40px;
    align-items: flex-start;
    gap: 30px;
  }
}

.footer-nav__list:first-child {
  margin-right: -12px;
}
@media screen and (max-width: 768px) {
  .footer-nav__list:first-child {
    margin-right: 0;
  }
}

.footer-nav__link {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.7px;
  transition: all 0.5s ease;
}
.footer-nav__link:hover {
  opacity: 0.7;
}

.footer-content__bottom.flex {
  padding-top: 24px;
  justify-content: space-between;
  border-top: 1px solid #dadbdb;
}
@media screen and (max-width: 1024px) {
  .footer-content__bottom.flex {
    margin-top: 0;
    align-items: flex-start;
    border-top: none;
    margin-inline: auto;
    width: 90%;
  }
}

.footer-subnav {
  margin-top: clamp(16px, 4.1025641026vw, 24px);
}

.footer-subnav__lists.flex {
  gap: clamp(32px, 8.2051282051vw, 40px);
}
@media screen and (max-width: 1024px) {
  .footer-subnav__lists.flex {
    align-items: flex-start;
  }
}

.footer-subnav__link {
  font-size: 14px;
  letter-spacing: 0.7px;
  transition: all 0.5s ease;
}
.footer-subnav__link:hover {
  opacity: 0.7;
}
.footer-subnav__link:hover .footer-subnav__link-image svg {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .footer-subnav__link {
    font-size: 12px;
    letter-spacing: 0.6px;
  }
}

.footer-subnav__text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.footer-subnav__link-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-subnav__link-text {
  font-size: 14px;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 1024px) {
  .footer-subnav__link-text {
    font-size: 12px;
    letter-spacing: 0.6px;
  }
}

.footer-subnav__link-image svg {
  display: block;
  width: 16px;
  height: 12px;
  color: #1767cf;
}

.footer__copyright {
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  .footer__copyright {
    margin-top: 24px;
  }
}

.footer__copyright {
  font-size: 12px;
  letter-spacing: 0.5px;
}/*# sourceMappingURL=style.css.map */