@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

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

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

.u-col-light-blue {
  color: #83BEE8;
}

.u-col-blue {
  color: #005293;
}

html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.no-post {
  margin-top: 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

button {
  padding: 0;
  color: inherit;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.c-breadcrumb {
  padding: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 1.5rem;
  }
}

.c-breadcrumb__lists {
  display: flex;
  align-items: center;
  gap: 1.25rem 0.625rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (any-hover: hover) {
  .c-breadcrumb__item a:hover {
    opacity: 0.5;
  }
}
.c-breadcrumb__item a span {
  text-decoration: underline;
}
.c-breadcrumb__item span {
  color: #7a7368;
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.c-breadcrumb__item:not(:first-child) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1px;
  border-radius: 2px;
}

.c-button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border-radius: 0.625rem;
  background: linear-gradient(#008ce3 0%, #004983 100%);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-button {
    gap: 0.625rem;
  }
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 0.7;
  }
}
.c-button:first-of-type .icon {
  width: 1.625rem;
}
.c-button:first-of-type .text {
  margin-top: 0.1875rem;
}
.c-button:last-of-type .icon {
  width: 2.1875rem;
}
.c-button:last-of-type .text {
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .c-button:last-of-type .text {
    margin-top: 0.21875rem;
  }
}
.c-button .icon {
  display: block;
}
.c-button .icon .icon-item {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-button .text {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-button .text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 385px) {
  .c-button .text {
    font-size: 0.875rem;
  }
}

/* ========================================
   Form Reset
======================================== */
input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

button {
  cursor: pointer;
}

select {
  background: #fff;
}

textarea {
  resize: vertical;
}

/* ========================================
   Component: Form
======================================== */
.c-form__item {
  display: grid;
  grid-template-columns: minmax(0, 13.75rem) minmax(0, 37.5rem);
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-form__item {
    display: block;
  }
}
.c-form__item + .c-form__item {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .c-form__item + .c-form__item {
    margin-top: 1rem;
  }
}
.c-form__item.--align-start {
  align-items: flex-start;
}

.c-form__label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-form__label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}

.c-form__required {
  color: #eb0000;
  font-size: 1rem;
}

.c-form__input,
.c-form__select,
.c-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #79b2de;
  border-radius: 0.375rem;
  font-size: 1rem;
}
.c-form__input:focus,
.c-form__select:focus,
.c-form__textarea:focus {
  border-color: #007bff;
}

.c-form__select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.c-form__select-wrap .c-form__select {
  width: 100%;
  padding-right: 2.5em; /* 矢印分の余白 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
}
.c-form__select-wrap::after {
  content: "";
  display: block;
  width: 0.875rem;
  height: 0.5625rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  background: url(../images/common/select_arrow.svg) no-repeat center/contain;
}

.c-form__textarea {
  min-height: 160px;
}

.c-form__privacy {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
}
.c-form__privacy a.c-form__privacy-link {
  color: #54bdeb;
  text-decoration: underline;
}
.c-form__privacy a.c-form__privacy-link:hover {
  text-decoration: none;
}

.c-form__submit {
  margin-top: 1.5rem;
  text-align: center;
  position: relative;
}
.c-form__submit .c-button {
  display: inline-flex;
  max-width: 17.1875rem;
  height: 4.125rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-form__submit .c-button {
    max-width: 14.0625rem;
    height: 3.125rem;
    font-size: 1rem;
  }
}
.c-form__submit .c-button:disabled {
  background: gray;
}
@media (any-hover: hover) {
  .c-form__submit .c-button:disabled:hover {
    opacity: 1;
  }
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  border-radius: 100%;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5rem;
}

/* ================================
   Acceptance（CF7） checkbox UI
   （& は擬似のみ／フラット記法）
================================ */
/* ラベル行の整形 */
.c-form__privacy .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

/* ネイティブのチェックボックスを視覚的に隠す */
.c-form__privacy .wpcf7-acceptance input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* テキスト側に擬似要素でボックスとチェックを描く */
.c-form__privacy .wpcf7-list-item-label {
  position: relative;
  padding-left: 28px; /* ボックス分の余白 */
  line-height: 1.6;
}

/* □ ボックス */
.c-form__privacy .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #000;
  border-radius: 3px;
  background: #fff;
  box-sizing: border-box;
  transition: background-color 0.2s, border-color 0.2s;
}

/* ✓ チェックマーク */
.c-form__privacy .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 6px;
  height: 12px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  transition: opacity 0.2s;
}

/* hover */
.c-form__privacy .wpcf7-list-item:hover .wpcf7-list-item-label::before {
  border-color: #999;
}

/* focus-visible */
.c-form__privacy .wpcf7-acceptance input[type=checkbox]:focus-visible + .wpcf7-list-item-label::before {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, .35);
  border-color: #007bff;
}

