@charset "utf-8";

/**
 * @file
 * メインCSSファイル
 */

/* global */
* {
  scroll-margin-top: var(--size-80);
}

@media (max-width: 768px) {
  * {
    scroll-margin-top: var(--size-40);
  }
}

html {
  position: relative;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}
.is-overflow-hidden {
  overflow: hidden;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}
body:not(.home) {
  margin-top: var(--size-80);
}
img {
  height: auto;
}
input[type="checkbox"] {
  appearance: checkbox;
  -webkit-appearance: checkbox;
}
select {
  appearance: auto;
  -webkit-appearance: auto;
}

/* ページネーション */
.page-numbers {
  display: flex;
  gap: 1em;
  justify-content: center;
  align-items: center;
  font-size: var(--size-15);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--blue);
}
.page-numbers li {
  display: flex;
  gap: 1em;
}
.page-numbers li:not(:last-child):after {
  content: "|";
  display: inline-block;
  color: var(--blue);
}
.page-numbers.current {
  color: #8D8D8D;
}
.page-numbers {
  color: var(--blue);
  transition: opacity 0.3s ease;
}
a.page-numbers:hover {
  opacity: 0.5;
}

/* fade-in */
.js-fade-in {
  opacity: 0;
  visibility: hidden;
  transition: opacity 3s cubic-bezier(0.22,1,0.36,1), transform 3s cubic-bezier(0.22,1,0.36,1), visibility 3s cubic-bezier(0.22,1,0.36,1), filter 3s cubic-bezier(0.22,1,0.36,1);
  transform: translateY(100px);
  filter: blur(2px);
}
.js-fade-in.is-active {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
  filter: blur(0px);
}

/* component */

.c-h1 {
  font-size: var(--size-18);
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.03em;
}
.c-h2 {
  font-size: var(--size-16);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.c-h3 {
  font-size: var(--size-24);
  font-weight: 700;
  line-height: 1.5;
}
.c-h4 {
  font-size: var(--size-18);
  font-weight: 700;
  line-height: 1.8;
}
.c-h5 {
  font-size: var(--size-13);
  line-height: 1.8;
}
.c-read {
  font-size: var(--size-18);
  font-weight: 500;
  line-height: 1.8;
}
.c-text {
  font-size: var(--size-14);
  line-height: 2;
}
.c-date {
  font-size: var(--size-14);
  font-weight: 700;
  letter-spacing: 0.03em;;
}

.c-skip-link {
  position: absolute;
  top: -120px;
  left: 0;
  background: #FFF;
  color: #000;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s ease-in-out;
}
.c-skip-link:focus {
  top: 10px;
  z-index: 302;
}
.c-bold {
  font-weight: 700;
}
.c-medium {
  font-weight: 500;
}
.c-only-pc {
  display: block;
}
.c-only-sp {
  display: none;
}
.c-font-roboto {
  font-family: "roboto", sans-serif;
}
.c-bg-gray {
  background-color: #F5F5F5;
}
.c-bg-blue {
  background-color: #CCD6E4;
}

@media (max-width: 768px) {
  .c-only-pc {
    display: none;
  }
  .c-only-sp {
    display: block;
  }
}

.c-inner {
  padding: 0 var(--size-100);
}
.c-recruit-inner {
  padding: 0 var(--size-50);
}
.c-recruit-inner-narrow {
  max-width: var(--size-1440);
  margin: 0 auto;
  width: 100%;
}
.c-inner-left {
  margin-left: max(0px, calc((100vw - var(--size-1280)) / 2 - var(--size-80)));
  padding-left: var(--size-80);
  max-width: 100%;
}
.c-inner-right {
  margin-right: max(0px, calc((100vw - var(--size-1280)) / 2 - var(--size-80)));
  padding-right: var(--size-80);
  max-width: 100%;
}
.c-inner-narrow {
  max-width: var(--size-1520);
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1240px) {
  .c-inner-left {
    padding-left: var(--size-80);
  }
  .c-inner-right {
    padding-right: var(--size-80);
  }
}

@media (max-width: 1080px) {
  .c-inner {
    padding: 0 var(--size-20);
  }
}

@media (max-width: 768px) {
  .c-inner-left {
    margin-left: 0;
    padding-left: var(--size-32);
  }
  .c-inner-right {
    margin-right: 0;
    padding-right: var(--size-32);
  }
}

.c-button {
  display: block;
  width: 100%;
  min-width: var(--size-200);
  height: auto;
  padding: var(--size-12) var(--size-42);
  border-radius: 100vmax;
  background: #FFBA08;
  font-size: clamp(0.75rem, 0.659rem + 0.39vw, 1.125rem);
  font-weight: 500;
  text-align: center;
  transition: opacity 0.3s ease;
}
.c-button:hover {
  opacity: 0.5;
}
.c-button.u-footer {
  color: #000;
  font-size: var(--size-15);
  font-weight: 500;
  width: fit-content;
  padding: var(--size-6) var(--size-40);
}
.c-button-view {
  display: inline-block;
  font-family: "roboto", sans-serif;
  font-size: var(--size-15);
  font-weight: 600;
  color: var(--blue);
  padding: var(--size-6) var(--size-48);
  border-radius: 100vmax;
  text-align: center;
  border: 1px solid var(--blue);
  line-height: 1;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  margin-left: auto;
}
.c-button-view:hover {
  background: var(--blue);
  color: #FFF;
}
.c-button-view.u-white {
  color: #fff;
  border-color: #fff;
}
.c-button-view.u-white:hover {
  background: #fff;
  color: var(--blue);
}
.l-cta .c-button-view:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.p-about__card .c-button-view:hover {
  background: #fff;
  color: var(--blue);
}
.c-cta-button {
  position: relative;
}
.c-cta-button:after {
  content: "";
  display: block;
  width: var(--size-20);
  height: var(--size-20);
  background: url(../img/common/icon-arrow-bl.svg) no-repeat center center / contain;
  position: absolute;
  top: 50%;
  right: var(--size-32);
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .c-button-view {
    font-size: var(--size-12);
    padding: var(--size-8) var(--size-18);
  }
}
.c-section-heading {
  color: var(--blue);
  margin-bottom: var(--size-40);
}
.c-section-heading__top {
  display: flex;
  align-items: flex-end;
  gap: var(--size-16);
  justify-content: space-between;
  border-bottom: 1px solid var(--blue);
  margin-bottom: var(--size-20);
  padding-bottom: var(--size-20);
  flex-wrap: wrap;
}
.c-section-subtitle {
  font-size: clamp(2rem, 1.575rem + 1.81vw, 3.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-right: auto;
}
.c-section-subtitle.u-text-right {
  margin-left: auto;
  margin-right: 0;
}
.c-section-title {
  font-size: clamp(0.813rem, 0.737rem + 0.32vw, 1.125rem);
  font-weight: 700;
  color: #000;
  letter-spacing: 0.03em;
}
.c-section-read {
  font-size: clamp(0.875rem, 0.814rem + 0.26vw, 1.125rem);
  line-height: 1.5;
  font-weight: 500;
  color: #000;
}
.c-pagination-wrapper {
  width: fit-content;
  margin-left: auto;
}
.c-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: fit-content;
  gap: var(--size-10);
  flex-wrap: wrap;
}
.swiper-pagination-bullet {
  margin: 0!important;
  border-radius: 0;
  background: #8D8D8D;
  width: var(--size-40);
  height: var(--size-3);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #FFBA08;
}

/* ページヘッダー */
.c-page-heading {
  z-index: 1;
  text-align: right;
  color: #fff;
  padding: var(--size-100) 0;
}
.c-page-heading__title-en {
  font-size: var(--size-60);
  font-weight: 700;
}
.c-page-heading__title {
  margin-top: var(--size-20);
  font-size: var(--size-18);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .c-page-heading {
    padding: var(--size-40) 0;
  }
  .c-page-heading__title-en {
    font-size: var(--size-28);
  }
  .c-page-heading__title {
    margin-top: var(--size-12);
    font-size: var(--size-12);
  }
}

/* サイドバー */
.c-has-sidebar {
  display: flex;
  gap: var(--size-50);
}
.c-sidebar {
  width: var(--size-466);
}
.c-main__content {
  flex: 1;
  width: 100%;
}
.c-sidebar__inner {
  padding: var(--size-40);
  background: #FFF;
}
.c-sidebar__title {
  padding-bottom: var(--size-16);
  margin-bottom: var(--size-32);
  border-bottom: 2px solid var(--blue);
}
.c-sidebar__head {
  display: flex;
  align-items: center;
  gap: var(--size-40);
  margin-bottom: var(--size-32);
}
.c-sidebar__link {
  display: block;
  padding: var(--size-40) 0;
  border-bottom: 1px solid var(--blue);
}
.c-sidebar__body-link {
  transition: opacity 0.3s ease;
}
.c-sidebar__body-link:hover {
  opacity: 0.5;
}
.c-sidebar__list,
.c-sidebar__category-list {
  margin-bottom: var(--size-72);
}
.c-sidebar__archive-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-16);
}
.c-sidebar__archive-item:after {
  content: "|";
  display: inline-block;
  margin: 0 0 0 var(--size-16);
  color: var(--blue);
}
.c-sidebar__archive-link,
.c-sidebar__category-link,
.p-news__detail-pagination-link {
  text-decoration: none!important;
  transition: opacity 0.3s ease;
}
.c-sidebar__archive-link:hover,
.c-sidebar__category-link:hover,
.p-news__detail-pagination-link:hover {
  opacity: 0.5;
}

@media (max-width: 1440px) {
  .c-sidebar {
    width: var(--size-320);
  }
}

@media (max-width: 1024px) {
  .c-has-sidebar {
    flex-direction: column-reverse;
  }
  .c-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .c-sidebar__title {
    padding-bottom: var(--size-12);
    margin-bottom: var(--size-24);
  }
  .c-sidebar__head {
    gap: var(--size-24);
    margin-bottom: var(--size-24);
  }
  .c-sidebar__link {
    padding: var(--size-24) 0;
  }
  .c-sidebar__list,
  .c-sidebar__category-list {
    margin-bottom: var(--size-40);
  }
  .c-sidebar__inner {
    padding: var(--size-32) var(--size-16);
  }
}

/* swiper */
.c-swiper-nav {
  position: relative;
  display: flex;
  gap: var(--size-16);
  align-items: center;
}
.c-swiper-button-prev,
.c-swiper-button-next {
  position: relative;
  width: var(--size-68);
  height: var(--size-68);
  margin: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.3s ease;
}
.c-swiper-button-prev:hover,
.c-swiper-button-next:hover {
  opacity: 0.5;
}
.c-swiper-button-prev:after,
.c-swiper-button-next:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  background: url(../img/common/icon-slider-arrow-right.webp) no-repeat center center / contain;
}
.c-swiper-button-prev:after {
  transform: rotate(180deg);
}

