@charset "UTF-8";
:root {
  interpolate-size: allow-keywords;
  --font-family-ja: "Noto Sans JP", sans-serif;
  --font-family-en: "Red Hat Display", sans-serif;
  --font-size-base: 0.9375rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.125rem;
  --font-size-h4: 1rem;
  --color-main: #000;
  --color-link: #fff;
  --header-height: 50px;
  --inner-width-1100: 1100px;
  --inner-width-1280: 1280px;
  --inner-width-1660: 1660px;
  --inner-padding: 15px;
  --color-grey: #E9E9E9;
  --color-brown: #3B3A3A;
  --color-brown2: #555555;
  --gradation-black: linear-gradient(to bottom, #1C1C1C 0%, #767676 100%);
  --gradation-black2: linear-gradient( to bottom, #403E3E 0%, #767676 100%);
}

@media screen and (min-width: 768px) {
  :root {
    --header-height: 100px;
    --inner-padding: 50px;
    --font-size-h2: 2rem;
    --font-size-h3: 1.625rem;
    --font-size-h4: 1.25rem;
  }
}
* {
  box-sizing: border-box;
}

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

a, button {
  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: 1.5;
}

p {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  p {
    line-height: 2;
  }
}

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

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

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

@media screen and (min-width: 768px) {
  .u-only-pc {
    display: block;
  }
  .u-only-sp {
    display: none;
  }
}
/*** スクリーンリーダー ***/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/** utilities **/
.c-pagenation {
  margin-top: 60px;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagenation .wp-pagenavi {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.c-pagenation .page, .c-pagenation .current, .c-pagenation .last, .c-pagenation .first {
  font-size: 0.9375rem;
  width: 3.125rem;
  height: 3.125rem;
  display: inline-block;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-en);
  line-height: normal;
  letter-spacing: 0.1em;
  font-weight: 400;
  transition: filter 0.3s ease-out;
  border: 1px solid var(--color-blue-2);
  border-radius: 50%;
  color: var(--color-blue-2);
}
.c-pagenation .extend, .c-pagenation .first {
  align-self: center;
}
.c-pagenation .current {
  color: #fff;
  background-color: #000;
}
.c-pagenation .page, .c-pagenation .last, .c-pagenation .first {
  background-color: #F2F2F2;
  color: #000;
}

.previouspostslink {
  scale: -1 1;
}

.nextpostslink,
.previouspostslink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6875rem;
  height: 1px;
  background-color: #000;
  position: relative;
}
.nextpostslink::before,
.previouspostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  rotate: 45deg;
  width: 25%;
  height: 1px;
  background-color: #000;
  transform-origin: center right;
}
.nextpostslink::after,
.previouspostslink::after {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  display: block;
}

/** singlepage ページネーション**/
.p-single__page {
  width: min(100%, 12.5rem);
  margin-inline: auto;
  position: relative;
}

.p-single__page-button.c-button-1 {
  --height: 55px;
  margin-inline: auto;
  justify-content: center;
  width: 100%;
}

.p-single__page-next,
.p-single__page-prev {
  --space: -12px;
  position: absolute;
  top: 50%;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.p-single__page-next svg,
.p-single__page-prev svg {
  fill: transparent;
  stroke: #000;
  display: none;
}

.p-single__page-next {
  right: var(--space);
  translate: 100% -50%;
}

.p-single__page-prev {
  left: var(--space);
  translate: -100% -50%;
}
.p-single__page-prev svg {
  transform: scale(-1, 1);
}

@media screen and (min-width: 768px) {
  .p-single__page {
    width: min(100%, 23.75rem);
  }
  .p-single__page-next,
  .p-single__page-prev {
    --space: -20px;
  }
  .p-single__page-next svg,
  .p-single__page-prev svg {
    display: block;
  }
  .p-single__page-button.c-button-1 {
    --height: 80px;
  }
}
/*** テーブル ***/
.c-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  table-layout: fixed;
}

.c-table th,
.c-table td {
  width: 50%;
  padding: 13px;
  border: 1px solid #E4E4E4;
  word-break: break-all;
  text-align: center;
}

.c-table thead th {
  background-color: #000;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.c-table tbody td {
  color: #000;
  font-size: 0.9375rem;
}

.l-header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.6);
}

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

.l-header__logo {
  display: block;
  width: min(100%, 90px);
  transition: opacity 0.3s ease-out;
}
.l-header__logo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 170/68;
}

.l-header__nav {
  display: none;
}

.l-header__nav-cover {
  display: flex;
  align-items: center;
  gap: 80px;
}

.l-header__nav > ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.l-header__nav-list {
  position: relative;
}

.l-header__nav-list a,
.l-header__nav-list > div {
  display: block;
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.l-header__nav-list > div,
.l-header__nav-list > a {
  padding: 1em 0;
  cursor: pointer;
}

.l-header__nav-list > a:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 100%;
  left: 0;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: right center;
}

.l-header__nav-buttons {
  display: flex;
}

.l-header__nav-humburger,
.l-header__nav-contact {
  width: var(--header-height);
  aspect-ratio: 1;
}

.l-header__nav-contact {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-out;
}
.l-header__nav-contact img {
  width: 30%;
  height: auto;
}

.l-header__nav-humburger {
  --space: 5px;
  position: relative;
  display: block;
  background-color: #3B3A3A;
  border: none;
}
.l-header__nav-humburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 1px;
  background-color: #fff;
}
.l-header__nav-humburger span:nth-of-type(1) {
  transform: translate(-50%, calc(-50% - var(--space)));
}
.l-header__nav-humburger span:nth-of-type(2) {
  transform: translate(-50%, -50%);
}
.l-header__nav-humburger span:nth-of-type(3) {
  transform: translate(-50%, calc(-50% + var(--space)));
}

.l-header__nav-humburger.is-active span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-header__nav-humburger.is-active span:nth-of-type(2) {
  transform: translate(-50%, -50%);
  opacity: 0;
}
.l-header__nav-humburger.is-active span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .l-header__inner {
    padding-left: 30px;
  }
  .l-header__nav-contact img {
    width: 24%;
  }
  .l-header__logo {
    width: min(100%, 170px);
  }
  .l-header__logo:hover {
    opacity: 0.7;
  }
  .l-header__nav-humburger {
    --space: 9px;
  }
  .l-header__nav-contact:hover {
    opacity: 0.8;
  }
  .l-header__nav-list:hover .l-header__nav-sub-lists {
    opacity: 1;
    visibility: visible;
  }
  .l-header__nav-sub-list:hover {
    --bg-color: #555555;
  }
  .l-header__nav-list a:hover::before {
    transform: scale(1, 1);
    transform-origin: left center;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__nav {
    display: block;
  }
  .l-header__nav-humburger {
    display: none;
  }
}
/***　サブナビ　***/
.l-header__nav-sub-lists {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out;
}

.l-header__nav-sub-list {
  --bg-color: #3B3A3A;
  display: block;
  width: 100%;
  background-color: var(--bg-color);
  transition: background-color 0.3s ease-out;
}
.l-header__nav-sub-list:not(:last-child) {
  border-bottom: 1px solid #555555;
}
.l-header__nav-sub-list a {
  color: #fff;
  padding: 1.5em 2em;
  text-align: left;
  display: block;
  cursor: pointer;
}