/* チェック ON */
.c-form__privacy .wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: #54bdeb;
  border-color: #54bdeb;
}

.c-form__privacy .wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* layout */
.p-process-grid .c-grid {
  display: grid;
  gap: 1.25rem 0.9375rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 16.25rem auto 1.2fr 14.625rem;
  grid-template-areas: "i01 i02" "i03 i02" "i03 i05" "i04 i05";
  grid-auto-rows: auto;
}
@media screen and (max-width: 767px) {
  .p-process-grid .c-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    gap: 0.9375rem;
    grid-template-areas: "i01" "i02" "i03" "i04" "i05";
  }
}

.c-grid__item {
  grid-column: auto;
  grid-row: auto;
}

.c-grid__item01 {
  grid-area: i01;
}

.c-grid__item02 {
  grid-area: i02;
}

.c-grid__item03 {
  grid-area: i03;
}

.c-grid__item04 {
  grid-area: i04;
}

.c-grid__item05 {
  grid-area: i05;
}

/* card base */
.c-grid__content {
  background: #fff;
  border-radius: 0.625rem;
  border: 0.1875rem solid #005293;
  padding: clamp(1.4375rem, 3vw, 1.875rem);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-grid__content {
    padding: 1.4375rem 1rem;
  }
}

.c-grid__number {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #005293;
  border-radius: 0.625rem 0 0.625rem 0;
  width: 4.125rem;
  height: 4.125rem;
  display: grid;
  place-items: center;
  position: absolute;
  top: -0.125rem;
  left: -0.125rem;
}
@media screen and (max-width: 767px) {
  .c-grid__number {
    font-size: 1.25rem;
    width: 3rem;
    height: 3rem;
  }
}

/* heading */
.c-grid__title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.625rem;
  font-weight: 700;
  border-bottom: 0.125rem solid #83BEE8;
  padding-left: 3.125rem;
  padding-bottom: 0.9375rem;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.438rem);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-grid__title {
    padding-left: 2.375rem;
    padding-bottom: 0.625rem;
    line-height: 1.25;
  }
}
@media screen and (max-width: 385px) {
  .c-grid__title {
    font-size: 1.0625rem;
  }
}
.c-grid__title .text-small {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-grid__title .text-small {
    font-size: 0.875rem;
  }
}

.c-grid__title .icon {
  inline-size: 2.0625rem;
  block-size: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .c-grid__title .icon {
    inline-size: 1.4375rem;
    block-size: 1.4375rem;
  }
}
.c-grid__title .icon img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

/* text */
.c-grid__text {
  margin-top: 1.25rem;
  line-height: 1.7;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-grid__text {
    margin-top: 0.9375rem;
    font-size: 0.8125rem;
    text-align: center;
  }
}

.c-grid__arrow {
  padding-block: 0.4375rem 0.3125rem;
  display: grid;
  place-items: center;
}
.c-grid__arrow .icon {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.8125rem solid transparent;
  border-left: 0.8125rem solid transparent;
  border-top: 0.9375rem solid #005293;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-grid__arrow .icon {
    border-right: 0.65625rem solid transparent;
    border-left: 0.65625rem solid transparent;
    border-top: 0.6875rem solid #005293;
  }
}

.c-grid__label {
  margin-top: auto; /* 中身が短いカードでも下寄せ */
  background: #0a63a3;
  color: #fff;
  border-radius: 0.5625rem;
  padding: 1rem 0.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-grid__label {
    padding: 0.625rem 0.3125rem;
  }
}
.c-grid__label .text {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-grid__label .text {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 385px) {
  .c-grid__label .text {
    font-size: 0.75rem;
  }
}

/* 05 の中の3カラム */
.c-grid__content-items {
  margin-top: 1.0625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .c-grid__content-items {
    gap: 0.9375rem;
    margin-top: 0.625rem;
  }
}

.c-grid__content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
  border-radius: 0.625rem;
  border: 0.1875rem solid #005293;
  padding: 1.5625rem 0.9375rem 0.625rem;
  background: #fff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-grid__content-item {
    padding: 0.9375rem 0.1875rem 0.625rem;
  }
}
.c-grid__content-item::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.375rem solid transparent;
  border-bottom: 0.375rem solid transparent;
  border-left: 0.3125rem solid #005293;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: -0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-grid__content-item::before {
    right: -0.8125rem;
  }
}
.c-grid__content-item:last-of-type::before {
  display: none;
}