/* ヘッダー */
.l-header {
  position: fixed;
  height: var(--size-80);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;;
  transition: background 0.4s cubic-bezier(0.8,0,0.2,1), color 0.4s cubic-bezier(0.8,0,0.2,1);
}
.l-header.is-active {
  background: #FFF;
  color: #000;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 var(--size-72);
}
.l-header__logo {
  width: 100%;
  max-width: var(--size-240);
  height: auto;
}
.l-header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.l-header__nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  flex: 1;
  gap: clamp(0.5rem, -1.35rem + 3.62vw, 4rem);
}
.l-header__nav-item {
  list-style: none;
}
.l-header__nav-link {
  font-size: clamp(0.75rem, 0.659rem + 0.39vw, 1.125rem);
  font-weight: 500;
  color: #FFF;
  transition: color 0.4s cubic-bezier(0.8,0,0.2,1), opacity 0.4s cubic-bezier(0.8,0,0.2,1);
}
.l-header__nav-link:hover {
  opacity: 0.5;
}
.l-header.is-active .l-header__nav-link {
  color: #000;
}
.p-fixed-logo {
  display: none;
  width: clamp(11.25rem, 10.947rem + 1.29vw, 12.5rem);
}
.p-mv-logo {
  display: block;
  width: clamp(11.25rem, 10.947rem + 1.29vw, 12.5rem);
}
.l-header.is-active .p-mv-logo {
  display: none;
}
.l-header.is-active .p-fixed-logo {
  display: block;
}
.l-header__nav-sp {
  display: none;
  position: relative;
  z-index: 1000;
}
@media (max-width: 1080px) {
  .l-header {
    height: var(--size-70);
  }
  .l-header__inner {
    padding: var(--size-20);
  }
  .l-header__nav {
    display: none;
  }
  .l-header__nav-sp {
    display: block;
    color: #fff;
  }
  .js-hamburger {
    position: relative;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: var(--size-6);
    height: var(--size-20);
    width: var(--size-30);
    align-items: center;
    justify-content: center;
  }
  .l-header__nav-sp-button-line {
    position: absolute;
    display: block;
    width: 100%;
    height: var(--size-1);
    background: #fff;
    transition: transform .3s ease, background .3s ease;
  }
  .is-active .l-header__nav-sp-button-line {
    background: var(--blue);
  }
  .l-header__nav-sp-button-line:nth-child(1) {
    top: 0;
    left: 0;
  }
  .l-header__nav-sp-button-line:nth-child(2) {
    top: 10px;
    left: 0;
  }
  .l-header__nav-sp-button-line:nth-child(3) {
    bottom: 0;
    left: 0;
  }
  .l-header__nav-sp-button.is-active .l-header__nav-sp-button-line:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }
  .l-header__nav-sp-button.is-active .l-header__nav-sp-button-line:nth-child(2) {
    opacity: 0;
  }
  .l-header__nav-sp-button.is-active .l-header__nav-sp-button-line:nth-child(3) {
    bottom: 9px;
    transform: rotate(-45deg);
  }
  .l-header__nav-sp-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh + var(--size-108));
    background: #335D92;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .l-header__nav-sp-menu-wrapper.is-active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
  .l-header__nav-sp-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--size-20);
    background: #fff;
    height: var(--size-70);
  }
  .l-header__nav-sp-menu-wrapper-inner {
    height: 100%;
    padding: var(--size-32) var(--size-20) var(--size-150);
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 70px);
  }
  .l-header__nav-sp-menu-title {
    font-size: var(--size-15);
    font-weight: 700;
    margin-bottom: var(--size-8);
  }
  .l-header__nav-sp-menu-list {
    display: flex;
    flex-wrap: wrap;
  }
  .l-header__nav-sp-menu-item {
    width: 50%;
  }
  .l-header__nav-sp-menu:not(:first-child) {
    margin-top: var(--size-16);
  }
  .l-header__nav-sp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--size-13);
    line-height: 1.2;
    height: var(--size-50);
    border: solid 1px #fff;
  }
  .l-header__nav-sp-menu-item:nth-child(n + 3) .l-header__nav-sp-link {
    border-top: none;
  }
  .l-header__nav-sp-menu-item:nth-child(even) .l-header__nav-sp-link {
    border-left: none;
  }
  .l-header__nav-sp-menu-item:first-child .l-header__nav-sp-link {
    border-top-left-radius: 12px;
  }
  .l-header__nav-sp-menu-item:nth-child(2) .l-header__nav-sp-link {
    border-top-right-radius: 12px;
  }
  .l-header__nav-sp-menu-item:last-child:nth-child(odd) .l-header__nav-sp-link {
    border-bottom-left-radius: 12px;
  }
  .l-header__nav-sp-menu-item:last-child:nth-child(even) .l-header__nav-sp-link {
    border-bottom-right-radius: 12px;
  }
  .l-header__nav-sp-menu-item:nth-last-child(2):nth-child(odd) .l-header__nav-sp-link {
    border-bottom-left-radius: 12px;
  }
  .l-header__nav-sp-menu a {
    transition: opacity 0.3s ease;
  }
  .l-header__nav-sp-menu a:hover {
    opacity: 0.5;
  }
  .l-header__nav-sp-footer-menu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .l-header__nav-sp-footer-menu-item:not(:last-child):after {
    content: "|";
    display: inline-block;
    margin: 0 var(--size-8);
  }
  .l-header__nav-sp-footer-menu-link {
    font-size: var(--size-12);
    line-height: 1.2;
    transition: opacity 0.3s ease;
  }
  .l-header__nav-sp-footer-menu-link:hover {
    opacity: 0.5;
  }
  .l-header__nav-sp-footer-buttons {
    display: flex;
    width: calc(100% + var(--size-40));
    margin-left: calc(var(--size-20) * -1);
  }
  .l-header__nav-sp-footer-button {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--size-12);
    gap: var(--size-8);
    color: var(--blue);
    transition: opacity 0.3s ease;
    background: #fff;
  }
  .l-header__nav-sp-footer-button.u-yellow {
    background: #FFBA08;
  }
  .l-header__nav-sp-footer-button:hover {
    opacity: 0.5;
  }
  .l-header__nav-sp-footer-info {
    margin-top: var(--size-40);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .l-header__nav-sp-footer-info-text {
    font-size: var(--size-15);
    line-height: 1.5;
    margin-bottom: var(--size-32);
    text-align: center;
  }
  .l-header__nav-sp-footer-info-logo {
    margin-bottom: var(--size-8);
  }
  .l-header__nav-sp-footer-info-copy {
    font-size: var(--size-12);
    line-height: 1.2;
  }
}

/* loading */
.l-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  transition: opacity 1s;
  opacity: 1;
  pointer-events: all;
  z-index: 9999;
}
.l-loading.fadeout {
  opacity: 0;
  pointer-events: none;
}

/* パンくずリスト */
.l-breadcrumbs {
  margin-bottom: var(--size-130);
}
.p-recruit-wrapper .l-breadcrumbs {
  margin-bottom: var(--size-56);
}
.p-recruit-wrapper .l-breadcrumbs .c-inner {
  padding: 0 var(--size-50);
}
.c-breadcrumbs__list {
  display: flex;
  gap: var(--size-6);
  font-size: var(--size-12);
  color: #767676;
  flex-wrap: wrap;
}
.c-breadcrumbs__item {
  list-style: none;
}
.c-breadcrumbs__item:not(:first-child):before {
  content: "/";
  display: inline-block;
  margin-right: var(--size-6);
}
.c-breadcrumbs__link {
  transition: opacity 0.3s ease;
}
.c-breadcrumbs__link:hover {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .l-breadcrumbs {
    margin-bottom: var(--size-40);
  }
  .c-breadcrumbs__list {
    font-size: var(--size-10);
  }
  .p-recruit-wrapper .l-breadcrumbs .c-inner {
    padding: 0 var(--size-16);
  }
}

/* mv */
.l-mv {
  position: relative;
  overflow: hidden;
}
.p-mv__inner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1920 / 900;
}
.p-mv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: var(--size-644);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: visibility 2s, opacity 2s;
}
.p-mv__img.swiper-slide-active img {
  transform: scale(1.1) translateX(3%);
}
@keyframes mv-zoom-move {
  0% {
    transform: scale(1.1) translateX(5%);
  }
  100% {
    transform: scale(1.1) translateX(-5%);
  }
}
.p-mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-mv__img.is-active img {
  animation: mv-zoom-move 20s linear forwards;
}
.p-mv__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.58);
}
.p-mv__swiper {
  width: 100%;
  height: 100%;
}
.p-mv__content {
  position: absolute;
  top: 50%;
  left: var(--size-100);
  transform: translateY(-50%);
  width: calc(100% - var(--size-100) * 2);
  height: auto;
  z-index: 100;
  color: #FFF;
}

