@charset "UTF-8";

:root {
  --font-size-base: 0.9375rem;
  --font-size-18: 1rem;
  --font-size-20: 1rem;
  --font-size-24: 1.125rem;
  --font-size-32: 1.5rem;
  --font-size-34: 1.5rem;
  --font-size-42: 1.625rem;
  --font-family-ja: 'Noto Sans JP', sans-serif;
  --font-family-ja-2: "Poppins", sans-serif;
  --font-family-en: "Alata", sans-serif;
  --color-blue-font: #162D63;
  --color-blue-font-2: #0E2785;
  --color-blue-1: #1A3074;
  --color-blue-border: #15275E;
  --color-blue-link: #288DC9;
  --color-black-1: #707070;
  --color-black-2: #0E0E0E;
  --color-gray-1: #F4F4F4;
  --color-gray-border: #E2E2E2;
  --line-height-base: 1.5;
  --line-height-large: 1.8;
  --gradation-blue: linear-gradient(180deg, #288DC9 0%, #1A3074 100%);
  /* Figma: 線形 0%:#288DC9(透明) → 100%:#1A3074(不透明) 左→右 */
  --gradation-blue-overlay: linear-gradient(to bottom, rgba(40, 141, 201, 0), #1A3074);
  --gradation-blue-black: linear-gradient(rgb(0 0 0 / 0.2), rgb(0 0 0 / 0.2)), linear-gradient(180deg, #288DC9 0%, #1A3074 100%);
  --inner-padding: 15px;
  --header-height: 3.75rem;
}

@media screen and (min-width: 768px) {
  :root {
    --line-height-large: 2;
    --inner-padding: 50px;
    --font-size-18: 1.125rem;
    --font-size-20: 1.25rem;
    --font-size-24: 1.5rem;
    --font-size-32: 2rem;
    --font-size-34: 2.125rem;
    --font-size-42: 2.625rem;
    --header-height: 7.5rem;
  }
}
* {
  box-sizing: border-box;
}

a, button, input, textarea {
  color: inherit;
  font-size: inherit;
}

a {
  cursor: pointer;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

html {
  font-size: 4.2666666667vw;
}

@media screen and (min-width: 375px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 100%;
  }
}
body {
  font-size: var(--font-size-base);
  font-family: var(--font-family-ja);
  font-weight: 400;
  line-height: var(--line-height-base);
}

p {
  line-height: var(--line-height-large);
}

/** utilities **/
.u-only-pc {
  display: none;
}

.u-only-sp {
  display: block;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .u-only-pc {
    display: block;
  }
  .u-only-sp {
    display: none;
  }
}
/** layout **/
.l-siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-main {
  flex: 1;
}

.l-main--page {
  margin-top: var(--header-height);
}

.l-section {
  position: relative;
}

.l-section__logo {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(12.5rem, 26.375vw, 422px);
  aspect-ratio: 422/477;
  z-index: -1;
  translate: 10% -25%;
}

@media screen and (min-width: 768px) {
  .l-section__logo {
    translate: 50% -25%;
  }
}
.l-container {
  position: relative;
  width: min(100% - var(--inner-padding) * 2, 1100px);
  margin-inline: auto;
}

/** title **/
.c-title-1__en {
  font-size: 1.75rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
}

.c-title-1__ja {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .c-title-1__en {
    font-size: 3.125rem;
  }
}
.c-title-2 {
  --_border-color: var(--color-blue-font);
  position: relative;
  font-size: 1.375rem;
  font-weight: 500;
  padding-left: 0.8em;
}
.c-title-2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 2px;
  height: 100%;
  background-color: var(--_border-color);
  border-radius: 3px;
}

@media screen and (min-width: 768px) {
  .c-title-2 {
    font-size: 2.125rem;
  }
}
/** button **/
.c-button-1 {
  position: relative;
  width: min(100%, 25rem);
  height: var(--_height, 4.6875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: color 0.3s ease-out;
}

.p-company__access-button.c-button-1 {
  width: min(100%, 20rem);
  font-family: var(--font-family-en);
  font-weight: 400;
}

.c-button-1__text {
  font-size: var(--_font-size, 1.125rem);
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
  z-index: 3;
}

.c-button-1__icon svg {
  z-index: 3;
  position: absolute;
  top: 50%;
  right: min(11.75%, 47px);
  translate: 0 -50%;
}

.c-button-1__tel,
.c-button-1__paragraph {
  position: relative;
  z-index: 3;
}

.c-button-1__tel {
  line-height: 1;
}

.c-button-1__tel-label {
  font-size: 1.25rem;
  font-family: var(--font-family-en);
  translate: 0 3px;
}

.c-button-1__tel-number {
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  font-family: var(--font-family-en);
}

.c-button-1__paragraph {
  font-size: var(--font-size-20);
}

.c-button-1__tel {
  display: flex;
  align-items: center;
  gap: 6px;
}

.c-button-1__icon-mail {
  z-index: 3;
  margin-right: 10px;
  color: var(--color-blue-font);
  transition: color 0.3s ease-out;
}

.p-top__contact-link--tel {
  flex-direction: column;
}

.c-button-1__paragraph {
  font-size: 0.875rem;
}

.c-button-1--blue {
  background: var(--_background-color, #fff);
  transition: background 0.3s ease-out;
}

.c-button-1--blue-2 {
  background: var(--_background-color, #0E2785);
  color: var(--_color, #fff);
  transition: background 0.3s ease-out;
  border: 1px solid #0E2785;
}

.c-button-1--gradation {
  background: var(--_background-color, #fff);
  color: var(--_color, var(--color-blue-font));
  border: 1px solid var(--color-blue-font);
}
.c-button-1--gradation::before {
  z-index: 2;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradation-blue);
  border-radius: 50px;
  pointer-events: none;
  opacity: var(--_opacity, 0);
  transition: opacity 0.3s ease-out;
}

.c-button-1--center {
  margin-inline: auto;
}

.c-button-1--gradation.p-top__contact-link {
  --_height: 5rem;
  --_color: #000;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .c-button-1 {
    --_height: 5.625rem;
  }
  .c-button-1__text {
    --_font-size: 1.25rem;
  }
  .c-button-1.p-top__contact-link {
    --_height: 6.25rem;
  }
  /* disabled のときはホバーアニメーションなし（CF7送信中等） */
  .c-button-1--gradation:hover:not([disabled]) {
    --_color: #fff;
    --_opacity: 1;
  }
  .c-button-1--gradation.p-top__contact-link--tel:hover:not([disabled]) {
    --_color: #fff;
  }
  .c-button-1.p-top__contact-link--mail:hover .c-button-1__icon-mail {
    color: #fff;
  }
  .c-button-1--blue:hover {
    --_background-color: #76C6FF;
  }
  .c-button-1--blue-2:hover {
    --_background-color: #fff;
    --_color: #0E2785;
  }
}
.c-button-more {
  display: block;
  color: var(--color-blue-font-2);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  font-family: var(--font-family-en);
  padding-bottom: 0.7142857143em;
  border-bottom: 1px solid currentColor;
  width: fit-content;
  transition: opacity 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .c-button-more:hover {
    opacity: 0.7;
  }
}
/** article **/
.c-articles {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

.swiper-scrollbar {
  margin-top: 30px;
  position: static !important;
}

@media screen and (min-width: 600px) {
  .swiper-works .swiper-wrapper,
  .c-articles {
    grid-template-columns: repeat(2, 1fr);
  }
  .swiper-works .swiper-wrapper {
    display: grid !important;
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .swiper-works .swiper-wrapper,
  .c-articles {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-article a {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
}

.c-article__list {
  display: flex;
  gap: 10px 20px;
}

.c-article__time {
  padding-top: 0.2em;
  color: #707070;
  font-size: 0.8125rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
}

.c-article__category-list {
  display: flex;
  gap: 6px 10px;
  flex-wrap: wrap;
}

.c-article__category {
  background-color: #373737;
  color: #fff;
  border-radius: 30px;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.25em 1em;
}

.c-article__image {
  margin-bottom: 30px;
  overflow: hidden;
}
.c-article__image img {
  display: block;
  width: 100%;
  aspect-ratio: 340/220;
  scale: var(--_scale, 1);
  object-fit: cover;
  transition: scale 0.3s ease-out;
}

.c-article__list {
  margin-bottom: 24px;
}

.c-article__title {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .c-article a:hover {
    --_scale: 1.05;
  }
}
/** list **/
.c-list {
  border-bottom: 1px solid var(--color-gray-border);
}
.c-list:first-of-type {
  border-top: 1px solid var(--color-gray-border);
}

.c-list a {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 4.8125rem 1fr;
  gap: 3.4375vw;
}

.c-list__time,
.c-list__title {
  transform: var(--_transform, translateX(0px));
  transition: transform 0.3s ease-out;
}

.c-list__time {
  color: #707070;
  font-size: 0.8125rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
}

.c-list__title {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .c-list a:hover {
    --_transform: translateX(7px);
  }
}
.l-header {
  position: relative;
  height: var(--header-height);
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
.l-header::before {
  background-color: rgb(255, 255, 255);
  opacity: var(--_opacity, 0);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-out;
  z-index: -1;
}

.l-header.is-active {
  --_opacity: 1;
}

.l-header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 15px;
}

.l-header__logo {
  width: min(100%, 100px);
}
.l-header__logo img {
  display: block;
  width: 100%;
  aspect-ratio: 195/60;
}

.l-header__menu {
  display: flex;
  align-items: center;
  height: inherit;
}

.l-header__nav {
  display: none;
}

.l-header__nav-list-item a:hover {
  transition: color 0.3s ease-out;
}

@media screen and (min-width: 1280px) {
  .l-header__inner {
    padding-left: 45px;
  }
  .l-header__logo {
    width: min(100%, 195px);
  }
  .l-header__menu {
    gap: 50px;
  }
  .l-header__nav {
    display: block;
  }
  .l-header__nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .l-header__nav-list-item a:hover {
    color: var(--color-blue-link);
  }
}
@media screen and (min-width: 1440px) {
  .l-header__nav-list {
    gap: 30px;
  }
}
.l-header__contact {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--gradation-blue);
  background-color: transparent;
  color: #fff;
  height: 100%;
  aspect-ratio: 1/1;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 0.625rem;
  transition: filter 0.3s ease-out;
}

.l-header__contact-icon {
  width: 1.25rem;
  aspect-ratio: 1/1;
  display: block;
}

@media screen and (min-width: 768px) {
  .l-header__contact {
    gap: 10px;
    font-size: 0.9375rem;
  }
  .l-header__contact:hover {
    filter: brightness(1.2);
  }
  .l-header__contact-icon {
    width: 2rem;
  }
}
.l-header__hamburger {
  --_span-gap: 5px;
  z-index: 10;
  position: relative;
  height: 100%;
  aspect-ratio: 1/1;
  width: auto;
  background-color: #000;
  border: none;
}
.l-header__hamburger span {
  background-color: #fff;
  width: 25%;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease-out;
}
.l-header__hamburger span:nth-child(1) {
  translate: -50% calc(-50% - var(--_span-gap));
}
.l-header__hamburger span:nth-child(2) {
  translate: -50% -50%;
}
.l-header__hamburger span:nth-child(3) {
  translate: -50% calc(50% + var(--_span-gap));
}

.l-header__hamburger.is-active {
  background-color: transparent;
}
.l-header__hamburger.is-active span:nth-child(1),
.l-header__hamburger.is-active span:nth-child(2),
.l-header__hamburger.is-active span:nth-child(3) {
  translate: -50% -50%;
}
.l-header__hamburger.is-active span:nth-child(1) {
  rotate: 45deg;
}
.l-header__hamburger.is-active span:nth-child(3) {
  rotate: -45deg;
}
.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .l-header__hamburger {
    --_span-gap: 7px;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__sp-nav {
  display: block;
  background-color: #000;
  padding: 100px 23px 100px;
  height: 100%;
  max-height: 100vh;
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 9;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  overflow-y: auto;
}

.l-header__sp-nav.is-active {
  transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .l-header__sp-nav {
    width: 50%;
  }
}
.l-header__sp-nav-list-item {
  border-bottom: 1px solid #4D6C87;
}

.l-header__sp-nav-list-item a {
  font-weight: 500;
  padding: 1em 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 1280px) {
  .l-header__sp-nav {
    display: none;
  }
}
.l-footer {
  background-color: #373737;
  color: #fff;
  padding: 100px 0 90px;
}

.l-footer__inner {
  margin-bottom: 65px;
  width: min(100% - var(--inner-padding) * 2, 1200px);
  margin-inline: auto;
}

.l-footer__logo {
  margin-bottom: 55px;
  width: min(100%, 181px);
  margin-inline: auto;
}
.l-footer__logo img {
  display: block;
  width: 100%;
  aspect-ratio: 181/157;
}

.l-footer__address {
  font-style: normal;
  width: fit-content;
  margin-inline: auto;
}
.l-footer__address a {
  transition: color 0.3s ease-out;
}

.l-footer__address-title {
  font-weight: 500;
  font-size: var(--font-size-20);
  margin-bottom: 1em;
  display: block;
  letter-spacing: 0.1em;
}

.l-footer__nav {
  display: none;
}

.l-footer__nav a {
  transition: color 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .l-footer__inner {
    display: flex;
    gap: 18.75rem;
    align-items: flex-end;
  }
  .l-footer__info {
    width: 23.4375rem;
  }
  .l-footer__logo {
    margin-inline: 0;
  }
  .l-footer__address {
    margin-inline: 0;
  }
  .l-footer__address a:hover {
    color: var(--color-blue-link);
  }
  .l-footer__nav {
    flex: 1;
    display: flex;
    gap: 43px;
    line-height: 3;
  }
  .l-footer__nav a:hover {
    color: var(--color-blue-link);
  }
}
.l-footer__copyright {
  text-align: center;
  font-family: var(--font-family-en);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.p-top__fv {
  overflow: hidden;
  position: relative;
}

.p-top__fv-text {
  color: #fff;
}

.p-top__fv-text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: absolute;
  bottom: 11.3333333333%;
  left: 0;
  padding-inline: 26px;
}

.p-top__fv-text-title {
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: var(--font-family-ja-2);
}

.p-top__fv-text-paragraph {
  font-size: 1rem;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .p-top__fv-text {
    padding-inline: 50px;
    top: 50%;
    left: 0;
    translate: 0 -50%;
  }
  .p-top__fv-text-title {
    font-size: 3.125rem;
  }
  .p-top__fv-text-paragraph {
    font-size: 1.375rem;
  }
}
/** fv slider **/
.p-top__fv-slider {
  position: relative;
}
.p-top__fv-slider img {
  display: block;
  width: 100%;
  aspect-ratio: 1600/830;
  height: auto;
  min-height: 600px;
  object-fit: cover;
}

/**fv article **/
.p-top__article {
  display: block;
  width: min(100%, 750px);
  padding: 25px;
}

.p-top__article a {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  gap: 10px;
  width: 100%;
  transition: opacity 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .p-top__article {
    z-index: 2;
    position: absolute;
    bottom: 44px;
    right: 0;
    padding: 0 50px;
  }
  .p-top__article a {
    padding: 20px 33px;
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }
}
.p-top__article-time {
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  font-weight: 400;
  color: var(--color-black-1);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}

.p-top__article-paragraph {
  flex: 1;
}

.p-top__article-link {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-top__article-link {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
.p-top__article-link-text {
  font-size: 0.8125rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.2em;
  color: var(--color-black-2);
  text-transform: uppercase;
}

.p-top__article-link-icon {
  width: 2.375rem;
  height: 2.375rem;
  background: var(--gradation-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: var(--_opacity, 1);
  transition: opacity 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .p-top__article a:hover {
    --_opacity: 0.8;
  }
}
/** about **/
.p-top__about {
  padding-top: 40px;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.p-top__about-inner {
  margin-inline: auto;
  width: min(100% - var(--inner-padding) * 2, 1170px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.p-top__about-text-lead {
  margin-bottom: 0.9428571429em;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: var(--line-height-base);
}

.p-top__about-text-paragraph {
  margin-bottom: 40px;
}

.p-top__about-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
}

@media screen and (min-width: 768px) {
  .p-top__about {
    padding-top: 120px;
    padding-bottom: 100px;
    margin-bottom: 120px;
  }
  .p-top__about-inner {
    gap: min(9.6875vw, 155px);
    grid-template-columns: auto 1fr;
  }
  .p-top__about-text-lead {
    font-size: 2.25rem;
  }
  .p-top__about-text-paragraph {
    margin-bottom: 4.0625em;
  }
  .p-top__about-links {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}
/** gallary **/
.p-top__gallary-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.p-top__gallary {
  display: flex;
  width: max-content;
  animation: spot-slider-scroll linear infinite;
}

.p-top__gallary-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.p-top__gallary-item {
  flex-shrink: 0;
  width: clamp(220px, 21.25vw, 340px);
  max-width: 100%;
  margin-right: 16px;
}
.p-top__gallary-item:nth-child(even) {
  padding-top: 35px;
}
.p-top__gallary-item picture {
  display: block;
}
.p-top__gallary-item img {
  width: 100%;
  aspect-ratio: 340/255;
  object-fit: cover;
  display: block;
}

@keyframes spot-slider-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/** feature **/
.p-top__feature {
  position: relative;
  margin-top: -75px;
  padding-top: 130px;
  padding-bottom: 100px;
  background: var(--gradation-blue);
}
.p-top__feature::before {
  z-index: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.p-top__feature-inner {
  z-index: 1;
  position: relative;
  margin-inline: auto;
  width: min(100% - var(--inner-padding) * 2, 1014px);
}

.p-top__feature-title {
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

.p-top__feature-list {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 60px min(4.0625vw, 65px);
}

@media screen and (min-width: 768px) {
  .p-top__feature {
    margin-top: -135px;
    padding-top: 260px;
    padding-bottom: 145px;
  }
  .p-top__feature-title {
    margin-bottom: 100px;
  }
  .p-top__feature-list {
    margin-bottom: 65px;
  }
}
.p-top__feature-item-icon {
  container-type: inline-size;
  width: min(100%, 280px);
  margin-inline: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  position: relative;
  background-color: #fff;
  margin-bottom: 10px;
}
.p-top__feature-item-icon::before {
  content: attr(data-number);
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-family: var(--font-family-en);
  line-height: 1;
  font-size: 28.5714285714cqw;
  letter-spacing: 0.1em;
  translate: 0 -50%;
}

.p-top__feature-item-icon-image {
  width: auto;
  height: max(50px, 28.9285714286%);
}

.p-top__feature-item-title {
  font-size: var(--font-size-24);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-top__feature-item-lead,
.p-top__feature-item-paragraph {
  color: #fff;
}

.p-top__feature-item-lead {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.2em;
}

.p-top__feature-image {
  z-index: 0;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: url("../images/top/feature-bg.png");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 100%;
  opacity: 0.6;
}

@media screen and (min-width: 768px) {
  .p-top__feature-item-lead {
    font-size: 1.25rem;
  }
}
/** service **/
.p-top__service {
  padding-top: 60px;
  padding-bottom: 70px;
}

@media screen and (min-width: 768px) {
  .p-top__service {
    padding-top: 120px;
    padding-bottom: 140px;
  }
}
.p-top__service-title {
  margin-bottom: 40px;
}

.p-top__service-title-en {
  font-size: 2.5rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 12px;
  display: inline-block;
}

.p-top__service-title-ja {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.p-top__service-list {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.p-top__service-item a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 30px;
  color: var(--_color, #fff);
  transition: color 0.3s ease-out;
  margin-inline: auto;
}
.p-top__service-item a::before, .p-top__service-item a::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: var(--_opacity, 1);
  transition: opacity 0.3s ease-out;
}
.p-top__service-item a::before {
  background: var(--gradation-blue-overlay);
}
.p-top__service-item a::after {
  background-color: rgba(0, 0, 0, 0.2);
}

.p-top__service-item-header,
.p-top__service-item-body {
  position: relative;
  z-index: 2;
}

.p-top__service-item-body p {
  padding-top: 25px;
}

.p-top__service-item-header-number {
  display: block;
  font-size: 1.125rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}
.p-top__service-item-header-number::before {
  content: attr(aria-label);
  margin-right: 10px;
}

.p-top__service-item-title {
  font-size: var(--font-size-32);
  letter-spacing: 0.1em;
}

.p-top__service-item-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  max-height: var(--_max-height, 200);
  opacity: var(--_opacity, 1);
  transform: var(--_transform, 0px);
}

.p-top__service-item-icon {
  border: 1px solid currentColor;
  width: 15.8823529412%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-inline-start: auto;
}

.p-top__service-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .p-top__service-title {
    margin-bottom: 60px;
  }
  .p-top__service-title-en {
    font-size: 5rem;
  }
  .p-top__service-list {
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  }
  .p-top__service-item a {
    width: min(100%, 340px);
    aspect-ratio: 340/576;
    color: var(--_color, #000);
  }
  .p-top__service-item a::before, .p-top__service-item a::after {
    opacity: var(--_opacity, 0);
  }
  .p-top__service-item a:hover {
    --_color: #fff;
    --_opacity: .8;
    --_max-height: 200px;
    --_opacity: 1;
    --_transform: 0;
  }
  .p-top__service-item-body {
    max-height: var(--_max-height, 0);
    opacity: var(--_opacity, 0);
    transform: var(--_transform, 6px);
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out, transform 0.4s ease-out;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__service-item:nth-child(even) {
    margin-top: -150px;
  }
}
/** works **/
.p-top__works {
  background-color: var(--color-gray-1);
  padding: 60px 0;
}

.p-top__works-title {
  margin-bottom: 50px;
  text-align: center;
}

.p-top__works-title-2 {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .p-top__works {
    padding: 110px 0;
  }
  .p-top__works-title {
    margin-bottom: 80px;
  }
  .p-top__works-title-2 {
    margin-bottom: 60px;
  }
}
.p-top__works-items {
  margin-bottom: 50px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .p-top__works-items {
    margin-bottom: 85px;
  }
}
/** news **/
.p-top__news {
  padding: 60px 0;
}

.p-top__news-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.p-top__news-header {
  display: contents;
}

.p-top__news-title {
  text-align: center;
}

.p-top__news-button {
  margin-inline-start: auto;
  order: 3;
}

@media screen and (min-width: 768px) {
  .p-top__news {
    padding: 120px 0;
  }
  .p-top__news-inner {
    grid-template-columns: auto 1fr;
    gap: 7.5vw;
  }
  .p-top__news-header {
    display: block;
  }
  .p-top__news-title {
    margin-bottom: 65px;
    text-align: left;
  }
  .p-top__news-button {
    order: initial;
    margin-inline-start: 0;
  }
}
/** contact **/
.p-top__contact {
  position: relative;
  padding: 60px 0;
}

.p-top__contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.p-top__contact-header {
  color: #fff;
  text-align: center;
}

.p-top__contact-title {
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  font-weight: 400;
  margin-bottom: 12px;
}

.p-top__contact-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .p-top__contact {
    padding: 120px 0;
  }
  .p-top__contact-inner {
    grid-template-columns: auto 1fr;
    gap: 5.625vw;
    align-items: flex-end;
  }
  .p-top__contact-header {
    text-align: left;
  }
  .p-top__contact-title {
    font-size: 3.125rem;
  }
  .p-top__contact-links {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr;
    padding-right: 35px;
  }
}
.p-top__contact-image {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-page {
  padding: 40px 0;
}

.p-page__title {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--color-blue-font);
}

.p-page__title-ja {
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: var(--font-family-en);
}

.p-page__title-en {
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  display: inline-block;
  padding-bottom: 0.2em;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .p-page {
    padding: 100px 0 80px;
  }
  .p-page__title {
    margin-bottom: 100px;
    gap: 40px;
    gap: 20px;
    align-items: flex-end;
    flex-direction: row;
  }
  .p-page__title-ja {
    font-size: 3.125rem;
  }
  .p-page__title-en {
    padding-bottom: 0.5em;
  }
}
/**
  breadcrumb
**/
.p-page__breadcrumb {
  font-size: 0.75rem;
  line-height: 1.5;
  text-transform: uppercase;
}
.p-page__breadcrumb a {
  color: #000;
}
.p-page__breadcrumb span:first-of-type {
  padding-right: 5px;
}
.p-page__breadcrumb span:not(:first-of-type) {
  padding: 0 5px;
}

.p-company__message {
  margin-bottom: 60px;
  overflow-x: clip;
}

.p-company__title {
  margin-bottom: 35px;
}

.p-company__lead {
  font-size: var(--font-size-24);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1.25em;
  line-height: 1.5;
}

.p-company__paragraph {
  margin-bottom: 1.6666666667em;
}

.p-company__name-wrapper {
  width: fit-content;
  margin-inline-start: auto;
}

.p-company__name-position {
  margin-bottom: 10px;
}

.p-company__name {
  font-size: var(--font-size-24);
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-company__message {
    margin-bottom: 100px;
  }
  .p-company__title {
    margin-bottom: 50px;
  }
}
/** outline **/
.p-company__outline {
  margin-bottom: 50px;
}

.p-company__outline-title {
  margin-bottom: 1.4705882353em;
}

@media screen and (min-width: 768px) {
  .p-company__outline {
    margin-bottom: 85px;
  }
}
/*** access ***/
.p-company__access {
  margin-bottom: 60px;
}

.p-company__access-title {
  text-align: center;
  margin-bottom: 35px;
}

.p-company__access-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-company__access-address {
  margin-bottom: 40px;
}

.p-company__access-address-title {
  font-size: var(--font-size-24);
  font-weight: 700;
  line-height: 1.5;
  display: block;
  margin-bottom: 1em;
}

.p-company__access-address-tel {
  font-family: var(--font-family-en);
  font-weight: 400;
}

.p-company__access-map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 600/450;
}

@media screen and (min-width: 768px) {
  .p-company__access {
    margin-bottom: 120px;
  }
  .p-company__access-body {
    grid-template-columns: 1fr 46.875%;
    gap: 50px;
  }
  .p-company__access-title {
    margin-bottom: 50px;
  }
}
.c-dataList {
  padding: 1.25em 0;
  border-bottom: 1px solid var(--color-gray-border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.c-dataList:first-child {
  border-top: 1px solid var(--color-gray-border);
}
.c-dataList dt {
  font-weight: 500;
}
.c-dataList a {
  cursor: pointer;
  transition: color 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .c-dataList {
    padding: 2em 0;
    grid-template-columns: 9.375rem 1fr;
    gap: 30px;
  }
  .c-dataList dt {
    font-weight: 400;
  }
  .c-dataList a:hover {
    color: var(--color-blue-link);
  }
}
.p-esg__section {
  overflow-x: clip;
  margin-bottom: 60px;
}

.p-esg__header {
  margin-bottom: 60px;
}

.p-esg__header-lead {
  font-size: var(--font-size-42);
  font-weight: 700;
  margin-bottom: 1em;
}

.p-esg__header-paragraph {
  width: min(100%, 540px);
}

@media screen and (min-width: 768px) {
  .p-esg__section {
    margin-bottom: 120px;
  }
  .p-esg__header {
    margin-bottom: 100px;
  }
}
/** content **/
.p-esg__content {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-esg__content-item-icon {
  margin-bottom: 20px;
  width: min(100%, 520px);
  margin-inline: auto;
}
.p-esg__content-item-icon img {
  width: 100%;
  aspect-ratio: 520/400;
  margin-inline: auto;
}

.p-esg__content-item-title {
  font-size: var(--font-size-24);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 0.9166666667em;
}

@media screen and (min-width: 768px) {
  .p-esg__content {
    margin-bottom: 100px;
    grid-template-columns: 1fr 1fr;
  }
  .p-esg__content-item-icon {
    margin-bottom: 40px;
  }
}
/** body **/
.p-esg__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.p-esg__body-item-title {
  margin-bottom: 35px;
}

.p-esg__body-item-content {
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-esg__body-item-lead {
  font-size: var(--font-size-24);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1.5833333333em;
}

.p-esg__body-item-image-figure img {
  display: block;
  width: min(100%, 520px);
  margin-inline: auto;
  aspect-ratio: 520/348;
}

.p-esg__body-item-image-icons {
  margin-top: -25px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(100%, 520px);
  margin-inline: auto;
}
.p-esg__body-item-image-icons img {
  display: block;
  aspect-ratio: 1;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-esg__body {
    gap: 100px;
  }
  .p-esg__body-item-title {
    margin-bottom: 50px;
  }
  .p-esg__body-item-content {
    margin-bottom: 35px;
    grid-template-columns: 1fr 45%;
    gap: 50px;
  }
  .p-esg__body-item-image-figure {
    padding-left: 20px;
  }
  .p-esg__body-item-image-icons {
    margin-top: -50px;
    width: 100%;
    gap: 10px;
  }
}
/** box **/
.p-esg__body-item-box {
  background-color: #F4F4F4;
  padding: 33px 30px;
}

.p-esg__body-item-box-title {
  font-size: var(--font-size-20);
  font-weight: 700;
  margin-bottom: 1.2em;
}

.p-esg__body-item-box-content {
  display: flex;
  flex-direction: column;
  line-height: var(--line-height-large);
}
.p-esg__body-item-box-content li {
  padding-left: 0.8em;
  position: relative;
}
.p-esg__body-item-box-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--font-size-base) * var(--line-height-large) / 2);
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .p-esg__body-item-box-content {
    flex-direction: row;
    gap: 50px;
  }
}
.p-feature__section {
  margin-bottom: 60px;
}

.p-feature__header {
  margin-bottom: 60px;
}

.p-feature__title {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 0.9523809524em;
}

@media screen and (min-width: 768px) {
  .p-feature__section {
    margin-bottom: 120px;
  }
  .p-feature__header {
    margin-bottom: 100px;
  }
  .p-feature__title {
    font-size: 2.625rem;
  }
}
/** items **/
.p-feature__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.p-feature__item-title {
  margin-bottom: 35px;
  background-color: var(--color-blue-1);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 5.3125rem;
}

.p-feature__item-title-en {
  font-family: var(--font-family-en);
  font-size: 0.875rem;
}

.p-feature__item-title-ja {
  font-size: var(--font-size-34);
  font-weight: 500;
}

.p-feature__item-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-feature__item-lead {
  font-size: var(--font-size-24);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: var(--line-height-base);
  margin-bottom: 1.25em;
}

.p-feature__item-paragraph-1 {
  font-size: var(--font-size-20);
  font-weight: 700;
  line-height: var(--line-height-base);
  letter-spacing: 0.1em;
  margin-bottom: 1.6em;
}

.p-feature__item-content-figure {
  width: min(100%, 520px);
  margin-inline: auto;
}
.p-feature__item-content-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: aliceblue;
}

@media screen and (min-width: 768px) {
  .p-feature__items {
    gap: 75px;
  }
  .p-feature__item-title {
    margin-bottom: 50px;
    height: 7rem;
  }
  .p-feature__item-content {
    grid-template-columns: 1fr 38.1818181818%;
    gap: 65px;
  }
}
.p-service__section {
  margin-bottom: 60px;
}

.p-service__header {
  margin-bottom: 60px;
}

.p-service__title {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 0.9523809524em;
}

@media screen and (min-width: 768px) {
  .p-service__section {
    margin-bottom: 120px;
  }
  .p-service__header {
    margin-bottom: 100px;
  }
  .p-service__title {
    font-size: 2.625rem;
  }
}
/** items **/
.p-service__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.p-service__item-title {
  margin-bottom: 35px;
  background-color: var(--color-blue-1);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 5.3125rem;
}

.p-service__item-title-en {
  font-family: var(--font-family-en);
  font-size: 0.875rem;
}

.p-service__item-title-ja {
  font-size: var(--font-size-34);
  font-weight: 500;
}

.p-service__item-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-service__item-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-service__item-lead {
  font-size: var(--font-size-24);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: var(--line-height-base);
  margin-bottom: 1.25em;
}

.p-service__item-paragraph-1 {
  font-size: var(--font-size-20);
  font-weight: 700;
  line-height: var(--line-height-base);
  letter-spacing: 0.1em;
  margin-bottom: 1.6em;
}

.p-service__item-content-figure {
  width: min(100%, 520px);
  margin-inline: auto;
}
.p-service__item-content-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: aliceblue;
}

.p-service__item-lists-title {
  margin-bottom: 1.25em;
  font-size: var(--font-size-20);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p-service__item-lists li {
  padding-left: 0.8em;
  position: relative;
  line-height: var(--line-height-large);
}
.p-service__item-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--font-size-base) * var(--line-height-large) / 2);
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .p-service__items {
    gap: 75px;
  }
  .p-service__item-title {
    margin-bottom: 50px;
    height: 7rem;
  }
  .p-service__item-content {
    grid-template-columns: 1fr 38.1818181818%;
    gap: 65px;
  }
  .p-service__item-body {
    gap: 60px;
  }
}
/** flow **/
.p-flow {
  margin-bottom: 60px;
}

.p-flow__title {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .p-flow {
    margin-bottom: 100px;
  }
  .p-flow__title {
    margin-bottom: 60px;
  }
}
/** flow items **/
.c-flows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 12px;
  text-align: center;
}

.c-flow__item-image {
  width: min(90%, 120px);
  aspect-ratio: 205/205;
  background: var(--gradation-blue);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 25px;
}

.c-flow__item-image-icon {
  width: 48.7804878049%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
}

.c-flow__item-image-number {
  margin-bottom: 3px;
  font-size: var(--font-size-20);
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  line-height: 1;
  text-transform: uppercase;
}

.c-flow__item-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}

@media screen and (min-width: 768px) {
  .c-flows {
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 40px;
  }
  .c-flow__item-image {
    width: min(60.2941176471%, 100%, 205px);
  }
  .c-flow__item-title {
    font-size: 1.5rem;
  }
}
.p-owner__section {
  position: relative;
  margin-bottom: 60px;
  overflow-x: clip;
}

.p-owner__icon {
  position: absolute;
  bottom: -30px;
  right: -10px;
  aspect-ratio: 1/1;
  width: clamp(88px, 14.0833333333vw, 169px);
}

@media screen and (min-width: 768px) {
  .p-owner__icon {
    right: auto;
    left: calc(50% + min(31.25vw, 500px));
  }
}
.p-owner__block {
  --_padding: 60px;
  position: relative;
  padding: var(--_padding) 0;
  background: var(--gradation-blue-black);
}
.p-owner__block::after {
  content: "";
  width: clamp(50px, 7.2727272727%, 80px);
  aspect-ratio: 182/98;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #15265d;
  position: absolute;
  top: calc(100% - 2px);
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.p-owner__paragraph {
  background-color: #DEEBFF;
  padding: 55px 0 50px;
  line-height: 1.5;
  text-align: left;
}
.p-owner__paragraph p {
  width: fit-content;
  width: calc(100% - var(--inner-padding) * 2);
  margin-inline: auto;
  font-size: var(--font-size-24);
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .p-owner__paragraph {
    padding: 90px 0 75px;
    line-height: 1.8;
    text-align: center;
  }
}
.p-owener__title {
  position: relative;
  text-align: center;
  color: #fff;
  width: fit-content;
  margin-inline: auto;
  font-size: var(--font-size-34);
  font-weight: 500;
  padding-bottom: 0.4411764706em;
  margin-bottom: 40px;
}
.p-owener__title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 92%;
  height: 1px;
  background-color: #FFF;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .p-owner__section {
    --_padding: 100px;
    margin-bottom: 100px;
  }
  .p-owener__title {
    margin-bottom: 70px;
  }
}
.p-owner__list {
  width: min(100% - var(--inner-padding) * 2, 1100px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  grid-template-rows: 1fr;
  gap: 30px;
}

.p-owner__list-item {
  color: #215D9D;
  background-color: #fff;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-owner__list-item-icon {
  display: block;
  width: 1.75rem;
  aspect-ratio: 37/29;
}

.p-owner__list-item-text {
  flex: 1;
  font-weight: 700;
  font-size: var(--font-size-18);
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .p-owner__list {
    gap: 40px;
  }
  .p-owner__list-item {
    padding: 26px 30px;
  }
  .p-owner__list-item-icon {
    width: 2.3125rem;
  }
}
/** about **/
.p-owner__about {
  margin-bottom: 60px;
}

.p-owner__about-body {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-owner__about-title {
  margin-bottom: 1.4705882353em;
}

.p-owner__about-paragraph {
  margin-bottom: 35px;
}

.p-owner__about-list {
  color: var(--color-blue-1);
  line-height: var(--line-height-large);
}
.p-owner__about-list li {
  position: relative;
  padding-left: 1em;
}
.p-owner__about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--font-size-base) * var(--line-height-large) / 2);
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background-color: currentColor;
}

.p-owner__about-image img {
  display: block;
  width: min(100%, 420px);
  aspect-ratio: 1/1;
  margin-inline: auto;
}

.p-owner__about-box {
  background-color: #DEEBFF;
  padding: 30px 25px;
}

.p-owner__about-box-title {
  padding-bottom: 0.6666666667em;
  font-size: var(--font-size-24);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  border-bottom: 2px solid #000;
  width: fit-content;
  margin-inline: auto;
}

.p-owner__about-box-content {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

@media screen and (min-width: 768px) {
  .p-owner__about-body {
    margin-bottom: 80px;
    grid-template-columns: 1fr 38.1818181818%;
    gap: 50px;
  }
  .p-owner__about-paragraph {
    margin-bottom: 45px;
  }
  .p-owner__about-box {
    padding: 50px 77.5px;
  }
}
.p-privacy__section {
  margin-bottom: 60px;
}

/** header **/
.p-privacy__header {
  margin-bottom: 40px;
}

.p-privacy__title {
  font-size: var(--font-size-34);
  font-weight: 500;
  margin-bottom: 1em;
}

.p-privacy__paragraph {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

@media screen and (min-width: 768px) {
  .p-privacy__header {
    margin-bottom: 60px;
  }
}
.p-privacy__blocks {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-privacy__heading {
  font-size: var(--font-size-24);
  font-weight: 500;
  margin-bottom: 1em;
}

.p-privacy__block-content {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.p-privacy__text {
  margin-bottom: 40px;
}

.p-privacy__links a {
  color: #1A3074;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  word-break: break-all;
  display: block;
  line-height: var(--line-height-large);
}

@media screen and (min-width: 768px) {
  .p-privacy__section {
    margin-bottom: 120px;
  }
  .p-privacy__blocks {
    margin-bottom: 80px;
    gap: 60px;
  }
  .p-privacy__text {
    margin-bottom: 50px;
  }
}
.p-faq__section {
  margin-bottom: 60px;
}

.p-faq__item {
  border-bottom: 1px solid #C1C1C1;
  padding: 30px 0px;
}
.p-faq__item:first-child {
  border-top: 1px solid #C1C1C1;
}

.p-faq__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-faq__item-head,
.p-faq__item-body {
  display: flex;
  align-items: center;
  gap: 30px;
}

.p-faq__item-body {
  align-items: flex-start;
}

.p-faq__label {
  font-size: var(--font-size-18);
  font-weight: 400;
  font-family: var(--font-family-en);
  width: 2.25rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.p-faq__label--question {
  background-color: #1A3074;
  color: #fff;
}

.p-faq__label--answer {
  border: 1px solid #1A3074;
  color: #1A3074;
}

.p-faq__question,
.p-faq__answer {
  flex: 1;
}

.p-faq__question {
  font-size: var(--font-size-24);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: var(--line-height-base);
}

@media screen and (min-width: 768px) {
  .p-faq__section {
    margin-bottom: 120px;
  }
  .p-faq__item-body {
    align-items: center;
  }
  .p-faq__item {
    gap: 30px;
  }
  .p-faq__item-head,
  .p-faq__item-body {
    gap: 50px;
  }
  .p-faq__label {
    width: 3.125rem;
  }
  .p-faq__item {
    padding: 20px 15px;
  }
}
.p-recruit__section {
  margin-bottom: 60px;
}

/** header **/
.p-recruit__header {
  margin-bottom: 60px;
}

.p-recruit__lead {
  font-size: var(--font-size-42);
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-recruit__section {
    margin-bottom: 100px;
  }
  .p-recruit__header {
    margin-bottom: 100px;
  }
}
.p-recruit__persona {
  padding: 60px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #215D9D;
}

.p-recruit__persona-content {
  width: min(100% - var(--inner-padding) * 2, 1100px);
  margin-inline: auto;
}

.p-recruit__persona-title {
  --_border-color: #fff;
  color: #fff;
  margin-bottom: 1.7647058824em;
}

.p-recruit__persona-items {
  margin-bottom: 50px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (min-width: 540px) {
  .p-recruit__persona-items {
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  }
}
.p-recruit__persona-item {
  background-color: #fff;
  padding: 20px 15px;
  color: #215D9D;
}

.p-recruit__persona-item-icon-check {
  width: 1.75rem;
  aspect-ratio: 37/29;
  display: block;
}

.p-recruit__persona-item-icon {
  display: block;
  aspect-ratio: 1/1;
  width: clamp(80px, 53.5714285714%, 150px);
  margin-bottom: 22px;
  margin-inline: auto;
}

.p-recruit__persona-item-paragraph {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: var(--line-height-base);
}

@media screen and (min-width: 768px) {
  .p-recruit__persona-items {
    margin-bottom: 80px;
    gap: 40px;
  }
  .p-recruit__persona-item {
    padding: 35px 30px 40px;
  }
  .p-recruit__persona-item-icon-check {
    width: 2.3125rem;
  }
  .p-recruit__persona-item-paragraph {
    font-size: 1.125rem;
  }
}
.p-recruit__persona-paragraph {
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: var(--font-size-20);
  letter-spacing: 0.1em;
  line-height: var(--line-height-base);
}

@media screen and (min-width: 768px) {
  .p-recruit__persona {
    padding: 100px 0;
  }
}
/** jobs **/
.p-recruit__jobs {
  margin-bottom: 60px;
}

.p-recruit__jobs-title {
  text-align: center;
  margin-bottom: 50px;
}

.p-recruit__jobs-items {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.p-recruit__jobs-item {
  padding: 25px 20px;
  background-color: #DEEBFF;
}

.p-recruit__jobs-item-title {
  background-color: #1A3074;
  color: #fff;
  border-radius: 30px;
  font-size: var(--font-size-24);
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.4166666667em 1.6666666667em;
  margin-bottom: 1em;
  width: fit-content;
  margin-inline: auto;
}

.p-recruit__jobs-item-paragraph {
  margin-bottom: 2em;
}

.p-recruit__jobs-item-lists li {
  line-height: var(--line-height-large);
  padding-left: 1em;
  position: relative;
}
.p-recruit__jobs-item-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--font-size-base) * var(--line-height-large) / 2);
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 50%;
  transform: translateY(-50%);
}

.p-recruit__jobs-body-title {
  margin-bottom: 1.4705882353em;
}

.p-recruit__jobs-body-lists {
  margin-bottom: 60px;
}

@media screen and (min-width: 600px) {
  .p-recruit__jobs-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__jobs {
    margin-bottom: 120px;
  }
  .p-recruit__jobs-title {
    margin-bottom: 70px;
  }
  .p-recruit__jobs-items {
    gap: 40px;
    margin-bottom: 100px;
  }
  .p-recruit__jobs-item {
    padding: 50px 34px;
  }
  .p-recruit__jobs-body-lists {
    margin-bottom: 100px;
  }
}
.p-archive__section {
  margin-bottom: 60px;
}

.p-archive__works-items,
.p-archive__items {
  margin-bottom: 60px;
}

.p-archive__works-links {
  margin-bottom: 40px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.p-archive__works-link {
  width: min(100%, 18.75rem);
  height: 3.75rem;
  border: 1px solid var(--color-blue-1);
  background-color: #fff;
  color: var(--color-blue-1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
  font-size: 0.8125rem;
  flex: 1 1 max(100px, 25%);
}

.p-archive__works-link.is-active {
  background-color: var(--color-blue-1);
  color: #fff;
}

.p-archive__works-link:hover {
  background-color: var(--color-blue-1);
  color: #fff;
}

.p-archive__works-link.is-active:hover {
  background-color: #fff;
  color: var(--color-blue-1);
}

.p-archive__works-items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

.p-archive__no-posts {
  text-align: center;
}

@media screen and (min-width: 600px) {
  .p-archive__works-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-archive__section {
    margin-bottom: 120px;
  }
  .p-archive__works-links {
    margin-bottom: 80px;
    gap: 20px;
  }
  .p-archive__works-link {
    font-size: 1.125rem;
    height: 5rem;
  }
  .p-archive__works-items,
  .p-archive__items {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .p-archive__works-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
/** pagenation **/
.p-archive__pagination .wp-pagenavi {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}

.p-archive__pagination .wp-pagenavi a {
  cursor: pointer;
}

.p-archive__pagination .page,
.p-archive__pagination .current {
  --_size: 1.875rem;
  --_font-size: 0.875rem;
  width: var(--_size);
  height: var(--_size);
  aspect-ratio: 1;
  font-size: var(--_font-size);
  font-family: var(--font-family-en);
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
}

.p-archive__pagination .current {
  color: #fff;
  background-color: var(--color-blue-1);
}

.p-archive__pagination .page {
  background-color: #E2E2E2;
  color: var(--color-blue-1);
}

.previouspostslink,
.nextpostslink {
  padding: 0 4px;
}
.previouspostslink img,
.nextpostslink img {
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .p-archive__pagination .wp-pagenavi {
    gap: 14px;
  }
  .p-archive__pagination .page,
  .p-archive__pagination .current {
    --_size: 2.5rem;
  }
  .previouspostslink,
  .nextpostslink {
    padding: 0 12px;
  }
}
.p-single__section {
  margin-bottom: 60px;
}

.p-single__header {
  margin-bottom: 27px;
}

.p-single__works-header {
  margin-bottom: 50px;
}

.p-single__works-lists {
  display: flex;
  align-items: center;
  gap: 15px 32px;
  flex-wrap: wrap;
}

.p-single__works-list-category {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .p-single__section {
    margin-bottom: 120px;
  }
  .p-single__works-header {
    margin-bottom: 75px;
  }
}
.p-single__time {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #707070;
  display: block;
}

.p-single__time--post {
  margin-bottom: 3.0769230769em;
}

.p-single__title {
  font-size: var(--font-size-34);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.p-single__title--works {
  margin-bottom: 0.7941176471em;
}

.p-single__body {
  margin-bottom: 60px;
}
.p-single__body .wp-block-group {
  display: flow-root;
}
.p-single__body h2, .p-single__body h3, .p-single__body h4 {
  letter-spacing: 0.1em;
}
.p-single__body h2 {
  margin-top: 2.375em;
  margin-bottom: 1em;
  font-size: var(--font-size-24);
  font-weight: 500;
}
.p-single__body h3 {
  margin-top: 2.8em;
  font-size: var(--font-size-20);
  font-weight: 700;
}
.p-single__body h4 {
  margin-top: 2.625em;
  font-size: var(--font-size-16);
  font-weight: 700;
}
.p-single__body p {
  margin-top: 1em;
  margin-bottom: 1.5em;
}
.p-single__body a {
  color: var(--color-blue-1);
  text-decoration: underline;
}
.p-single__body > .wp-block-columns, .p-single__body > .wp-block-image {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-single__body a:hover {
    text-decoration: none;
  }
  .p-single__body {
    margin-bottom: 100px;
  }
  .p-single__body > .wp-block-columns, .p-single__body > .wp-block-image {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
/**
  pagination
**/
.p-single__pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.p-single__pagination-prev {
  justify-self: end;
}

.p-single__pagination-next {
  justify-self: start;
}

.p-single__pagination-next a,
.p-single__pagination-prev a {
  color: var(--color-blue-font);
  display: flex;
  align-items: center;
  font-size: var(--font-size-20);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-single__pagination-prev svg {
  scale: -1 -1;
}

.p-single__pagination svg {
  vertical-align: middle;
  width: 0.9375rem;
  height: auto;
}

.p-single__pagination-text {
  display: none;
}

.c-button-1.p-single__pagination-link {
  width: 13.75rem;
}

@media screen and (min-width: 768px) {
  .p-single__pagination {
    gap: 30px;
  }
  .p-single__pagination-text {
    font-size: var(--font-size-20);
    display: block;
  }
  .p-single__pagination-prev .p-single__pagination-text {
    padding-left: 1em;
  }
  .p-single__pagination-next .p-single__pagination-text {
    padding-right: 1em;
  }
  .c-button-1.p-single__pagination-link {
    width: 21.25rem;
  }
}
/** slider **/
.wp-block-gallery {
  display: none !important;
}

.p-single__gallery {
  overflow-x: clip;
  width: min(100%, 800px);
  margin-inline: auto;
  margin-top: 50px;
  margin-bottom: 60px;
}

.p-single__main-slider {
  margin-bottom: 18px;
}

.p-single__main-slider {
  width: 100%;
  aspect-ratio: 770/590;
  overflow: hidden;
}

.p-single__main-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-single__sub-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.p-single__sub-slider img {
  display: block;
  width: 100%;
  aspect-ratio: 136/102;
  height: auto;
  object-fit: cover;
  border: none;
}

.p-single__sub-slider-item {
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .p-single__gallery {
    margin-top: 75px;
    margin-bottom: 100px;
  }
  .p-single__main-slider {
    margin-bottom: 30px;
  }
  .p-single__sub-slider {
    gap: 22px;
    grid-template-columns: repeat(4, 1fr);
  }
  .p-single__sub-slider-item:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 1200px) {
  .p-single__sub-slider {
    grid-template-columns: repeat(5, 1fr);
  }
}
/** カスタムフィールド **/
.p-single__bf-blocks {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.p-single__bf-block-container--icon {
  position: relative;
}
.p-single__bf-block-container--icon::before {
  content: "";
  display: block;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: var(--color-blue-1);
  width: 1.25rem;
  aspect-ratio: 1;
  position: absolute;
  top: -1.875rem;
  left: 50%;
  translate: -50% -50%;
}

@media screen and (min-width: 768px) {
  .p-single__bf-block-container--icon::before {
    top: 50%;
    left: -1.875rem;
    translate: -50% -50%;
    width: 1.5625rem;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
  }
}
.p-single__bf-block {
  position: relative;
}
.p-single__bf-block img {
  display: block;
  width: min(100%, 530px);
  aspect-ratio: 530/398;
  object-fit: cover;
  border: none;
  margin-bottom: 20px;
  background-color: aliceblue;
  margin-inline: auto;
}
.p-single__bf-block figcaption {
  text-align: center;
  color: var(--color-blue-1);
  font-family: var(--font-family-en);
  font-size: var(--font-size-32);
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .p-single__bf-blocks {
    margin-bottom: 65px;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}
.p-default__section {
  margin-bottom: 60px;
}

.p-default__title {
  margin-bottom: 40px;
}

.p-default__paragraph {
  margin-bottom: 50px;
}

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

@media screen and (min-width: 768px) {
  .p-default__section {
    margin-bottom: 100px;
  }
  .p-default__title {
    margin-bottom: 60px;
  }
  .p-default__paragraph {
    margin-bottom: 75px;
  }
}
.p-contact__section {
  margin-bottom: 60px;
}

.p-contact__form {
  margin-bottom: 60px;
}

.p-contact__title {
  margin-bottom: 35px;
  text-align: center;
  font-size: var(--font-size-34);
  font-weight: 500;
}

.p-contact__box {
  background: var(--gradation-blue);
  color: #fff;
  width: min(100%, 720px);
  margin-inline: auto;
  padding: 50px 22px;
}

.p-contact__box-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}

.p-contact__box-icon {
  width: 0.9375rem;
  aspect-ratio: 19/25;
  height: auto;
  display: block;
  translate: 0 1px;
}

.p-contact__box-time {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-contact__section {
    margin-bottom: 100px;
  }
  .p-contact__form {
    margin-bottom: 120px;
  }
  .p-contact__title {
    margin-bottom: 50px;
  }
  .p-contact__box {
    padding: 75px 50px 80px;
  }
  .p-contact__box-icon {
    width: 1.4375rem;
    translate: 0 4px;
  }
  .p-contact__box-number {
    font-size: 2.5rem;
    gap: 10px;
  }
  .p-contact__box-number:hover {
    opacity: 0.8;
  }
}
.p-contact__form-header {
  margin-bottom: 50px;
}

/****
フォーム
***/
.p-form__row {
  --bottom: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: var(--bottom);
}

.p-form__label {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media screen and (min-width: 768px) {
  .p-form__row {
    --bottom: 60px;
    gap: 30px;
    grid-template-columns: 230px 1fr;
    align-items: center;
  }
  .p-form__row.p-form__row--flex-start {
    align-items: flex-start;
  }
  .p-form__label {
    justify-content: space-between;
    gap: 20px;
  }
}
/*** 必須・任意ボタン ***/
.p-form__label .required {
  color: #FF001E;
  display: inline-block;
  font-weight: 400;
  border-radius: 6px;
}

@media screen and (min-width: 768px) {
  .p-form__label .required {
    padding: 2px 12px;
  }
}
/*** input ***/
.p-form__select {
  position: relative;
  width: fit-content;
}

.p-form__select select {
  appearance: none; /* 矢印などを消す（Chrome / Firefox）*/
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none;
  border-radius: 0;
  color: var(--color-main);
  padding: 0.75em 1em;
  border: 1px solid #D9D9D9;
  min-width: 270px;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  background-color: #D9D9D9;
}

.p-form__select::before {
  z-index: 2;
  content: "";
  width: 0.5em;
  height: 0.5em;
  background-color: #000;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}

@media screen and (min-width: 768px) {
  .p-form__select select {
    min-width: 400px;
  }
}
.p-form__input input[type=text],
.p-form__input input[type=email],
.p-form__input input[type=tel],
.p-form__input textarea {
  position: relative;
  width: 100%;
  border-radius: 0;
  color: var(--color-main);
  padding: 0.75em 1em;
  border: 1px solid #D9D9D9;
}

.p-form__input input::file-selector-button {
  padding: 10px 20px;
  background-color: #F3F3F3;
  border: none;
}

.p-form__input textarea {
  min-height: 150px;
}

.p-form__input input::placeholder,
.p-form__input textarea::placeholder {
  color: #D9D9D9;
}

/*** checkbox ***/
.p-form__checkbox label::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 4px;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.p-form__checkbox label:has(input:checked)::before {
  --bg: black;
}

.p-form__checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}

.p-form__checkbox a {
  color: #2F65C1;
}

.p-form__checkbox a:hover {
  text-decoration: underline;
}

.p-form__checkbox label {
  padding-left: 2em;
  margin-right: 1em;
  position: relative;
}

.p-form__checkbox label::before {
  --bg: #fff;
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background-color: var(--bg);
}

@media screen and (min-width: 768px) {
  .p-form__checkbox label::before {
    width: 1.0625rem;
    height: 1.0625rem;
  }
}
/*** radio（Contact Form 7） ***/
.p-form__radio .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

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

.p-form__radio label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 1.5em;
  margin-right: 0;
  position: relative;
  cursor: pointer;
}

/* ネイティブのradioを非表示 */
.p-form__radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  margin: 0;
}

/* 外側の円（枠） */
.p-form__radio label::before {
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  border: 1px solid #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background-color: #fff;
  box-sizing: border-box;
}

/* 選択時の内側の円（チェックマークの代わり） */
.p-form__radio label::after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 50%;
  translate: 0 -50%;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #000;
}

@media screen and (min-width: 768px) {
  .p-form__radio label::before {
    width: 1.0625rem;
    height: 1.0625rem;
  }
  .p-form__radio label::after {
    left: 5px;
    width: 0.4375rem;
    height: 0.4375rem;
  }
}
.p-form__radio label:has(input:checked)::after,
.p-form__checkbox label:has(input:checked)::after {
  display: block;
}

/* privacy */
.p-form__privacy {
  text-align: center;
  margin-bottom: 50px;
}

.p-form__privacy p {
  line-height: 3;
}

/*** エラーメッセージ ***/
.wpcf7-form-control-wrap {
  height: inherit;
  display: block;
}

.wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 5px);
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: 0.875rem;
  }
}
.p-form__checkbox .wpcf7-not-valid-tip,
.p-form__radio .wpcf7-not-valid-tip {
  left: 0;
  width: 100%;
}

.p-form__checkbox .wpcf7-not-valid-tip {
  left: 50%;
  translate: -50% 0;
}

.p-form__checkbox a:hover {
  text-decoration: underline;
}

/** ボタン **/
.p-form__button {
  cursor: pointer;
}

/** 住所 **/
.p-form__row--address p {
  margin-bottom: 20px;
  line-height: 1.5;
}/*# sourceMappingURL=style.css.map */