.c-grid__content-item-img {
  width: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .c-grid__content-item-img {
    width: 2.5rem;
  }
}
.c-grid__content-item-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-grid__content-item-text {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-grid__content-item-text {
    font-size: 0.75rem;
  }
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: block;
    width: 1.5625rem;
    height: 1.125rem;
    border-radius: 50%;
    padding: 0 0;
    position: fixed;
    top: 1.25rem;
    right: 1.5625rem;
    z-index: 21;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 0.125rem;
  width: 100%;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .c-hamburger span:nth-child(2) {
    margin: 0.4375rem 0;
  }
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

.c-hamburger.open span:nth-child(1) {
  top: 0.5625rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-hamburger.open span:nth-child(1) {
    top: 0.5rem;
  }
}

.c-hamburger.open span:nth-child(2) {
  background-color: transparent;
  box-shadow: none;
}

.c-hamburger.open span:nth-child(3) {
  top: -0.625rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-main-title .en {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-main-title .en {
    font-size: 2.5rem;
  }
}
.c-main-title .ja {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-main-title .ja {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }
}

.l-inner {
  width: 100%;
  max-width: 1262px;
  padding-inline: 31px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 662px;
    padding-inline: 31px;
  }
}

.l-section {
  width: 100%;
  max-width: 1120px;
  padding-inline: 31px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-section {
    max-width: 662px;
    padding-inline: 31px;
  }
}

.l-page__heading {
  width: 100%;
  position: relative;
}

.l-page__heading-img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .l-page__heading-img {
    aspect-ratio: 390/248;
  }
}

.l-page__title {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
}
.l-page__title > * {
  display: block;
  text-align: center;
  white-space: nowrap;
}

.p-company {
  width: 100%;
  padding-block: 5rem;
  position: relative;
}
.p-company::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/bg/company-bg01.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-company::before {
    background-position-x: right;
  }
}
@media screen and (max-width: 767px) {
  .p-company {
    padding-block: 2.5rem;
  }
}

.p-company__title {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.p-company__content-text-title {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .p-company__content-text-title {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.625;
  }
}

.p-company__content-text-content .text {
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2.1428571429;
}
.p-company__content-text-content .u-col-blue {
  font-size: 1rem;
}

.p-company__content-text-content + .p-company__content-text-content {
  margin-top: 1.5625rem;
}
.p-company__content-text-content + .p-company__content-text-content .text {
  display: block;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-company__content-text-content + .p-company__content-text-content {
    margin-top: 1.25rem;
  }
  .p-company__content-text-content + .p-company__content-text-content .text {
    margin-top: 1.25rem;
  }
}

.p-company__info {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-company__info {
    margin-top: 1.25rem;
  }
}

.p-company__name {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2.1428571429;
}

.p-company__name-ceo {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
}

.p-company__name-ceo-name {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  padding-inline: 0.3125rem 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-company__name-ceo-name {
    font-size: 1rem;
    line-height: 1.625;
  }
}

.p-company-concept {
  width: 100%;
  padding-block: 4.6875rem;
  position: relative;
  color: #fff;
}
.p-company-concept::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/bg/company-bg02.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-company-concept {
    padding-block: 2.5rem;
  }
}

.p-company-concept__title {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.p-company-concept__content {
  margin-top: 1.25rem;
  text-align: center;
}

.p-company-concept__content-text {
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.96;
}
@media screen and (max-width: 767px) {
  .p-company-concept__content-text {
    font-size: 1rem;
    line-height: 1.6666666667;
  }
}

.p-company-profile {
  width: 100%;
  padding-block: 4rem 6.25rem;
  position: relative;
}
.p-company-profile::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/bg/section-bg03.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-company-profile {
    padding-block: 2.5rem;
  }
}

.p-company-profile__title {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.p-company-profile__inner {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-company-profile__inner {
    margin-top: 1.25rem;
  }
}

.p-company-profile__item {
  border-bottom: 0.125rem solid #78B3DE;
  padding-block: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-company-profile__item {
    padding-block: 0.625rem;
  }
}

.p-company-profile__item-body {
  width: min(100%, 43.75rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 3.125rem;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-company-profile__item-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3125rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.p-company-profile__item-title {
  flex: 0 0 20%;
}

.p-contact {
  width: 100%;
  padding-block: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 2.5rem;
  }
}

.p-contact__inner {
  max-width: 53.75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    max-width: 33.75rem;
  }
}

.p-contact__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    text-align: center;
  }
}

.p-contact__form {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    margin-top: 1.5rem;
  }
}

/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.p-drawer {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  background-color: #1F1F1F;
  color: #fff;
  transition: all 0.3s;
}
.p-drawer.open {
  visibility: visible;
  opacity: 1;
}

.p-drawer__wrap {
  height: 100vh;
  overflow-y: scroll;
  padding-block: 4.25rem 2.0625rem;
}