@keyframes mv-line {
  0% {
    transform: translateX(-100vw) scaleX(0);
    transform-origin: left;
    opacity: 0;
  }
  10% {
    transform: translateX(-80vw) scaleX(0.3);
    transform-origin: left;
    opacity: 0.5;
  }
  18% {
    transform: translateX(-20vw) scaleX(0.8);
    transform-origin: left;
    opacity: 1;
  }
  20% {
    transform: translateX(-20vw) scaleX(1);
    transform-origin: left;
    opacity: 1;
  }
  50% {
    transform: translateX(-5vw) scaleX(1);
    transform-origin: left;
    opacity: 1;
  }
  50.01% {
    transform: translateX(0) scaleX(1);
    transform-origin: right;
    opacity: 1;
  }
  100% {
    transform: translateX(0) scaleX(0);
    transform-origin: right;
    opacity: 0;
  }
}
.p-mv__line {
  position: absolute;
  background: #FFF;
  z-index: 2;
  transform-origin: left;
  animation: mv-line 1s linear forwards;
  opacity: 0.8;
  pointer-events: none;
}
.passing .passing-box {
  position: relative;
  display: block;
  text-align: left;
  margin-bottom: 1em;
  width: max-content;
}
.passing .passing-box.c-only-sp {
  display: none;
}
.passing .passing-txt {
  position: relative;
  font-size: clamp(1.25rem, 0.9rem + 2.2vw, 3.875rem);
  font-weight: bold;
  line-height: 1.2;
  z-index: 1;
  display: inline-block;
  opacity: 0;
  background: none;
}
.passing .u-small .passing-txt {
  font-size: clamp(0.813rem, 0.767rem + 0.19vw, 1rem);
  font-weight: 500;
}
.passing .passing-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.passing .passing-bar::before {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 2;
}
.passing.move .passing-box .passing-bar::before {
  animation: passing-bar 1s ease 0s 1 normal forwards;
}
@keyframes passing-bar {
  0% { left: 0; width: 0; }
  50% { left: 0; width: 100%; }
  51% { left: 0; width: 100%; }
  100% { left: 100%; width: 0; }
}
.passing.move .passing-box .passing-txt {
  animation: passing-txt 0.01s linear 0.5s 1 normal forwards;
}
@keyframes passing-txt {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* 0.1秒ずつアニメーションディレイをずらす */
.passing.move .passing-box:nth-child(1) .passing-bar::before {
  animation-delay: 0s;
}
.passing.move .passing-box:nth-child(2) .passing-bar::before {
  animation-delay: 0.1s;
}
.passing.move .p-mv__text .passing-box:nth-child(1) .passing-bar::before {
  animation-delay: 0.2s;
}
.passing.move .p-mv__text .passing-box:nth-child(2) .passing-bar::before {
  animation-delay: 0.3s;
}
.passing.move .p-mv__text .passing-box:nth-child(3) .passing-bar::before {
  animation-delay: 0.3s;
}
.passing.move .p-mv__text .passing-box:nth-child(4) .passing-bar::before {
  animation-delay: 0.4s;
}


.passing.move .passing-box:nth-child(1) .passing-txt {
  animation-delay: 0.4s;
}
.passing.move .passing-box:nth-child(2) .passing-txt {
  animation-delay: 0.5s;
}
.passing.move .p-mv__text .passing-box:nth-child(1) .passing-txt {
  animation-delay: 0.6s;
}
.passing.move .p-mv__text .passing-box:nth-child(2) .passing-txt {
  animation-delay: 0.7s;
}
.passing.move .p-mv__text .passing-box:nth-child(3) .passing-txt {
  animation-delay: 0.7s;
}
.passing.move .p-mv__text .passing-box:nth-child(3) .passing-txt {
  animation-delay: 0.8s;
}


@media (max-width: 1080px) {
  .p-mv__content {
    left: var(--size-20);
    width: calc(100% - var(--size-20) * 2);
  }
}

@media (max-width: 768px) {
  .p-mv__inner {
    aspect-ratio: 375 / 644;
  }
  .passing .passing-box.c-only-sp {
    display: block;
  }
  .passing .passing-box.c-only-pc {
    display: none;
  }
}

/* mission */
.l-mission {
  padding: var(--size-100) 0 var(--size-150);
}
.p-mission__content {
  display: flex;
  gap: clamp(1.5rem, 0.347rem + 4.92vw, 6.25rem);
}
.p-mission__content.u-reverse {
  flex-direction: row-reverse;
}
.p-mission__img {
  flex: 1;
  width: 100%;
  height: auto;
  border-radius: var(--size-24);
  overflow: hidden;
  min-width: var(--size-400);
}
.p-mission__img-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-mission__text {
  max-width: var(--size-678);
  color: var(--blue);
  font-size: var(--size-14);
  line-height: 2;
  font-weight: 500;
  margin-top: var(--size-80);
}

@media (max-width: 1080px) {
  .p-mission__content,
  .p-mission__content.u-reverse {
    flex-direction: column-reverse;
    gap: var(--size-24);
  }
  .p-mission__img {
    min-width: auto;
    border-radius: var(--size-12);
  }
  .p-mission__text {
    font-size: var(--size-14);
    margin-top: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .l-mission {
    padding: var(--size-100) 0;
  }
}

/* about */
.l-about {
  padding: var(--size-150) 0;
  background: #CCD6E4;
}
.p-about__card {
  border: 5px solid #fff;
  border-radius: var(--size-12);
  overflow: hidden;
  background: #fff;
  transition: opacity 0.3s ease;
}
.p-about__card:hover {
  opacity: 0.5;
}
.p-about__card-content {
  padding: var(--size-20);
}
.p-about__card-img {
  aspect-ratio: 416 / 229;
}
.p-about__card-img-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-about__card-title {
  display: flex;
  flex-direction: column;
}
.p-about__card-title-en {
  font-size: var(--size-20);
  font-weight: 600;
  line-height: 1.8;
  color: #000;
}
.p-about__card-title-ja {
  font-size: var(--size-12);
  font-weight: 500;
  line-height: 1.8;
  color: #000;
}
.p-about__card-link {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-top: var(--size-8);
}
.p-about__card:hover .p-about__card-link {
  background: var(--blue);
  color: #FFF;
}

@media (max-width: 768px) {
  .l-about {
    padding: var(--size-100) 0;
  }
  .p-about__swiper {
    overflow: visible;
  }
}

/* news */
.l-news {
  padding: var(--size-150) 0;
}
.p-news__inner {
  background: #F5F5F5;
  padding: var(--size-100) var(--size-80);
}
.p-news__heading {
  color: var(--blue);
}
.p-news__content {
  display: flex;
  flex-direction: column;
  max-width: var(--size-1080);
  margin: var(--size-56) auto 0;
}
.p-news__row {
  display: flex;
  gap: var(--size-64);
  padding: var(--size-40) 0;
}
.p-news__row:first-child {
  padding-top: 0;
}
.p-news__row:not(:last-child) {
  border-bottom: 1px solid var(--blue);  
}
.p-news__row:last-child {
  padding-bottom: 0;
}
.p-news__head {
  display: flex;
  gap: var(--size-44);
  align-items: center;
}
.p-news__head-time {
  font-size: var(--size-14);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.p-news__head-category {
  display: inline-block;
  padding: var(--size-6) var(--size-18);
  background: #003477;
  color: #FFF;
  font-size: var(--size-12);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  border-radius: 100vmax;
  transition: opacity 0.3s ease;
  min-width: var(--size-96);
  text-align: center;
}
.p-news__head-category.u-gray {
  background: #D9D9D9;
  color: #000;
}
.p-news__head-category.u-tint {
  background: #6685AD;
}
.p-news__head-category:hover {
  opacity: 0.5;
}
.p-news__body {
  flex: 1;
}
.p-news__body-title {
  font-size: var(--size-16);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #000;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.3s ease;
}
.p-news__body-title:hover {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .l-news {
    padding: 0;
  }
  .l-news .c-inner {
    padding: 0;
  }
  .p-news__inner {
    padding: var(--size-100) var(--size-20);
  }
  .p-news__row {
    flex-direction: column;
    gap: var(--size-16);
  }
  .p-news__head {
    gap: var(--size-12);
  }
  .p-news__head-time {
    font-size: var(--size-12);
  }
  .p-news__head-category {
    font-size: var(--size-12);
  }
  .p-news__body-title {
    font-size: var(--size-14);
    display: -webkit-box;             
    -webkit-box-orient: vertical;      
    overflow: hidden;
    text-overflow: unset;
    white-space: normal;
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
}

/* service */
.l-service {
  padding: 0 0 var(--size-150);
}
.p-service__contents {
  display: flex;
  gap: var(--size-24);
}
.p-service__content {
  width: calc(33.33% - var(--size-24) * 2 / 3);
  transition: opacity 0.3s ease;
}
.p-service__content:hover {
  opacity: 0.5;
}
.p-service__img {
  width: 100%;
  height: auto;
  aspect-ratio: 557 / 304;
}
.p-service__img-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-service__text {
  margin-top: var(--size-16);
}
.p-service__text-title {
  font-size: var(--size-14);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .l-service {
    padding: var(--size-100) 0;
  }
  .p-about__card-title-en {
    font-size: var(--size-18);
  }
}

/* solution */
.l-solution {
  padding: 0 0 var(--size-150);
}

@media (max-width: 768px) {
  .l-solution {
    padding: 0 0 var(--size-100);
  }
}

/* cta */
.p-cta__contents {
  display: flex;
}
.p-cta__content {
  position: relative;
  width: 50%;
  aspect-ratio: 960 / 527;
  display: flex;
  overflow: hidden;
  min-height: var(--size-400);
}
.p-cta__content:hover .c-button-view {
  background: #fff;
  color: var(--blue);
}
.p-cta__content:hover .p-cta__img-img {
  scale: 1.05;
}
.p-cta__img {
  width: 100%;
  height: 100%;
}
.p-cta__img-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}
.p-cta__content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.p-cta__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - var(--size-32) * 2);
  max-width: var(--size-520);
  z-index: 2;
}
.l-cta .c-section-heading__top {
  border-bottom: 1px solid #fff;
}
.p-cta__heading * {
  color: #fff;
}

@media (max-width: 1080px) {
  .p-cta__contents {
    flex-direction: column;
  }
  .p-cta__content {
    width: 100%;
    min-height: var(--size-212);
  }
  .p-cta__heading {
    width: calc(100% - var(--size-20) * 2);
  }
}

@media (max-width: 768px) {
  .c-section-heading__top {
    padding-bottom: var(--size-12);
    margin-bottom: var(--size-12);
  }
}

/* footer */
.l-footer {
  padding: var(--size-150) 0 var(--size-64);
  background: #335D92;
  color: #fff;
}
.p-footer__top {
  display: flex;
  gap: var(--size-24);
  justify-content: space-between;
}
.p-footer__info {
  width: var(--size-504);
}
.p-footer__nav-wrapper {
  flex: 1;
  display: flex;
  gap: var(--size-64);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.p-footer__nav {
  width: fit-content;
  min-width: var(--size-120);
}
.p-footer__bottom-nav-item {
  font-size: var(--size-13);
  display: flex;
  gap: var(--size-24);
  flex-wrap: wrap;
}
.p-footer__nav-title {
  font-size: var(--size-15);
  font-weight: 700;
  margin-bottom: var(--size-18);
}
.p-footer__nav-item-item {
  font-size: var(--size-13);
  margin-bottom: var(--size-15);
}
.l-footer li a {
  transition: opacity 0.3s ease;
}
.l-footer a:hover {
  opacity: 0.5;
}
.p-footer__nav-item-item a:before {
  content: "〉";
}
.p-footer__nav-item-item.u-2col {
  display: flex;
  gap: var(--size-40);
  flex-wrap: wrap;
}
.p-footer__nav-item-item-item-item-item {
  margin: var(--size-15) 0 var(--size-12) var(--size-12);
}
.p-footer__nav-item-item-item-item-item-item a:before {
  content: "・";
}

@media (max-width: 1080px) {
  .p-footer__top {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .p-footer__info {
    width: 100%;
    text-align: center;
  }
  .p-footer__nav-wrapper {
    gap: var(--size-24);
    justify-content: center;
  }
  .p-footer__bottom-nav-item {
    justify-content: center;
    margin-top: var(--size-24);
  }
  .c-button.u-footer {
    margin: var(--size-24) auto 0;
  }
}

@media (max-width: 768px) {
  .l-footer {
    padding: var(--size-40) 0;
  }
  .p-footer__top {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .p-footer__info {
    width: 100%;
    text-align: center;
  }
}

/* ページヘッダー */
.l-page-header {
  position: relative;
}
.l-page-header__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* ニュース */
.l-page-news {
  padding: var(--size-20) 0 var(--size-100);
}
.p-news__pagination-list {
  display: flex;
  gap: var(--size-12);
  justify-content: center;
  align-items: center;
  font-size: var(--size-15);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--blue);
}
.p-news__pagination-item.u-current .p-news__pagination-link {
  color: #8D8D8D;
}
.p-news__pagination-link {
  transition: opacity 0.3s ease;
}
.p-news__pagination-link:hover {
  opacity: .5;
}
.p-news__pagination-item:not(:last-child) .p-news__pagination-link:after {
  content: "｜";
  display: inline-block;
  margin-left: var(--size-12);
}

/* 法務関連 */
.l-page-terms {
  padding: var(--size-20) 0 var(--size-100);
}
@media (max-width: 768px) {
  .l-page-terms {
    padding: var(--size-40) 0;
  }
}
.p-terms__content {
  padding: var(--size-60) var(--size-100) var(--size-100);
  background: #fff;
}
.p-terms__content *:not(:last-child) {
  margin-bottom: var(--size-40);
}
.p-terms__content + .p-terms__content {
  margin-top: var(--size-64);
}
.p-terms__title {
  font-size: var(--size-16);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}
.p-terms__content-header {
  text-align: right;
  line-height: 2;
  font-size: var(--size-14);
  font-weight: 500;
  margin-bottom: var(--size-64);
}
.p-terms__content-body {
  line-height: 2;
  font-size: var(--size-14);
  font-weight: 500;
}
.p-terms__content-footer {
  margin-top: var(--size-120);
  text-align: center;
  line-height: 2;
  font-size: var(--size-14);
  font-weight: 500;
}
.p-terms__table {
  border-collapse: collapse;
}
.p-terms__table-th,
.p-terms__table-td {
  max-width: var(--size-376);
  font-size: var(--size-14);
  line-height: 2;
  font-weight: 500;
  padding: var(--size-12) var(--size-20);
  border: 1px solid #000;
  vertical-align: middle;
}
.p-terms__body-text-indent {
  display: block;
  margin-left: 1.5em;
  margin-bottom: 0!important;
}
@media (max-width: 768px) {
  .p-terms__content {
    padding: var(--size-40) var(--size-20);
  }
  .p-terms__table-th,
  .p-terms__table-td {
    padding: var(--size-12) var(--size-16);
    width: 50%;
    font-size: var(--size-12);
  }
  .p-terms__content-header {
    margin-bottom: var(--size-40);
  }
  .p-terms__content-footer {
    margin-top: var(--size-40);
  }
}

/* single-news */
.p-news__detail-inner-pagination {
  display: flex;
  gap: var(--size-40);
  justify-content: center;
  align-items: center;
}
.p-news__detail-inner h2 {
  font-size: var(--size-24);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #000;
}
.p-news__detail-inner h3 {
  font-size: var(--size-20);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #000;
}
.p-news__detail-inner h4 {
  font-size: var(--size-18);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #000;
}
.p-news__detail-inner h5 {
  font-size: var(--size-16);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #000;
}
.p-news__detail-inner h6 {
  font-size: var(--size-14);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #000;
}
.p-news__detail-inner p {
  line-height: 2;
}
.p-news__detail-content {
  padding: var(--size-40);
  background: #fff;
  height: 100%;
}
.p-news__detail-inner .p-page-case__body-title {
  font-size: var(--size-14);
}
.p-news__detail-inner a {
  text-decoration: underline;
  text-underline-offset: var(--size-5);
  transition: opacity 0.3s ease;
}
.p-news__detail-inner a:hover {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .p-news__detail-content {
    padding: var(--size-32) var(--size-16);
  }
  .p-news__detail-inner h2 {
    font-size: var(--size-18);
  }
  .p-news__detail-inner h3 {
    font-size: var(--size-16);
  }
  .p-news__detail-inner h4 {
    font-size: var(--size-14);
  }
  .p-news__detail-inner h5 {
    font-size: var(--size-14);
  }
  .p-news__detail-inner h6 {
    font-size: var(--size-14);
  }
}

/* 404 */
.l-page-404 {
  padding: var(--size-80) 0;
  max-width: var(--size-720);
  margin: 0 auto;
  text-align: center;
}
.p-404__inner {
  padding: var(--size-40);
}
.l-page-404 .c-button {
  max-width: var(--size-200);
  margin: 0 auto;
  width: 100%;
}

/* 会社概要 */
.l-page-company {
  padding: var(--size-20) 0 0;
}
.p-greetings__read {
  font-size: var(--size-20);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--size-32);
  color: var(--blue);
}
.p-greetings__inner {
  display: flex;
  gap: var(--size-40);
}
.p-greetings__image {
  flex: 1;
  width: 100%;
  min-width: var(--size-400);
}
.p-greetings__content {
  max-width: var(--size-980);
  width: 100%;
}
.p-company__table {
  width: 100%;
  min-width: var(--size-720);
  overflow-x: hidden;
}
.p-company__table-inner {
  padding: var(--size-48);
  background: #fff;
}
.p-company__table-row {
  display: flex;
  align-items: center;
  gap: var(--size-80);
  padding: var(--size-20) 0;
  border-bottom: 1px solid var(--line);
  width: 100%;
}
.p-company__table-head {
  min-width: var(--size-120);
}
.p-company__table-data-title {
  display: flex;
  gap: var(--size-10);
  align-items: center;
}
.p-company__table-data-map {
  color: #F48C06;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.p-company__table-data-map:hover {
  opacity: 0.5;
}
.p-company__table-data-map:after {
  content: "";
  display: inline-block;
  width: var(--size-20);
  height: var(--size-20);
  background: url(../img/common/icon-blank-or.svg) no-repeat center center / contain;
}
.p-company__table-data-annotation {
  font-size: var(--size-12);
  text-decoration: underline;
  text-underline-offset: var(--size-5);
}
.p-company__table-data-list {
  display: flex;
  gap: var(--size-20);
}
.p-company__table-data-list-head {
  width: var(--size-120);
}
.p-company-identity {
  padding: var(--size-120) 0;
}
.p-company-identity__content-inner {
  background: #fff;
  padding: var(--size-64);
  margin: 0 auto;
  width: 100%;
}
.p-company-identity__content-inner-list {
  display: flex;
  gap: var(--size-20);
}
.p-company-identity__content-inner-list-item {
  width: calc(33.33% - var(--size-20 * 2 / 3));
}
.p-company-identity__content-inner-list-item-title {
  background: var(--blue);
  color: #fff;
  padding: var(--size-24);
  text-align: center;
}
.p-company-identity__content-inner-list-item-text {
  border: solid 1px var(--blue);
  padding: var(--size-24);
}
.p-company-identity__content-inner-guidelines-title {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  color: var(--blue);
}
.p-company-identity__content-inner-guidelines-title:before,
.p-company-identity__content-inner-guidelines-title:after {
  content: "";
  display: block;
  width: var(--size-25);
  height: var(--size-1);
  background: var(--blue);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-company-identity__content-inner-guidelines-title:before {
  left: calc(100% + var(--size-30));
}
.p-company-identity__content-inner-guidelines-title:after {
  right: calc(100% + var(--size-30));
}
.p-company-identity__content-inner-guidelines-list {
  display: flex;
  gap: var(--size-48);
}
.p-company-identity__content-inner-guidelines-list-item {
  width: calc(33.33% - var(--size-48) * 2 / 3);
  border: solid 1px var(--blue);
  padding: var(--size-32);
  border-radius: var(--size-24);
}
.p-company-identity__content-inner-guidelines-list-item-title {
  font-size: var(--size-20);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}
.p-company-identity__content-inner-guidelines-list-item-image {
  width: 100%;
}
.p-company-identity__content-inner-guidelines-list-item-image-img {
  display: block;
  width: 100%;
  max-width: var(--size-150);
  max-height: var(--size-100);
  margin: var(--size-40) auto;
  object-fit: contain;
}
.p-company-partner {
  padding: var(--size-120) 0;
  background: #fff;
}
.p-company-partner__content-inner-item-content {
  display: flex;
  gap: var(--size-20);
  align-items: center;
}
.p-company-partner__content-inner-item-content-link {
  transition: opacity 0.3s ease;
}
.p-company-partner__content-inner-item-content-link:hover {
  opacity: 0.5;
}
.p-company-partner__content-inner-item-title {
  margin-bottom: var(--size-40);
  margin-top: var(--size-48);
}
.p-company-partner__content-inner-item-list {
  list-style: number;
  padding-left: var(--size-20);
}
.p-company-partner__content-inner-item-text-small {
  display: block;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: var(--size-5);
  transition: opacity 0.3s ease;
}
.p-company-partner__content-inner-item-text-small:hover {
  opacity: 0.5;
}
.p-company-partner__content-inner-item-image {
  width: var(--size-128);
  min-width: var(--size-128);
}
.p-company-chart {
  padding: var(--size-120) 0;
  background: #fff;
}
.p-company-chart__content-inner-item-image {
  max-width: var(--size-920);
}

@media (max-width: 1024px) {
  .p-company-identity__content-inner-guidelines-list {
    gap: var(--size-12);
  }
  .p-company-identity__content-inner-guidelines-list-item {
    width: calc(50% - var(--size-12) * 2 / 3);
  }
}
@media (max-width: 768px) {
  .p-greetings__inner {
    flex-direction: column;
  }
  .p-greetings__image {
    min-width: auto;
  }
  .p-greetings__content {
    max-width: 100%;
  }
  .p-company-identity__content-inner {
    padding: var(--size-32) var(--size-24);
  }
  .p-company-identity__read {
    font-size: var(--size-16);
    text-align: left!important;
  }
  .p-company-identity__content-inner-list {
    flex-direction: column;
  }
  .p-company-identity__content-inner-guidelines-list {
    flex-direction: column;
  }
  .p-company-identity__content-inner-guidelines-list-item {
    width: 100%;
  }
  .p-company-identity__content-inner-guidelines-list-item-image-img {
    max-width: var(--size-120);
    max-height: var(--size-64);
    margin: var(--size-24) auto;
  }
  .p-company-identity__content-inner-guidelines-title {
    font-size: var(--size-18);
  }
  .p-company-identity__content-inner-guidelines-list-item-title {
    font-size: var(--size-16);
  }
  .p-company-partner {
    padding: var(--size-60) 0;
  }
  .p-company-partner__content-inner-item-title {
    font-size: var(--size-16);
  }
  .p-company-chart {
    padding: var(--size-60) 0;
  }
}

@media (max-width: 480px) {
  .p-company-partner__content-inner-item-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-company-partner__content-inner-item-image {
    margin: 0 auto;
  }
  .p-company-partner__content-inner-item-text {
    width: fit-content;
    margin: 0 auto;
  }
}

/* 事業内容 */
.p-business__text {
  margin-bottom: var(--size-80);
}
.p-business__list {
  display: flex;
  row-gap: var(--size-80);
  column-gap: var(--size-40);
  flex-wrap: wrap;
}
.p-business__list-item {
  position: relative;
  width: calc(50% - var(--size-40) * 1 / 2);
  border-radius: var(--size-32);
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}
.p-business__list-item:before {
  content: "";
  display: block;
  width: 0;
  height: calc(100% + var(--size-6) * 2);
  background: #003477;
  background: var(--gradation-blue);
  transition: width 0.3s ease;
  position: absolute;
  top: calc(-1 * var(--size-6));
  left: calc(-1 * var(--size-6));
}
.p-business__list-item:hover:before {
  width: calc(100% + var(--size-6) * 2);
}
.p-business__list-item:hover {
  box-shadow: 0 0 30px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}
.p-business__list-item-link {
  position: relative;
  z-index: 1;
  display: block;
  padding: var(--size-48) var(--size-48) var(--size-80);
  border-radius: 0 0 var(--size-28) var(--size-28);
  height: 100%;
  background: #fff;
  transition: all 0.3s ease;
  width: calc(100% - var(--size-6) * 2);
  height: calc(100% - var(--size-24) * 2);
  top: 42px;
  left: 6px;
  color: var(--blue);
}
.p-business__list-item.u-tint {
  background: #C4CEDC;
}
.p-business__list-item.u-tint .p-business__list-item-link {
  background: #C4CEDC;
}
.p-business__list-item.u-full {
  width: 100%;
}
.p-business__list-item.u-full .p-business__list-item-link {
  display: flex;
  gap: var(--size-40);
}
.p-business__list-item.u-blue {
  background: #6685AD;
}
.p-business__list-item.u-blue .p-business__list-item-link {
  background: #6685AD;
  color: #fff!important;
}
.p-business__list-item.u-blue * {
  color: #fff!important;
  border-color: #fff!important;
}
.p-business__list-item-image {
  width: var(--size-100);
  height: var(--size-100);
  margin-bottom: var(--size-40);
}
.p-business__list-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-business__list-item-content {
  width: 100%
}
.p-business__list-item-content-list {
  margin-top: var(--size-32);
  list-style: disc;
  padding-left: var(--size-20);
}
.p-business__list-item-content-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-10);
  background: #003477;
  background: var(--gradation-blue);
  padding: var(--size-20);
  border-radius: 100vmax;
  width: 100%;
  max-width: var(--size-226);
  margin-top: var(--size-32);
  color: #fff;
  font-size: var(--size-12);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-left: auto;
}
.p-business__list-item-content-button:after {
  content: "";
  display: inline-block;
  width: var(--size-20);
  height: var(--size-20);
  background: url(../img/common/icon-arrow-wh.svg) no-repeat center center / contain;
}
.p-business__list-item-content-button-text {
  position: relative;
  z-index: 1;
}
.p-business__cta {
  padding-top: var(--size-120);
}
.p-business__footer-title {
  font-size: var(--size-32);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: var(--size-20);
  text-decoration: underline;
  text-underline-offset: var(--size-10);
  color: var(--blue);
}
.p-business__footer-text {
  font-size: var(--size-22);
  line-height: 1.5;
  color: var(--blue);
  text-align: center;
  margin-bottom: var(--size-100);
}
.p-business__cta-button {
  padding: var(--size-80) 0;
  background: var(--blue);
  color: #fff;
  text-align: center;
}
.p-business__cta-button-text {
  text-align: center;
  color: #fff;
}
.p-business__cta-button-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-10);
  width: var(--size-400);
  margin: var(--size-40) auto 0;
  color: var(--blue);
}