/** sp */
.l-header__sp-nav {
  display: block;
  background-color: var(--color-brown);
  width: 100%;
  height: 100%;
  z-index: 101;
  position: fixed;
  top: var(--header-height);
  right: 0;
  overflow: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

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

.l-header__sp-nav-lists {
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  padding: var(--inner-padding) var(--inner-padding) 100px;
  overflow: auto;
}

.l-header__sp-nav-list a {
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 1.4285714286em 0;
  display: block;
  border-bottom: 1px solid var(--color-brown2);
}

.mask {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out;
}

.mask.is-active {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 600px) {
  .l-header__sp-nav {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .l-header__sp-nav-list a {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__sp-nav {
    display: none;
  }
}
/*** footer-contact***/
.l-footer {
  overflow: clip;
}

.l-footer__contact {
  padding: 50px 0;
  background: var(--gradation-black2);
  color: #fff;
  position: relative;
}
.l-footer__contact::before {
  content: "";
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.l-footer__contact-links {
  width: min(100%, 700px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.l-footer__contact-links a {
  margin-inline: auto;
}

.l-footer__contact-title {
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}
.l-footer__contact-title h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  font-family: var(--font-family-en);
}
.l-footer__contact-title p {
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.l-footer__contact-tel {
  --_color: #fff;
  margin-bottom: 30px;
  color: var(--_color);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: var(--font-family-en);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: color 0.3s ease-out;
}
.l-footer__contact-tel svg {
  fill: var(--_color);
  width: 0.5666666667em;
  height: auto;
  transition: fill 0.3s ease-out;
}

.l-footer__contact-mail,
.l-footer__contact-line {
  gap: 16px;
}
.l-footer__contact-mail svg,
.l-footer__contact-line svg {
  position: relative;
  z-index: 3;
}

.l-footer__contact-mail svg {
  fill: transparent;
  stroke: #fff;
}

.l-footer__contact-line svg {
  fill: #fff;
}

@media screen and (min-width: 768px) {
  .l-footer__contact {
    padding: 110px 120px;
  }
  .l-footer__contact::before {
    height: 75px;
  }
  .l-footer__contact-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-footer__contact-title {
    margin-bottom: 25px;
  }
  .l-footer__contact-title h2 {
    font-size: 2.5rem;
  }
  .l-footer__contact-title p {
    font-size: 1rem;
  }
  .l-footer__contact-tel {
    margin-bottom: 40px;
    font-size: 1.875rem;
  }
  .l-footer__contact-tel:hover {
    --_color: #000;
  }
}
/**footer-main***/
.l-footer__main-container {
  padding: 50px 0;
  position: relative;
}

.l-footer__main {
  margin-bottom: 50px;
}

.l-footer__logo {
  max-width: 242px;
  margin-bottom: 25px;
  margin-inline: auto;
}
.l-footer__logo img {
  display: block;
  width: 100%;
  aspect-ratio: 242/103.27;
  height: auto;
}

.l-footer__address {
  margin-bottom: 25px;
}
.l-footer__address p {
  line-height: 1.5;
  text-align: center;
}

.l-footer__address-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.l-footer__address-detail {
  font-size: 0.9375rem;
  margin-bottom: 10px;
}

.l-footer__address-tel {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-family-en);
}
.l-footer__address-tel a {
  transition: opacity 0.3s ease-out;
}

.l-footer__address-time {
  font-size: 0.875rem;
}

.l-footer__main-sns {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.l-footer__main-sns a {
  display: block;
}
.l-footer__main-sns a img {
  display: block;
  width: 30px;
  height: 30px;
}

.l-footer__copyright {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-family: var(--font-family-en);
  text-align: center;
}

.l-footer__nav-container {
  display: none;
}

.l-footer__nav-title {
  margin-bottom: 1.5625em;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.l-footer__nav {
  display: flex;
  gap: 140px;
}

.l-footer__nav-item {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 3;
  text-transform: uppercase;
}

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

.l-footer__icon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 129.6vw;
  height: auto;
  aspect-ratio: 486/248;
  translate: 0 60%;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .l-footer__main-container {
    padding-top: 75px;
    padding-bottom: 100px;
  }
  .l-footer__main {
    display: flex;
    justify-content: space-between;
  }
  .l-footer__logo {
    margin-inline: 0;
  }
  .l-footer__address p {
    text-align: left;
  }
  .l-footer__address-tel a:hover {
    opacity: 0.7;
  }
  .l-footer__main-sns {
    justify-content: flex-start;
  }
  .l-footer__copyright {
    text-align: left;
  }
  .l-footer__nav-container {
    display: block;
    padding-right: 60px;
  }
  .l-footer__nav-item a:hover {
    opacity: 0.7;
  }
  .l-footer__icon {
    right: 0;
    left: auto;
    width: min(79.5vw, 1113px);
    translate: 23% 50%;
    aspect-ratio: 1113/567;
  }
}
/***
* トップページ
***/
.u-ft-marker-red {
  background-color: #f6cccc;
}

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

.l-container {
  --inner: min(100% - calc(var(--inner-padding) * 2), var(--inner-width-1100));
  width: var(--inner);
  margin-inline: auto;
  position: relative;
}

.c-title-top span {
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
}
.c-title-top h2 {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .c-title-top span {
    font-size: 4.375rem;
  }
  .c-title-top h2 {
    font-size: 1.25rem;
  }
}
.c-button-1.c-button-1--white {
  --color: #000;
  --border-color: #000;
  --animation-color: #000;
  --bg-color: #fff;
}

.c-button-1.c-button-1--white2 {
  --color: #000;
  --border-color: #000;
  --animation-color: #000;
}

.c-button-1.c-button-1--transparent {
  --color: #fff;
  --border-color: #fff;
  --bg-color: transparent;
  --animation-color: #000;
}

.c-button-1 {
  --width: min(100%, 300px);
  --height: 70px;
  --text-transfrom: uppercase;
  width: var(--width);
  height: var(--height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  transition: border-color 0.6s ease;
}
.c-button-1 span {
  z-index: 2;
  letter-spacing: 0.3em;
  font-weight: 500;
  text-transform: var(--text-transfrom);
  color: var(--color);
}
.c-button-1::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 60px solid transparent;
  border-bottom: var(--height) solid var(--animation-color);
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
}

.p-company__access-button.c-button-1 {
  --text-transfrom: capitalize;
}

.c-button-1__arrow {
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 6.5789473684%;
  translate: 0 -50%;
  fill: transparent;
  stroke: var(--color);
}

@media screen and (min-width: 768px) {
  .c-button-1 {
    --width: min(100%, 380px);
    --height: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .c-button-1:hover::before {
    transform: translateX(0%);
  }
  .c-button-1__arrow {
    right: 17.1052631579%;
  }
  .c-button-1.c-button-1--white:hover,
  .c-button-1.c-button-1--white2:hover {
    --color: #fff;
  }
  .c-button-1.c-button-1--transparent:hover {
    --border-color: #000;
  }
}
/**
hero
**/
.p-top__hero {
  padding-top: 25px;
  padding-bottom: 115px;
  position: relative;
}

.p-top__hero-icon {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: min(78vw, 1092px);
  height: auto;
  translate: -50% -45%;
}

.p-top__hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1180/625;
  margin-inline-start: auto;
  min-height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.p-top__hero-main {
  position: relative;
  width: 96vw;
  margin-inline-start: auto;
}

.p-top__hero-title {
  position: absolute;
  bottom: 0;
  left: 15px;
  translate: 0 55%;
}

.p-top__hero-title-main {
  margin-bottom: 15px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}
.p-top__hero-title-main span {
  font-size: 1.6666666667em;
  background-color: #000;
  color: #fff;
  padding: 0 0.2em;
  display: inline-block;
  margin: 0 3px;
}

.p-top__hero-title-sub {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.p-top__hero-scroll-icon {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-top__hero {
    padding-top: 45px;
    padding-bottom: min(17.8571428571vw, 250px);
    overflow: clip;
  }
  .p-top__hero-main {
    width: 84.2857142857vw;
  }
  .p-top__hero-title {
    left: 50px;
  }
  .p-top__hero-image {
    min-height: 400px;
    max-height: 1000px;
  }
  .p-top__hero-title-main {
    font-size: 3.75rem;
  }
  .p-top__hero-title-main span {
    font-size: 1.3333333333em;
  }
  .p-top__hero-title-sub {
    font-size: 1.5rem;
  }
  .p-top__hero-scroll-icon {
    width: 17.7142857143vw;
    aspect-ratio: 1;
    border: 1px solid #B1B1B1;
    border-radius: 50%;
    color: #B1B1B1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: -50px;
    translate: 0 50%;
  }
  .p-top__hero-scroll-icon-text {
    writing-mode: vertical-rl;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.1em;
    font-family: var(--font-family-en);
    display: inline-block;
    position: relative;
  }
  .p-top__hero-scroll-icon-text::before {
    content: "";
    display: block;
    width: 1px;
    height: 120px;
    background-color: #B1B1B1;
    position: absolute;
    top: calc(100% + 50px);
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
  }
  .p-top__hero-scroll-icon-text::after {
    z-index: 2;
    content: "";
    display: block;
    width: 3px;
    height: 22px;
    background-color: #fff;
    position: absolute;
    top: calc(100% + 50px);
    left: 50%;
    transform: translate(-50%, 0);
    animation: scrollLine 1.8s ease-out infinite;
  }
  @keyframes scrollLine {
    0% {
      transform: translate(-50%, 0);
    }
    75% {
      transform: translate(-50%, 100px);
      /* ::beforeの高さ(120px)−afterの高さ(20px) */
    }
    100% {
      transform: translate(-50%, 100px);
      /* ::beforeの高さ(120px)−afterの高さ(20px) */
    }
  }
}
/**
about
**/
.p-top__about {
  overflow-x: clip;
  position: relative;
  padding-bottom: max(100px, 26.6666666667vw);
}

.p-top__bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 500px);
  background: linear-gradient(to bottom, #fff 0%, #D3D3D3 100%);
}

.p-top__about .l-container {
  --inner: min(100% - calc(var(--inner-padding) * 2), var(--inner-width-1100));
}

.p-top__about-title {
  margin-bottom: 20px;
  text-align: center;
}
.p-top__about-title span {
  font-size: 1.875rem;
  margin-bottom: 0.2222222222em;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
}
.p-top__about-title h2 {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.p-top__about-text {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.p-top__about-text-message {
  margin-bottom: 1em;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}

.p-top__about-text-p {
  margin-bottom: 40px;
  line-height: 2;
  font-size: 0.875rem;
}

.p-top__about-images {
  margin-bottom: 45px;
}

.p-top__about-image,
.p-top__about-icon {
  display: block;
  margin-inline: auto;
}

.p-top__about-image {
  width: min(84%, 450px);
  aspect-ratio: 577/580;
  margin-bottom: 20px;
}

.p-top__about-icon {
  width: min(92%, 450px);
  aspect-ratio: 345/389.5;
}

.p-top__about-link {
  margin-inline: auto;
  order: 4;
}

@media screen and (min-width: 768px) {
  .p-top__about {
    padding-top: 40px;
    padding-bottom: min(36.3636363636vw, 400px);
  }
  .p-top__about-title {
    margin-bottom: 50px;
    text-align: left;
  }
  .p-top__about-title span {
    font-size: 5.625rem;
  }
  .p-top__about-title h2 {
    font-size: 1.25rem;
  }
  .p-top__about-text {
    position: relative;
    width: 60%;
    display: block;
  }
  .p-top__about-text-message {
    font-size: 1.875rem;
    text-align: left;
  }
  .p-top__about-text-p {
    margin-bottom: 80px;
    line-height: 3;
    font-size: 1rem;
  }
  .p-top__about-images {
    margin-bottom: 0px;
    position: absolute;
    top: 120px;
    left: calc(100% + 60px);
  }
  .p-top__about-image,
  .p-top__about-icon {
    display: block;
    margin-inline: 0;
  }
  .p-top__about-image {
    margin-bottom: 30px;
    width: min(41.2142857143vw, 577px);
  }
  .p-top__about-icon {
    transform: translateX(-70px);
    width: min(38.7857142857vw, 543px);
  }
  .p-top__about-link {
    margin-inline: 0;
    order: 0;
  }
}
/**
service
***/
.p-top__service {
  padding-bottom: 50px;
  position: relative;
  overflow-x: clip;
}
.p-top__service::before {
  background: linear-gradient(to bottom, transparent 0%, transparent 30%, #D9D9D9 30.1%, #D9D9D9 100%);
  content: "";
  width: 100%;
  height: calc(100% + 700px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  opacity: 0.2;
}
.p-top__service::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2200px;
  background-color: #727272;
  z-index: -1;
  clip-path: polygon(100% 0, 100% 89%, 0 100%, 0 11%);
}

.p-top__service .l-container {
  margin-bottom: 80px;
  --inner: min(100%, var(--inner-width-1660));
}

.p-top__service-icon {
  position: absolute;
  top: max(-186px, -14.53125vw);
  left: 50%;
  translate: -50% 0%;
  width: 94.4715447154%;
  aspect-ratio: 1162/304.75;
  height: auto;
}

.p-top__service-container {
  position: relative;
  padding-top: 65px;
  padding-bottom: 50px;
  background-color: #fff;
  width: min(100% - var(--inner-padding), 1230px);
  margin-inline-start: auto;
}

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

.p-top__service-items {
  --_inner: 20px;
  margin-inline: auto;
  margin-bottom: 40px;
  width: min(100% - var(--_inner) * 2, 1020px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.p-top__service-item-image {
  position: relative;
}
.p-top__service-item-image img {
  display: block;
  width: min(100%, 480px);
  aspect-ratio: 480/248;
  margin-inline: auto;
}

.p-top__service-item h3 {
  position: relative;
  z-index: 2;
  margin-top: -30px;
  margin-bottom: 0.8571428571em;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background-color: var(--color-main);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3571428571em 1em;
}
.p-top__service-item h3::before {
  content: attr(data-number);
  display: inline-block;
  font-size: 0.875rem;
  font-family: var(--font-family-en);
}

.p-top__service-button {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__service {
    padding-bottom: 100px;
  }
  .p-top__service::after {
    height: 3100px;
    clip-path: polygon(100% 0, 100% 70%, 0 100%, 0 30%);
  }
  .p-top__service-container {
    margin-bottom: 170px;
    padding-top: 200px;
    padding-bottom: 125px;
  }
  .p-top__service-title {
    margin-bottom: 80px;
  }
  .p-top__service-items {
    --_inner: 50px;
    margin-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
    gap: 65px 60px;
  }
  .p-top__service-item h3 {
    font-size: 1.75rem;
  }
  .p-top__service-item h3::before {
    font-size: 1.25rem;
  }
}
/**
deco
***/
.p-top__service-deco-block {
  position: relative;
}

.p-top__service-deco-text {
  position: absolute;
  font-size: max(3.75rem, 16vw);
  font-family: var(--font-family-en);
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  top: -35px;
  left: 50%;
  transform: translateX(-40%);
}

.p-top__service-deco-image {
  display: block;
  width: min(55.1428571429vw, 772px);
  aspect-ratio: 772.48/657.32;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__service-deco-text {
    top: -140px;
    font-size: 13.75rem;
    transform: translateX(-44%);
  }
  .p-top__service-deco-image {
    translate: 25% 0;
  }
}
/**
news
**/
.p-top__news {
  margin-bottom: 50px;
}

.p-top__news-container {
  max-width: 100%;
  padding-left: var(--inner-padding);
  padding-right: var(--inner-padding);
  width: 100%;
  margin-inline-start: auto;
  display: grid;
  grid-template-columns: 1fr;
}

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

.p-top__news-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.875rem;
  font-family: var(--font-family-en);
  line-height: 1.25;
  text-transform: uppercase;
}
.p-top__news-title span {
  font-size: 1.6666666667em;
  display: block;
}

.p-top__news-body {
  overflow-x: hidden;
  margin-bottom: 30px;
}

.p-top__news-button {
  order: 5;
  justify-content: flex-end;
}

@media screen and (min-width: 768px) {
  .p-top__news {
    padding-top: 50px;
    margin-bottom: 110px;
  }
  .p-top__news-container {
    padding-right: 0;
    width: calc(50vw + 530px);
    grid-template-columns: 11.5625rem 1fr;
    gap: 80px;
  }
  .p-top__news-body {
    margin-bottom: 0;
  }
  .p-top__news-header {
    display: block;
  }
  .p-top__news-title {
    margin-bottom: 50px;
    text-align: left;
  }
  .p-top__news-button {
    margin-bottom: 80px;
    order: 0;
    justify-content: flex-start;
  }
}
/**
article
**/
.c-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media screen and (min-width: 500px) {
  .c-articles {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}
.c-article a {
  height: 100%;
  display: block;
}

.c-article__image {
  margin-bottom: 25px;
  aspect-ratio: 340/250;
  width: 100%;
  height: auto;
}
.c-article__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: opacity 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .c-articles {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-article__image {
    margin-bottom: 45px;
  }
}
.c-article__list {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.c-article__list-date {
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
}

.c-article__list-category {
  font-size: 0.75rem;
  padding: 3px 2em;
  background-color: var(--color-grey);
  border-radius: 1em;
}

.c-article h3 {
  font-weight: 400;
}

.p-archive__none {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-article a:hover img {
    opacity: 0.8;
  }
}
/***
swiper
***/
.swiper-wrapper {
  margin-bottom: 50px;
}

.swiper__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 25px;
  order: 3;
}

.swiper-scrollbar {
  background-color: var(--color-grey);
}

.swiper-scrollbar-drag {
  background-color: #010101;
}

.swiper__next,
.swiper__prev {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
}
.swiper__next svg,
.swiper__prev svg {
  fill: transparent;
  stroke: #000;
  transform: translateY(-25%);
}

.swiper__prev.swiper-button-disabled,
.swiper__next.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.swiper__prev svg {
  transform: translateY(-25%) scale(-1, 1);
}

@media screen and (min-width: 768px) {
  .swiper-wrapper {
    margin-bottom: 80px;
  }
  .swiper__buttons {
    margin-bottom: 0;
    order: 0;
    justify-content: flex-start;
  }
}
/**
button2
**/
.c-button-2 {
  display: flex;
  gap: 1.4166666667em;
  font-size: 0.75rem;
  align-items: center;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
}
.c-button-2 svg {
  fill: transparent;
  stroke: #000;
  width: 3.1666666667em;
  height: auto;
}

/**
service
**/
.p-top__company {
  padding: 60px 0;
  background: linear-gradient(45deg, #3F3F3F 0%, #000000 100%);
}

.p-top__company .l-container {
  --inner: min( 100% - calc( var(--inner-padding) * 2 ), 1060px);
  margin-inline: auto;
}

.p-top__company-container {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

.p-top__company-title {
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  margin-bottom: 1em;
}

.p-top__company-message {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 1.2em;
}

.p-top__company-text p {
  letter-spacing: 0.1em;
}

.p-top__company-link a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
}
.p-top__company-link a::before, .p-top__company-link a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 2px;
}
.p-top__company-link a::before {
  width: 100%;
  background-color: #717070;
}
.p-top__company-link a::after {
  width: 8.8235294118%;
  background-color: #fff;
}

.p-top__company-link:not(:first-of-type) a {
  padding-top: 20px;
}

.p-top__company-link-en {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.p-top__company-link-ja {
  font-size: 0.875rem;
  color: #6D6D6D;
}

@media screen and (min-width: 768px) {
  .p-top__company {
    padding: 100px 0;
  }
  .p-top__company-container {
    margin-bottom: 80px;
    grid-template-columns: 1fr 53.125%;
    gap: 100px;
  }
  .p-top__company-title {
    font-size: 2.5rem;
  }
  .p-top__company-message {
    font-size: 1.25rem;
  }
  .p-top__company-link a {
    gap: 20px;
    padding-bottom: 30px;
    transition: opacity 0.3s ease-out;
  }
  .p-top__company-link:not(:first-of-type) a {
    padding-top: 30px;
  }
  .p-top__company-link a:hover {
    opacity: 0.8;
  }
  .p-top__company-link-en {
    font-size: 1.75rem;
    font-family: var(--font-family-en);
  }
  .p-top__company-link-ja {
    font-size: 1rem;
  }
}
/**
recruit
**/
.p-top__company-recruit {
  background-color: #fff;
  padding: 40px 20px;
  display: block;
  transition: filter 0.3s ease-out;
}

.p-top__company-recruit-title {
  margin-bottom: 10px;
  text-align: center;
}
.p-top__company-recruit-title h2 {
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  font-weight: 700;
  text-transform: uppercase;
}
.p-top__company-recruit-title p {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.p-top__company-recruit-text {
  margin-bottom: 20px;
}

.p-top__company-recruit-text-p1 {
  margin-bottom: 1em;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-top__company-recruit-icon {
  --background-color: #fff;
  --icon-color: #000;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 50%;
  margin-inline: auto;
  background-color: var(--background-color);
  transition: background-color 0.3s ease-out;
}
.p-top__company-recruit-icon svg {
  transform: translateY(-25%);
  fill: transparent;
  stroke: var(--icon-color);
}

@media screen and (min-width: 768px) {
  .p-top__company-recruit {
    padding: 50px 120px 60px 60px;
    display: flex;
    gap: 90px;
    position: relative;
  }
  .p-top__company-recruit-title {
    text-align: left;
    margin-bottom: 0px;
  }
  .p-top__company-recruit-title h2 {
    font-size: 2.5rem;
  }
  .p-top__company-recruit-title p {
    font-size: 1.25rem;
  }
  .p-top__company-recruit-text {
    margin-bottom: 0px;
  }
  .p-top__company-recruit-text-p1 {
    margin-inline: 0;
    font-size: 1.5rem;
  }
  .p-top__company-recruit-icon {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
  }
  .p-top__company-recruit:hover {
    filter: brightness(0.85);
  }
  .p-top__company-recruit:hover .p-top__company-recruit-icon {
    --background-color: #000;
    --icon-color: #fff;
  }
}
.p-service__top-body {
  margin-bottom: 100px;
  padding: 50px 0;
  background: var(--gradation-black2);
  position: relative;
}
.p-service__top-body::after {
  background-color: #757575;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  translate: -50% 0;
  width: min(20.1818181818%, 222px);
  aspect-ratio: 222/83;
  height: auto;
  z-index: -1;
}

.p-service__top-title {
  margin-bottom: 40px;
  font-size: var(--font-size-h2);
  text-align: center;
  color: #fff;
}

.p-service__top-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  flex-direction: column;
}

.p-service__top-item {
  width: min(100%, 530px);
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  border-radius: 15px;
  padding: 20px 15px;
  margin-inline: auto;
}

.p-service__top-item img {
  display: block;
  width: 20%;
  aspect-ratio: 1;
  height: auto;
}

.p-service__top-item p {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
}
.p-service__top-item p span {
  font-size: 1.2em;
  padding-bottom: 4px;
  border-bottom: 2px solid #000;
}

@media screen and (min-width: 768px) {
  .p-service__top-body {
    margin-bottom: 160px;
    padding: 80px 0;
  }
  .p-service__top-title {
    margin-bottom: 60px;
  }
  .p-service__top-items {
    flex-direction: row;
    gap: 35px 40px;
    border-radius: 20px;
  }
  .p-service__top-item {
    width: calc(50% - 20px);
    padding: 30px 15px;
  }
  .p-service__top-item p {
    font-size: 1.25rem;
  }
  .p-service__top-item p span {
    font-size: 1.3em;
  }
}
.p-service__top-solve {
  margin-bottom: 60px;
}

.p-service__top-solve h3 {
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 50px;
}
.p-service__top-solve h3 span {
  border-bottom: 1px solid #000;
  font-size: 1.25em;
  padding-bottom: 3px;
}

.p-service__top-solve-message {
  margin-bottom: 70px;
  text-align: center;
  font-size: 1.25rem;
}
.p-service__top-solve-message span {
  font-weight: 700;
  font-size: var(--font-size-h2);
}

.p-service__top-solve-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-service__top-solve-item {
  width: min(100%, 340px);
  margin-inline: auto;
}

.p-service__top-solve-item figure {
  margin-bottom: 30px;
}
.p-service__top-solve-item figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  background-color: aliceblue;
  border-radius: 50%;
}

.p-service__top-solve-item h4,
.p-service__top-solve-item p {
  padding-inline: 17px;
  text-align: left;
}

.p-service__top-solve-item h4 {
  margin-bottom: 10px;
  font-size: var(--font-size-h3);
  font-weight: 500;
  line-height: 2;
}
.p-service__top-solve-item h4 span {
  background-color: #000;
  color: #fff;
  padding: 4px 10px;
}

@media screen and (min-width: 768px) {
  .p-service__top-solve {
    margin-bottom: 115px;
  }
  .p-service__top-solve-items {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-service__top-solve-item h4,
  .p-service__top-solve-item p {
    text-align: center;
  }
}
/** feature **/
.p-service__top-features {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.p-service__top-feature-header {
  margin-bottom: 30px;
}

.p-service__top-feature-header div {
  margin-bottom: 20px;
  font-size: 0.9375rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 3px solid #000;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-transform: uppercase;
}
.p-service__top-feature-header div::after {
  content: attr(data-number);
  display: block;
  font-size: 1.6em;
}

.p-service__top-feature-header h3 {
  font-size: var(--font-size-h2);
  font-weight: 700;
  text-align: center;
}

.p-service__top-feature-figure {
  margin-bottom: 40px;
}
.p-service__top-feature-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1100/420;
  height: auto;
  background-color: aliceblue;
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service__top-feature-message {
  margin-bottom: 20px;
  font-size: var(--font-size-h3);
  font-weight: 500;
  line-height: 1.8;
}

.p-service__top-feature-para {
  margin-bottom: 30px;
}

.p-service__top-figure-box {
  border-radius: 20px;
  background-color: #E6E6E6;
  padding: 25px 30px;
}

.p-service__top-figure-box h4 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: var(--font-size-h4);
}

.p-service__top-figure-box li {
  --font-size: 0.9375rem;
  --line-height: 1.8;
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-weight: 400;
  padding-left: 1em;
  position: relative;
}
.p-service__top-figure-box li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: calc(var(--font-size) * var(--line-height) / 2);
  left: 0;
  translate: 0 -50%;
}

.p-service__top-figure-box + .p-service__top-figure-box {
  margin-top: 40px;
}

.p-service__area {
  background: var(--gradation-black2);
  border-radius: 20px;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 40px 25px;
}

.p-service__area-figure img {
  display: block;
  width: min(90%, 526px);
  aspect-ratio: 526/560;
  height: auto;
  margin-inline: auto;
}

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

.p-service__area-text h3 {
  margin-bottom: 30px;
  font-size: var(--font-size-h2);
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .p-service__top-features {
    gap: 100px;
    margin-bottom: 100px;
  }
  .p-service__top-feature-message {
    margin-bottom: 30px;
  }
  .p-service__top-feature-figure {
    margin-bottom: 60px;
  }
  .p-service__top-feature-para {
    margin-bottom: 50px;
  }
  .p-service__top-figure-box {
    padding: 45px 55px;
  }
  .p-service__top-figure-box-items {
    display: flex;
    gap: 60px;
  }
  .p-service__top-figure-box li {
    --font-size: 1.125rem;
    --line-height: 2;
  }
  .p-service__area {
    grid-template-columns: 52.6% 1fr;
    gap: 60px;
    padding: 80px 53px 80px 47px;
  }
  .p-service__area-figure img {
    width: min(100%, 526px);
  }
}
.l-section {
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .l-section {
    margin-bottom: 100px;
  }
}
.c-breadcrumb {
  font-size: 0.75rem;
  line-height: 1.5;
}
.c-breadcrumb a {
  color: var(--main);
}
.c-breadcrumb > span:first-of-type {
  padding-right: 6px;
  text-transform: uppercase;
}
.c-breadcrumb > span:not(:first-of-type) {
  padding: 0 6px;
}

.c-page-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
}

.p-feature__top-title {
  margin-bottom: 30px;
}

.p-feature__top-text {
  margin-bottom: 50px;
}

.p-feature__top-images {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.p-feature__top-images img {
  display: block;
  width: min(100%, 530px);
  aspect-ratio: 530/360;
  height: auto;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-feature__top-title {
    margin-bottom: 50px;
  }
  .p-feature__top-text {
    margin-bottom: 60px;
  }
  .p-feature__top-images {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-feature__strength {
  overflow: clip;
}

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

.p-feature__strength-figure img {
  display: block;
  width: min(100%, 686px);
  aspect-ratio: 686/808;
  height: auto;
  margin-inline: auto;
}

.p-feature__strength-icon {
  position: absolute;
  top: 50%;
  left: 0;
  translate: -50% -30%;
  width: clamp(400px, 53.4285714286vw, 748px);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .p-feature__strength-title {
    margin-bottom: 50px;
  }
  .p-feature__strength-icon {
    width: min(53.4285714286vw, 748px);
    translate: -50% -50%;
  }
}
.p-feature__items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-feature__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "text" "image";
  gap: 40px;
}

.p-feature__item-figure {
  grid-area: image;
}
.p-feature__item-figure img {
  display: block;
  width: min(100%, 500px);
  margin-inline: auto;
  aspect-ratio: 495/548;
  height: auto;
}

.p-feature__item-text {
  grid-area: text;
}

.p-feature__item-number {
  font-size: 0.9375rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  font-weight: 700;
  border-bottom: 2px solid #000;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2em;
}
.p-feature__item-number::after {
  content: attr(data-number);
  margin-right: 5px;
  font-size: 1.6em;
  display: inline-block;
}

.p-feature__item-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-bottom: 1em;
}

.p-feature__item-subtitle {
  font-size: var(--font-size-h3);
  font-weight: 500;
  line-height: 2.2;
  margin-bottom: 20px;
}
.p-feature__item-subtitle span {
  background-color: #000;
  color: #fff;
  padding: 5px;
}

@media screen and (min-width: 768px) {
  .p-feature__items {
    gap: 60px;
  }
  .p-feature__item {
    gap: 50px;
  }
  .p-feature__item:nth-child(odd) {
    grid-template-columns: 45% 1fr;
    grid-template-areas: "image text";
  }
  .p-feature__item:nth-child(even) {
    grid-template-columns: 45% 1fr;
    grid-template-areas: "text image";
  }
  .p-feature__item-subtitle {
    margin-bottom: 1.1538461538em;
    line-height: 2;
  }
}
.p-works__title {
  margin-bottom: 30px;
}

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

.p-works__header p {
  text-align: center;
}

.p-works__blocks {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.p-works__block h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  margin-bottom: 1.1538461538em;
}

.p-works__block h3,
.p-works__block p {
  text-align: center;
}

.p-works__block p {
  font-size: 1rem;
  margin-bottom: 30px;
}
.p-works__block p span {
  font-weight: 700;
  font-size: 1.75em;
}

@media screen and (min-width: 768px) {
  .p-works__header {
    margin-bottom: 60px;
  }
  .p-works__blocks {
    gap: 100px;
  }
  .p-works__block p {
    font-size: 1.25rem;
  }
}
.p-esg__section {
  margin-bottom: 60px;
}

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

.p-esg__header-message {
  font-size: var(--font-size-h2);
  font-weight: 500;
  margin-bottom: 30px;
}

.p-esg__blocks {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.p-esg__block h2 {
  margin-bottom: 50px;
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.8;
}

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

.p-esg__block-text-message {
  margin-bottom: 20px;
  font-size: var(--font-size-h3);
  line-height: 1.8;
  font-weight: 500;
}

.p-esg__block-figure img {
  display: block;
  width: min(100%, 400px);
  height: auto;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-esg__section {
    margin-bottom: 100px;
  }
  .p-esg__header {
    margin-bottom: 8%;
  }
  .p-esg__blocks {
    gap: 100px;
  }
  .p-esg__block h2 {
    margin-bottom: 80px;
  }
  .p-esg__block-container {
    --align: flex-end;
    grid-template-columns: 1fr 36.3636363636%;
    gap: 60px;
    align-items: var(--align);
  }
  .p-esg__block:first-of-type .p-esg__block-text {
    padding-bottom: 60px;
  }
  .p-esg__block:last-of-type .p-esg__block-text {
    padding-bottom: 20px;
  }
}
.p-esg__declare {
  background-color: #E9E9E9;
  padding: 150px 0;
}

.p-esg__declare-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.p-esg__declare-icon {
  --width: 60%;
  position: absolute;
  top: 0;
  right: 50%;
  display: block;
  width: var(--width);
  height: auto;
  translate: 50% -50%;
}

.p-esg__declare-icon--2col.p-esg__declare-icon {
  --width: 29%;
}

.p-esg__declare-block {
  position: relative;
  border-radius: 15px;
  background-color: #fff;
  padding: 40px 25px;
}

.p-esg__declare-block-title {
  margin-bottom: 30px;
}

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

.p-esg__declare-figure img {
  display: block;
  width: min(100%, 340px);
  aspect-ratio: 1;
  height: auto;
  margin-inline: auto;
}

.p-esg__declare-texts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-esg__declare-text h3 {
  font-size: var(--font-size-h3);
  font-weight: 700;
  margin-bottom: 0.8846153846em;
}

@media screen and (min-width: 768px) {
  .p-esg__declare {
    background-color: #E9E9E9;
    padding: 80px 0;
  }
  .p-esg__declare-block-title {
    margin-bottom: 70px;
  }
  .p-eag__declare-body {
    gap: 70px;
    grid-template-columns: 1fr 30.9090909091%;
  }
  .p-esg__declare-container {
    gap: 130px;
  }
  .p-esg__declare-block {
    border-radius: 20px;
    padding: 80px 50px;
  }
  .p-esg__declare-texts {
    gap: 50px;
  }
  .p-esg__declare-icon {
    --width: min( 430 / 1100 * 100%, 430px);
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: var(--width);
    height: auto;
    translate: 0 -50%;
  }
  .p-esg__declare-icon--2col.p-esg__declare-icon {
    --width: min( 215 / 1100 * 100%, 215px);
  }
}
.p-recruit__header {
  margin-bottom: 70px;
}

.p-recruit__title {
  margin-bottom: 30px;
}

.p-recruit__image {
  width: 100%;
  height: 180px;
  aspect-ratio: 1400/500;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 40px;
}

.p-recruit__header-msg {
  font-size: var(--font-size-h2);
  font-weight: 500;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .p-recruit__header {
    margin-bottom: 130px;
  }
  .p-recruit__image {
    margin-bottom: 60px;
    height: 500px;
  }
  .p-recruit__header-msg {
    margin-bottom: 30px;
  }
}
.p-recruit__section {
  padding: 80px 0;
  background-color: #F4F4F4;
}

.p-recruit__box {
  padding: 30px 25px;
  border-radius: 15px;
  background-color: #fff;
}

.p-recruit__box-items {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.p-recruit__box-items li {
  --line-height: 1.8;
  --font-size: 1.125rem;
  position: relative;
  padding-left: 2em;
  font-size: var(--font-size);
  list-style: var(--line-height);
}
.p-recruit__box-items li::before {
  content: attr(data-number);
  background-color: #000;
  color: #fff;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: calc(var(--font-size) * var(--line-height) / 2.5);
  left: 0;
  translate: 0 -50%;
}

@media screen and (min-width: 768px) {
  .p-recruit__box {
    padding: 60px 50px;
    border-radius: 20px;
  }
  .p-recruit__box-items li {
    --line-height: 2;
    --font-size: 1.5rem;
  }
  .p-recruit__box-items li::before {
    width: 2rem;
    height: 2rem;
    font-size: 0.9375rem;
  }
}
.p-recruit__culture-item {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-recriot__culture-figure img {
  display: block;
  width: min(100%, 500px);
  aspect-ratio: 500/518;
  height: auto;
  margin-inline: auto;
}

.p-recruit__culture-item-text h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  margin-bottom: 1em;
}

.p-recruit__culture-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.p-recruit__culture-images img {
  display: block;
  width: min(100%, 530px);
  height: auto;
  aspect-ratio: 530/400;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-recruit__culture-item {
    margin-bottom: 90px;
    grid-template-columns: 45.4545454545% 1fr;
    gap: 60px;
  }
  .p-recruit__culture-item-text {
    padding-top: 70px;
  }
  .p-recruit__culture-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
/*** welfare ***/
.p-reqruit__welfare-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 8px;
}

.p-reqruit__welfare-item {
  display: flex;
  flex-direction: column;
  border: 1px solid #E4E4E4;
  padding: 30px 20px;
  border-radius: 20px;
}

.p-reqruit__welfare-icon {
  width: max(80px, 37.7777777778%);
  aspect-ratio: 136/136;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-inline: auto;
}
.p-reqruit__welfare-icon img {
  display: block;
  width: 58.8235294118%;
  aspect-ratio: 1;
  height: auto;
}

.p-reqruit__welfare-item h3 {
  margin-bottom: 20px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-reqruit__welfare-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
/** education **/
.p-recruit__edu-body {
  padding: 80px 0;
  background: linear-gradient(45deg, #3b3a3a 0%, #a09e9e 100%);
  color: #fff;
}

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

.p-recruit__edu-content-figure img {
  display: block;
  width: min(100%, 382px);
  aspect-ratio: 382/515;
  margin-inline: auto;
  height: auto;
}

.p-recruit__edu-content-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-recruit__edu-content-item h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 1em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .p-recruit__edu-content {
    display: grid;
    grid-template-columns: 1fr 34.7272727273%;
    gap: 60px;
  }
  .p-recruit__edu-content-figure img {
    translate: 0 -150px;
  }
  .p-recruit__edu-content-items {
    gap: 50px;
  }
}
/** detail **/
.p-recruit__detail-box {
  margin-bottom: 60px;
  padding: 25px 30px;
  border: 1px solid #000;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 2;
}

.p-recruit__detail-table {
  margin-bottom: 60px;
}

.p-recruit__detail-button.c-button-1 {
  margin-inline: auto;
}
.p-recruit__detail-button.c-button-1 .c-button-1__arrow {
  right: 10.2564102564%;
}

@media screen and (min-width: 768px) {
  .p-recruit__detail-box {
    margin-bottom: 100px;
    padding: 50px 100px;
    border-radius: 20px;
    gap: 60px;
    flex-direction: row;
  }
  .p-recruit__detail-table {
    margin-bottom: 100px;
  }
}
.p-faq__p {
  margin-bottom: 50px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-faq__p-2 {
  margin-bottom: 60px;
  text-align: center;
}

.p-faq__item {
  border-top: 1px solid #D0D0D0;
}

.p-faq__item:last-child {
  border-bottom: 1px solid #D0D0D0;
}

.p-faq__items {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-faq__question,
.p-faq__answer > div {
  position: relative;
  display: flex;
  gap: 15px;
  line-height: 2em;
  position: relative;
}

.p-faq__question {
  padding: 20px 40px 20px 20px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background-color: #E9E9E9;
  align-items: center;
}
.p-faq__question::before, .p-faq__question::after {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #2C2020;
  position: absolute;
  top: 50%;
  right: 0;
  translate: -100% -50%;
}
.p-faq__question::after {
  rotate: 90deg;
  transition: all 0.2s;
}

details[open] .p-faq__question::after {
  rotate: 0deg;
}

.p-faq__item-icon {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.p-faq__item-question,
.p-faq__item-answer {
  flex: 1;
}

.p-faq__item-answer {
  padding-top: .2em;
}

@media screen and (min-width: 768px) {
  .p-faq__p {
    margin-bottom: 60px;
    text-align: center;
  }
  .p-faq__p-2 {
    margin-bottom: 100px;
  }
  .p-faq__items {
    margin-bottom: 100px;
  }
  .p-faq__question,
  .p-faq__answer > div {
    gap: 20px;
  }
  .p-faq__question {
    font-size: 1.25rem;
  }
  .p-faq__question::before, .p-faq__question::after {
    right: 15px;
  }
  .p-faq__question:hover {
    filter: brightness(0.95);
  }

  .p-faq__item-answer {
    padding-top: .9em;
  }
  .p-faq__item-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}
.p-faq__question .p-faq__item-icon {
  background-color: #fff;
}

.p-faq__answer .p-faq__item-icon {
  background-color: #E9E9E9;
}

.p-faq__answer {
  overflow: hidden;
}
.p-faq__answer > div {
  padding: 20px;
}
.p-faq__answer p + p {
  margin-top: 1.5em;
}

details::details-content {
  content-visibility: unset;
  display: block grid;
}
@media (prefers-reduced-motion: no-preference) {
  details::details-content {
    transition-duration: 300ms;
    transition-property: grid-template-rows;
  }
}
details:not([open])::details-content {
  grid-template-rows: 0fr;
}
details[open]::details-content {
  grid-template-rows: 1fr;
}

.p-privacy__block:not(:last-of-type) {
  margin-bottom: 50px;
}

.p-privacy__block-header {
  margin-bottom: 40px;
}

.p-privacy__block h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.p-privacy__block p {
  margin-bottom: 1.5em;
}

.p-privacy__block-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-privacy__block-item h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  margin-bottom: 20px;
}

.p-privacy__block-google h3 {
  font-weight: 400;
  margin-bottom: 5px;
}

.p-privacy__block-google a {
  display: block;
}

@media screen and (min-width: 768px) {
  .p-privacy__block:not(:last-of-type) {
    margin-bottom: 80px;
  }
  .p-privacy__block-header {
    margin-bottom: 50px;
  }
  .p-privacy__block h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .p-privacy__block-items {
    gap: 50px;
  }
  .p-privacy__block-item h3 {
    margin-bottom: 30px;
  }
  .p-privacy__block-google a:hover {
    text-decoration: underline;
  }
}
.p-contact__blocks {
  padding-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.p-contact__block {
  border: 1px solid #E4E4E4;
  border-radius: 20px;
  padding: 45px 20px 35px;
  display: flex;
  flex-direction: column;
  width: min(100%, 530px);
  margin-inline: auto;
  position: relative;
}

.p-contact__block-icon {
  width: 70px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
}
.p-contact__block-icon img {
  display: block;
  width: min(60%, 60px);
  height: auto;
}

.p-contact__block--line .p-contact__block-icon {
  background-color: #06C755;
}

.p-contact__block--tel .p-contact__block-icon {
  background-color: #000000;
}

.p-contact__block-title {
  font-size: var(--font-size-h2);
  margin-bottom: 20px;
  text-align: center;
}

.p-contact__block-tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.05em;
  font-size: 1.5625rem;
  font-weight: 700;
  font-family: var(--font-family-en);
  transition: opacity 0.3s ease-out;
}
.p-contact__block-tel svg {
  display: block;
  width: min(5.725%, 23px);
  height: auto;
  vertical-align: middle;
}

.p-contact__block-p {
  text-align: center;
}

.p-contact__line-botton {
  width: min(100%, 400px);
  height: 75px;
  margin-inline: auto;
  background-color: #06C755;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  gap: 10px;
  transition: opacity 0.3s ease-out;
}
.p-contact__line-botton img {
  display: block;
  width: 15%;
  aspect-ratio: 1;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-contact__blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .p-contact__block-icon {
    width: min(18.8679245283%, 100px);
  }
  .p-contact__block {
    padding: 65px 20px;
  }
  .p-contact__line-botton {
    height: 100px;
  }
  .p-contact__block-tel {
    font-size: 2.6875rem;
  }
  .p-contact__line-botton:hover {
    opacity: 0.7;
  }
  .p-contact__block-tel:hover {
    opacity: 0.7;
  }
}
.p-contact__form {
  padding-top: 80px;
}

@media screen and (min-width: 768px) {
  .p-contact__blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
.p-company__links {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.p-company__link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 1px solid #000;
  width: 100%;
  transition: opacity 0.3s ease-out;
}
.p-company__link a::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  rotate: 135deg;
}

.c-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-title-group__en {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  text-transform: uppercase;
}

.c-title-group__jp {
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.8;
}

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

.p-company__greet-figure {
  margin-bottom: 50px;
  width: min(100%, 960px);
  margin-inline: auto;
}
.p-company__greet-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 825/555;
  background-color: aliceblue;
}

.p-company__greet-text {
  margin-bottom: 40px;
}
.p-company__greet-text p:not(:last-of-type) {
  margin-bottom: 2em;
}

.p-compnay__greet-signature {
  margin-bottom: 60px;
}

.p-compnay__greet-signature-company {
  font-size: 0.9375rem;
  margin-bottom: 7px;
}

.p-compnay__greet-signature-name {
  font-size: 1.25rem;
  font-weight: 700;
}
.p-compnay__greet-signature-name span {
  font-size: 0.6em;
  font-weight: 400;
  margin-right: 10px;
}

.p-company__bg {
  width: 100%;
  aspect-ratio: 1400/337;
  height: auto;
  display: block;
  min-height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-company__links {
    margin-bottom: 100px;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
  }
  .p-company__link a {
    padding-bottom: 15px;
    font-size: 1.125rem;
  }
  .p-company__link a:hover {
    opacity: 0.7;
  }
  .p-company__greet-figure {
    margin-bottom: 60px;
  }
  .p-company__greet-text {
    margin-bottom: 50px;
  }
  .p-compnay__greet-signature-company {
    font-size: 1.125rem;
  }
  .p-compnay__greet-signature-name {
    font-size: 1.875rem;
  }
  .p-compnay__greet-signature {
    margin-bottom: 100px;
  }
}
.p-company__philosophy {
  overflow: clip;
}

.p-company__philosophy-container {
  position: relative;
  padding: 60px 0;
}

.p-company__philosophy-item:not(:last-of-type) {
  margin-bottom: 60px;
}

.p-company__philosophy-item p {
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-company__philosophy-icon {
  width: clamp(200px, 49.4285714286vw, 692px);
  aspect-ratio: 748/722;
  position: absolute;
  top: 50%;
  left: 0;
  translate: -28% -55%;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .p-company__philosophy-container {
    padding: 100px 0;
  }
  .p-company__philosophy-item*:not(:last-of-type) {
    margin-bottom: 80px;
  }
  .p-company__philosophy-item p {
    font-size: 2.5rem;
  }
}
.p-company__history-lists dt {
  font-family: var(--font-family-en);
  font-weight: 400;
}

.p-company__outline-lists dt {
  font-size: 1rem;
  font-weight: 700;
}

/**リスト***/
.c-list {
  display: grid;
  grid-template-columns: 1fr;
  padding: 18px 0;
  gap: 10px;
  line-height: 1.8;
  border-bottom: 1px solid #E4E4E4;
}
.c-list:first-of-type {
  border-top: 1px solid #E4E4E4;
}

.c-list dt {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .c-list {
    grid-template-columns: 150px 1fr;
    gap: 30px;
    line-height: 2;
    padding: 30px 0;
  }
  .c-list a:hover {
    text-decoration: underline;
  }
}
.p-company__history-box {
  padding: 40px 23px;
  background-color: #F8F8F8;
}

@media screen and (min-width: 600px) {
  .p-company__history-box {
    padding: 100px 70px;
  }
}
.p-company__access-blocks {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-company__access-block {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
}

.p-company__access-block-text {
  padding: 40px 22px;
  background: var(--gradation-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-company__access-block-text address {
  margin-bottom: 30px;
}

.p-company__access-block-text-name {
  font-size: var(--font-size-h3);
  margin-bottom: 20px;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .p-company__access-block {
    grid-template-columns: 1fr 56.9090909091%;
    grid-template-rows: auto auto;
  }
  .p-company__access-block-text {
    padding: 40px 45px;
  }
  .p-company__access-block-text-name {
    margin-bottom: 30px;
  }
}
.p-company__access-block-text-address,
.p-company__access-block-text-phone {
  padding-left: 1.2em;
  color: #fff;
  position: relative;
}
.p-company__access-block-text-address svg,
.p-company__access-block-text-phone svg {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  fill: #fff;
  vertical-align: middle;
}

.p-company__access-map {
  width: 100%;
}
.p-company__access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-archive__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0;
  margin-bottom: 50px;
}

.p-archive__link {
  font-size: var(--font-size-h4);
  font-weight: 700;
}

.p-archive__link a {
  display: block;
  text-align: center;
  padding: 12px;
}

.p-archive__link.is-active a {
  background-color: #000;
  color: #fff;
}

@media screen and (min-width: 600px) {
  .p-archive__links {
    flex-direction: row;
    margin-bottom: 60px;
    gap: 20px 80px;
  }
  .p-archive__link a {
    padding: 5px;
    border-radius: 30px;
    background-color: #fff;
  }
  .p-archive__link.is-active a {
    padding: 5px 1.5em;
  }
}
.p-page {
  margin-bottom: 40px;
}

.p-page__body {
  margin-bottom: 40px;
  position: relative;
  height: 180px;
  width: 100%;
}
.p-page__body::before {
  z-index: 2;
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

.p-page .l-container {
  z-index: 3;
  position: relative;
  display: flex;
  align-items: center;
  height: inherit;
}

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

.p-page__title {
  color: #fff;
}

.p-page__title span {
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-family-en);
  margin-bottom: 0.4153846154em;
  display: block;
  text-transform: uppercase;
}

.p-page__title h1,
.p-page__title div {
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .p-page {
    margin-bottom: 60px;
  }
  .p-page__body {
    margin-bottom: 50px;
    height: 300px;
  }
  .p-page__title span {
    font-size: 4.0625rem;
  }
  .p-page__title h1,
  .p-page__title div {
    font-size: 1.125rem;
  }
}
.p-single__header {
  margin-bottom: 30px;
}

.p-single__header h1 {
  font-size: var(--font-size-h2);
  font-weight: 700;
}

.p-single__list {
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.p-single__list-date {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
}

.p-single__list-category {
  background-color: #272727;
  color: #fff;
  font-size: 0.875rem;
  padding: 4px 1.5714285714em;
}

.p-single__body {
  margin-bottom: 60px;
}
.p-single__body > .wp-block-image,
.p-single__body .wp-block-columns {
  margin-top: 40px;
  margin-bottom: 40px;
}
.p-single__body h2 {
  margin-top: 2.3076923077em;
  margin-bottom: 30px;
  font-size: var(--font-size-h3);
  font-weight: 500;
}
.p-single__body h3 {
  margin-top: 2.5em;
  margin-bottom: 1em;
  font-size: var(--font-size-h4);
  font-weight: 700;
}
.p-single__body h4 {
  margin-top: 3.125em;
  margin-bottom: 1.25em;
  font-weight: 700;
}
.p-single__body p {
  margin-bottom: 2em;
}
.p-single__body a {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .p-single__body {
    margin-bottom: 100px;
  }
  .p-single__body > .wp-block-image,
  .p-single__body .wp-block-columns {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.p-flow__header {
  margin-bottom: 40px;
}

.p-flow__title {
  margin-bottom: 30px;
}

.p-flow__item {
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 25px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-flow__item:not(:first-of-type) {
  padding-top: 25px;
}

.p-flow__item-figure img {
  display: block;
  width: min(100%, 340px);
  height: auto;
  aspect-ratio: 340/250;
  margin-inline: auto;
}

.p-flow__item-text h3 {
  margin-bottom: 20px;
  font-size: var(--font-size-h3);
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-flow__item-text h3::before {
  content: attr(data-number);
  font-size: 0.9375rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
}

.p-flow__item-text-p {
  margin-bottom: 30px;
}

.p-flow__button.c-button-1 {
  gap: 8px;
}
.p-flow__button.c-button-1 span {
  letter-spacing: 0;
}

.p-flow__button.c-button-1 svg {
  z-index: 2;
  fill: transparent;
  stroke: #000;
  transition: stroke 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .p-flow__header {
    margin-bottom: 60px;
  }
  .p-flow__item {
    grid-template-columns: 30.9090909091% 1fr;
    gap: 60px;
    padding-bottom: 40px;
  }
  .p-flow__item:not(:first-of-type) {
    padding-top: 40px;
  }
  .p-flow__item-text h3 {
    margin-bottom: 30px;
  }
  .p-flow__button.c-button-1:hover svg {
    stroke: #fff;
  }
}
.p-contact__form {
  position: relative;
}
.p-contact__form::before {
  content: "";
  width: 100%;
  height: 89%;
  background-color: #F4F4F4;
  position: absolute;
  top: 0;
  left: 0;
}

.p-contact__form-header {
  margin-bottom: 40px;
}

.p-contact__form-header h2 {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-bottom: 20px;
}

.form-cover {
  padding: 40px 25px;
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 100px;
}

@media screen and (min-width: 768px) {
  .p-contact__form::before {
    height: 85%;
  }
  .p-contact__form-header {
    margin-bottom: 60px;
  }
  .p-contact__form-header h2 {
    margin-bottom: 30px;
  }
  .form-cover {
    padding: 80px 70px 50px 70px;
    border-radius: 20px;
    margin-bottom: 200px;
  }
}
.form-row {
  --bottom: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: var(--bottom);
}

@media screen and (min-width: 768px) {
  .form-row {
    --bottom: 40px;
    gap: 40px;
    grid-template-columns: 250px 1fr;
  }
}
.form-row.form-row--last {
  --bottom: 60px;
}

@media screen and (min-width: 768px) {
  .form-row.form-row--last {
    --bottom: 100px;
  }
}
.form-row:has(.form-input) .form-label {
  padding-top: 7px;
}

.form-label {
  display: flex;
  gap: 20px;
  font-weight: 700;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .form-label {
    justify-content: space-between;
  }
}
.form-label .required {
  background-color: #FF4444;
}

.form-label .optional {
  background-color: #ABADB0;
}

.form-label .optional,
.form-label .required {
  color: #fff;
  display: inline-block;
  padding: 0 10px;
  width: 50px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  translate: 0 2px;
  font-weight: 400;
  font-size: 0.75rem;
}

.form-row--radio .form-input {
  max-width: 300px;
}

.form-input input[type=text],
.form-input input[type=email],
.form-input input[type=tel],
.form-input textarea {
  width: 100%;
  border-radius: 0;
  color: var(--main);
  padding: 0.5em 1em;
  border: 1px solid #C1C1C1;
}

.form-input input::-moz-placeholder, .form-input textarea::-moz-placeholder {
  color: #C1C1C1;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
  color: #C1C1C1;
}

.form-input textarea {
  min-height: 200px;
}

/*
checkbox, radio
*/
.form-radio {
  margin-bottom: 15px;
}

.form-radio label::before {
  border-radius: 50%;
}

.form-radio label::after {
  content: "";
  position: absolute;
  display: none;
  top: 6px;
  left: 2.5px;
  background-color: #000;
  aspect-ratio: 1;
  width: 0.8em;
  border-radius: 50%;
}

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

.form-checkbox label:has(input:checked)::before {
  --bg: black;
}

.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-radio input,
.form-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}

.form-radio label,
.form-checkbox label {
  padding-left: 1.8em;
  margin-right: 1em;
  position: relative;
}

.form-radio label::before,
.form-checkbox label::before {
  --bg: transparent;
  content: "";
  width: 1em;
  height: 1em;
  border: 1px solid #000;
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
  translate: 0 -50%;
  background-color: var(--bg);
}

.form-radio label:has(input:checked)::after,
.form-checkbox label:has(input:checked)::after {
  display: block;
}

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

/*button*/
.wpcf7-submit.c-button-1 {
  margin-inline: auto;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
}

.form-checkbox a {
  text-decoration: underline;
}

/***　ファイル　***/
.form-input input[type=file]::file-selector-button {
  color: white;
  background-color: #D9D9D9;
  color: #000;
  border: 0;
  padding: 8px 50px;
  text-align: center;
}

.p-default__section {
  text-align: center;
}

.p-default__section h2 {
  font-size: var(--font-size-h2);
  font-weight: 500;
  margin-bottom: 30px;
}

.p-default__section p {
  margin-bottom: 1.5em;
}/*# sourceMappingURL=style.css.map */