.p-drawer__logo {
  width: 12.3125rem;
  margin-inline: auto;
}
.p-drawer__logo img {
  display: block;
  width: 100%;
  aspect-ratio: 197/139;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-drawer__nav {
  margin-top: 3.125rem;
}

.p-drawer__nav-list {
  width: min(100%, 16.875rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem 3.125rem;
}

.p-drawer__nav-item a {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.25;
  color: #fff;
  position: relative;
  width: -webkit-fit-content;
  width: fit-content;
  padding-block: 0.625rem;
}
.p-drawer__nav-item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: left;
          transform-origin: left;
}
@media (any-hover: hover) {
  .p-drawer__nav-item a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.p-drawer__contact {
  margin-top: 5rem;
  text-align: center;
}

.p-drawer__social {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8125rem;
}

.p-drawer__social-item {
  display: block;
  height: 1.6875rem;
}
.p-drawer__social-item img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .p-drawer__social-item:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.p-drawer__copyright {
  margin-top: 1.375rem;
  font-size: 0.75rem;
  line-height: 1.6;
}

.p-footer {
  width: 100%;
  position: relative;
  background-color: #1F1F1F;
  color: #fff;
  padding-block: 3.1875rem 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 2.625rem 1.6875rem;
  }
}

.p-footer__inner {
  width: 100%;
  max-width: 1120px;
  padding-inline: 31px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 14.5%;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    max-width: 662px;
    padding-inline: 31px;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
  }
}

.p-footer__info-logo {
  width: 100%;
  max-width: 21.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__info-logo {
    max-width: 15rem;
    margin-inline: auto;
  }
}
.p-footer__info-logo a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .p-footer__info-logo a:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.p-footer__info-logo a img {
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__info-company .name {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.25;
}
@media screen and (max-width: 480px) {
  .p-footer__info-company .name {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__info-company {
    text-align: center;
  }
}

.p-footer__info-address {
  margin-top: 1.25rem;
}

.p-footer__info-content {
  margin-top: 0.875rem;
  text-align: right;
}
.p-footer__info-content .text {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
}
.p-footer__info-content .text:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__info-content .text {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__info-content {
    text-align: center;
  }
}

.p-footer__menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4375rem 4.6875rem;
}
@media screen and (max-width: 480px) {
  .p-footer__menu-list {
    gap: 0.4375rem 3.75rem;
  }
}

.p-footer__menu-item a {
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
  padding-block: 0.625rem;
  position: relative;
}
.p-footer__menu-item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: left;
          transform-origin: left;
}
.p-footer__menu-item a span {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.25;
}
@media (any-hover: hover) {
  .p-footer__menu-item a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.p-footer__content {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-right: 3rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    padding-right: 0;
    padding-block: 0;
    margin-top: 3.4375rem;
    position: relative;
    bottom: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.p-footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__social {
    justify-content: center;
  }
}

.p-footer__social-item {
  display: block;
  height: 1.6875rem;
}
.p-footer__social-item img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .p-footer__social-item:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-footer__copyright {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    text-align: center;
  }
}

.p-footer__copy {
  font-size: 0.875rem;
  letter-spacing: 0em;
  display: block;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    font-size: 0.75rem;
    margin-top: 0.625rem;
  }
}

.p-fv {
  width: 100%;
}

.p-fv__inner {
  position: relative;
}

.p-fv__img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-fv__img {
    height: 100vh;
  }
}
.p-fv__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv__content {
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: fit-content;
  color: #fff;
  padding: 10.6% 0 0 7.9%;
}
@media screen and (max-width: 767px) {
  .p-fv__content {
    padding: 0.625rem;
    top: 15%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-fv__title {
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    font-size: 1.75rem;
    text-align: center;
  }
}
@media screen and (max-width: 385px) {
  .p-fv__title {
    font-size: 1.5625rem;
  }
}
.p-fv__title .primary-text {
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 1.3;
  color: #83BEE8;
}
@media screen and (max-width: 767px) {
  .p-fv__title .primary-text {
    font-size: 2.8125rem;
  }
}
@media screen and (max-width: 385px) {
  .p-fv__title .primary-text {
    font-size: 2.1875rem;
  }
}
.p-fv__title .sub-text {
  font-size: 2.4375rem;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-fv__title .sub-text {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 385px) {
  .p-fv__title .sub-text {
    font-size: 1.25rem;
  }
}

.p-fv__text {
  margin-top: 2.1875rem;
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-fv__text {
    margin-top: 1.875rem;
    font-size: 1rem;
    text-align: center;
  }
}
@media screen and (max-width: 385px) {
  .p-fv__text {
    font-size: 0.875rem;
  }
}
.p-fv__text .primary-text {
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-fv__text .primary-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 385px) {
  .p-fv__text .primary-text {
    font-size: 1rem;
  }
}

.p-fv__button-wrap {
  margin-top: 4.0625rem;
  display: flex;
  align-items: center;
  gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-fv__button-wrap {
    margin-top: 2.0625rem;
    flex-direction: column;
    gap: 0.625rem;
  }
}
@media screen and (max-width: 385px) {
  .p-fv__button-wrap {
    margin-top: 1.5625rem;
  }
}

.p-fv__button-wrap .c-button {
  width: 100%;
  max-width: 19.3125rem;
  height: 5rem;
  position: relative;
}
.p-fv__button-wrap .c-button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .3);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.625rem;
  opacity: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-fv__button-wrap .c-button {
    max-width: 20.5rem;
    height: 3.75rem;
  }
}
@media screen and (max-width: 385px) {
  .p-fv__button-wrap .c-button {
    max-width: 17.5rem;
  }
}
@media (any-hover: hover) {
  .p-fv__button-wrap .c-button:hover {
    opacity: 1;
  }
  .p-fv__button-wrap .c-button:hover::before {
    opacity: 1;
  }
}