@media (max-width: 1240px) {
  .p-business__list {
    row-gap: var(--size-32);
  }
  .p-business__list-item {
    width: 100%;
  }
  .p-business__list-item-link {
    display: flex;
    gap: var(--size-40);
    padding: var(--size-32) var(--size-32) var(--size-60);
  }
}

@media (max-width: 768px) {
  .p-business__text {
    margin-bottom: var(--size-40);
    font-size: var(--size-16);
    text-align: left !important;
  }
  .p-business__list {
    row-gap: var(--size-32);
  }
  .p-business__list-item {
    border-radius: var(--size-16);
  }
  .p-business__list-item-link {
    flex-direction: column;
    padding: var(--size-32) var(--size-24) var(--size-40);
    top: 0;
    left: 0;
    position: relative;
    gap: var(--size-24);
  }
  .p-business__list-item-image {
    width: var(--size-64);
    height: var(--size-64);
    margin-bottom: 0;
  }
  .p-business__list-item-content {
    width: 100%;
  }
  .p-business__list-item-content-list {
    margin-top: var(--size-24);
  }
  .p-business__list-item-content-button {
    margin-top: var(--size-24);
  }
  .p-business__cta {
    padding-top: var(--size-60);
  }
  .p-business__footer-title {
    font-size: var(--size-16);
    line-height: 2;
    text-underline-offset: var(--size-5);
  }
  .p-business__footer-text {
    font-size: var(--size-14);
  }
  .p-business__cta-button {
    padding: var(--size-60) 0;
  }
  .p-business__list-item-content-text {
    font-size: var(--size-16);
  }
  .p-business__list-item-content-list {
    margin-top: var(--size-24);
  }
  .p-business__list-item-content-button {
    margin-top: var(--size-24);
  }
  .p-business__cta-button-text {
    font-size: var(--size-16);
  }
  .p-business__cta-button-links {
    width: 100%;
  }
  
}