/* コンセプト */
.p-about {
  width: 100%;
  padding-block: 5rem;
  position: relative;
  color: #fff;
}
.p-about::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/bg/about-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-about::before {
    background-image: url(../../assets/images/bg/about-bg-sp.webp);
  }
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-block: 3.5rem 4.4375rem;
  }
}

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

.p-about__subtitle {
  margin-top: 3rem;
  font-size: clamp(1.25rem, 1.114rem + 0.68vw, 1.563rem);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__subtitle {
    margin-top: 1.75rem;
  }
}

.p-about__text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2.1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    margin-top: 1.5625rem;
    font-size: 0.8125rem;
  }
}
.p-about__text .font-large {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-about__text .font-large {
    font-size: 1rem;
  }
}

.p-about__text + .p-about__text {
  margin-top: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-about__text + .p-about__text {
    margin-top: 1.5625rem;
  }
}

/* News */
.p-front__news {
  width: 100%;
  padding-block: 5.9375rem 5rem;
  position: relative;
}
.p-front__news::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/bg/news-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-front__news::before {
    background-image: url(../../assets/images/bg/news-bg-sp.webp);
  }
}
@media screen and (max-width: 767px) {
  .p-front__news {
    padding-block: 3.4375rem;
  }
}

.p-front__news-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-front__news-heading {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .p-front__news-heading .heading-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-front__news-heading .heading-title .ja {
  display: inline-block;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-front__news-heading .heading-title .ja {
    margin-left: 0;
  }
}

.p-front__news-button {
  width: 13.9375rem;
  height: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-front__news-button {
    display: none;
  }
}

.p-front__news__button-sp {
  width: 11.375rem;
  height: 3.125rem;
  margin-inline: auto;
  margin-top: 2.1875rem;
}
@media only screen and (min-width: 768px) {
  .p-front__news__button-sp {
    display: none;
  }
}
.p-front__news__button-sp .c-button {
  width: 100%;
  height: 100%;
}

.p-front__news__inner {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-front__news__inner {
    margin-top: 1.5625rem;
  }
}

.p-front__news__item {
  padding-block: 0.875rem;
  border-bottom: 0.125rem solid #83BEE8;
}
@media screen and (max-width: 767px) {
  .p-front__news__item {
    padding-block: 0.625rem;
  }
}
.p-front__news__item:first-of-type {
  border-top: 0.125rem solid #83BEE8;
}

.p-front__news__link {
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-inline: 3.3125rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-front__news__link {
    gap: 0;
    padding-inline: 0.9375rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (any-hover: hover) {
  .p-front__news__link:hover {
    color: #005293;
  }
}

.p-front__news__date {
  flex: 0 0 10%;
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-front__news__date {
    flex: 1 1 auto;
    width: 100%;
  }
}

.p-front__news__title {
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-front__news__title {
    width: 100%;
  }
}

/* Process */
.p-process {
  width: 100%;
  padding-block: 4.875rem 6.5625rem;
  scroll-margin-top: 6.25rem;
  position: relative;
}
.p-process::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/bg/section-bg01.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-process::before {
    background-image: url(../../assets/images/bg/section-bg-sp.webp);
  }
}
@media screen and (max-width: 767px) {
  .p-process {
    padding-block: 2.5625rem 3.5rem;
    scroll-margin-top: 5rem;
  }
}

.p-process__title {
  text-align: center;
}
.p-process__title > * {
  display: block;
}
.p-process__title .en {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-process__title .ja {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-process__item {
  width: min(100%, 34.5625rem);
  margin-inline: auto;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-process__item {
    margin-top: 1.5625rem;
    width: 100%;
  }
}
.p-process__item img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-process__content {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-process__content {
    margin-top: 1.875rem;
  }
}

/* 私たちの強み */
.p-feature {
  width: 100%;
  padding-block: 5.1875rem 4.5rem;
  scroll-margin-top: 5rem;
  position: relative;
}
.p-feature::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/bg/section-bg02.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-feature::before {
    background-image: url(../../assets/images/bg/section-bg-sp02.webp);
  }
}
@media screen and (max-width: 767px) {
  .p-feature {
    padding-block: 0 3.25rem;
    scroll-margin-top: 3.75rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-feature__img {
    display: none;
  }
}
.p-feature__img img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-feature__inner {
  width: min(50%, 28.5rem);
}
@media screen and (max-width: 767px) {
  .p-feature__inner {
    width: 100%;
    margin-inline: auto;
  }
}

.p-feature__title {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-feature__title {
    margin-top: 1.0625rem;
    text-align: center;
  }
}
.p-feature__title > * {
  display: block;
}

.p-feature__list {
  margin-top: 1.9375rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-feature__list {
    margin-top: 1.4375rem;
    gap: 0.65625rem;
  }
}

.p-feature__item {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 0.75rem 1.125rem;
  display: flex;
  align-items: flex-start;
  gap: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-feature__item {
    padding: 0.9375rem 0.625rem;
    gap: 0.9375rem;
  }
}

.p-feature__item-number {
  margin-top: 0.3125rem;
  font-size: 2.6875rem;
  font-weight: 800;
  line-height: 1;
  color: #005293;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-feature__item-number {
    font-size: 1.875rem;
  }
}

.p-feature__item-title {
  font-size: clamp(1rem, 0.892rem + 0.54vw, 1.25rem);
  font-weight: bold;
  color: #005293;
  line-height: 1.4;
}

.p-feature__item-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-feature__item-text {
    font-size: 0.8125rem;
    line-height: 1.3;
  }
}

/* ブランド紹介*/
.p-brand {
  width: 100%;
  padding-block: 4.375rem;
  scroll-margin-top: 7.5rem;
  position: relative;
}
.p-brand::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/bg/section-bg03.webp);
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-brand::before {
    background-image: url(../../assets/images/bg/section-bg-sp03.webp);
  }
}
@media screen and (max-width: 767px) {
  .p-brand {
    padding-block: 2.5rem;
    scroll-margin-top: 6.25rem;
  }
}

.p-brand__title {
  text-align: center;
}
.p-brand__title > * {
  display: block;
}
.p-brand__title .en {
  color: #005293;
}

.p-brand__subtitle {
  margin-top: 1.75rem;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.438rem);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-brand__subtitle {
    margin-top: 1.125rem;
    font-size: 0.875rem;
  }
}

.p-brand__text {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-brand__text {
    margin-top: 0.3125rem;
    font-size: 0.8125rem;
  }
}

.p-brand__list {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-brand__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}

.p-brand__item {
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
  gap: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-brand__item {
    gap: 0.9375rem;
  }
}
.p-brand__item.--sakura .p-brand__item-title {
  padding-block: 0.75rem 1rem;
}
.p-brand__item.--ez .p-brand__item-title {
  padding: 0.75rem 1.25rem 1rem;
}
.p-brand__item.--roomia .p-brand__item-title {
  padding: 0.5rem;
}
@media (any-hover: hover) {
  .p-brand__item a:hover .p-brand__item-img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-brand__item-content {
  display: flex;
  flex-direction: column;
}

.p-brand__item-img {
  overflow: hidden;
  border-radius: 0.625rem 0.625rem 0 0;
}
.p-brand__item-img img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem 0.625rem 0 0;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-brand__item-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-brand__item-body {
    padding: 0.9375rem 0.625rem;
  }
}

.p-brand__item-title {
  width: 100%;
  height: 3.75rem;
}
.p-brand__item-title img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-brand__item-text {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-brand__item-text {
    font-size: 0.5625rem;
  }
}

/* ビジョン */
.p-vision {
  width: 100%;
  padding-block: 4.875rem 6.375rem;
  scroll-margin-top: 7.5rem;
  position: relative;
}
.p-vision::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/bg/section-bg04.webp);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-vision::before {
    background-image: url(../../assets/images/bg/section-bg-sp04.webp);
  }
}
@media screen and (max-width: 767px) {
  .p-vision {
    padding-block: 3.625rem 4.6875rem;
    scroll-margin-top: 6.25rem;
  }
}

.p-vision__inner {
  color: #fff;
}

.p-vision__title {
  text-align: center;
}
.p-vision__title > * {
  display: block;
}

.p-vision__subtitle {
  margin-top: 1.75rem;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.438rem);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

.p-vision__text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2.1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-vision__text {
    margin-top: 1.5625rem;
    font-size: 0.8125rem;
    line-height: 1.8;
  }
}

.p-vision__info {
  margin-top: 5.375rem;
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-vision__info {
    margin-top: 3.5rem;
    padding: 2.1875rem 1.25rem 1.25rem;
  }
}
.p-vision__info .c-main-title .en {
  color: #005293;
  letter-spacing: 0.04em;
}