/* 受託開発 */
.p-development__contents {
  padding: var(--size-72) 0;
  background: #003477;
  background: linear-gradient(90deg,rgba(0, 52, 119, 1) 0%, rgba(0, 34, 78, 1) 100%);
}
.p-development__list {
  display: flex;
  gap: var(--size-32);
}
.p-development__list .p-business__list-item {
  width: calc(33.3% - var(--size-32) * 2 / 3);
  background: #32598C;
  background: linear-gradient(45deg,rgba(50, 89, 140, 1) 0%, rgba(17, 51, 95, 1) 100%);
  border-radius: var(--size-24);
  overflow: hidden;
}
.p-development__list .p-business__list-item-link {
  padding: var(--size-25) var(--size-25) var(--size-50);
  height: calc(100% - var(--size-16) * 2);
  top: 25px;
}
.p-development__list .p-business__list-item.u-light-blue:before {
  background: #43C6FE;
}
.p-development__list .p-business__list-item.u-light-blue:hover {
  box-shadow: 0 0 30px 15px rgba(113, 172, 255, 0.45);
}
.p-development__list .p-business__list-item.u-green:before {
  background: #5FE881;
}
.p-development__list .p-business__list-item.u-green:hover {
  box-shadow: 0 0 30px 15px rgba(95, 232, 129, 0.45);
}
.p-development__list .p-business__list-item.u-yellow:before {
  background: #F8FE43;
}
.p-development__list .p-business__list-item.u-yellow:hover {
  box-shadow: 0 0 30px 15px rgba(248, 254, 67, 0.45);
}
.p-development__list .p-business__list-item-link {
  border-radius: var(--size-18);
  background: #32598C;
  background: linear-gradient(45deg,rgba(50, 89, 140, 1) 0%, rgba(17, 51, 95, 1) 100%);
}
.p-development__list .p-business__list-item-content-text {
  color: #fff!important;
}
.p-development__list .p-business__list-item.u-light-blue .p-development__heading * {
  color: #43C6FE!important;
  border-color: #43C6FE!important;
}
.p-development__list .p-business__list-item.u-green .p-development__heading * {
  color: #5FE881!important;
  border-color: #5FE881!important;
}
.p-development__list .p-business__list-item.u-yellow .p-development__heading * {
  color: #F8FE43!important;
  border-color: #F8FE43!important;
}
.p-development__list .p-business__list-item-image {
  width: var(--size-60);
  height: var(--size-60);
  margin-bottom: var(--size-20);
}
.p-development__subtitle {
  font-size: var(--size-60);
  font-weight: 700;
  margin-bottom: var(--size-40);
}
.p-development__heading {
  padding-bottom: var(--size-20);
  margin-bottom: var(--size-20);
}
.p-development__list .p-development__heading:after {
  content: "";
  display: block;
  width: 100%;
  max-width: var(--size-125);
  height: 1px;
  background: #fff;
  margin-top: var(--size-20);
}
.p-development__list .u-light-blue .p-development__heading:after {
  background: #43C6FE;
}
.p-development__list .u-green .p-development__heading:after {
  background: #5FE881;
}
.p-development__list .u-yellow .p-development__heading:after {
  background: #F8FE43;
}
.p-development__system {
  padding: var(--size-120) 0;
  text-align: center;
  color: var(--blue);
}
.p-development__system-title {
  margin-bottom: var(--size-48);
}
.p-development__flow-title {
  color: var(--blue);
}
.p-development__flow-content {
  padding: var(--size-48);
  background: #FFF;
}
.p-development__flow-content-list {
  display: flex;
  gap: var(--size-30);
  flex-wrap: wrap;
}
.p-development__flow-content-list-item {
  position: relative;
  display: flex;
  gap: var(--size-10);
  width: calc(20% - var(--size-30) * 4 / 5);
  align-items: center;
  min-width: var(--size-200);
}
.p-development__flow-content-list-item:not(:last-child)::after {
  content: "〉";
  position: absolute;
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--size-24);
  font-weight: 700;
}
.p-development__flow-content-list-item-content {
  display: flex;
  flex-direction: column;
  gap: var(--size-16);
  padding: var(--size-24);
  flex: 1;
  color: #fff;
  text-align: center;
  width: var(--size-282);
}
.p-development__flow-content-list-item:nth-child(1) .p-development__flow-content-list-item-content{
  background: #6D99CB;
}
.p-development__flow-content-list-item:nth-child(2) .p-development__flow-content-list-item-content{
  background: #6DCB91;
}
.p-development__flow-content-list-item:nth-child(3) .p-development__flow-content-list-item-content{
  background: #C8CB6D;
}
.p-development__flow-content-list-item:nth-child(4) .p-development__flow-content-list-item-content{
  background: #CB746D;
}
.p-development__flow-content-list-item:nth-child(5) .p-development__flow-content-list-item-content{
  background: #786DCB;
}
.p-development__flow-content-list-item-text {
  font-size: var(--size-12);
  font-weight: 700;
}
.p-development__flow-content-list-item-list-item:before {
  content: "・";
  font-size: var(--size-12);
  font-weight: 700;
}
.p-development__service-list-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--size-420);
  row-gap: var(--size-20);
}
.p-development__service-list-list:after {
  content: "";
  display: block;
  width: var(--size-380);
  height: var(--size-380);
  background: url(../img/development/04.webp) no-repeat center center / contain;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
}
.p-development__service-list-list-item {
  width: calc(50% - var(--size-420) * 1 / 2);
}
.p-development__service-list-list-item {
  border-radius: var(--size-24);
  overflow: hidden;
}
.p-development__service-list-list-item-title {
  padding: var(--size-16) var(--size-20);
  text-align: center;
  color: #fff;
}
.p-development__service-list-list-item-list {
  list-style: disc;
  padding: var(--size-20) var(--size-50);
  height: 100%;
}
.p-development__service-list-list-item:nth-child(1) .p-development__service-list-list-item-title {
  background: #FFBA08;
}
.p-development__service-list-list-item:nth-child(1) .p-development__service-list-list-item-list {
  background: #F8E3AE;
}
.p-development__service-list-list-item:nth-child(2) .p-development__service-list-list-item-title {
  background: #43C6FE;
}
.p-development__service-list-list-item:nth-child(2) .p-development__service-list-list-item-list {
  background: #A8E9FF;
}
.p-development__service-list-list-item:nth-child(3) .p-development__service-list-list-item-title {
  background: #F76666;
}
.p-development__service-list-list-item:nth-child(3) .p-development__service-list-list-item-list {
  background: #FBE3E3;
}
.p-development__service-list-list-item:nth-child(4) .p-development__service-list-list-item-title {
  background: #5FE881;
}
.p-development__service-list-list-item:nth-child(4) .p-development__service-list-list-item-list {
  background: #D6F5D8;
}
.p-development__service-footer-title {
  padding: var(--size-50) 0 var(--size-100);
  font-size: var(--size-32);
  font-weight: 700;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.01em;
  color: var(--blue);
}
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.45, 0, 0.55, 1), transform 0.7s cubic-bezier(0.45, 0, 0.55, 1);
  will-change: opacity, transform;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1240px) {
  .p-development__list {
    flex-direction: column;
    gap: var(--size-20);
  }
  .p-development__list .p-business__list-item {
    width: 100%;
  }
  .p-development__list .p-business__list-item-link {
    height: auto;
    top: 0;
  }
  .p-development__list .p-business__list-item-image {
    margin-bottom: var(--size-16);
  }
}

@media (max-width: 1024px) {
  .p-development__service-list-list {
    row-gap: var(--size-420);
    column-gap: var(--size-20);
  }
  .p-development__service-list-list-item {
    width: calc(50% - var(--size-20) * 1 / 2);
  }
}

@media (max-width: 768px) {
  .p-development__contents {
    padding: var(--size-40) 0;
  }
  .p-development__service-list-list {
    flex-direction: column;
    row-gap: var(--size-20);
    column-gap: 0;
  }
  .p-development__service-list-list-item {
    width: 100%;
  }
  .p-development__list .p-business__list-item-image {
    margin-bottom:0; 
  }
  .p-development__subtitle {
    font-size: var(--size-40);
    margin-bottom: var(--size-20);
  }
  .p-development__list .p-business__list-item-content-text {
    font-size: var(--size-16);
  }
  .p-development__list .p-business__list-item-content-list {
    margin-top: var(--size-16);
  }
  .p-development__list .p-business__list-item-content-button {
    margin-top: var(--size-16);
  }
  .p-development__title {
    font-size: var(--size-18);
  }
  .p-development__system-title {
    font-size: var(--size-18);
    margin-bottom: var(--size-20);
  }
  .p-development__flow-title {
    font-size: var(--size-18);
  }
  .p-development__service-list-list:after {
    width: var(--size-200);
    height: var(--size-200);
  }
  .p-development__service-footer-title {
    font-size: var(--size-18);
    padding: var(--size-20) 0 var(--size-50);
  }
  .p-development__system-text {
    text-align: left;
  }
  .p-development__flow-content {
    padding: var(--size-24) var(--size-10);
  }
  .p-development__flow-content-list-item-content,
  .p-development__flow-content-list-item {
    width: 100%;
  }
  .p-development__flow-content-list-item:not(:last-child)::after {
    left: 50%;
    top: calc(100% + var(--size-10));
    transform: translate(-50%, 0) rotate(90deg);
    width: fit-content;
  }
  .p-development__service-list-list:after {
    display: none;
  }
  .p-development__service-list-list-item-title {
    font-size: var(--size-18);
  }
}