.p-vision__info-recruit {
  display: flex;
  justify-content: space-between;
  gap: 1.875rem;
  padding-bottom: 1.875rem;
  border-bottom: 0.125rem solid #83BEE8;
}
@media screen and (max-width: 767px) {
  .p-vision__info-recruit {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding-bottom: 1.5625rem;
  }
}

.p-vision__info-recruit-img {
  flex: 0 0 20.5rem;
}
@media screen and (max-width: 480px) {
  .p-vision__info-recruit-img {
    flex: 1 1 auto;
  }
}
.p-vision__info-recruit-img img {
  display: block;
  width: 100%;
  aspect-ratio: 328/259;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 480px) {
  .p-vision__info-recruit-img img {
    aspect-ratio: 278/177;
  }
}

.p-vision__info-recruit-content {
  flex: 1 1 auto;
}
@media screen and (max-width: 767px) {
  .p-vision__info-recruit-content {
    flex: 1 1 auto;
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-vision__info-recruit-title {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    order: -1;
  }
}

.p-vision__info-recruit-subtitle {
  margin-top: 1.875rem;
  font-size: clamp(1rem, 0.892rem + 0.54vw, 1.25rem);
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-vision__info-recruit-subtitle {
    margin-top: 0;
    text-align: center;
    order: 1;
  }
}

.p-vision__info-recruit-text {
  margin-top: 1.125rem;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-vision__info-recruit-text {
    margin-top: 0;
    font-size: 0.8125rem;
    line-height: 1.6;
    order: 2;
  }
}

.p-vision__info-contact {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-vision__info-contact {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-vision__info-contact-title {
    display: flex;
    flex-direction: column;
    align-self: center;
  }
}

.p-vision__info-contact-content {
  margin-top: 2.0625rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-vision__info-contact-content {
    margin-top: 0.9375rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}
.p-vision__info-contact-content .info-list {
  display: flex;
  flex-direction: column;
}
.p-vision__info-contact-content .info-item {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  padding-left: 1.5625rem;
}
.p-vision__info-contact-content .info-item::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #83BEE8;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-vision__info-contact-content .info-item::before {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-vision__info-contact-content .info-item {
    font-size: 0.8125rem;
    padding-left: 1.25rem;
  }
}
.p-vision__info-contact-content .info-button {
  width: min(100%, 29.4375rem);
  height: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-vision__info-contact-content .info-button {
    width: 100%;
    height: 3.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-vision__info-contact-content .info-button .c-button {
    gap: 0.3125rem;
  }
}
@media screen and (max-width: 480px) {
  .p-vision__info-contact-content .info-button .c-button .text {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .p-vision__info-contact-content .info-button .c-button .icon {
    width: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-vision__info-contact-content .info-button .c-button .icon-item {
    width: 1.5rem;
  }
}

.p-header {
  height: 4.375rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.75rem;
  }
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  height: 100%;
  width: 100%;
  padding-inline: 1.0625rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 1.25rem;
  }
}

.p-header__logo a {
  display: block;
  width: 100%;
  max-width: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    max-width: 7.4375rem;
  }
}

.p-header__logo a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  height: 100%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2.625rem;
}

.p-header__nav-item a {
  display: flex;
  place-items: center;
  height: 100%;
  padding-block: 1.5rem;
  position: relative;
  white-space: nowrap;
}
.p-header__nav-item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: #fff;
  position: absolute;
  bottom: 1.1875rem;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform-origin: left;
          transform-origin: left;
}
.p-header__nav-item a span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}
@media (any-hover: hover) {
  .p-header__nav-item a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.p-header.is-active {
  background-color: rgba(0, 82, 147, .6);
}

.p-news-list {
  width: 100%;
  padding-block: 4.1875rem 4.6875rem;
  position: relative;
}
.p-news-list::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/bg/page-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-news-list {
    padding-block: 2.1875rem 3.75rem;
  }
}

.p-news-list__inner {
  width: 100%;
  max-width: 60.875rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__inner {
    max-width: 100%;
    padding-inline: 0;
  }
}

.p-news-list__content {
  border-top: 0.125rem solid #83BEE8;
}

.p-news-list__content-item {
  display: block;
  padding-block: 0.6875rem;
  padding-inline: 3.75rem 1.875rem;
  border-bottom: 0.125rem solid #83BEE8;
}
@media screen and (max-width: 767px) {
  .p-news-list__content-item {
    padding-inline: 2.5rem;
  }
}
@media (any-hover: hover) {
  .p-news-list__content-item:hover {
    color: #005293;
  }
}

.p-news-list__content-date {
  font-size: 0.875rem;
  line-height: 2.2;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-news-list__content-date {
    font-size: 0.75rem;
    line-height: 2.1666666667;
  }
}