/* 国内外グループの連携 */
.p-group-read__text {
  padding: 0 0 var(--size-100);
  text-align: center;
}
.p-group-global {
  padding: var(--size-120) 0;
  text-align: center;
}
.p-group-global__title {
  font-size: var(--size-32);
  font-weight: 700;
  margin-bottom: var(--size-48);
}
.p-group-merit__list {
  display: flex;
  gap: var(--size-72);
}
.p-group-merit__list-item {
  width: calc(25% - var(--size-72) * 3 /  4);
  padding: var(--size-32) var(--size-24);
  border-radius: var(--size-24);
  border: solid 4px var(--blue);
  color: var(--blue);
}
.p-group-merit__list-item:nth-child(1) {
  background: #43C6FE;
  background: linear-gradient(135deg,rgba(67, 198, 254, 0.5) 30%, rgba(255, 255, 255, 1) 100%);
}
.p-group-merit__list-item:nth-child(2) {
  background: #43FED0;
  background: linear-gradient(135deg,rgba(67, 254, 208, 0.5) 30%, rgba(255, 255, 255, 1) 100%);
}
.p-group-merit__list-item:nth-child(3) {
  background: #DCFE43;
  background: linear-gradient(135deg,rgba(220, 254, 67, 0.5) 30%, rgba(255, 255, 255, 1) 100%);
}
.p-group-merit__list-item:nth-child(4) {
  background: #FE4943;
  background: linear-gradient(135deg,rgba(254, 73, 67, 0.5) 30%, rgba(255, 255, 255, 1) 100%);
}
.p-group-merit__list-item-title {
  position: relative;
  font-size: var(--size-24);
  font-weight: 700;
  margin-bottom: var(--size-48);
}
.p-group-merit__list-item-title:after {
  content: "";
  display: block;
  width: var(--size-125);
  height: var(--size-1);
  background: var(--blue);
  position: absolute;
  top: calc(100% + var(--size-24));
  left: 0;
}
.p-group-merit__list-item-text {
  font-size: var(--size-16);
  line-height: 2;
}

@media (max-width: 1440px) {
  .p-group-merit__list {
    gap: var(--size-32);
  }
  .p-group-merit__list-item {
    width: calc(25% - var(--size-32) * 3 /  4);
  }
}

@media (max-width: 768px) {
  .p-group-global {
    padding: var(--size-40) 0;
  }
  .p-group-global__title {
    font-size: var(--size-18);
    margin-bottom: var(--size-20);
  }
  .p-group-read__text {
    font-size: var(--size-16);
    text-align: left!important;
    padding: 0 0 var(--size-50);
  }
  .p-group-global__text {
    font-size: var(--size-16);
    text-align: left;
  }
  .p-group-merit__list {
    flex-direction: column;
    gap: var(--size-20);
  }
  .p-group-merit__list-item {
    width: 100%;
  }
  .p-group-merit__list-item-title {
    font-size: var(--size-18);
    margin-bottom: var(--size-32);
  }
  .p-group-merit__list-item-title:after {
    width: var(--size-80);
    top: calc(100% + var(--size-16));
  }
  .p-group-merit__list-item-text {
    font-size: var(--size-14);
  }
}

/* ソリューション */
.p-solutions-record {
  padding-bottom: var(--size-120);
}
.p-solutions-record__title {
  font-size: var(--size-42);
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: var(--size-56);
}
.p-solutions-record__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--size-150);
  row-gap: var(--size-40);
  justify-content: center;
  max-width: var(--size-687);
  width: 100%;
  margin: var(--size-80) auto 0;
}
.p-solutions-record__list-item {
  width: calc(33.33% - var(--size-150) * 2 /  3);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.p-solutions-works {
  padding: var(--size-120) 0;
}
.p-solutions-case {
  padding: 0 0 var(--size-120);
}
.p-solutions-works .c-button-view,
.p-solutions-case .c-button-view {
  display: block;
  width: fit-content;
  margin: var(--size-40) 0 0 auto;
}

@media (max-width: 768px) {
  .p-solutions-record {
    padding-bottom: var(--size-60);
  }
  .p-solutions-record__list {
    margin-top: var(--size-40);
    gap: var(--size-20);
  }
  .p-solutions-record__list-item {
    width: calc(33.33% - var(--size-20) * 2 / 3);
  }
  .p-solutions-record__title {
    font-size: var(--size-18);
    margin-bottom: var(--size-20);
  }
  .p-solutions-record__text {
    font-size: var(--size-14);
    text-align: left!important;
  }
  .p-solutions-works {
    padding: var(--size-60) 0;
  }
  .p-solutions-case {
    padding: 0 0 var(--size-60);
  }
  .p-solutions-works .c-button-view,
  .p-solutions-case .c-button-view {
    margin: var(--size-20) 0 0 auto;
  }
}

/* 実績紹介 */
.p-works {
  padding-bottom: var(--size-100);
}
.p-works-record {
  padding-bottom: var(--size-64);
}
.p-works__read {
  padding: 0 0 var(--size-64);
}
.p-works__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--size-24);
  row-gap: var(--size-40);
  width: 100%;
}
.p-works__list-item {
  width: calc(33.33% - var(--size-24) * 2 / 3);
  border-radius: var(--size-16);
  overflow: hidden;
  padding: var(--size-4);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.p-works__list-item-image {
  aspect-ratio: 551 / 229;
  border-radius: var(--size-12) var(--size-12) 0 0;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
}
.p-works__list-item-content-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-works__list-item-content {
  padding: var(--size-16);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-works__list-item-title {
  margin: 0 0 var(--size-24);
}
.p-works__list-item-text {
  margin: 0 0 var(--size-24);
  min-height: calc(4em * 2);
}
.p-works__list-item-bottom {
  padding: var(--size-16);
  background: #E8E8E8;
  height: 100%;
}
.p-works__list-item-bottom-list {
  display: flex;
  gap: var(--size-16);
}
.p-works__list-item-bottom-list-item-title:after {
  content: "：";
}
.p-works__list-item-bottom-list-item-text {
  font-size: var(--size-16);
}
.p-works__list-item-bottom-list-item-text {
  flex: 1;
  font-size: var(--size-12);
  line-height: 2;
  margin-top: var(--size-2);
}

@media (max-width: 1024px) {
  .p-works__list-item {
    width: calc(50% - var(--size-24) * 1 / 2);
  }
}

@media (max-width: 768px) {
  .p-works__list-item {
    width: 100%;
  }
  .p-works__read {
    font-size: var(--size-16);
    padding-bottom: var(--size-40);
  }
  .p-works__list {
    gap: var(--size-20);
  }
  .p-works__list-item {
    width: 100%;
  }
}

/* 開発事例 */
.p-page-case {
  padding: var(--size-20) 0 var(--size-100);
}
.p-page-case__contents {
  padding: var(--size-40);
  background: #fff;
}
.p-page-case__content {
  display: flex;
  gap: var(--size-32);
  flex-wrap: wrap;
}
.p-page-case__row {
  width: calc(33.333% - var(--size-32) * 2 / 3);
}
.p-page-case__thumbnail {
  display: block;
  width: 100%;
  background: #F5F5F5;
  aspect-ratio: 16 / 9;
  transition: opacity 0.3s ease;
}
.p-page-case__thumbnail:hover {
  opacity: 0.5;
}
.p-page-case__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-page-case__body {
  flex: 1;
}
.p-page-case__body-head {
  display: flex;
  gap: var(--size-16);
  align-items: center;
  margin: var(--size-16) 0 var(--size-8);
}
.p-page-case__body-date {
  font-size: var(--size-14);
}
.p-page-case__body-category {
  font-size: var(--size-14);
}
.p-page-case__body-link {
  display: block;
  transition: opacity 0.3s ease;
}
.p-page-case__body-link:hover {
  opacity: 0.5;
}

@media (max-width: 1240px) {
  .p-page-case__row {
    width: calc(50% - var(--size-32) * 1 / 2);
  }
}

@media (max-width: 768px) {
  .p-page-case__row {
    width: 100%;
  }
  .p-page-case__contents {
    padding: var(--size-20) var(--size-16);
  }
}

/* 開発事例詳細 */
.p-news__detail-inner-related-title {
  margin-top: var(--size-56);
  padding-bottom: var(--size-16);
  margin-bottom: var(--size-40);
  border-bottom: 3px solid var(--blue);
}
.p-news__detail-inner-related-list {
  display: flex;
  gap: var(--size-32);
  flex-wrap: wrap;
}
.p-news__detail-inner-related-list-item {
  width: calc(33.333% - var(--size-32) * 2 / 3);
}
.p-news__detail-inner-related-list-item-link {
  display: block;
  transition: opacity 0.3s ease;
}

/* オファリング事業 */
.p-offering__title {
  margin-bottom: var(--size-72);
  font-size: var(--size-72);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.p-offering__title-highlight {
  color: #43C6FE;
}
.p-offering__image {
  width: var(--size-90);
  margin: 0 auto var(--size-40);
}
.p-offering__image-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-offering__content {
  margin-bottom: var(--size-40);
}
.p-offering__content-read {
  font-size: var(--size-30);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: var(--size-48);
}
.p-offering__content-text {
  font-size: var(--size-24);
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.p-offering__system-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-24);
  justify-content: space-between;
}
.p-offering__system-list:after {
  content: "";
  position: absolute;
  top: calc(var(--size-150) - var(--size-2));
  left: var(--size-150);
  width: calc(100% - var(--size-150) * 2);
  height: var(--size-4);
  background: var(--blue);
  /* z-index: -1; */
}
.p-offering__system-list-item {
  position: relative;
  width: calc(25% - var(--size-24) * 3 / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--size-300);
  z-index: 1;
}
.p-offering__system-list-item-number {
  font-size: var(--size-24);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.p-offering__system-list-item-number {
  width: var(--size-150);
  height: var(--size-150);
  background: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  font-size: var(--size-60);
  font-weight: 700;
  color: var(--blue);
}
.p-offering__system-list-item-title {
  text-align: center;
  margin: var(--size-24) 0;
}
.p-offering__reasons-title {
  margin: var(--size-100) 0 var(--size-24);
  color: #fff;
  padding: var(--size-8) var(--size-16);
  background: var(--blue);
}
.p-offering__reasons-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-24);
}
.p-offering__reasons-list-item {
  width: calc(50% - var(--size-24) * 1 / 2);
  padding: var(--size-50);
  border-radius: var(--size-12);
  border: solid #8D8D8D var(--size-1);
  background: #FFF;
}
.p-offering__reasons-list-item-icon {
  width: var(--size-85);
  height: var(--size-85);
  object-fit: contain;
  margin: 0 auto var(--size-20);
}
.p-offering__reasons-list-item-title {
  margin-bottom: var(--size-20);
}
.p-offering__product-inner {
  max-width: var(--size-1085);
  margin: 0 auto;
}
.p-offering__product-content-header {
  display: flex;
  gap: var(--size-45);
}
.p-offering__product-content-image {
  min-width: var(--size-200);
  flex: 1;
}
.p-offering__product-content-image-img {
  width: 100%;
  object-fit: contain;
}
.p-offering__product-content-text {
  width: var(--size-621);
}
.p-offering__product-content-read {
  color: var(--blue);
}
.p-offering__product-content-title {
  margin: var(--size-24) 0;
  font-size: var(--size-60);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--size-40);
}
.p-offering__product-content-text-text {
  margin-bottom: var(--size-24);
}
.p-offering__product-content-body-title {
  display: flex;
  gap: var(--size-32);
  align-items: center;
  margin: var(--size-80) 0 var(--size-24);
}
.p-offering__product-content-body-title-image {
  width: var(--size-89);
  height: var(--size-89);
}
.p-offering__product-content-body-list {
  display: flex;
  gap: var(--size-24);
  flex-wrap: wrap;
}
.p-offering__product-content-body-list-item {
  width: calc(33.333% - var(--size-24) * 2 / 3);
  border-radius: var(--size-12);
  box-shadow: 0 0 30px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.p-offering__product-content-body-list-item-image {
  position: relative;
  object-fit: contain;
  padding: var(--size-64) var(--size-32) var(--size-32);
  background: #EBEFF4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-offering__product-content-body-list-item-image:before {
  content: "";
  width: 100%;
  height: var(--size-10);
  background: var(--blue);
  position: absolute;
  top: 0;
  left: 0;
}
.p-offering__product-content-body-list-item-img {
  display: block;
  width: var(--size-60);
  height: var(--size-60);
  object-fit: contain;
}
.p-offering__product-content-body-list-item-label {
  position: absolute;
  top: var(--size-20);
  left: var(--size-12);
  padding: var(--size-4) var(--size-10);
  font-size: var(--size-12);
  font-weight: 700;
  line-height: 1;
  border-radius: 100vmax;
}
.p-offering__product-content-body-list-item-label.u-red {
  background: #E4DDE2;
  color: #950C16;
}
.p-offering__product-content-body-list-item-label.u-blue {
  background: #C9E7F6;
  color: var(--blue);
}
.p-offering__product-content-body-list-item-label.u-orange {
  background: #EDDBC4;
  color: #F48C06;
}
.p-offering__product-content-body-list-item-content {
  padding: var(--size-32) var(--size-20);
}
.p-offering__product-content-body-list-item-labels {
  display: flex;
  gap: var(--size-16);
  flex-wrap: wrap;
  margin: var(--size-16) 0;
}
.p-offering__product-content-body-list-item-labels-item {
  padding: var(--size-4) var(--size-10);
  font-size: var(--size-12);
  font-weight: 700;
  line-height: 1;
  border-radius: 100vmax;
}
.p-offering__product-content-body-list-item-labels-item.u-purple {
  background: #DAD3E9;
  color: #724E9E;
}
.p-offering__product-content-body-list-item-labels-item.u-green {
  background: #D2E4D8;
  color: #0C9542;
}
.p-offering__product-content-body-list-item-labels-item.u-red {
  background: #E4DDE2;
  color: #950C16;
}
.p-offering__product-content-body-list-item-labels-item.u-orange {
  background: #EDDBC4;
  color: #F48C06;
}
.p-offering__product-content-body-list-item-tags {
  display: flex;
  gap: var(--size-10);
  flex-wrap: wrap;
  margin: 0 0 var(--size-8);
  color: var(--blue);
}
.p-offering__product-content-body-list-item-tags-item:before {
  content: "・";
  display: inline-block;
}
.p-offering__product-content-body-ai-title {
  background: var(--blue);
  color: #fff;
  padding: var(--size-8) var(--size-16);
  margin: var(--size-80) 0 var(--size-40);
  text-align: center;
}
.p-offering__product-content-body-ai-list {
  display: flex;
  align-items: stretch;
  padding-bottom: var(--size-30);
}
.p-offering__product-content-body-ai-list-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size-20);
}
.p-offering__product-content-body-ai-list-item {
  position: relative;
  width: calc(33.333% - var(--size-20) * 2 / 3);
  background: #fff;
  padding: var(--size-64) var(--size-16) var(--size-32);
  border: solid var(--line) var(--size-1);
  border-radius: var(--size-12);
  box-shadow: 0 0 30px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-offering__product-content-body-ai-list-item-title {
  position: absolute;
  top: calc(-1 * var(--size-28));
  left: 50%;
  transform: translateX(-50%); 
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--size-56);
  width: var(--size-220);
  border-radius: 100vmax;
  border: solid var(--line) var(--size-1);
  background: #43C6FE;
  color: #fff;
}
.p-offering__product-content-body-ai-list-item-content-image {
  max-width: var(--size-96);
  max-height: var(--size-72);
  margin: 0 auto var(--size-25);
}
.p-offering__product-content-body-ai-list-item-content-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-offering__product-content-body-ai-list-item-content-text {
  margin-bottom: var(--size-16);
  min-height: calc(3em * 1.8);
}
.p-offering__product-content-body-ai-list-item-content-list {
  display: flex;
  flex-direction: column;
  gap: var(--size-10);
  width: 100%;
}
.p-offering__product-content-body-ai-list-item-content-list-item {
  padding: var(--size-12);
  font-size: var(--size-12);
  font-weight: 700;
  line-height: 1;
  border-radius: 100vmax;
  background: #A1E3FF;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* --- Animation for system list line and items --- */
.p-offering__system-list:after {
  width: 0;
  transition: width 0.8s cubic-bezier(.4,0,.2,1);
  /* 既存プロパティはそのまま */
}
.p-offering__system-list.is-animated:after {
  width: calc(100% - var(--size-150) * 2);
}
.p-offering__system-list-item {
  opacity: 0;
  transform: translateY(32px); /* 下からスライドin。数値調整可 */
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
}
.p-offering__system-list.is-animated .p-offering__system-list-item {
  opacity: 1;
  transform: none;
}
.p-offering__system-list.is-animated .p-offering__system-list-item:nth-child(1) { transition-delay: 0.2s; }
.p-offering__system-list.is-animated .p-offering__system-list-item:nth-child(2) { transition-delay: 0.35s; }
.p-offering__system-list.is-animated .p-offering__system-list-item:nth-child(3) { transition-delay: 0.5s; }
.p-offering__system-list.is-animated .p-offering__system-list-item:nth-child(4) { transition-delay: 0.65s; }
/* --- END --- */

/* --- 下からフェードイン for reasons list--- */
.p-offering__reasons-list-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
}
.p-offering__reasons-list.is-animated .p-offering__reasons-list-item {
  opacity: 1;
  transform: none;
}
.p-offering__reasons-list.is-animated .p-offering__reasons-list-item:nth-child(1) { transition-delay: 0.2s; }
.p-offering__reasons-list.is-animated .p-offering__reasons-list-item:nth-child(2) { transition-delay: 0.35s; }
.p-offering__reasons-list.is-animated .p-offering__reasons-list-item:nth-child(3) { transition-delay: 0.5s; }
.p-offering__reasons-list.is-animated .p-offering__reasons-list-item:nth-child(4) { transition-delay: 0.65s; }
/* --- END --- */