.p-news-list__content-title {
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-news-list__content-title {
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
}

.p-news {
  width: 100%;
  padding-block: 4.125rem 11.75rem;
  position: relative;
}
.p-news::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/bg/page-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-block: 2.1875rem 3.75rem;
  }
}

.p-news__inner {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    max-width: 100%;
    padding-inline: 0;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}

.p-news__content {
  flex: 1 1 auto;
}

.p-news__content-heading {
  display: flex;
  flex-direction: column;
  padding-inline: 1.5625rem;
  padding-bottom: 0.3125rem;
  border-bottom: 3px solid #83BEE8;
}
@media screen and (max-width: 767px) {
  .p-news__content-heading {
    padding-inline: 2.5rem;
    padding-bottom: 0.625rem;
  }
}

.p-news__content-date {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-news__content-date {
    font-size: 0.8125rem;
  }
}

.p-news__content-title {
  font-size: 1.875rem;
  line-height: 2.2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-news__content-title {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.p-pageNews__content-text {
  margin-top: 1.5625rem;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-pageNews__content-text {
    margin-top: 0.9375rem;
    padding-inline: 2.5rem;
  }
}
.p-pageNews__content-text p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-pageNews__content-text p {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.p-pageNews__content-text h2 {
  color: #fff;
  margin-block: 2.5rem 1rem;
  padding: 0.5rem 1rem;
  background-color: #005293;
}
.p-pageNews__content-text h3 {
  margin-block: 2rem 1rem;
  padding-left: 0.5rem;
  border-left: 5px solid #005293;
}
.p-pageNews__content-text p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1rem;
}
.p-pageNews__content-text p + p {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-pageNews__content-text p {
    font-size: 1rem;
  }
}
.p-pageNews__content-text a {
  text-decoration: underline;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-pageNews__content-text a:hover {
    opacity: 0.7;
  }
}
.p-pageNews__content-text .wp-block-image {
  margin-top: 1rem;
}
.p-pageNews__content-text ul {
  list-style: disc;
}
.p-pageNews__content-text ol {
  list-style: decimal;
}
.p-pageNews__content-text .wp-block-list {
  margin-left: 1em;
  margin-top: 1rem;
}
.p-pageNews__content-text .wp-block-list li + li {
  margin-top: 0.5rem;
}
.p-pageNews__content-text .wp-block-buttons {
  margin-top: 1rem;
}
.p-pageNews__content-text .wp-block-buttons a {
  text-decoration: none;
  text-align: center;
  min-width: 12.5rem;
}
.p-pageNews__content-text .wp-block-buttons + * {
  margin-top: 1rem !important;
}
.p-pageNews__content-text iframe {
  width: 100%;
  max-width: 100%;
  margin-top: 1rem;
}

.p-news__aside {
  flex: 0 0 32%;
}
@media screen and (max-width: 767px) {
  .p-news__aside {
    flex: 1 1 auto;
    width: 100%;
    padding-inline: 2.5rem;
  }
}

.p-news__aside-inner {
  position: sticky;
  top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-news__aside-inner {
    position: relative;
    top: 0;
  }
}

.p-news__aside-label {
  aspect-ratio: 356/50;
  padding-block: 0.75rem;
  padding-inline: 1.25rem;
  background-color: #005293;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-news__aside-label .text {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-news__aside-label .text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-news__aside-link {
  display: flex;
  flex-direction: column;
  padding-inline: 0.9375rem;
  padding-block: 0.8125rem;
  border-bottom: 1px solid #354c68;
}
@media (any-hover: hover) {
  .p-news__aside-link:hover .text {
    color: #005293;
  }
}
@media screen and (max-width: 767px) {
  .p-news__aside-link {
    padding-block: 0.625rem;
  }
}
.p-news__aside-link .p-news__aside-date {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-news__aside-link .p-news__aside-date {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
.p-news__aside-link .text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-news__aside-link .text {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.nav-links {
  width: min(12.6875rem, 68%);
  height: 2.375rem;
  margin-inline: auto;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .nav-links {
    width: min(14.6875rem, 68%);
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 480px) {
  .nav-links {
    margin-top: 1.25rem;
  }
}

.page-numbers {
  display: grid;
  place-items: center;
  border: 0.0625rem solid #83BEE8;
  padding: 0.3125rem;
  cursor: pointer;
  transition: all 0.3s;
  color: #005293;
  border-radius: 0.4375rem;
}
.page-numbers.current {
  background-color: #005293;
  color: #fff;
  border-color: #005293;
  pointer-events: none;
}
.page-numbers .text {
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media (any-hover: hover) {
  .page-numbers:hover {
    opacity: 0.7;
  }
}

.nav-links .prev,
.nav-links .next {
  display: none;
}
/*# sourceMappingURL=style.css.map */