@media (max-width: 1380px) {
  .p-offering__system-list.is-animated:after {
    display: none;
  }
  .p-offering__system-list-item {
    width: calc(50% - var(--size-24) * 1 / 2);
    max-width: unset;
  }
}

@media (max-width: 768px) {
  .p-offering__title {
    font-size: var(--size-24);
    margin-bottom: var(--size-40);
  }
  .p-offering__content-read {
    font-size: var(--size-18);
    margin-bottom: var(--size-20);
    text-align: left;
  }
  .p-offering__content-text {
    font-size: var(--size-14);
    margin-bottom: var(--size-20);
    text-align: left;
  }
  .p-offering__system-list-item-number {
    font-size: var(--size-32);
    width: var(--size-96);
    height: var(--size-96);
  }
  .p-offering__system-list-item-title {
    min-height: calc(2em * 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--size-18);
    margin: var(--size-8) 0;
  }
  .p-offering__system-list-item-text {
    font-size: var(--size-14);
    margin-bottom: var(--size-16);
  }
  .p-offering__reasons-title {
    font-size: var(--size-18);
    margin: var(--size-40) 0 var(--size-20);
  }
  .p-offering__reasons-list-item-title {
    font-size: var(--size-18);
    margin-bottom: var(--size-16);
  }
  .p-offering__reasons-list-item-text {
    font-size: var(--size-14);
    margin-bottom: var(--size-16);
  }
  .p-offering__reasons-list {
    flex-direction: column;
    gap: var(--size-16);
  }
  .p-offering__reasons-list-item {
    width: 100%;
    padding: var(--size-40);
    padding: var(--size-16);
  }
  .p-offering__reasons-list-item-icon {
    width: var(--size-60);
    height: var(--size-60);
    margin: 0 auto var(--size-16);
  }
  .p-offering__reasons-list-item-title {
    font-size: var(--size-16);
    margin-bottom: var(--size-16);
  }
  .p-offering__product-content-header {
    flex-direction: column;
    gap: var(--size-16);
  }
  .p-offering__product-content-image {
    max-width: var(--size-240);
    margin: 0 auto;
  }
  .p-offering__product-content-text {
    width: 100%;
  }
  .p-offering__product-content-read {
    font-size: var(--size-16);
  }
  .p-offering__product-content-title {
    font-size: var(--size-18);
    margin-bottom: var(--size-16);
  }
  .p-offering__product-content-text-text {
    font-size: var(--size-14);
  }
  .p-offering__product-content-body-title {
    font-size: var(--size-16);
    margin: var(--size-40) 0 var(--size-16);
    gap: var(--size-16);
  }
  .p-offering__product-content-body-title-image {
    max-width: var(--size-60);
    height: var(--size-60);
  }
  .p-offering__product-content-body-list {
    flex-direction: column;
    gap: var(--size-16);
  }
  .p-offering__product-content-body-list-item {
    width: 100%;
  }
  .p-offering__product-content-body-list-item-title {
    font-size: var(--size-16);
  }
  .p-offering__product-content-body-ai-title {
    margin: var(--size-24) 0 var(--size-16);
    font-size: var(--size-18);
    padding: var(--size-8) var(--size-16);
    text-align: left;
  }
  .p-offering__product-content-body-ai-list {
    flex-direction: column;
    gap: var(--size-40);
  }
  .p-offering__product-content-body-ai-list-item {
    width: 100%;
  }
  .p-offering__product-content-body-ai-list-item-title {
    font-size: var(--size-16);
  }
  .p-offering__product-content-body-ai-list-arrow {
    width: 100%;
    height: 20px;
    rotate: 90deg;
  }
}

/* 採用情報 */
.p-recruit-wrapper {
  margin: 0 var(--size-50) var(--size-50);
  padding: var(--size-32) 0;
}
.p-recruit-container {
  display: flex;
  gap: var(--size-40);
}
.p-recruit-container.u-reverse {
  flex-direction: row-reverse;
}
.p-recruit-content {
  width: var(--size-708);
}
.p-recruit-content-image {
  flex: 1;
  width: 100%;
}
.tilt-image-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-10);
}
.tilt-image-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.77,0,0.18,1), transform 0.6s cubic-bezier(0.77,0,0.18,1);
}
.tilt-image-item.show {
  opacity: 1;
  transform: translateY(0);
}
.tilt-image-item:nth-child(2),
.tilt-image-item:nth-child(3) {
  width: calc(45% - var(--size-10) * 1 / 2);
  aspect-ratio: 400 / 325;
}
.tilt-image-item:nth-child(1),
.tilt-image-item:nth-child(4) {
  width: calc(55% - var(--size-10) * 1 / 2);
  aspect-ratio: 560 / 325;
}
.tilt-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-recruit-content-read {
  font-size: var(--size-62);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--size-24);
}
.p-recruit-content-text-text {
  margin-bottom: var(--size-16);
}
.p-recruit-content-text-en {
  font-size: var(--size-12);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: var(--size-16);
}
.p-recruit-scenes-title {
  display: flex;
  gap: var(--size-20);
  align-items: center;
  margin-bottom: var(--size-32);
}
.p-recruit-scenes-title-text-text {
  margin-left: var(--size-40);
}
.p-recruit-scenes-title-text {
  font-size: var(--size-62);
  font-weight: 700;
  line-height: 1.2;
}
.p-recruit-scenes-title-en {
  font-size: var(--size-12); 
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-recruit-scenes-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-12);
}
.p-recruit-scenes-list-item:nth-child(2n) {
  width: calc(30% - var(--size-12) * 3 / 4);
}
.p-recruit-scenes-list-item:nth-child(2n+1) {
  width: calc(20% - var(--size-12) * 3 / 4);
}
.p-recruit-scenes-list-item {
  border-radius: var(--size-12);
  overflow: hidden;
}
.p-recruit-scenes-list-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-recruit-content-links {
  display: flex;
  gap: var(--size-24);
}
.p-recruit-content-link {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 0 var(--size-24) 0 0;
  overflow: hidden;
  border: 1px solid var(--blue);
  background: #fff;
  padding: var(--size-50);
}
.p-recruit-content-link .c-section-subtitle {
  font-size: var(--size-45);
}
.p-recruit-content-link .c-section-title {
  color: var(--blue);
}
.p-recruit-business .p-recruit-content {
  width: var(--size-1032);
}
.p-recruit-content-link {
  transition: background 0.3s ease, color 0.3s ease;
}
.p-recruit-content-link:hover {
  background: var(--blue);
  color: #fff;
}
.p-recruit-content-link .c-section-title,
.p-recruit-content-link .c-section-subtitle {
  transition: color 0.3s ease;
}
.p-recruit-content-link:hover .c-section-title,
.p-recruit-content-link:hover .c-section-subtitle {
  color: #fff;
}
.p-recruit-content-link .c-section-heading__top {
  transition: border-color 0.3s ease;
}
.p-recruit-content-link:hover .c-section-heading__top {
  border-color: #fff;
}
.c-recruit-inner-narrow .p-recruit-content {
  width: var(--size-400);
}
.p-recruit-process-list {
  margin-top: var(--size-64);
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-16);
}
.p-recruit-process-list-item {
  width: calc(20% - var(--size-16) * 4 / 5);
}
.p-recruit-entry-container {
  display: flex;
  gap: var(--size-16);
  flex-wrap: wrap;
}
.p-recruit-entry-content {
  width: calc(50% - var(--size-16) * 1 / 2);
  padding: var(--size-48) var(--size-40);
  display: flex;
  flex-direction: column;
}
.p-recruit-entry-content.u-blue {
  background: #6281A9;
}
.p-recruit-entry-content.u-red {
  background: #BB696F;
}
.p-recruit-entry-content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-recruit-entry-content-text-text {
  color: #fff;
}
.p-recruit-entry-content .c-section-title,
.p-recruit-entry-content .c-section-subtitle {
  color: #fff;
}
.p-recruit-entry-content .c-section-heading__top {
  border-color: #fff;
}
.p-recruit-entry-content-text .c-button {
  max-width: var(--size-200);
  margin: auto 0 0 auto;
}
.p-recruit-entry-content-text-label {
  width: fit-content;
  padding: var(--size-8) var(--size-16);
  border: 1px solid #fff;
  color: #fff;
  margin-bottom: var(--size-16);
}
.p-recruit-entry-content-text-link {
  display: block;
  width: var(--size-136);
  margin-bottom: var(--size-8);
}

@media (max-width: 1440px) {
  .p-recruit-content-links {
    flex-direction: column;
  }
  .p-recruit-business .p-recruit-content {
    max-width: var(--size-768);
    width: 100%;
  }
  .p-recruit-content-link {
    width: 100%;
  }
}
@media (max-width: 1240px) {
  .p-recruit-container {
    flex-direction: column;
  }
  .p-recruit-entry-content {
    width: 100%;
  }
  .p-recruit-content {
    width: 100%;
  }
  .p-recruit-business .p-recruit-container {
    flex-direction: column-reverse;
  }
  .p-recruit-entry-content {
    width: 100%;
  }
  .p-recruit-business .p-recruit-content {
    max-width: 100%;
    width: 100%;
  }
  .p-recruit-container.u-reverse {
    flex-direction: column;
  }
  .p-recruit-scenes-title {
    flex-wrap: wrap;
  }
  .p-recruit-scenes-title-text-text {
    width: 100%;
    margin-left: 0;
  }
  .p-recruit-entry-content-text .c-button {
    margin: var(--size-24) 0 0 auto;
  }
}

@media (max-width: 768px) {
  .p-recruit-container {
    gap: var(--size-20);
  }
  .p-recruit-wrapper {
    margin: 0 var(--size-16) var(--size-16);
  }
  .p-recruit-entry-content-text-label {
    font-size: var(--size-12);
  }
  .c-recruit-inner {
    padding: 0 var(--size-16);
  }
  .p-recruit-content-read {
    font-size: var(--size-24);
  }
  .p-recruit-content-text-text {
    font-size: var(--size-16);
  }
  .p-recruit-scenes-title-en {
    font-size: var(--size-10);
  }
  .p-recruit-scenes-title-text-text {
    font-size: var(--size-14);
  }
  .p-recruit-scenes-title-text {
    font-size: var(--size-24);
  }
  .p-recruit-scenes-title-text-text {
    font-size: var(--size-14);
  }
  .p-recruit-scenes-list-item:nth-child(1),
  .p-recruit-scenes-list-item:nth-child(4) {
    width: calc(60% - var(--size-12) * 1 / 2);
  }
  .p-recruit-scenes-list-item:nth-child(2),
  .p-recruit-scenes-list-item:nth-child(3) {
    width: calc(40% - var(--size-12) * 1 / 2);
  }
  .p-recruit-business .c-section-subtitle {
    font-size: 1.75rem;
  }
  .p-recruit-business .p-recruit-container {
    gap: var(--size-20);
  }
  .p-recruit-content-link {
    padding: var(--size-32) var(--size-24);
  }
  .c-swiper-button-prev,
  .c-swiper-button-next {
    width: var(--size-40);
    height: var(--size-40);
  }
  .p-recruit-process-list {
    margin-top: var(--size-40);
    justify-content: center
  }
  .p-recruit-process-list-item {
    width: calc(50% - var(--size-16) * 1 / 2);
  }
  .p-recruit-entry-content-text-label {
    font-size: var(--size-12);
  }
  .p-recruit-entry-content-text-link {
    width: var(--size-100);
  }
  .p-recruit-entry-content {
    padding: var(--size-32) var(--size-24);
  }
}

/* お問い合わせ */
.p-contact {
  padding: 0 0 var(--size-100);
}
.c-form-design {
  max-width: var(--size-1520);
  margin: 0 auto;
  font-size: var(--size-16);
  border-top: var(--size-1) solid #ddd;
}
.c-form-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: var(--size-1) solid #ddd;
  margin: 0;
  align-items: stretch;
  background: #fff;
}
.c-form-row p {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--size-4);
}
.c-form-row dt {
  width: 25%;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding-right: var(--size-16);
  border-right: var(--size-1) solid #ddd;
  border-left: var(--size-1) solid #ddd;
  padding: 0 var(--size-20);
}
.badge-required {
  background-color: #ff4d4f; /* 画像の赤色 */
  color: #fff;
  font-size: var(--size-12);
  padding: var(--size-2) var(--size-6);
  margin-left: auto;
}
.c-form-row dd {
  width: 75%;
  margin: 0;
  padding: var(--size-10) var(--size-20);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-right: var(--size-1) solid #ddd;
}

/* --- 入力フィールドの基本スタイル --- */
.wpcf7-text, 
.wpcf7-textarea, 
.wpcf7-select {
width: 100%;
padding: var(--size-10);
border: var(--size-1) solid var(--blue);
background: #fff;
border-radius: 0; /* 角丸なし */
box-sizing: border-box;
}

/* --- 住所エリアの特殊レイアウト --- */
.address-group div {
margin-bottom: var(--size-10);
}
.address-group div:last-child {
margin-bottom: 0;
}
/* 郵便番号の行 */
.zip-row {
display: flex;
align-items: center;
}
.zip-row br {
  display: none;
}
.zip-mark {
margin-right: var(--size-10);
font-size: var(--size-16);
}
.input-zip1, .input-zip2 {
width: 80px !important; /* 幅を固定 */
display: inline-block;
text-align: center;
}
.tel-row {
display: flex;
align-items: center;
gap: var(--size-10);
}
.input-tel {
width: var(--size-80) !important;
text-align: center;
}

/* --- 個人情報の取り扱いエリア --- */
.privacy-section {
  max-width: var(--size-1520);
  margin: var(--size-40) auto 0;
}
.privacy-lead {
  font-weight: bold;
  margin: var(--size-16) 0;
}
/* スクロールボックス */
.privacy-scroll-box {
  max-height: var(--size-200);
  background: #fff;
  padding: var(--size-32) var(--size-40);
  overflow-y: scroll;
}
.privacy-scroll-box ol {
  list-style: number;
  padding-left: 1em;
  font-size: var(--size-14);
  line-height: 1.6;
}
.privacy-scroll-box ol li {
  margin-bottom: 1em;
}
.privacy-scroll-box .indent {
  margin-left: -0.5em;
}
.privacy-check-wrap {
text-align: center;
margin-bottom: var(--size-30);
}
.submit-wrap {
  display: flex;
  justify-content: center;
}
#btn-mode-confirm p {
  text-align: center;
  display: flex;
  gap: var(--size-16);
  justify-content: center;
}
.wpcf7-submit {
background-color: #ffbc00;
color: #333;
font-weight: bold;
border: none;
padding: var(--size-15) var(--size-80);
border-radius: var(--size-50);
cursor: pointer;
font-size: var(--size-16);
transition: 0.3s;
}
.wpcf7-submit:hover {
background-color: #e6a800;
}
.wpcf7 .wpcf7-submit:disabled {
opacity: 0.5;
}
.wpcf7-form-control-wrap {
  width: 100%;
}
.zip-row .wpcf7-form-control-wrap {
  width: fit-content;
}
.tel-row .wpcf7-form-control-wrap {
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .p-contact__text {
    font-size: var(--size-14);
    text-align: left!important;
  }
  .c-form-row {
    display: block;
    border: solid #ddd var(--size-1);
    margin: -1px;
  }
  .c-form-design {
    border: none;
  }
  .c-form-row dt {
    width: 100%;
    margin-bottom: var(--size-10);
    border: none;
    padding: var(--size-16) var(--size-16) var(--size-8);
  }
  .c-form-row dd {
    width: 100%;
    border: none;
    padding: 0 var(--size-16) var(--size-16);
  }
  .tel-row, .zip-row {
    gap: 5px;
  }
  .wpcf7-submit {
    width: 100%;
  }
  .privacy-scroll-box {
    padding: var(--size-24) var(--size-16);
  }
  .wpcf7-submit {
    background-color: #ffbc00;
    color: #333;
    font-weight: bold;
    border: none;
    padding: var(--size-8) var(--size-24);
    border-radius: var(--size-50);
    cursor: pointer;
    font-size: var(--size-16);
    transition: 0.3s;
    display: block;
    min-width: var(--size-150);
  }
  .wpcf7-spinner {
    display: none;
  }
  #btn-mode-confirm br {
    display: none;
  }
  .js-confirm-text {
    font-size: var(--size-18);
  }
}

/* エラー時のスタイル */
.error-field {
    border: var(--size-1) solid #ff0000 !important;
    background-color: #fff0f0 !important;
}

/* 確認画面モード時の微調整 */
.mode-confirm .badge-required {
    display: none; /* 確認画面では「必須」バッジを消す */
}
.mode-confirm input[type="checkbox"] {
    display: none; /* 同意チェックボックス本体を消す */
}
/* 同意の文言だけ残す調整 */
.mode-confirm .privacy-check-wrap label {
    pointer-events: none; /* クリック不可に */
}
/* 確認画面のテキスト表示 */
.js-confirm-text {
    margin: 0;
    padding: var(--size-10) 0;
    font-size: var(--size-16);
    color: #333;
}

/* 汎用ページ */
.p-page-template {
  padding: 0 0 var(--size-120);
}
.p-page-template .c-inner *:not(:last-child) {
  margin-bottom: var(--size-16);
}

@media (max-width: 768px) {
  .p-page-template {
    padding: 0 0 var(--size-60);
  }
}