@charset "UTF-8";
/*=================================================
 *  SCSS Variables
 *================================================*/
/*=================================================
 *  Base ベーススタイル
 *================================================*/
html {
  font-size: 1em;
  min-height: -webkit-fill-available;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  word-wrap: break-word;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

[lang="en"] {
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  text-transform: uppercase;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

a {
  transition: 0.2s linear;
}

a:hover {
  transition: 0.2s linear;
  opacity: 0.7;
}

/* フォーカス時のアウトライン */
:focus-visible {
  outline: 1px solid #0f244d;
}

/* アンカー位置をヘッダーの高さ分ずらす */
:target {
  scroll-margin-top: 60px;
}

@media screen and (min-width: 1025px) {
  html {
    font-size: min(0.6666666667vw + 0.5em, 1em);
  }
  /* 電話番号リンクをクリック不可 */
  a[href^="tel:"] {
    pointer-events: none;
  }
  :target {
    scroll-margin-top: 120px;
  }
}
/*=================================================
 *  Utility ユーティリティ
 *================================================*/
/* float関連 */
.u-cf::before,
.u-cf::after {
  clear: both;
  content: "";
  display: block;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.sp {
  display: none;
}

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

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
.u-fl {
  float: left;
}

.u-fr {
  float: right;
}

/* 左寄せ、中央、右寄せ */
.u-left {
  text-align: left;
}

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

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

/* 太字 */
.u-bold {
  font-weight: 700;
}

/* Word Break（親要素にクラス指定） */
.u-wbr {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* スクリーンリーダー向け */
.u-screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/* 表示／非表示 切り替え */
.u-pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
  .u-sp-only {
    display: none;
  }
}
/* object-fit */
.u-fit-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.u-fit-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

/*=================================================
 *  Layout レイアウト
 *================================================*/
/* インナー - 標準 */
.l-inner {
  width: 100%;
  max-width: 1240px;
  padding-inline: 20px;
  margin-inline: auto;
  /*overflow: hidden;*/
}

@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1250px;
    padding-inline: 25px;
  }
}
/* main - TOPページ*/
.l-top-main {
  margin-top: 120px;
  overflow-x: hidden;
}

/* main - 下層ページ*/
.l-sub-main {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .l-sub-main {
    margin-top: 81px;
  }
}
/* セクション */
.l-section {
  margin-top: 5rem;
}

/* セクション - 下層ページ */
.l-sub-section {
  margin-top: 5rem;
}

/* ボタンエリア */
.l-btn-area {
  margin-top: 1.25rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  /* インナー - 極小 */
  .l-inner-xs {
    margin-inline: auto;
    max-width: 900px;
  }
  /* インナー - 小 */
  .l-inner-s {
    margin-inline: auto;
    max-width: 1000px;
  }
}
/*=================================================
 *  Component 共通部品
 *================================================*/
/*------------------------------------------
 *  ハンバーガーメニュー
 *------------------------------------------*/
@media screen and (max-width: 768px) {
  .c-hamburger {
    padding: 0;
    width: 50px;
    height: 15px;
    background: none;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
  }
  .c-hamburger__line {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background: #767676;
    transition: 0.3s ease;
  }
  .c-hamburger__line::before,
  .c-hamburger__line::after {
    content: none;
  }
  .is-drawerActive .c-hamburger__line {
    transition: 0.3s ease;
  }
  .is-drawerActive .c-hamburger__line.top {
    transform: rotate(16deg);
    top: 7px;
  }
  .is-drawerActive .c-hamburger__line.bot {
    transform: rotate(-16deg);
    bottom: 7px;
  }
  /* ハンバーガーメニュー open時 */
  .is-drawerActive .c-hamburger__line::before,
  .is-drawerActive .c-hamburger__line::after {
    top: 0;
    background-color: #fff;
  }
  .is-drawerActive .c-hamburger__line::before {
    transform: rotate(45deg);
  }
  .is-drawerActive .c-hamburger__line::after {
    transform: rotate(-45deg);
  }
}
/*------------------------------------------
 *  パンくず
 *------------------------------------------*/
.c-breadcrumb {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.c-breadcrumb__item {
  position: relative;
  line-height: 1;
}

.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.8em;
  width: 6px;
  height: 6px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  transform: rotate(-45deg);
}

.c-breadcrumb__item + .c-breadcrumb__item {
  margin-left: 1.2em;
}

.c-breadcrumb__item a {
  font-size: clamp(12px, 1.25vw, 15px);
  line-height: 1;
  color: #999;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.c-breadcrumb__item:last-of-type a {
  color: #555;
}

@media screen and (min-width: 768px) {
  .c-breadcrumb__item:not(:first-child)::before {
    left: -1.1em;
    width: 7px;
    height: 7px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: translateY(-30%) rotate(-45deg);
  }
  .c-breadcrumb__item + .c-breadcrumb__item {
    margin-left: 1.5em;
  }
}
/*------------------------------------------
 *  ページャー
 *------------------------------------------*/
.c-pager {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.c-pager__item--next span,
.c-pager__item--prev span,
.c-pager__item--next a,
.c-pager__item--prev a {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  position: relative;
}

.c-pager__item--next a::after,
.c-pager__item--prev a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}

.c-pager__item--next a:hover::after,
.c-pager__item--prev a:hover::after {
  width: 100%;
}

.c-pager__item--prev {
  margin-right: clamp(20px, 3.3333333333vw, 40px);
}

.c-pager__item--next {
  margin-left: clamp(20px, 3.3333333333vw, 40px);
}

.c-pager__item span,
.c-pager__item a {
  font-size: clamp(19px, 1.8333333333vw, 22px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  display: block;
  width: clamp(28px, 2.8333333333vw, 34px);
  height: clamp(28px, 2.8333333333vw, 34px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-pager__item + .c-pager__item {
  margin-left: clamp(12px, 1.25vw, 15px);
}

.c-pager__item.c-pager__item--current a,
.c-pager__item a:hover {
  border: solid 1px #333;
}

.c-pager__item-dot a {
  pointer-events: none;
}
/*------------------------------------------
 *  ページタイトル
 *------------------------------------------*/
/*------------------------------------------
 *  セクションタイトル
 *------------------------------------------*/
.c-sec-ttl {
  margin-bottom: 3rem;
  display: inline-block; /* 子要素に幅を合わせる */
  text-align: right;
}

.c-sec-ttl__works {
  margin-bottom: 0rem;
  display: inline-block; /* 子要素に幅を合わせる */
  text-align: right;
}

.c-sec-ttl__works h2 {
  /*font-size: min(120px, 8rem);*/
  font-size: clamp(64px, calc(120 / 1250 * 100vw), 120px);
  color: #999;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  line-height: 1;
  text-align: left;
}

.c-sec-ttl h2 {
  /*font-size: min(120px, 8rem);*/
  font-size: clamp(64px, calc(120 / 1250 * 100vw), 120px);
  color: #ccc;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  line-height: 1;
  text-align: left;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .c-sec-ttl h2 {
    font-size: min(64px, 4rem);
  }
}
@media screen and (max-width: 768px) {
  .c-sec-ttl__works h2 {
    font-size: min(64px, 4rem);
  }
}
.c-sec-ttl span {
  font-size: min(18px, 1.2rem);
  font-weight: 500;
  display: block;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .c-sec-ttl span {
    font-size: min(14px, 0.8rem);
  }
}
/*------------------------------------------
 *  ボタン
 *------------------------------------------*/
/* ベーシックなボタン */
.c-btn {
  display: inline-block;
  width: 100%;
  max-width: 11.875rem;
  padding-inline: 0.625rem;
  border: 1px solid #0f244d;
  background-color: #0f244d;
  text-align: center;
  transition: ease 0.2s;
}

.c-btn span {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .c-btn {
    max-width: 12.5rem;
  }
}
/* お問い合わせページへのボタン */
.c-contact-btn {
  width: 100%;
  height: clamp(60px, 7.5vw, 90px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  font-size: clamp(20px, 2.1666666667vw, 26px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #fff;
  border-radius: 6px;
}

.c-contact-btn::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("../img/common/icon-mail.svg");
  aspect-ratio: 34/23;
  width: clamp(30px, 2.8333333333vw, 34px);
  margin-right: 1em;
}

/*------------------------------------------
 *  お問い合わせフォームへの誘導
 *------------------------------------------*/
.c-entry-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  margin: clamp(60px, 7.5vw, 90px) auto 0;
}

.c-entry-tel-wrap {
  border-bottom: solid 1px #333;
  padding: 0 10px 40px;
}

.c-entry-form-wrap {
  padding: 40px 10px 0;
}

.c-entry-txt {
  text-align: center;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}

.c-entry-dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(30px, 4.5vw, 54px);
}

.c-entry-dl + .c-entry-dl {
  margin-top: clamp(20px, 2.5vw, 30px);
}

.c-entry-dt {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.c-entry-dd {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 375px) {
  .c-entry-dl {
    flex-direction: column;
    align-items: center;
  }
  .c-entry-dt {
    margin-bottom: 0.5em;
  }
}
.c-entry-caution {
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: clamp(20px, 3.3333333333vw, 40px);
  display: flex;
  justify-content: center;
  word-break: auto-phrase;
}

.c-entry-btn-area {
  margin-top: clamp(30px, 4.1666666667vw, 50px);
}

/*PC*/
@media screen and (min-width: 768px) {
  .c-entry-flex {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    max-width: 1020px;
  }
  .c-entry-tel-wrap {
    border-right: solid 1px #333;
    border-bottom: transparent;
    width: 50%;
    padding: 10px 10% 10px 0;
  }
  .c-entry-dt {
    font-size: clamp(12px, 1.6666666667vw, 20px);
  }
  .c-entry-dd {
    font-size: clamp(16px, 2.3333333333vw, 28px);
  }
  .c-entry-form-wrap {
    width: 50%;
    padding: 10px 0 10px 7%;
  }
}
/*------------------------------------------
 *  各種誘導
 *------------------------------------------*/
/*フォームへ*/
.c-lead-to-form-section {
  margin-top: clamp(120px, 16.6666666667vw, 200px);
  display: flex;
}

.c-lead-to-form-inner {
  position: relative;
  z-index: 1;
  padding: 0 20px clamp(60px, 8.3333333333vw, 100px);
  width: 100%;
}

.c-lead-to-form-inner::before {
  content: "";
  display: inline-block;
  width: calc(50% + 50vw);
  height: 100%;
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.c-lead-to-form-inner::after {
  content: "";
  display: inline-block;
  background-color: #fff;
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  position: absolute;
  bottom: 0;
  left: 0;
  clip-path: polygon(100% 100%, 0 100%, 0 0);
  z-index: -1;
}

.c-lead-to-form__sec-ttl {
  font-size: clamp(50px, 6.6666666667vw, 80px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin-top: -0.5em;
  color: #999;
}

.c-lead-to-form__sec-subttl {
  font-size: clamp(18px, 1.6666666667vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  margin-top: 0.5em;
}

.c-lead-to-form-txt {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-top: clamp(30px, 6.6666666667vw, 40px);
  text-align: center;
  word-break: auto-phrase;
}

@media screen and (max-width: 768px) {
  .c-lead-to-form-txt {
    font-size: clamp(14px, 1.5vw, 18px);
  }
}
.c-lead-to-form-btn-area {
  margin-top: clamp(50px, 6.6666666667vw, 80px);
}

.p-sub-workflow .c-lead-to-form-btn-area .c-contact-btn {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  height: clamp(70px, 8.3333333333vw, 100px);
  font-size: clamp(20px, 2.1666666667vw, 26px);
}

.p-sub-workflow .c-lead-to-form-btn-area .c-contact-btn::before {
  width: clamp(30px, 2.8333333333vw, 34px);
}

.c-lead-to-form__flex {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: clamp(70px, 8.3333333333vw, 100px) auto 0;
}

.c-lead-to-form__flex > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-lead-to-form__subttl {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  color: #555;
}

.c-lead-to-form__flex .c-lead-to-form-txt {
  margin-top: clamp(20px, 4.1666666667vw, 30px);
  color: #555;
}

.c-lead-to-form__flex .c-lead-to-form-btn-area {
  margin-top: clamp(20px, 3.6666666667vw, 44px);
  width: 100%;
}

.c-lead-to-form__flex > div:not(:first-of-type) {
  margin-top: clamp(60px, 8.3333333333vw, 60px);
}

@media screen and (min-width: 768px) {
  .c-lead-to-form__flex {
    flex-direction: row;
    max-width: inherit;
    margin-inline: 0;
    justify-content: space-between;
  }
  .c-lead-to-form__flex > div {
    width: 50%;
  }
  .c-lead-to-form__flex > div:not(:first-of-type) {
    margin-top: 0;
  }
}
@media screen and (max-width: 420px) {
  .p-sub-workflow .c-lead-to-form-btn-area .c-contact-btn {
    width: 100%;
  }
}
/*施工事例へ*/
.c-works-banner {
  margin-top: clamp(100px, 15.8333333333vw, 190px);
}

.c-works-banner__inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(30px, 3.5vw, 42px);
}

.c-works-banner__inner::after,
.c-works-banner__inner::before {
  content: "";
  display: inline-block;
  position: absolute;
}

.c-works-banner__inner::before {
  background-color: #f5f5f5;
  width: calc(10% + 50vw);
  height: 100%;
  top: 0;
  right: 40%;
  z-index: -2;
}

.c-works-banner__inner::after {
  background-color: #fff;
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: 0;
  right: 40%;
  z-index: 1;
}

.c-works-banner__flex {
  display: flex;
  flex-direction: column;
}

.c-works-banner__sec-ttl {
  color: #999;
  font-size: clamp(40px, 6.6666666667vw, 80px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: -0.5em;
  font-family: "Poppins", sans-serif;
}

.c-works-banner__sec-subttl {
  font-size: clamp(16px, 1.6666666667vw, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-top: 0.5em;
}

.c-works-banner__slider-wrap {
  margin-top: clamp(40px, 5vw, 60px);
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50vw);
}
.c-works-banner__slider-wrap .slick-slider div {
  transition: none;
}
.c-works-banner__img-wrap {
  position: relative;
  z-index: 1;
  padding-inline: 5px;
  width: 100%;
  aspect-ratio: 390/260;
}

.c-works-banner__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-works-banner__thumb {
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 1em 0.5em;
  color: #fff;
  z-index: 3;
}

.c-works-banner__img-wrap::before {
  content: "";
  display: inline-block;
  width: calc(100% - 10px);
  height: 25%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  position: absolute;
  bottom: 0;
  left: 5px;
  z-index: 2;
}

.c-works-banner__btn-area {
  margin-top: clamp(30px, 3.5833333333vw, 43px);
}

.c-works-banner__btn-area .btn_design01 .flex {
  font-size: clamp(12px, 1.3333333333vw, 16px);
  font-weight: 700;
  max-width: clamp(290px, 30vw, 360px);
}

@media screen and (min-width: 768px) {
  .c-works-banner__btn-area .btn_design01 .flex {
    margin-right: 0;
  }
}
/*ワークフローへ*/
.c-workflow-banner {
  margin-top: clamp(80px, 12.5vw, 150px);
}

.c-workflow-banner__item {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background-image: url("../img/service/interior-img-24.webp");
  background-position: center;
  background-size: cover;
  padding: clamp(40px, 4.4166666667vw, 53px) 20px clamp(40px, 5vw, 60px);
  transition: all 0.3s;
}

.c-workflow-banner__item:hover {
  filter: brightness(1.1);
}

.c-workflow-banner__item:hover .btn_design01 .flex::before {
  left: 8px;
}

.c-workflow-banner__ttl {
  color: #fff;
  font-size: clamp(40px, 5.8333333333vw, 70px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.c-workflow-banner__ttl-jp {
  color: #fff;
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 0.5em;
  text-align: center;
}

.c-workflow-banner__btn-area {
  margin-top: clamp(24px, 2.75vw, 33px);
}

.c-workflow-banner__btn-area .btn_design01 .flex {
  font-size: clamp(12px, 1.3333333333vw, 16px);
  font-weight: 700;
  max-width: clamp(290px, 29.1666666667vw, 350px);
  color: #fff;
}

.c-workflow-banner__btn-area .btn_design01 .flex::before {
  background-image: url("../img/top/icon_link_white.svg");
}

.construct-page .c-workflow-banner__btn-area .btn_design01 .flex,
.construct-page .c-works-banner__btn-area .btn_design01 .flex {
  max-width: clamp(320px, 33.3333333333vw, 400px);
  /*margin-inline: auto;*/
}

.interior-page .c-workflow-banner__btn-area .btn_design01 .flex {
  margin-inline: auto;
}

/*------------------------------------------
 *  お問い合わせフォーム
 *------------------------------------------*/
.c-form {
  /* タイトルラベル */
  /* 必須ラベル */
  /* 入力項目 */
  /* ラジオボタン */
  /* セレクトボックス */
  /* チェックボックス */
  /* 確認データ */
}

.c-form__row {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.c-form__row + .c-form__row {
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .c-form__row {
    max-width: 863px;
    grid-template-columns: 14.375rem 1fr;
    gap: 2.0625rem;
  }
}
.c-form__head {
  margin-top: 0.75rem;
  display: flex;
}

@media screen and (min-width: 768px) {
  .c-form__head {
    justify-content: space-between;
  }
}
.c-form__ttl {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.6875;
  color: #3a2c2c;
}

.c-form__required {
  display: inline-block;
  margin-left: 2em;
  width: 3.125rem;
  height: 1.375rem;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.6875;
  color: #333;
  border: 1px solid #707070;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-form__required {
    margin-left: 0;
  }
}
.c-form__input {
  width: 100%;
  padding: 0.4375rem 1.25rem 0.3125rem 1.25rem;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #ddd;
}

.c-form__input--textarea {
  line-height: 1.4;
}

.c-form__input + .c-form__input {
  margin-top: 1.25rem;
}

.c-form__input::-webkit-input-placeholder {
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  color: #bbb;
}

@media screen and (min-width: 768px) {
  .c-form__input::-webkit-input-placeholder {
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
}
.c-form__input::-moz-placeholder {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #bbb;
}

.c-form__input::placeholder {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #bbb;
}

.c-form__radio {
  display: flex;
}

.c-form__radio-item label {
  position: relative;
  padding-left: 2em;
  line-height: 2;
}

.c-form__radio-item label::before,
.c-form__radio-item label::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  border-radius: 50%;
}

.c-form__radio-item label::before {
  width: 20px;
  height: 20px;
  left: 0;
  background-color: #fff;
  border: 1px solid #dedede;
}

.c-form__radio-item label::after {
  width: 12px;
  height: 12px;
  left: 4px;
  background-color: #0f244d;
  opacity: 0;
}

.c-form__radio-item input[type="radio"]:checked + label::after {
  opacity: 1;
}

.c-form__select-wrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.c-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
  transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}

.c-form__select-box {
  padding: 0 40px 0 20px;
  min-height: 2.6em;
  margin: 0 auto 0 0;
  color: #757575;
  background-color: #fff;
  border: solid 1px #dedede;
  border-radius: 3px;
}

.c-form__select-box option {
  color: #000;
}

.c-form__checkbox-label {
  position: relative;
  display: inline-block;
  margin-left: 1.8em;
}

.c-form__checkbox-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8em;
  left: -1.8em;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 1px solid #c0c0c0;
}

.c-form__checkbox-label::after {
  position: absolute;
  content: "";
  display: block;
  top: 0.8em;
  left: -1.5em;
  width: 5px;
  height: 9px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-70%) rotate(45deg);
  opacity: 0;
}

.c-form__checkbox:checked {
  color: #1a049b;
}

.c-form__checkbox:checked + .c-form__checkbox-label::after {
  opacity: 1;
}

.c-form__confirm-data {
  display: block;
  padding-inline: 1em;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.6875;
  border-bottom: 1px solid #999;
}

@media screen and (min-width: 768px) {
  .c-form__confirm-data {
    margin-top: 0.5em;
  }
}
/*=================================================
 *  Project ページ固有
 *================================================*/
#wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  overflow-x: hidden;
}

/*------------------------------------------
 *  ヘッダー
 *------------------------------------------*/
/* =========================================
   Variables & Mixins
========================================= */
/* =========================================
   Header Layout
========================================= */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: transparent;
  z-index: 20;
  padding: 1rem;
  box-shadow: none;
  /* --- Layer Structure --- */
  /* --- Logo Section --- */
  /* --- Menu Wrapper --- */
  /* --- Hamburger Button (SP Only) --- */
  /* --- Global Navigation Container --- */
  /* =========================================
     SP Menu List Styles
  ========================================= */
  /* =========================================
     PC Menu Styles
  ========================================= */
  /* --- PC Top Row --- */
  /* --- PC Bottom Row --- */
}
.p-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.p-header::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-header:has(.p-header__nav-lower:hover)::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-header {
    height: auto;
    padding: 15px 0;
  }
}
.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  max-width: 1340px;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 0 25px;
  }
}
.p-header__logo {
  flex: 0 0 auto;
  max-width: 140px;
  position: relative;
  z-index: 41;
}
.p-header__logo span {
  font-size: clamp(6px, 1vw, 12px);
  color: #999;
  margin-bottom: 1rem;
  display: block;
  white-space: nowrap;
}
@media screen and (min-width: 1300px) {
  .p-header__logo span br {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .p-header__logo span {
    display: none;
  }
}
.p-header__logo img {
  width: clamp(80px, 10vw, 120px);
}
.p-header__menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-header__menu-wrapper {
    position: initial;
    margin-left: auto;
  }
}
.p-header__hamburger {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 41;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}
.p-header__menu {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 80px 20px 40px;
  width: 100vw;
  height: 100vh;
  background: #fff;
  text-align: left;
  z-index: 40;
  opacity: 0;
  visibility: collapse;
  transition: 0.3s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.is-drawerActive .p-header__menu {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .p-header__menu {
    position: initial;
    display: block;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    text-align: left;
  }
}
.p-header__menu-list.sp {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-header__menu-list.sp {
    display: none;
  }
}
.p-header__menu-list.sp > .p-header__menu-item {
  width: 50%;
  margin-bottom: 0;
}
.p-header__menu-list.sp > .p-header__menu-item > a,
.p-header__menu-list.sp > .p-header__menu-item > span {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  font-family: "Poppins", sans-serif;
  padding: 8px 0;
  font-weight: 500;
  text-decoration: none;
}
.p-header__menu-list.sp > .p-header__menu-item > a.sub-link {
  font-size: 12px;
  padding: 8px 0;
}
.p-header__menu-list.sp > .p-header__menu-item > span.en-title {
  color: #999;
  font-size: 1.25rem;
  padding-bottom: 0;
}
.p-header__menu-list.sp
  > .p-header__menu-item:has(.p-header__sub-menu)
  > a::after,
.p-header__menu-list.sp
  > .p-header__menu-item:has(.p-header__sub-menu)
  > span::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  margin-top: 2px; /* 微調整 */
  /* 三角形を作成 */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px; /* 上(色), 右(透), 下(0), 左(透) */
  border-color: #333 transparent transparent transparent;
}
.p-header__menu-list.sp > .p-header__menu-item .p-header__sub-menu {
  display: block;
  padding-left: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.p-header__menu-list.sp > .p-header__menu-item .p-header__sub-menu-item a {
  display: block;
  font-size: 14px;
  color: #666;
  padding: 8px 0;
  text-transform: capitalize;
  text-decoration: none;
}
.p-header__menu-list.sp
  > .p-header__menu-item
  .p-header__sub-menu-item
  a::before {
  content: "-";
  margin-right: 5px;
}
.p-header__menu-list.sp .p-header__menu-item.sp-btn-area {
  width: 100%;
  border-bottom: none;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-header__menu-list.sp .p-header__menu-item.sp-btn-area .border_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border: 1px solid #333;
  font-size: 16px;
  color: #333;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  background: #fff;
}
.p-header__nav-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav-pc {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
}
.p-header__nav-upper,
.p-header__nav-lower {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.p-header__nav-upper {
  gap: 10px;
}
.p-header__nav-upper .p-header__menu-item.border_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 36px;
  padding: 0 15px;
  border: 1px solid #333;
  font-size: 13px;
  line-height: 1;
  color: #333;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  text-decoration: none;
}
.p-header__nav-upper .p-header__menu-item.border_btn a:hover {
  background-color: #333;
  color: #fff;
}
.p-header__nav-upper .p-header__menu-item.border_btn.jp-btn a {
  letter-spacing: 0.1em;
}
.p-header__nav-lower {
  gap: 30px;
  position: relative;
}
.p-header__nav-lower .p-header__menu-item {
  position: static;
  /* --- PC版：塗りつぶし三角に変更 (::after) --- */
  /* ホバー時に三角を回転（180度） */
  /* --- Dropdown (Horizontal & Aligned) --- */
}
.p-header__nav-lower .p-header__menu-item > a,
.p-header__nav-lower .p-header__menu-item > span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 5px 0 20px;
  margin-bottom: -15px;
  cursor: pointer;
  position: relative;
  /* 下線アニメーション (::before) */
}
.p-header__nav-lower .p-header__menu-item > a::before,
.p-header__nav-lower .p-header__menu-item > span::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s;
}
.p-header__nav-lower .p-header__menu-item:hover > a::before,
.p-header__nav-lower .p-header__menu-item:hover > span::before {
  width: 100%;
}
.p-header__nav-lower .p-header__menu-item:has(.p-header__sub-menu) > a,
.p-header__nav-lower .p-header__menu-item:has(.p-header__sub-menu) > span {
  padding-right: 18px; /* 三角形分のスペースを確保 */
}
.p-header__nav-lower .p-header__menu-item:has(.p-header__sub-menu) > a::after,
.p-header__nav-lower
  .p-header__menu-item:has(.p-header__sub-menu)
  > span::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  /* 三角形を作成 */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px; /* 上(色), 右(透), 下(0), 左(透) */
  border-color: #333 transparent transparent transparent;
  transition: transform 0.3s;
}
.p-header__nav-lower
  .p-header__menu-item:has(.p-header__sub-menu):hover
  > a::after,
.p-header__nav-lower
  .p-header__menu-item:has(.p-header__sub-menu):hover
  > span::after {
  transform: translateY(-50%) rotate(180deg);
}
.p-header__nav-lower .p-header__menu-item .p-header__sub-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 40px;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  padding: 20px 0;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.p-header__nav-lower .p-header__menu-item .p-header__sub-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  right: -100vw;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #eee;
  z-index: -1;
}
.p-header__nav-lower .p-header__menu-item .p-header__sub-menu-item {
  width: auto;
  margin-top: 0;
}
.p-header__nav-lower .p-header__menu-item .p-header__sub-menu-item a {
  display: block;
  font-size: 13px;
  color: #333;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  /* サブメニュー項目の下線 */
}
.p-header__nav-lower .p-header__menu-item .p-header__sub-menu-item a:hover {
  opacity: 0.7;
}
.p-header__nav-lower .p-header__menu-item .p-header__sub-menu-item a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s;
}
.p-header__nav-lower
  .p-header__menu-item
  .p-header__sub-menu-item
  a:hover::after {
  width: 100%;
}
.p-header__nav-lower .p-header__menu-item:hover .p-header__sub-menu {
  opacity: 1;
  visibility: visible;
}

/*------------------------------------------
 *  フッター
 *------------------------------------------*/
.p-footer {
  background-color: #eee;
  padding: 6rem 0 2rem;
}

.p-footer .l-inner {
  max-width: 1340px;
  margin: 0 auto;
}

.p-footer-top__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.p-footer .l-inner .l-inner-left h2 {
  margin-bottom: 2rem;
}

.p-footer .l-inner .l-inner-left h2 img {
  display: block;
  width: clamp(80px, 13.037809648vw, 100px);
  margin: 0 auto 1.5rem;
}

.p-footer .l-inner .l-inner-left h2 span {
  font-size: min(16px, 1rem);
  display: block;
  text-align: center;
}

.p-footer .l-inner .l-inner-left .banners {
  max-width: 240px;
}

.p-footer .l-inner .l-inner-left .banners a {
  border: 1px solid #cccccc;
  display: block;
  margin-bottom: 1rem;
}

.p-footer .l-inner .l-inner-right {
  margin-top: 2rem;
}

.p-footer .l-inner .l-inner-right .l-inner-right-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.p-footer .l-inner .l-inner-right .l-inner-right-wrap dl {
  width: 23%;
  margin-bottom: 2em;
}

.p-footer .l-inner .l-inner-right .l-inner-right-wrap dl:not(:nth-of-type(4n)) {
  margin-right: 2.66%;
}

.p-footer .l-inner .l-inner-right .l-inner-right-wrap dl dt {
  text-align: left;
  font-size: clamp(15px, 1.5vw, 18px);
  font-family: "Poppins", sans-serif;
  color: #999;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.p-footer .l-inner .l-inner-right .l-inner-right-wrap dl.btn {
  font-size: clamp(12px, 1.1666666667vw, 14px);
}

.p-footer .l-inner .l-inner-right .l-inner-right-wrap dl dd {
  text-align: left;
}

.p-footer .l-inner .l-inner-right .l-inner-right-wrap dl dd ul li {
  font-size: min(14px, 0.8rem);
  margin-bottom: 0.5em;
}

.p-footer .l-inner .l-inner-right .l-inner-right-wrap dl dd ul li a {
  font-size: min(14px, 0.8rem);
}

.p-footer .l-inner .btm-txt {
  width: 100%;
  margin-top: 3rem;
}

.p-footer .l-inner .btm-txt small {
  font-size: min(12px, 0.75rem);
  color: #888;
}

.p-footer__copyright {
  margin-top: 2.5rem;
}

@media screen and (max-width: 680px) {
  .p-footer .l-inner .l-inner-right .l-inner-right-wrap dl {
    width: 31%;
  }
  .p-footer
    .l-inner
    .l-inner-right
    .l-inner-right-wrap
    dl:not(:nth-of-type(4n)) {
    margin-right: 0;
  }
  .p-footer
    .l-inner
    .l-inner-right
    .l-inner-right-wrap
    dl:not(:nth-of-type(3n)) {
    margin-right: 3.5%;
  }
}
@media screen and (max-width: 500px) {
  .p-footer .l-inner .l-inner-right .l-inner-right-wrap dl {
    width: 48%;
  }
  .p-footer
    .l-inner
    .l-inner-right
    .l-inner-right-wrap
    dl:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .p-footer
    .l-inner
    .l-inner-right
    .l-inner-right-wrap
    dl:not(:nth-of-type(2n)) {
    margin-right: 4%;
  }
}
@media screen and (min-width: 768px) {
  .p-footer-top__flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  .p-footer .l-inner .l-inner-left {
    max-width: clamp(90px, 15vw, 180px);
    display: flex;
    flex-direction: column;
  }
  .p-footer .l-inner .l-inner-left h2 img {
    margin-left: 0;
  }
  .p-footer .l-inner .l-inner-left h2 span {
    text-align: left;
  }
  .p-footer .l-inner .l-inner-left .banners {
    margin-top: auto;
  }
  .l-inner-right {
    margin-left: 10%;
  }
  .p-footer .l-inner .l-inner-right .l-inner-right-wrap dl dd ul li {
    margin-bottom: 0;
  }
}
/*------------------------------------------
 *  TOPページ
 *------------------------------------------*/
.btn_design01 .flex,
.btn_design01 a {
  align-items: center;
  max-width: 162px;
  margin-left: auto;
  margin-right: 0;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.btn_design01 .flex::before,
.btn_design01 a::before {
  content: "";
  width: 56px;
  height: 33px;
  background: url(../img/top/icon_link.svg) no-repeat;
  background-size: contain;
  position: relative;
  transition: 0.3s ease;
  left: 0;
}

.btn_design01 a:hover {
  opacity: 0.7;
  transition: 0.3s ease;
}

.btn_design01 .flex:hover::before,
.btn_design01 a:hover::before {
  left: 8px;
  transition: 0.3s ease;
}

/*----------------- MV -----------------*/
.p-top-mv .p-top-mv__inner {
  max-width: none;
  padding-inline: 0;
  width: 100%;
  padding-top: 1rem;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-items: stretch;
}

@media screen and (max-width: 1100px) {
  .p-top-mv .p-top-mv__inner {
    padding: 1rem;
  }
}
.p-top-mv .p-top-mv__inner .mv__inner_left {
  width: calc(100% - 695px);
  margin-left: -1.5rem;
  transition:
    transform 1.2s ease-out,
    opacity 1s ease-out;
}

@media screen and (max-width: 1100px) {
  .p-top-mv .p-top-mv__inner .mv__inner_left {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv .p-top-mv__inner .mv__inner_left {
    width: 100%;
    margin-left: 0;
    margin-bottom: 4rem;
  }
}
.p-top-mv .p-top-mv__inner .mv__inner_right {
  width: 590px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 1100px) {
  .p-top-mv .p-top-mv__inner .mv__inner_right {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv .p-top-mv__inner .mv__inner_right {
    width: 100%;
  }
}
.p-top-mv .p-top-mv__inner .mv__inner_right h1 {
  color: #555;
  font-size: min(64px, 4rem);
  font-weight: 500;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .p-top-mv .p-top-mv__inner .mv__inner_right h1 {
    font-size: min(42px, 3rem);
    margin-bottom: 1rem;
  }
}
.p-top-mv .p-top-mv__inner .mv__inner_right h1 span {
  font-size: min(60px, 3.75rem);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-top-mv .p-top-mv__inner .mv__inner_right h1 span {
    font-size: min(38px, 3rem);
  }
}
.p-top-mv .p-top-mv__inner .mv__inner_right .mv__inner_right_banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9d9d9;
  min-height: 120px;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .p-top-mv .p-top-mv__inner .mv__inner_right .mv__inner_right_banner {
    position: static;
  }
}
/*----------------- create_success -----------------*/
.p-top-create_success {
  margin-left: 50px;
  background: url(../img/top/bg_success.webp) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
  padding: 6rem 1rem 6rem;
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .p-top-create_success {
    padding-bottom: 6rem;
  }
}
.p-top-create_success::before {
  content: "ABOUT US";
  font-size: 86px;
  font-weight: 200;
  line-height: 1;
  writing-mode: vertical-lr;
  color: #5a5a5a;
  position: absolute;
  font-family: "Poppins", sans-serif;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .p-top-create_success::before {
    font-size: 60px;
    right: 0;
    writing-mode: lr-tb;
    top: auto;
    transform: none;
    bottom: -8px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-create_success {
    margin-left: 0;
    padding-top: 3.5rem;
    margin-top: 72px;
  }
}
.p-top-create_success::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-right: 90px solid transparent;
  border-bottom: 90px solid #f5f5f5;
  left: 0;
  bottom: 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .p-top-create_success::after {
    border-right: 45px solid transparent;
    border-bottom: 45px solid #f5f5f5;
  }
}
.p-top-create_success .p-top-create_success__inner {
  max-width: 1200px;
  padding: 0;
}

.p-top-create_success .p-top-create_success__inner .create_success_txt {
  position: relative;
  z-index: 2;
  /*width: calc(100% - 560px);*/
  width: 45%;
}

@media screen and (max-width: 768px) {
  .p-top-create_success .p-top-create_success__inner .create_success_txt {
    width: 100%;
  }
}
.p-top-create_success .p-top-create_success__inner .create_success_txt > * {
  color: #fff;
}

.p-top-create_success .p-top-create_success__inner .create_success_txt h3 {
  font-weight: 500;
  font-size: min(36px, 2.25rem);
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  .p-top-create_success .p-top-create_success__inner .create_success_txt h3 {
    font-size: min(24px, 1.5rem);
    margin-bottom: 2rem;
  }
}
.p-top-create_success .p-top-create_success__inner .create_success_txt p {
  margin-bottom: 2rem;
}

.p-top-create_success
  .p-top-create_success__inner
  .create_success_txt
  p:last-child {
  margin-bottom: 0;
}

/*----------------- top-servise -----------------*/
.p-top-service {
  background: #f5f5f5;
  position: relative;
  z-index: 1;
  padding-bottom: 6rem;
  padding-top: 40vh;
  margin-top: calc(-40vh + 100px);
}

.p-top-service::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 90px solid transparent;
  border-bottom: 90px solid #fff;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .p-top-service .p-top-service__inner {
    justify-content: center;
  }
}
.p-top-service .p-top-service__inner .create_service_img {
  /*max-width: 580px;*/
  width: 48%;
}

@media screen and (max-width: 768px) {
  .p-top-service .p-top-service__inner .create_service_img {
    width: 100%;
    order: 2;
  }
}
.p-top-service .p-top-service__inner .create_service_txt {
  /*width: calc(100% - 650px);*/
  width: 45%;
}

@media screen and (max-width: 768px) {
  .p-top-service .p-top-service__inner .create_service_txt {
    width: 100%;
    order: 1;
    margin-bottom: 3rem;
  }
}
.p-top-service .p-top-service__inner .create_service_txt .c-sec-ttl h2 {
  color: #999;
}

.p-top-service .p-top-service__inner .create_service_txt h3 {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
  .p-top-service .p-top-service__inner .create_service_txt h3 {
    font-size: min(24px, 1.5rem);
  }
}
.p-top-service .p-top-service__inner .create_service_txt p {
  font-weight: 500;
  margin-bottom: 3.5rem;
}

@media screen and (max-width: 768px) {
  .p-top-service .p-top-service__inner .create_service_txt p {
    margin-bottom: 1rem;
  }
}
/*----------------- top-works -----------------*/
.p-top-works {
  position: relative;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .p-top-works {
    margin-top: 70px;
  }
}
.p-top-works::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 90px solid transparent;
  border-bottom: 90px solid #fff;
  right: 49vw;
  bottom: 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .p-top-works::before {
    right: 5vw;
  }
}
.p-top-works::after {
  content: "";
  display: block;
  background-color: #f5f5f5;
  width: 50vw;
  height: 93%;
  left: 0;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .p-top-works::after {
    width: 95vw;
    height: 96%;
  }
}
.p-top-works > * {
  position: relative;
  z-index: 2;
}

.p-top-works .p-top-works-ul {
  margin-bottom: 1.5rem;
  overflow-x: hidden;
}

.p-top-works .p-top-works-ul.slick01 {
  direction: rtl;
}

.p-top-works .slick-slider div {
  transition: none;
}
.p-top-works .p-top-works-ul .p-top-works-li {
  margin-right: 10px;
}

.p-top-works .p-top-works-ul .p-top-works-li a {
  position: relative;
  width: 100%;
  aspect-ratio: 420/280;
  display: block;
}

.p-top-works .p-top-works-ul .p-top-works-li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-works .p-top-works-ul .p-top-works-li a span {
  position: absolute;
  color: #fff;
  font-size: min(16px, 1rem);
  bottom: 8px;
  left: 10px;
  font-weight: 500;
}

.p-top-works .p-top-works-ul.plus_m {
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .p-top-works .p-top-works-ul.plus_m {
    margin-bottom: 2rem;
  }
}
.p-top-works .p-top-works__inner .c-sec-ttl h2 {
  color: #999;
}

.p-top-works .p-top-works__inner .c-sec-ttl span {
  text-align: left;
}

.p-top-works .p-top-works__inner h3 {
  font-size: min(70px, 4rem);
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  color: #eee;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .p-top-works .p-top-works__inner h3 {
    font-size: min(48px, 3rem);
    color: #fff;
  }
}
.p-top-works .p-top-works__inner h3.white {
  text-align: left;
  color: #fff;
}

.p-top-works__inner .btn_design01 .flex {
  max-width: 132px;
}

/*----------------- top-OUR VALUE -----------------*/
.p-top-our_value {
  margin-top: 120px;
}

.p-top-our_value .p-top-our_value__inner .c-sec-ttl {
  display: block;
}

.p-top-our_value .p-top-our_value__inner .c-sec-ttl > * {
  text-align: center;
}

.p-top-our_value .p-top-our_value__inner .c-sec-ttl h2 {
  color: #999;
}

.p-top-our_value .p-top-our_value__inner .our_value_ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

@media screen and (max-width: 768px) {
  .p-top-our_value .p-top-our_value__inner .our_value_ul {
    grid-template-columns: 1fr;
  }
}
.p-top-our_value .p-top-our_value__inner .our_value_ul .our_value_li .num {
  font-family: "Poppins", sans-serif;
  font-size: min(40px, 2.5rem);
  font-weight: 100;
  color: #999;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1rem;
}

.p-top-our_value
  .p-top-our_value__inner
  .our_value_ul
  .our_value_li
  .our_value_img_box {
  max-width: 210px;
  margin: 0 auto 1.75rem;
}

.p-top-our_value .p-top-our_value__inner .our_value_ul .our_value_li h3 {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.25rem;
}

.p-top-our_value .p-top-our_value__inner .our_value_ul .our_value_li h3 span {
  display: block;
  font-weight: 500;
  font-size: 1.2rem;
}

.p-top-our_value .p-top-our_value__inner .our_value_ul .our_value_li .desc {
  /*font-size: min(12px, 0.75rem);*/
  font-size: clamp(14px, calc(16 / 1250 * 100vw), 16px);
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .p-top-our_value .p-top-our_value__inner .our_value_ul .our_value_li .desc {
    font-size: min(14px, 1rem);
  }
}
/*----------------- top-recruit -----------------*/
.p-top-recruit {
  position: relative;
  margin-top: 120px;
}

.p-top-recruit .p-top-recruit__inner {
  max-width: 1700px;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.p-top-recruit .p-top-recruit__inner .p-top-recruit_left {
  width: 45%;
}

@media screen and (max-width: 768px) {
  .p-top-recruit .p-top-recruit__inner .p-top-recruit_left {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }
}
.p-top-recruit .p-top-recruit__inner .p-top-recruit_right {
  max-width: 45%;
  margin: 0 auto;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-recruit .p-top-recruit__inner .p-top-recruit_right {
    max-width: 420px;
  }
}
.p-top-recruit .p-top-recruit__inner .p-top-recruit_right .c-sec-ttl h2 {
  color: #999;
}

.p-top-recruit .p-top-recruit__inner .p-top-recruit_right p {
  margin-bottom: 2rem;
}

@media screen and (min-width: 1920px) {
  .p-top-recruit::before {
    content: "";
    width: 1700px;
    height: 70%;
    display: block;
    background: #f5f5f5;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
}
.p-top-recruit::after {
  content: "";
  width: calc(100% - 50px);
  max-width: 1870px;
  height: 70%;
  display: block;
  background: #f5f5f5;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

@media screen and (min-width: 1920px) {
  .p-top-recruit::after {
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .p-top-recruit::after {
    width: calc(100% - 24px);
    height: calc(100% - 20vw);
    top: 30vw;
    transform: translateY(0);
  }
  .p-top-recruit::before {
    content: "";
    display: inline-block;
    position: absolute;
    background-color: #fff;
    width: 50px;
    height: 50px;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    bottom: -10vw;
    right: 24px;
    z-index: 2;
  }
}
/*----------------- top-information -----------------*/
.p-top-information {
  margin-top: 120px;
}

.p-top-information .p-top-information__inner .c-sec-ttl {
  margin-bottom: 3.5rem;
  display: block;
}

.p-top-information .p-top-information__inner .c-sec-ttl > * {
  text-align: center;
}

.p-top-information .p-top-information__inner .c-sec-ttl h2 {
  color: #999;
}

@media screen and (max-width: 768px) {
  .p-top-information .p-top-information__inner .c-sec-ttl h2 {
    font-size: min(48px, 3rem);
  }
}
.p-top-information .p-top-information__inner .p-top-information_ul {
  max-width: 1000px;
  margin: 0 auto 4rem;
}

.p-top-information__link {
  padding: 2rem;
  border-bottom: 1px solid #eee;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.p-top-information__link::after {
  content: "";
  width: 10px;
  height: 20px;
  background: url(../img/common/icon_arrow.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-top-information__link::after {
    content: none;
  }
}

.p-top-information__link:hover {
  background-color: #f5f5f5;
  opacity: 1;
}

.p-top-information__link.u-no-link {
  pointer-events: none;
}
.p-top-information__link.u-no-link::after {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-top-information__link {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .p-top-information
    .p-top-information__inner
    .p-top-information_ul
    .p-top-information_li {
    padding: 0;
  }
}
.p-top-information
  .p-top-information__inner
  .p-top-information_ul
  .p-top-information_li
  .p-top-information_li_date {
  font-size: min(15px, 0.95rem);
  margin-right: 1.5rem;
  flex: 0 0 auto;
  width: 100px;
}

.p-top-information
  .p-top-information__inner
  .p-top-information_ul
  .p-top-information_li
  .p-top-information_li_label {
  border: 1px solid #ccc;
  font-size: min(12px, 0.8rem);
  margin-right: 40px;
  width: 100px;
  height: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.p-top-information__txt-wrap {
  flex: 1 1 auto;
  width: calc(100% - 240px);
}

@media screen and (max-width: 768px) {
  .p-top-information__txt-wrap {
    width: 100%;
  }
  .p-top-information
    .p-top-information__inner
    .p-top-information_ul
    .p-top-information_li
    .p-top-information_li_label {
    margin-right: 0;
  }
}
.p-top-information
  .p-top-information__inner
  .p-top-information_ul
  .p-top-information_li
  .p-top-information_li_memo {
  font-size: min(14px, 0.8rem);
  /*white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;*/
}

@media screen and (max-width: 768px) {
  .p-top-information
    .p-top-information__inner
    .p-top-information_ul
    .p-top-information_li
    .p-top-information_li_memo {
    width: 100%;
    margin-top: 1rem;
  }
}
.p-top-information
  .p-top-information__inner
  .p-top-information_ul
  .p-top-information_li
  .p-top-information_li_link {
  font-size: min(13px, 0.8rem);
  text-decoration: underline;
  text-decoration-color: #999; /* 色を変更 */
  text-decoration-thickness: 1px; /* 太さを変更 */
  text-underline-offset: 4px; /* 文字との距離を調整 */
  /*white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;*/
  width: 100%;
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .p-top-information
    .p-top-information__inner
    .p-top-information_ul
    .p-top-information_li
    .p-top-information_li_link {
    width: 100%;
    padding-left: 0;
    margin-top: 1rem;
    display: block;
  }
}
.contact_section {
  background: url(../img/common/bg-contact.webp) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 1rem 60px;
  margin-top: 160px;
}
@media screen and (max-width: 400px) {
  .contact_section .l-inner {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .contact_section {
    margin-top: 80px;
  }
}
.contact_section .l-inner .c-sec-ttl {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.contact_section .l-inner .c-sec-ttl h2 {
  text-align: center;
  color: #fff;
  transition: font-size 0.3s;
}

@media screen and (max-width: 400px) {
  .contact_section .l-inner .c-sec-ttl h2 {
    font-size: 56px;
  }
}
.contact_section .l-inner .c-sec-ttl span {
  text-align: center;
  color: #fff;
  margin-top: 1rem;
}

.contact_section .l-inner .contact_section-contents {
  align-items: center;
  justify-content: space-around;
}

@media screen and (max-width: 768px) {
  .contact_section .l-inner .contact_section-contents {
    justify-content: center;
  }
}
.contact_section .l-inner .contact_section-contents .txt_box {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .contact_section .l-inner .contact_section-contents .txt_box {
    width: 600px;
  }
}
.contact_section .l-inner .contact_section-contents .txt_box .contact-btn {
  width: 100%;
  min-height: 90px;
  background: #0630ff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: min(26px, 1.75rem);
  font-family: "Poppins", sans-serif;
  margin-bottom: 3.5rem;
}

@media screen and (max-width: 768px) {
  .contact_section .l-inner .contact_section-contents .txt_box .contact-btn {
    margin-top: 20px;
    margin-bottom: 0.5rem;
  }
}
.contact_section
  .l-inner
  .contact_section-contents
  .txt_box
  .contact-btn::before {
  content: "";
  background: url(../img/common/icon-mail.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 34px;
  height: 22px;
  margin-right: 1.75rem;
}

.contact_section .l-inner .contact_section-contents .txt_box .tell p {
  color: #fff;
  font-size: min(28px, 1.8rem);
  text-align: center;
  border-right: 1px solid #999;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .contact_section .l-inner .contact_section-contents .txt_box .tell p {
    width: 100%;
    padding: 1.5rem 0;
    border-right: none;
    border-bottom: 1px solid #999;
  }
}
.contact_section .l-inner .contact_section-contents .txt_box .tell p span {
  display: block;
  font-size: min(20px, 1.25rem);
  font-family: "Poppins", sans-serif;
}

.contact_section
  .l-inner
  .contact_section-contents
  .txt_box
  .tell
  p:last-child {
  border-right: none;
  border-bottom: none;
}

.contact_section .l-inner .contact_section-contents .img_box {
  width: 43.3%;
  max-width: 357px;
}

@media screen and (max-width: 768px) {
  .contact_section .l-inner .contact_section-contents .img_box {
    width: 100%;
    max-width: 300px;
  }
}
/*----------------- 下層ページMV -----------------*/
.c-sub-mv .c-sub-mv__inner {
  align-items: center;
  justify-content: space-between;
  padding: 5.5vw 25px 2rem;
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
}

.c-sub-mv .c-sub-mv__inner #mySvg {
  max-width: 512px;
}

.c-sub-mv .c-sub-mv__inner .c-sub-mv_title {
  font-weight: 200;
  font-size: min(100px, 6.25rem);
  font-family: "Poppins", sans-serif;
  color: #555;
  z-index: 2;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .c-sub-mv .c-sub-mv__inner {
    padding: 5.5vw 20px 0.5rem;
  }
  .c-sub-mv .c-sub-mv__inner .c-sub-mv_title {
    margin-bottom: 1rem;
    font-size: min(48px, 3rem);
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .c-sub-mv .c-sub-mv__inner {
    flex-direction: row-reverse;
  }
  .c-sub-mv .c-sub-mv__inner .c-sub-mv_title {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
  }
}
.c-sub-mv .c-sub-mv__inner .c-sub-mv_title span {
  display: block;
  font-size: min(18px, 1.2rem);
}

@media screen and (max-width: 768px) {
  .c-sub-mv .c-sub-mv__inner .c-sub-mv_title span {
    font-size: min(14px, 0.8rem);
  }
}
.c-sub-mv .c-sub-mv__inner .mv_img {
  max-width: 512px;
  width: clamp(200px, 42.6666666667vw, 512px);
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  z-index: 1;
}

/*----------------- Service -----------------*/
.p-sub-service__top-flex {
  margin-top: clamp(50px, 8.3333333333vw, 100px);
  display: flex;
  flex-direction: column;
}

.p-sub-service__top-left-ttl {
  font-size: clamp(24px, 2.6666666667vw, 32px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
}

.p-sub-service__top-left-txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: clamp(30px, 4.1666666667vw, 50px);
}

.p-sub-service__top-left-txt + .p-sub-service__top-left-txt {
  margin-top: 1.8em;
}

.p-sub-service__top-right {
  max-width: 420px;
  margin: clamp(30px, 4.1666666667vw, 50px) auto 0;
}

.p-sub-service__top-link {
  display: flex;
  flex-direction: column;
  max-width: 360px;
  margin: clamp(60px, 8.3333333333vw, 50px) auto 0;
}

.p-sub-service__top-link-item {
  width: 100%;
}

.p-sub-service__top-link-item + .p-sub-service__top-link-item {
  margin-top: 20px;
}

.p-sub-service__top-link-item a {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: clamp(16px, 1.5vw, 18px);
  position: relative;
}

.p-sub-service__top-link-item a::after {
  content: "";
  display: inline-block;
  width: clamp(6px, 0.75vw, 9px);
  height: clamp(6px, 0.75vw, 9px);
  border-bottom: solid 1px #333;
  border-right: solid 1px #333;
  position: absolute;
  top: 50%;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.p-sub-service__top-link-ttl {
  font-size: clamp(18px, 2.5vw, 40px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-sub-service__top-link-ttl span {
  font-size: 0.8em;
  font-weight: 200;
  margin-left: 0.5em;
}

.p-sub-service__top-link-txt {
  font-size: clamp(12px, 1.1666666667vw, 14px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 0.8em;
}

.p-sub-service__under-section {
  position: relative;
  z-index: 1;
}

.p-sub-service__construct-section {
  padding-top: clamp(125px, 20.8333333333vw, 250px);
  padding-bottom: clamp(60px, 8.3333333333vw, 100px);
}

.p-sub-service__interior-section {
  padding-top: clamp(100px, 16.6666666667vw, 200px);
  padding-bottom: clamp(60px, 8.3333333333vw, 100px);
}

.p-sub-service__hbc-section {
  padding-top: clamp(60px, 8.3333333333vw, 100px);
  padding-bottom: clamp(60px, 8.3333333333vw, 100px);
}

.p-sub-service__under-section::before {
  content: "";
  display: inline-block;
  width: calc(29% + 50vw);
  width: 90vw;
  height: calc(100% - clamp(125px, 20.8333333333vw, 250px));
  position: absolute;
  z-index: -2;
  top: clamp(125px, 20.8333333333vw, 250px);
}

.p-sub-service__under-section::after {
  content: "";
  display: inline-block;
  width: clamp(40px, 8.3333333333vw, 100px);
  height: clamp(40px, 8.3333333333vw, 100px);
  background-color: #fff;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.p-sub-service__construct-section::before {
  right: 10vw;
  background-color: #fbf6f7;
}

.p-sub-service__interior-section::before {
  left: 20%;
  width: calc(30% + 50vw);
  height: calc(100% - clamp(100px, 16.6666666667vw, 200px));
  background-color: #f4f6fa;
}

.p-sub-service__hbc-section::before {
  left: 20%;
  width: calc(30% + 50vw);
  height: 100%;
  top: 0;
  background-color: #f4f6fa;
}

.p-sub-service__interior-section::before {
  top: clamp(100px, 16.6666666667vw, 200px);
}

.p-sub-service__construct-section::after {
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  right: 10vw;
}

.p-sub-service__hbc-section::after {
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  left: 20%;
}

.p-sub-service .l-inner {
  overflow: visible;
}

.p-sub-service__contents {
  display: flex;
  flex-direction: column;
  position: relative;
}

.p-sub-service__sec-ttl {
  font-family: "Poppins", sans-serif;
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: -0.6em;
  white-space: nowrap;
  text-transform: uppercase;
  color: #999999;
}

.p-sub-service__sec-ttl span {
  display: block;
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 200;
}

.p-sub-service__sec-subttl {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 0.8em;
}

.p-sub-service__catch {
  font-size: clamp(20px, 2.3333333333vw, 28px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: clamp(40px, 5vw, 60px);
}

.p-sub-service__txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: clamp(40px, 5vw, 60px);
}

.p-sub-service__btn-area {
  margin-top: clamp(40px, 5vw, 60px);
}

@media screen and (max-width: 768px) {
  .p-sub-service__btn-area {
    margin-bottom: 20px;
  }
}
.p-sub-service__btn-area .btn_design01 a {
  margin-left: 0;
}

.p-sub-service__img-wrap {
  max-width: 360px;
  margin: clamp(30px, 4.1666666667vw, 50px) auto 0;
}

.p-sub-service__dl {
  display: flex;
  max-width: 580px;
  margin: 0 auto;
}

.p-sub-service__dl:first-of-type {
  margin-top: clamp(40px, 5vw, 60px);
}

.p-sub-service__dl + .p-sub-service__dl {
  margin-top: clamp(10px, 1vw, 12px);
}

.p-sub-service__dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(100px, 14.3333333333vw, 172px);
  flex: 0 0 auto;
  font-size: clamp(20px, 2.3333333333vw, 28px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.p-sub-service__dl:first-of-type dt {
  background-color: #b9e5d4;
}

.p-sub-service__dl:nth-of-type(2) dt {
  background-color: #e8d5ee;
}

.p-sub-service__dl:last-of-type dt {
  background-color: #edeabb;
}

.p-sub-service__dl dd {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  padding: clamp(10px, 1vw, 12px) clamp(16px, 1.6666666667vw, 20px);
}

.p-sub-service__dl:first-of-type dd {
  background-color: #e8f3ef;
}

.p-sub-service__dl:nth-of-type(2) dd {
  background-color: #fcf2ff;
}

.p-sub-service__dl:last-of-type dd {
  background-color: #f9f8e8;
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-service__top-flex {
    flex-direction: row;
    justify-content: space-between;
  }
  .p-sub-service__top-left {
    width: 48.3%;
  }
  .p-sub-service__top-right {
    width: 40.9%;
    max-width: inherit;
    margin: 0;
  }
  .p-sub-service__top-link {
    flex-direction: row;
    justify-content: space-between;
    max-width: inherit;
    margin: clamp(60px, 8.3333333333vw, 50px) 0 0;
  }
  .p-sub-service__top-link-item {
    width: 32%;
  }
  .p-sub-service__top-link-item + .p-sub-service__top-link-item {
    margin-top: 0;
  }
  .p-sub-service__top-link-ttl span {
    font-size: 0.5em;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-sub-service__top-link-ttl span {
    font-size: 0.4em;
  }
}
@media screen and (min-width: 768px) {
  .p-sub-service__contents {
    flex-direction: row;
  }
  .p-sub-service__hbc-section .p-sub-service__contents,
  .p-sub-service__interior-section .p-sub-service__contents {
    flex-direction: row-reverse;
  }
  .p-sub-service__under-section::before {
    width: calc(29% + 50vw);
  }
  .p-sub-service__construct-section::before {
    right: 21%;
  }
  .p-sub-service__hbc-section::before,
  .p-sub-service__interior-section::before {
    width: calc(30% + 50vw);
  }
  .p-sub-service__construct-section::after {
    right: 21%;
  }
  .p-sub-service__txt-wrap {
    width: 50%;
    flex: 0 0 auto;
  }
  .p-sub-service__img-wrap {
    max-width: 600px;
    width: 40vw;
    position: absolute;
    top: 0;
    left: 60%;
  }
  .p-sub-service__hbc-section .p-sub-service__img-wrap,
  .p-sub-service__interior-section .p-sub-service__img-wrap {
    left: inherit;
    right: 60%;
  }
  .p-sub-service__dl {
    margin-left: 0;
  }
}
/*----------------- service interior  -----------------*/
/*p-sub-interior__section-01*/
.p-sub-interior {
  margin-top: clamp(80px, 8.75vw, 105px);
}

.p-sub-interior__inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(60px, 8.3333333333vw, 100px);
  max-width: 1280px;
}

.p-sub-interior__inner::after,
.p-sub-interior__inner::before {
  content: "";
  display: inline-block;
  position: absolute;
}

.p-sub-interior__inner::before {
  background-color: #f5f5f5;
  width: calc(50% + 50vw);
  height: calc(100% - clamp(66px, 11vw, 132px));
  top: clamp(66px, 11vw, 132px);
  right: 20px;
  z-index: -2;
}

.p-sub-interior__inner::after {
  background-color: #fff;
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: 0;
  right: 20px;
  z-index: 1;
}

.p-sub-interior__top-flex {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
  padding-inline: 20px;
}

.p-sub-interior__top-txt-wrap {
  margin-top: 30px;
}

.p-sub-interior__top-ttl {
  font-size: clamp(20px, 2.6666666667vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  word-break: auto-phrase;
}
@media screen and (max-width: 400px) {
  .p-sub-interior__top-ttl {
    font-size: clamp(18px, 2.6666666667vw, 32px);
  }
}

.p-sub-interior__top-txt {
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: clamp(30px, 3.1666666667vw, 38px);
}

.p-sub-interior__list {
  list-style-type: none;
  padding-inline: 20px;
  max-width: 480px;
  margin: clamp(60px, 8.3333333333vw, 100px) auto 0;
  display: flex;
  flex-direction: column;
}

.p-sub-interior__item {
  background-color: #fff;
  padding: clamp(20px, 2.0833333333vw, 25px);
}

.p-sub-interior__item + .p-sub-interior__item {
  margin-top: 30px;
}

.p-sub-interior__item-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-top: clamp(20px, 2.0833333333vw, 25px);
  text-align: left;
}

.p-sub-interior__item-ttl span {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: clamp(6px, 0.8333333333vw, 10px);
}

.p-sub-interior__item-txt {
  font-size: clamp(12px, 1.25vw, 15px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: clamp(20px, 2.0833333333vw, 25px);
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-interior__inner {
    max-width: 1390px;
  }
  .p-sub-interior__inner::after,
  .p-sub-interior__inner::before {
    right: 25px;
  }
  .p-sub-interior__top-flex {
    max-width: inherit;
    margin: 0;
    flex-direction: row;
    justify-content: space-between;
    padding-inline: clamp(30px, 5.8333333333vw, 70px);
  }
  .p-sub-interior__top-img-wrap {
    width: 43.33%;
  }
  .p-sub-interior__top-txt-wrap {
    width: 50%;
    margin-top: 0;
  }
  .p-sub-interior__top-ttl {
    display: flex;
    height: clamp(66px, 11vw, 132px);
    align-items: center;
    justify-content: flex-start;
  }
  .p-sub-interior__list {
    max-width: inherit;
    margin-inline: 0;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-inline: clamp(30px, 5.8333333333vw, 70px);
  }
  .p-sub-interior__item {
    width: 30%;
    margin-bottom: clamp(30px, 4.1666666667vw, 50px);
  }
  .p-sub-interior__item + .p-sub-interior__item {
    margin-top: 0;
  }
  .p-sub-interior__item--large {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .p-sub-interior__item--large .p-sub-interior__item-ttl {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .p-sub-interior__item {
    width: 47%;
  }
  .p-sub-interior__item--large {
    width: 100%;
  }
  .p-sub-interior__item--large .p-sub-interior__item-img-wrap {
    width: 45%;
  }
  .p-sub-interior__item--large .p-sub-interior__item-txt-wrap {
    width: 47%;
  }
}
@media screen and (min-width: 768px) and (min-width: 1001px) {
  .p-sub-interior__item--large .p-sub-interior__item-txt-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .p-sub-interior__item--large .p-sub-interior__item-img-wrap {
    width: 28.7%;
  }
  .p-sub-interior__item--large .p-sub-interior__item-txt-wrap {
    width: 71.3%;
  }
  .p-sub-interior__item--large .p-sub-interior__item-ttl {
    width: 30.5%;
  }
  .p-sub-interior__item--large .p-sub-interior__item-txt {
    width: 69.5%;
  }
  .p-sub-interior__item--large .p-sub-interior__item-txt {
    margin-top: 0;
  }
}
/*p-sub-interior__section-02*/
/*PC*/
.p-sub-interior__section-02 .p-sub-interior__inner::before {
  top: clamp(160px, 16.4166666667vw, 197px);
  height: calc(100% - clamp(160px, 16.4166666667vw, 197px));
}

@media screen and (max-width: 768px) {
  .p-sub-interior__section-02 .p-sub-interior__inner::before {
    height: calc(100% - clamp(66px, 11vw, 132px));
    top: clamp(66px, 11vw, 132px);
  }
}
.p-sub-interior__section-02 .p-sub-interior__top-ttl {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  flex-direction: column;
  align-items: center;
}

.p-sub-interior__top-ttl > span {
  font-size: clamp(50px, 6.25vw, 75px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #999;
  margin-bottom: clamp(18px, 1.6666666667vw, 20px);
  font-family: "Poppins", sans-serif;
}

.p-sub-interior__top-ttl > span > span {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  display: block;
}

.p-sub-interior__contents {
  padding-inline: 20px;
}

.p-sub-interior__sec-ttl {
  font-size: clamp(18px, 1.6666666667vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: clamp(80px, 10vw, 120px);
  padding-left: 1.5em;
  position: relative;
  max-width: 480px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .p-sub-interior__sec-ttl {
    font-size: clamp(14px, 1.6666666667vw, 20px);
  }
}
.p-sub-interior__sec-ttl::before {
  content: "";
  display: inline-block;
  width: clamp(11px, 1.0833333333vw, 13px);
  height: clamp(11px, 1.0833333333vw, 13px);
  background-color: #000;
  position: absolute;
  top: 0.5em;
  left: 0;
}

.p-sub-interior__sec-ttl02 {
  font-size: clamp(18px, 1.6666666667vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: clamp(80px, 10vw, 120px);
  padding-right: 28px;
  position: relative;
  max-width: 480px;
  margin-inline: auto;
  text-align: center;
  border-bottom: 1px solid #bcbec0;
  padding-bottom: 20px;
}

.p-sub-interior__sec-ttl02::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 29px;
  background: url(../img/common/h3_icon_02.svg) no-repeat;
  background-size: cover;
  position: relative;
  top: 0.4em;
  left: 0;
  margin-right: 20px;
}

.p-sub-interior__hbc-wrap {
  margin-top: clamp(90px, 12.0833333333vw, 145px);
  display: flex;
}

.p-sub-interior__hbc-inner {
  background-color: #fff;
  width: 100%;
  padding: 0 clamp(20px, 4.1666666667vw, 50px) clamp(20px, 4.1666666667vw, 50px);
  max-width: 480px;
  margin: 0 auto;
}

.p-sub-interior__hbc-ttl {
  width: clamp(160px, 26vw, 312px);
  margin: 0 auto 0;
}

.p-sub-interior__hbc-ttl img {
  margin-top: -20%;
}

.p-sub-interior__hbc-list {
  display: flex;
  flex-direction: column;
  max-width: 360px;
  margin: clamp(20px, 2.6666666667vw, 32px) auto 0;
}

.p-sub-interior__hbc-item {
  width: 100%;
  padding: clamp(10px, 1.6666666667vw, 20px);
}

.p-sub-interior__hbc-item + .p-sub-interior__hbc-item {
  margin-top: 30px;
}

.p-sub-interior__hbc-item:first-of-type {
  background-color: #e8f3ef;
}

.p-sub-interior__hbc-item:nth-of-type(2) {
  background-color: #fcf2ff;
}

.p-sub-interior__hbc-item:last-of-type {
  background-color: #f9f8e8;
}

.p-sub-interior__hbc-item-ttl {
  text-align: center;
  text-transform: capitalize;
  font-size: clamp(20px, 2.3333333333vw, 28px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.p-sub-interior__hbc-item:first-of-type .p-sub-interior__hbc-item-ttl {
  color: #54977e;
}

.p-sub-interior__hbc-item:nth-of-type(2) .p-sub-interior__hbc-item-ttl {
  color: #aa7fb7;
}

.p-sub-interior__hbc-item:last-of-type .p-sub-interior__hbc-item-ttl {
  color: #a5a145;
}

.p-sub-interior__hbc-item-txt {
  font-size: clamp(12px, 1.9556714472vw, 15px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: clamp(16px, 2.4771838331vw, 19px);
  text-align: center;
}

.p-sub-interior__mix-flex {
  margin: clamp(50px, 10.4302477184vw, 80px) auto 0;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-sub-interior__mix-img-wrap {
  max-width: 320px;
  margin-bottom: 30px;
}

.p-sub-interior__mix-txt {
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}

.p-sub-interior__flow {
  margin-top: clamp(80px, 8.3333333333vw, 100px);
}
@media screen and (max-width: 767px) {
  .p-sub-interior__flow {
    margin-top: 40px;
  }
}

.p-sub-interior__flow-ttl-wrap {
  background-color: #fff;
  border: solid 1px #999;
  padding: clamp(20px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 360px;
  margin: 0 auto;
}

.p-sub-interior__flow-ttl-wrap img {
  max-width: 200px;
}

.p-sub-interior__flow-ttl-txt {
  font-size: clamp(16px, 1.6666666667vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: 0.7em;
  text-align: center;
}

.p-sub-interior__flow-ttl-txt br {
  display: none;
}

@media screen and (max-width: 420px) {
  .p-sub-interior__flow-ttl-txt br {
    display: block;
  }
}
.p-sub-interior__flow-flex {
  display: flex;
  flex-direction: column;
  max-width: 360px;
  margin: 30px auto 0;
}

.p-sub-interior__flow-item + .p-sub-interior__flow-item {
  margin-top: 30px;
}

.p-sub-interior__flow-item-ttl {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  padding-block: 12px;
  text-align: center;
}

.p-sub-interior__flow-item:first-of-type .p-sub-interior__flow-item-ttl {
  background-color: #ff93a9;
}

.p-sub-interior__flow-item:last-of-type .p-sub-interior__flow-item-ttl {
  background-color: #8496d4;
}

.p-sub-interior__flow-item-contents {
  margin-top: 40px;
  display: flex;
  padding-bottom: 20px;
}

.p-sub-interior__flow-item:first-of-type .p-sub-interior__flow-item-contents {
  border: solid 1px #ff93a9;
  background-color: #fffbfc;
}

.p-sub-interior__flow-item:last-of-type .p-sub-interior__flow-item-contents {
  border: solid 1px #8496d4;
  background-color: #f6f9ff;
}

.p-sub-interior__flow-item-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-sub-interior__flow-item-contents .p-sub-interior__flow-item-ttl {
  font-size: 16px;
  width: 80%;
  transform: translateY(-50%);
}

.p-sub-interior__flow-item-txt-01 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.p-sub-interior__flow-item-list {
  list-style-type: disc;
  padding-left: 1em;
  margin-top: 1.1em;
}

.p-sub-interior__flow-item-list li {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-sub-interior__flow-item-txt-02 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-align: right;
}

.p-sub-interior__flow-item-txt-03 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: 1.1em;
}

.p-sub-interior__flow-item:first-of-type .p-sub-interior__flow-item-txt-03 {
  color: #f9899f;
}

.p-sub-interior__flow-item:last-of-type .p-sub-interior__flow-item-txt-03 {
  color: #5f77cb;
}

.p-sub-interior__business {
  background-color: #fff;
  margin: clamp(50px, 6.6666666667vw, 80px) auto 0;
  max-width: 480px;
  padding: clamp(30px, 3.3333333333vw, 40px) clamp(20px, 3.3333333333vw, 40px);
}

.p-sub-interior__business-txt {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  word-break: auto-phrase;
}

.p-sub-interior__business-list {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  margin: 40px auto 0;
}

.p-sub-interior__business-item {
  width: 100%;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #fff;
  padding-block: 0.8em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.p-sub-interior__business-item:not(:first-of-type):before {
  content: "";
  display: inline-block;
  height: clamp(12px, 1.1666666667vw, 14px);
  width: clamp(14px, 1.3333333333vw, 16px);
  background-color: #999;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 20px);
  transform: translate(-50%, 50%);
}

.p-sub-interior__business-item + .p-sub-interior__business-item {
  margin-top: 40px;
}

.p-sub-interior__business-item:nth-of-type(2),
.p-sub-interior__business-item:first-of-type {
  background-color: #ff93a9;
}

.p-sub-interior__business-item:nth-of-type(3) {
  background-color: #63bbdf;
}

.p-sub-interior__business-item:nth-of-type(5),
.p-sub-interior__business-item:nth-of-type(4) {
  background-color: #8496d4;
}

.p-sub-interior__business-item:last-of-type {
  background-color: #7a7a7a;
}

.p-sub-interior__table-flex {
  display: flex;
  flex-direction: column;
  margin: clamp(50px, 6.6666666667vw, 80px) auto 0;
  max-width: 480px;
}

.p-sub-interior__table {
  margin-bottom: clamp(40px, 4.5833333333vw, 55px);
}

.p-sub-interior__table-ttl {
  color: #fff;
  font-size: clamp(16px, 1.6666666667vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  height: clamp(44px, 5.5vw, 66px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.p-sub-interior__table:first-of-type {
  border: solid 1px #ff93a9;
  background-color: #fffbfc;
}

.p-sub-interior__table:first-of-type .p-sub-interior__table-ttl {
  background-color: #ff93a9;
}

.p-sub-interior__table:nth-of-type(2) {
  border: solid 1px #63bbdf;
  background-color: #f2f8fa;
}

.p-sub-interior__table:nth-of-type(2) .p-sub-interior__table-ttl {
  background-color: #63bbdf;
}

.p-sub-interior__table:nth-of-type(3) {
  border: solid 1px #8496d4;
  background-color: #f6f9ff;
}

.p-sub-interior__table:nth-of-type(3) .p-sub-interior__table-ttl {
  background-color: #8496d4;
}

.p-sub-interior__table:last-of-type {
  border: solid 1px #878787;
  background-color: #f7f7f7;
}

.p-sub-interior__table:last-of-type .p-sub-interior__table-ttl {
  background-color: #878787;
}

.p-sub-interior__table-txt-wrap {
  padding: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100% - clamp(44px, 5.5vw, 66px));
}

.p-sub-interior__table-dl {
  display: flex;
  padding-inline: clamp(6px, 1vw, 12px);
  width: 100%;
  align-items: baseline;
}

.p-sub-interior__table-dl:not(:last-of-type) {
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.p-sub-interior__table:first-of-type
  .p-sub-interior__table-dl:not(:last-of-type) {
  border-bottom: solid 1px #f0d2d7;
}

.p-sub-interior__table:nth-of-type(2) .p-sub-interior__table-dl {
  align-items: center;
}

.p-sub-interior__table:nth-of-type(3)
  .p-sub-interior__table-dl:not(:last-of-type) {
  border-bottom: solid 1px #d3d9ec;
}

.p-sub-interior__table:last-of-type
  .p-sub-interior__table-dl:not(:last-of-type) {
  border-bottom: solid 1px #dcdcdc;
}

.p-sub-interior__table-dt {
  font-size: clamp(13px, 1.3333333333vw, 16px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  flex: 0 0 auto;
  text-align: right;
  padding-right: 8%;
}

.p-sub-interior__table:first-of-type .p-sub-interior__table-dt {
  color: #f9899f;
  width: 58%;
  max-width: 200px;
  min-width: 163px;
}

.p-sub-interior__table:nth-of-type(2) .p-sub-interior__table-dt {
  color: #39a3cf;
  width: 40%;
}

.p-sub-interior__table:nth-of-type(3) .p-sub-interior__table-dt {
  color: #5f77cb;
  width: 26%;
}

.p-sub-interior__table:last-of-type .p-sub-interior__table-dt {
  color: #7a7a7a;
  width: 20%;
}

.p-sub-interior__table-dd {
  font-size: clamp(13px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.p-sub-interior__case-img {
  margin-top: clamp(50px, 6.6666666667vw, 80px);
  overflow: auto;
}

.p-sub-interior__case-img-inner {
  /*min-width: 1000px;
  overflow-x: scroll;*/
}

.p-sub-interior__case-img-list {
  margin: clamp(50px, 6.6666666667vw, 80px) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.p-sub-interior__case-img-item {
  width: 49%;
}

.p-sub-interior__case-img-item:nth-of-type(2n) {
  margin-left: 2%;
}

.p-sub-interior__case-img-item:last-of-type {
  margin-top: 10px;
}

.p-sub-interior__banner .c-contact-btn {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  height: clamp(70px, 8.3333333333vw, 100px);
  font-size: clamp(20px, 2.1666666667vw, 26px);
}

@media screen and (max-width: 420px) {
  .p-sub-interior__table-dl {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .p-sub-interior__table-dt {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .p-sub-interior__table-dd {
    text-align: center;
    margin-top: 0.5em;
  }
  .p-sub-interior__case-img-item {
    width: 100%;
  }
  .p-sub-interior__case-img-item:not(:first-of-type) {
    margin-top: 10px;
  }
  .p-sub-interior__case-img-item:nth-of-type(2n) {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-sub-interior__contents {
    padding-inline: clamp(30px, 5.8333333333vw, 70px);
  }
  .p-sub-interior__sec-ttl {
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-interior__section-02 .p-sub-interior__top-ttl {
    height: clamp(160px, 16.4166666667vw, 197px);
    align-items: flex-start;
  }
  .p-sub-interior__top-ttl > span {
    text-align: left;
  }
  .p-sub-interior__hbc-inner {
    max-width: inherit;
    margin: 0;
  }
  .p-sub-interior__hbc-list {
    flex-direction: row;
    justify-content: space-between;
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-interior__hbc-item {
    width: 32%;
  }
  .p-sub-interior__hbc-item + .p-sub-interior__hbc-item {
    margin-top: 0;
  }
  .p-sub-interior__hbc-item-txt {
    font-size: clamp(10px, 1.25vw, 15px);
  }
  .p-sub-interior__mix-flex {
    flex-direction: row;
    justify-content: space-between;
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-interior__mix-img-wrap {
    width: 37.3%;
    max-width: inherit;
    margin-bottom: 0;
  }
  .p-sub-interior__mix-txt-wrap {
    width: 56.7%;
  }
  .p-sub-interior__business {
    max-width: inherit;
  }
  .p-sub-interior__business-list {
    max-width: inherit;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .p-sub-interior__business-item {
    width: 14.3%;
  }
  .p-sub-interior__business-item + .p-sub-interior__business-item {
    margin-top: 0;
  }
  .p-sub-interior__business-item:not(:first-of-type):before {
    width: clamp(10px, 1.1666666667vw, 14px);
    height: clamp(12px, 1.3333333333vw, 16px);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: absolute;
    left: inherit;
    right: 104%;
    bottom: inherit;
    top: 50%;
    transform: translate(0, -50%);
  }
  .p-sub-interior__table-flex {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1095px;
    flex-wrap: wrap;
  }
  .p-sub-interior__table {
    width: 47.5%;
  }
  .p-sub-interior__table:nth-last-of-type(2),
  .p-sub-interior__table:last-of-type {
    margin-bottom: 0;
  }
  .p-sub-interior__table:first-of-type .p-sub-interior__table-dt {
    max-width: 220px;
  }
  .p-sub-interior__case-img-item {
    width: 32.5%;
  }
  .p-sub-interior__case-img-item:not(:last-of-type) {
    margin-right: 1.25%;
  }
  .p-sub-interior__case-img-item:nth-of-type(2n) {
    margin-left: 0;
  }
  .p-sub-interior__case-img-item:last-of-type {
    margin-top: 0;
  }
  .p-sub-interior__banner .c-contact-btn {
    width: 80%;
  }
}
/*-----------------service construct  -----------------*/
.p-sub-construct {
  margin-top: clamp(80px, 8.75vw, 105px);
}

.p-sub-construct__inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(60px, 8.3333333333vw, 100px);
  max-width: 1280px;
}

.p-sub-construct__inner::after,
.p-sub-construct__inner::before {
  content: "";
  display: inline-block;
  position: absolute;
}

.p-sub-construct__inner::before {
  background-color: #f5f5f5;
  width: calc(50% + 50vw);
  height: calc(100% - 128px);
  top: 128px;
  right: 20px;
  z-index: -2;
}

@media screen and (max-width: 440px) {
  .p-sub-construct__inner::before {
    height: calc(100% - 28vw);
    top: 28vw;
  }
}
.p-sub-construct__inner::after {
  background-color: #fff;
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: 0;
  right: 20px;
  z-index: 1;
}

.p-sub-construct__contents {
  padding-inline: 20px;
}

.p-sub-construct__top-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 360px;
  margin: 0 auto;
}

.p-sub-construct__top-plus {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-block: 30px;
}

.p-sub-construct__top-thumb {
  font-size: clamp(20px, 2.6666666667vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(20px, 4.1666666667vw, 20px);
}

.p-sub-construct__top-ttl {
  font-size: clamp(18px, 1.8333333333vw, 22px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(30px, 3.3333333333vw, 40px);
  word-break: auto-phrase;
}

@media screen and (min-width: 480px) {
  .p-sub-construct__top-ttl .u-sp-only {
    display: none;
  }
}
.p-sub-construct__top-ttl span {
  font-size: 0.75em;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .p-sub-construct__top-ttl span {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
  }
}

.p-sub-construct__icon-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 920px;
  margin: clamp(80px, 10vw, 100px) auto 0;
}

.p-sub-construct__icon-item {
  width: 30%;
}

.p-sub-construct__icon-item:not(:nth-of-type(3n)) {
  margin-right: 5%;
}

@media screen and (max-width: 380px) {
  .p-sub-construct__icon-list {
    justify-content: space-between;
  }
  .p-sub-construct__icon-item {
    width: 45%;
  }
  .p-sub-construct__icon-item:last-child {
    margin: 0 auto !important;
  }
  .p-sub-construct__icon-item:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .p-sub-construct__icon-item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.p-sub-construct__top-txt {
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin: clamp(20px, 3.3333333333vw, 40px) auto 0;
  max-width: clamp(600px, 60vw, 720px);
}

.p-sub-construct__service-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: clamp(40px, 6.6666666667vw, 80px) auto 0;
  max-width: 480px;
}

.p-sub-construct__service-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(10px, 1.6666666667vw, 20px);
}

.p-sub-construct__service-item:first-of-type {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: solid 1px #999999;
}

.p-sub-construct__service-ttl-en {
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-sub-construct__service-ttl-en-center {
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 20px;
}

.p-sub-construct__service-ttl-jp {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 0.5em;
}

.p-sub-construct__service-txt-main {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: clamp(50px, 3.3333333333vw, 40px);
}

.p-sub-construct__service-txt {
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: clamp(30px, 2.75vw, 33px);
}

.p-sub-construct__style-flex {
  margin: clamp(60px, 10vw, 120px) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
}

@media screen and (max-width: 768px) {
  .p-sub-construct__style-flex {
    margin: clamp(30px, 10vw, 120px) auto 0;
  }
}
.p-sub-construct__style-img-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.p-sub-construct__style-img-item {
  width: 24.6%;
  position: relative;
}

.p-sub-construct__style-img-item:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  background-image: url("../img/service/construct-arrow.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(20px, 3.3333333333vw, 40px);
  aspect-ratio: 40/7;
  position: absolute;
  top: 50%;
  left: 118%;
  transform: translateY(-50%);
}

.p-sub-construct__merit-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: clamp(30px, 4.1666666667vw, 50px);
}

.p-sub-construct__merit-item {
  width: 47.6%;
}

@media screen and (max-width: 420px) {
  .p-sub-construct__merit-list {
    flex-direction: column;
    align-items: center;
  }
  .p-sub-construct__merit-item {
    width: 100%;
  }
  .p-sub-construct__merit-item:not(:first-of-type) {
    margin-top: 30px;
  }
}
.p-sub-construct__style-ttl {
  font-size: clamp(16px, 2.6666666667vw, 32px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  white-space: nowrap;
}

.p-sub-construct__style-ttl .u-large {
  font-size: 1.25em;
  font-weight: 700;
  display: block;
}

.p-sub-construct__style-ttl .u-small {
  font-size: 0.9375em;
  font-weight: 700;
  display: block;
}

.p-sub-construct__style-txt {
  font-size: clamp(12px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: clamp(30px, 4.3333333333vw, 52px);
}

.p-sub-construct__style-img-txt {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  margin-top: 1.25em;
  text-align: center;
}

.p-sub-construct__middle-ttl {
  text-align: center;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  margin-top: clamp(80px, 10vw, 120px);
  word-break: auto-phrase;
}

.p-sub-construct__middle-ttl span {
  font-size: 1.33em;
  font-weight: 700;
}

.p-sub-construct__negotiation-list {
  background-color: #fff;
  border: solid 1px #999;
  display: flex;
  max-width: 1090px;
  margin: clamp(30px, 4.1666666667vw, 50px) auto 0;
  padding: clamp(20px, 2.25vw, 27px) 7.3%;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p-sub-construct__style-ttl {
    white-space: normal;
    font-size: clamp(18px, 5vw, 28px);
    line-height: 1.4;
    text-align: center;
  }
  .p-sub-construct__style-ttl .u-large {
    font-size: 1.2em;
  }
  .p-sub-construct__style-ttl .u-small {
    font-size: 0.9375em;
    margin-top: 30px;
  }
}
@media screen and (max-width: 420px) {
  .p-sub-construct__style-ttl .u-small {
    font-size: 0.75em;
  }
}
.p-sub-construct__negotiation-item.item-01 {
  display: none;
}

.p-sub-construct__negotiation-item.item-02 {
  width: 30.1%;
}

.p-sub-construct__negotiation-item.item-03 {
  width: 18%;
}

.p-sub-construct__negotiation-item.item-04 {
  width: 34.4%;
}

@media screen and (max-width: 600px) {
  .p-sub-construct__negotiation-list {
    flex-direction: column;
    max-width: 320px;
    margin-inline: auto;
    align-items: center;
  }
  .p-sub-construct__negotiation-item.item-01 {
    display: block;
    width: 52.5%;
  }
  .p-sub-construct__negotiation-item.item-02 {
    width: 87.5%;
    margin-top: 30px;
  }
  .p-sub-construct__negotiation-item.item-03 {
    display: none;
  }
  .p-sub-construct__negotiation-item.item-04 {
    width: 100%;
    margin-top: 20px;
  }
}
.p-sub-construct__sec-ttl {
  margin: clamp(30px, 3.5971223022vw, 50px) auto 0;
  max-width: inherit;
}

.p-sub-construct__sec-ttl + .p-sub-construct__sec-ttl {
  margin-top: clamp(15px, 1.4388489209vw, 20px);
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-construct__inner {
    max-width: 1390px;
  }
  .p-sub-construct__inner::after,
  .p-sub-construct__inner::before {
    right: 25px;
  }
  .p-sub-construct__inner::before {
    top: clamp(80px, 13.309352518vw, 185px);
    height: calc(100% - clamp(80px, 13.309352518vw, 185px));
  }
  .p-sub-construct__contents {
    padding-inline: clamp(30px, 5.8333333333vw, 70px);
  }
  .p-sub-construct__top-flex {
    flex-direction: row;
    justify-content: space-between;
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-construct__top-item {
    width: 43.3%;
  }
  .p-sub-construct__top-plus {
    padding-bottom: 7%;
    margin-block: 0;
  }
  .p-sub-construct__icon-item {
    width: 17.4%;
  }
  .p-sub-construct__icon-item:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .p-sub-construct__icon-item:not(:last-of-type) {
    margin-right: 3.25%;
  }
  .p-sub-construct__service-list {
    max-width: inherit;
    margin-inline: 0;
    flex-direction: row;
    align-items: flex-start;
  }
  .p-sub-construct__service-item {
    width: 50%;
    padding-left: 4.2%;
    margin-bottom: 0;
    padding-bottom: clamp(30px, 7vw, 84px);
  }
  .p-sub-construct__service-item:first-of-type {
    padding-right: 4.2%;
    border-bottom: transparent;
    border-right: solid 1px #999999;
    margin-bottom: 0;
  }
  .p-sub-construct__style-flex {
    flex-direction: row;
    justify-content: space-between;
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-construct__style-txt-wrap {
    width: 48%;
  }
  .p-sub-construct__style-img-wrap {
    width: 48%;
  }
  .p-sub-construct__style-img-list {
    margin-top: 0;
  }
  .p-sub-construct__style-img-item:not(:last-of-type)::after {
    left: 110%;
  }
  .p-sub-construct__sec-ttl {
    width: clamp(600px, 54.1666666667vw, 650px);
  }
}
/*----------------- workflow  -----------------*/
.p-sub-workflow {
  margin-top: clamp(80px, 8.75vw, 105px);
}

.p-sub-workflow__sec-ttl {
  font-size: clamp(40px, 5.8333333333vw, 70px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.p-sub-workflow__sec-subttl {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  margin-top: 1.4em;
}

.p-sub-workflow__top-txt-main {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(50px, 6.6666666667vw, 80px);
}

.p-sub-workflow__top-txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  margin-top: clamp(20px, 2.5vw, 30px);
}

.p-sub-workflow__list {
  margin-top: clamp(50px, 6.6666666667vw, 80px);
  background-color: #f5f5f5;
  position: relative;
  padding: clamp(30px, 4.1666666667vw, 50px) clamp(20px, 5vw, 60px) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 320px;
  margin-inline: auto;
}

.p-sub-workflow__list::before {
  content: "";
  display: inline-block;
  background-color: #fff;
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  position: absolute;
  bottom: 0;
  left: 0;
  clip-path: polygon(100% 100%, 0 100%, 0 0);
}

.p-sub-workflow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 14%;
  margin-bottom: clamp(30px, 4.1666666667vw, 50px);
}

.interior-workflow-page .p-sub-workflow__item {
  width: 16%;
}

.p-sub-workflow__item-number {
  font-size: clamp(20px, 2.6666666667vw, 32px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #ccc;
}

.p-sub-workflow__item-vertical {
  writing-mode: vertical-rl;
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  padding-top: 1em;
}

@media screen and (max-width: 767px) {
  .p-sub-workflow__list {
    flex-direction: column;
    padding-bottom: clamp(30px, 4.1666666667vw, 50px);
  }
  .p-sub-workflow__item,
  .interior-workflow-page .p-sub-workflow__item {
    width: inherit;
    flex-direction: row;
    margin-bottom: 1em;
  }
  .p-sub-workflow__item-vertical {
    writing-mode: inherit;
    padding-top: 0;
    padding-left: 1em;
  }
}
.p-sub-workflow__flow-section {
  margin-top: clamp(60px, 10vw, 120px);
}

.p-sub-workflow__flow-item {
  position: relative;
  padding-left: clamp(40px, 4.8333333333vw, 58px);
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
}

.p-sub-workflow__flow-item::after,
.p-sub-workflow__flow-item::before {
  content: "";
  display: inline-block;
  position: absolute;
}

.p-sub-workflow__flow-item::before {
  width: 1px;
  height: 100%;
  top: clamp(15px, 1.6666666667vw, 20px);
  left: clamp(4px, 0.5416666667vw, 6.5px);
  background-color: #ccc;
}

.p-sub-workflow__flow-item::after {
  width: clamp(8px, 1.0833333333vw, 13px);
  height: clamp(8px, 1.0833333333vw, 13px);
  background-color: #555;
  left: 0;
  top: clamp(15px, 1.6666666667vw, 20px);
  transform: translateY(-50%);
  border-radius: 50vh;
}

.p-sub-workflow__flow-item:not(:last-of-type) {
  padding-bottom: clamp(60px, 6.6666666667vw, 80px);
}

.p-sub-workflow__flow-item-ttl {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  display: flex;
}

.p-sub-workflow__flow-item-ttl span {
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 3.3333333333vw, 40px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #999;
  width: clamp(52px, 6.5vw, 78px);
}

.p-sub-workflow__flow-item-txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: clamp(20px, 2.0833333333vw, 25px);
}

.p-sub-workflow .c-entry-flex {
  background-color: #f5f5f5;
  margin-top: clamp(20px, 2.0833333333vw, 25px);
  padding: clamp(10px, 1.25vw, 15px) clamp(10px, 2.9166666667vw, 35px);
  margin-bottom: 30px;
}

.p-sub-workflow .c-entry-txt {
  font-size: clamp(16px, 1.3333333333vw, 16px);
}

.p-sub-workflow .c-entry-tel-wrap,
.p-sub-workflow .c-entry-form-wrap {
  padding: 30px 10px;
}

.p-sub-workflow .c-entry-dl {
  justify-content: center;
  margin-top: clamp(8px, 0.9166666667vw, 11px);
}

@media screen and (max-width: 375px) {
  .p-sub-workflow .c-entry-dl {
    flex-direction: row;
    align-items: center;
  }
  .p-sub-workflow .c-entry-dt {
    margin-bottom: 0;
  }
}
.p-sub-workflow .c-entry-dl + .c-entry-dl {
  margin-top: 0;
}

.p-sub-workflow .c-entry-dt,
.p-sub-workflow .c-entry-dd {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  line-height: 1.8;
}

.p-sub-workflow .c-entry-caution {
  font-size: clamp(10px, 1.0833333333vw, 13px);
  margin-top: clamp(8px, 0.9166666667vw, 11px);
}

.p-sub-workflow .c-entry-btn-area {
  margin-top: clamp(20px, 2.5vw, 30px);
}

.p-sub-workflow .c-contact-btn {
  height: clamp(40px, 4.6666666667vw, 56px);
  font-size: clamp(16px, 1.5vw, 18px);
}

.p-sub-workflow .c-contact-btn::before {
  width: clamp(18px, 1.75vw, 21px);
}

.p-sub-workflow__btn-area {
  margin-top: clamp(100px, 12.5vw, 150px);
}

.p-sub-workflow .btn_design01 .flex,
.btn_design01 a {
  margin: 0 auto;
}

.construct-workflow-page .p-sub-workflow .btn_design01 .flex {
  max-width: 240px;
}

.interior-workflow-page .p-sub-workflow .btn_design01 .flex {
  max-width: 210px;
}

.p-sub-workflow__flow-img-wrap {
  margin-top: 20px;
  max-width: 360px;
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-workflow__list {
    padding: clamp(30px, 4.1666666667vw, 50px) clamp(20px, 5vw, 60px);
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-workflow__item {
    margin-bottom: 0;
    width: 7%;
  }
  .interior-workflow-page .p-sub-workflow__item {
    width: 8%;
  }
  .p-sub-workflow__flow-item {
    max-width: inherit;
    margin-block: 0;
    flex-direction: row;
    justify-content: space-between;
  }
  .p-sub-workflow__flow-txt-wrap {
    width: 54.2%;
    min-width: 430px;
    margin-right: 30px;
  }
  .p-sub-workflow__flow-img-wrap {
    width: 37.5%;
    max-width: inherit;
    margin-top: 0;
  }
  .p-sub-workflow .c-entry-flex {
    margin-bottom: 0;
  }
  .p-sub-workflow .c-entry-tel-wrap {
    padding: 10px 5% 10px 0;
  }
  .p-sub-workflow .c-entry-form-wrap {
    padding: 10px 0 10px 5%;
  }
}
/*----------------- Works -----------------*/
.p-sub-works input[type="radio"],
.p-sub-works input[type="checkbox"] {
  display: none;
}

.p-sub-works__sort-wrap {
  background-color: #f5f5f5;
  padding: clamp(20px, 3.3333333333vw, 40px) clamp(15px, 4.1666666667vw, 50px);
}

.p-sub-works__sort-list {
  display: flex;
  flex-direction: column;
  padding-inline: clamp(5px, 1.6666666667vw, 20px);
}

.p-sub-works__sort-list + .p-sub-works__sort-list {
  margin-top: clamp(20px, 2.5vw, 30px);
  padding-top: clamp(20px, 2.5vw, 30px);
  border-top: solid 1px #cccccc;
}

.p-sub-works__sort-list dt {
  position: relative;
  padding-left: 1em;
  width: clamp(160px, 16.6666666667vw, 200px);
  font-size: clamp(12px, 1.1666666667vw, 14px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
  display: flex;
  align-items: center;
}

.p-sub-works__sort-list dt span {
  text-transform: uppercase;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-right: 1em;
}

.p-sub-works__sort-list dt::before {
  content: "";
  display: inline-block;
  width: clamp(6px, 0.6666666667vw, 8px);
  height: clamp(6px, 0.6666666667vw, 8px);
  border-radius: 50vh;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-sub-works__sort-list.sort-list-01 dt::before {
  background-color: #f27d8c;
}

.p-sub-works__sort-list.sort-list-02 dt::before {
  background-color: #4f73e9;
}

.p-sub-works__sort-list dd {
  display: flex;
  flex-direction: column;
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.p-sub-works__btn-area {
  width: 100%;
  margin-top: clamp(20px, 2.5vw, 30px);
}

.p-sub-works__btn {
  color: #fff;
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  padding: clamp(8px, 0.8333333333vw, 10px) clamp(32px, 3.3333333333vw, 40px);
  background-color: #333;
  display: inline-block;
  margin-top: 0.5em;
}

.p-sub-works__category-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(40px, 7.0833333333vw, 85px);
  margin-bottom: clamp(30px, 6vw, 72px);
}

.p-sub-works__category-list.sp {
  display: none;
}

@media (max-width: 767px) {
  .p-sub-works__category-list.pc {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 16px;
    display: none;
  }
  .p-sub-works__category-list.sp {
    display: block;
    margin-bottom: 48px;
  }
}
.p-sub-works__category-item {
  text-transform: uppercase;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  padding-left: 1.2em;
  position: relative;
}

.p-sub-works__category-item span {
  font-weight: 500;
  font-size: 14px;
}

.p-sub-works__category-item span strong {
  font-weight: 500;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 767px) {
  .p-sub-works__category-item {
    width: 100%;
  }
}
.p-sub-works__category-item::before {
  content: "";
  display: inline-block;
  width: clamp(12px, 1.25vw, 15px);
  height: clamp(12px, 1.25vw, 15px);
  position: absolute;
  left: 0;
  top: 0.95em;
  transform: translateY(-50%);
  border-radius: 20px;
}

.p-sub-works__category-item:first-of-type::before {
  background-color: #f27d8c;
}

.p-sub-works__category-item:last-of-type::before {
  background-color: #4f73e9;
}

.p-sub-works__category-item + .p-sub-works__category-item {
  margin-left: 2em;
}

@media (max-width: 767px) {
  .p-sub-works__category-item + .p-sub-works__category-item {
    margin-left: 0;
  }
  .p-sub-works__category-item:first-of-type {
    margin-bottom: 10px;
  }
}
.p-sub-works__list {
  display: flex;
  flex-wrap: wrap;
}

.p-sub-works__item {
  width: 46%;
  margin-bottom: clamp(40px, 6.25vw, 75px);
}

.p-sub-works__item:nth-of-type(2n + 1) {
  margin-right: 8%;
}

.p-sub-works__img-wrap {
  width: 100%;
  aspect-ratio: 360/240;
}

.p-sub-works__ttl {
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: clamp(16px, 1.6666666667vw, 20px);
}

.p-sub-works__pager-area {
  margin-top: clamp(15px, 2.0833333333vw, 25px);
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-works__sort-list {
    flex-direction: row;
    align-items: baseline;
  }
  .p-sub-works__sort-list dt {
    flex: 0 0 auto;
  }
  .p-sub-works__sort-list dd {
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: -2em;
  }
  .p-sub-works__sort-item {
    margin-left: 2em;
  }
  .p-sub-works__item {
    width: 31%;
  }
  .p-sub-works__item:nth-of-type(2n + 1) {
    margin-right: 0;
  }
  .p-sub-works__item:not(:nth-of-type(3n)) {
    margin-right: 3.5%;
  }
  .p-sub-works__btn-area {
    margin-left: 2em;
  }
}
@media screen and (max-width: 600px) {
  .p-sub-works__list {
    max-width: 420px;
    margin: 0 auto;
  }
  .p-sub-works__item {
    width: 100%;
  }
  .p-sub-works__item:nth-of-type(2n + 1) {
    margin-right: 0;
  }
}
/*----------------- Works detail -----------------*/
.works-detail-page .l-section.p-sub-detail {
  margin-top: 0;
}

.p-sub-detail__mv {
  padding-top: 5em;
}

.p-sub-detail__flex {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
  padding-top: clamp(40px, 5.4166666667vw, 65px);
}

.p-sub-detail__flex:not(:has(.p-sub-detail__right)) {
  flex-direction: unset;
}

.p-sub-detail__data-ttl {
  font-weight: bold; /* 任意 */
  border-bottom: 1px solid #ccc; /* ← 罫線 */
  padding-bottom: 0.5em; /* 罫線との間隔 */
  margin-bottom: 1em; /* 下の内容との間隔 */
}

.p-sub-detail__right {
  max-width: 420px;
  margin: 0 auto clamp(30px, 3.3333333333vw, 40px);
}

.p-sub-detail__right-inner {
  background-color: #f5f5f5;
  padding: clamp(30px, 5.2151238592vw, 40px) clamp(20px, 7.8226857888vw, 60px);
}

@media (max-width: 767px) {
  .p-sub-detail__right {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
.p-sub-detail__data-ttl {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: clamp(20px, 2.5vw, 30px);
}

.p-sub-detail__data-dl {
  display: flex;
}

.p-sub-detail__data-dl + .p-sub-detail__data-dl {
  margin-top: 1em;
}

.p-sub-detail__data-dl dt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color: #767676;
  width: 4em;
  flex: 0 0 auto;
}

.p-sub-detail__data-dl dd {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
}

.works-detail-page .p-sub-works__category-list {
  margin-top: 0;
  margin-bottom: clamp(20px, 3.3333333333vw, 40px);
}

@media (max-width: 767px) {
  .works-detail-page .p-sub-works__category-list {
    margin-bottom: 48px;
  }
}
.p-sub-detail__ttl {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-sub-detail__txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: clamp(20px, 2.5vw, 30px);
}

.p-sub-detail__link {
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

.p-sub-detail__link span {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: clamp(20px, 2.5vw, 30px);
  display: block;
}

.p-sub-detail__link[target="_blank"] span::after {
  content: "";
  display: inline-block;
  background-image: url("../img/common/icon-blank.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(10px, 1vw, 12px);
  aspect-ratio: 1;
  margin-left: 0.5em;
}

.p-sub-detail__img-list {
  margin-top: clamp(50px, 8.3333333333vw, 100px);
}

.p-sub-detail__img-wrap + .p-sub-detail__img-wrap {
  margin-top: clamp(30px, 4.1666666667vw, 50px);
}

.p-sub-detail__btn-area {
  padding-top: clamp(90px, 15vw, 180px);
}

.p-sub-detail__btn-area .btn_design01 a {
  max-width: 180px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .p-sub-detail__flex {
    flex-direction: row-reverse;
    justify-content: space-between;
    max-width: inherit;
    margin: 0;
    align-items: flex-start;
    padding-top: 0;
  }
  .p-sub-detail__left {
    width: 71%;
    padding-top: clamp(40px, 5.4166666667vw, 65px);
  }
  .p-sub-detail__right {
    width: 22vw;
    max-width: 300px;
    margin: 0;
    min-width: 220px;
    margin-left: 4%;
    padding-top: clamp(40px, 5.4166666667vw, 65px);
  }
  .p-sub-detail__right-inner {
    padding: clamp(30px, 3.3333333333vw, 40px) clamp(20px, 3.3333333333vw, 40px);
  }
  /*DATA固定*/
  .p-sub-detail__right.js-fixed {
    position: fixed;
    right: 25px;
    top: 120px;
  }
  .p-sub-detail__flex.js-fixed {
    flex-direction: row;
  }
  .p-sub-detail__right.js-fixed.js-scroll {
    position: relative;
    right: inherit;
    top: inherit;
    transform: translateX(0);
  }
  .p-sub-detail__flex.js-fixed.js-scroll {
    flex-direction: row-reverse;
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) and (min-width: 1250px) {
  .p-sub-detail__right.js-fixed {
    right: 50vw;
    transform: translateX(600px);
  }
}
/*----------------- recruit -----------------*/
/*section-01*/
.p-sub-recruit__section-01 {
  margin-top: clamp(80px, 8.75vw, 105px);
}

.p-sub-recruit__section-01 .p-sub-recruit__inner {
  padding-top: 30px;
  padding-bottom: clamp(30px, 3.5833333333vw, 43px);
  position: relative;
}

.p-sub-recruit__section-01 .p-sub-recruit__inner::after,
.p-sub-recruit__section-01 .p-sub-recruit__inner::before {
  content: "";
  display: inline-block;
  position: absolute;
}

.p-sub-recruit__section-01 .p-sub-recruit__inner::before {
  width: calc(30% + 50vw);
  height: 100%;
  background-color: #f5f5f5;
  top: 0;
  right: 20%;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .p-sub-recruit__section-01 .p-sub-recruit__inner::before {
    width: 100%;
    right: 0%;
  }
}
@media screen and (max-width: 768px) {
  .p-sub-recruit__section-01 .p-sub-recruit__inner::after {
    display: none;
  }
}
.p-sub-recruit__section-01 .p-sub-recruit__inner::after {
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  background-color: #fff;
  bottom: 0;
  right: 20%;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.p-sub-recruit__flex {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
}

.p-sub-recruit__ttl-main {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.p-sub-recruit__ttl-sub {
  font-size: clamp(16px, 2.3333333333vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 1em;
}

.p-sub-recruit__txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: clamp(30px, 4.1666666667vw, 50px);
}

.p-sub-recruit__txt + .p-sub-recruit__txt {
  margin-top: 1.8em;
}

.p-sub-recruit__btn-flex {
  display: flex;
  margin-top: clamp(50px, 6.6666666667vw, 80px);
}

.p-sub-recruit__btn-area:first-of-type {
  min-width: clamp(110px, 10.8333333333vw, 130px);
}

.p-sub-recruit__btn-area:last-of-type {
  min-width: clamp(140px, 13.3333333333vw, 160px);
  margin-left: clamp(20px, 6.6666666667vw, 80px);
}

.p-sub-recruit__img-wrap {
  margin-top: clamp(50px, 6.6666666667vw, 80px);
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-recruit__flex {
    flex-direction: row;
    max-width: inherit;
    margin-inline: 0;
    z-index: 1;
  }
  .p-sub-recruit__txt-wrap {
    width: 58.3%;
    flex: 0 0 auto;
    z-index: 3;
  }
  .p-sub-recruit__txt {
    max-width: 620px;
  }
  .p-sub-recruit__img-wrap {
    width: 45.7%;
    flex: 0 0 auto;
    margin-left: -4%;
    margin-top: 0;
  }
}
/*section-02*/
.p-sub-recruit__section-02 {
  margin-top: clamp(80px, 10.5833333333vw, 127px);
}

.p-sub-recruit__sec-ttl {
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(40px, 6.6666666667vw, 80px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #999;
  font-family: "Poppins", sans-serif;
}

.p-sub-recruit__sec-subttl {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 0.5em;
  text-align: center;
}

.p-sub-recruit__career-flex {
  display: flex;
  flex-direction: column;
  max-width: 360px;
  margin: clamp(50px, 6.6666666667vw, 80px) auto 0;
}

.p-sub-recruit__career-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-sub-recruit__career-item + .p-sub-recruit__career-item {
  margin-top: 40px;
}

.p-sub-recruit__career-number {
  font-family: "Poppins", sans-serif;
  color: #999;
  font-size: clamp(24px, 3.3333333333vw, 40px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-sub-recruit__career-ttl {
  font-size: clamp(16px, 1.6666666667vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 0.7em;
  text-align: center;
  white-space: nowrap;
}

.p-sub-recruit__career-img-wrap {
  width: 100%;
  max-width: 240px;
  margin-top: clamp(20px, 3.8333333333vw, 46px);
}

.p-sub-recruit__career-txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: clamp(20px, 2.9166666667vw, 35px);
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-recruit__career-flex {
    flex-direction: row;
    justify-content: space-between;
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-recruit__career-item {
    width: 29.2%;
  }
  .p-sub-recruit__career-item + .p-sub-recruit__career-item {
    margin-top: 0;
  }
}
/*section-03*/
.p-sub-recruit__section-03 {
  margin-top: clamp(100px, 16.6666666667vw, 200px);
}

.p-sub-recruit__project-txt {
  text-align: center;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: clamp(50px, 6.6666666667vw, 80px);
}

.p-sub-recruit__project-wrap {
  margin: clamp(40px, 4.1666666667vw, 50px) auto 0;
  max-width: 480px;
}

.p-sub-recruit__project-slider-flex {
  display: flex;
  flex-direction: column;
  padding-inline: 40px;
}

.p-sub-recruit__project-txt-wrap {
  background-color: #f5f5f5;
  padding: clamp(20px, 6.6666666667vw, 80px) clamp(20px, 5vw, 60px);
  position: relative;
}

.p-sub-recruit__project-txt-wrap::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  background-color: #fff;
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.p-sub-recruit__project-ttl {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  margin-bottom: clamp(30px, 4.1666666667vw, 50px);
}

.p-sub-recruit__project-ttl span {
  display: block;
}

.p-sub-recruit__project-dl {
  display: flex;
}

.p-sub-recruit__project-dl + .p-sub-recruit__project-dl {
  margin-top: 1em;
}

.p-sub-recruit__project-dt {
  flex: 0 0 auto;
  color: #767676;
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  width: clamp(60px, 6.25vw, 75px);
}

.p-sub-recruit__project-dd {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.p-sub-recruit__project-img-wrap {
  width: 100%;
  aspect-ratio: 740/450;
  margin-top: 20px;
  z-index: 1;
}

.p-sub-recruit__project-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*swiper*/
.p-sub-recruit__project-wrap .swiper-button-prev {
  left: 0;
  width: clamp(35px, 5.8333333333vw, 70px);
  aspect-ratio: 26/71;
  background-image: url("../img/recruit/arrow-prev.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.p-sub-recruit__project-wrap .swiper-button-next {
  right: 0 !important;
  width: clamp(35px, 5.8333333333vw, 70px) !important;
  aspect-ratio: 26/71 !important;
  background-image: url("../img/recruit/arrow-next.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
}

.p-sub-recruit__project-wrap .swiper-button-next svg,
.p-sub-recruit__project-wrap .swiper-button-prev svg {
  display: none;
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-recruit__project-wrap {
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-recruit__project-slider-flex {
    flex-direction: row;
    align-items: flex-start;
  }
  .p-sub-recruit__project-txt-wrap {
    margin-top: clamp(50px, 7.0833333333vw, 85px);
    padding: clamp(50px, 9.75vw, 117px) 21.7% clamp(50px, 9.75vw, 117px)
      clamp(30px, 6.6666666667vw, 80px);
    width: 60%;
    flex: 0 0 auto;
  }
  .p-sub-recruit__project-img-wrap {
    width: 61.7%;
    flex: 0 0 auto;
    margin-left: -21.7%;
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .p-sub-recruit__project-wrap {
    width: 100vw;
    margin-left: -20px;
  }
  .p-sub-recruit__project-wrap .swiper-button-next {
    right: 10px !important;
  }
  .p-sub-recruit__project-wrap .swiper-button-prev {
    left: 10px !important;
  }
}
/*section-04*/
.p-sub-recruit__section-04 {
  margin-top: clamp(100px, 16.6666666667vw, 200px);
}

.p-sub-recruit__charm-list {
  margin: clamp(70px, 9.6666666667vw, 116px) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 480px;
}

.p-sub-recruit__charm-item.item-03,
.p-sub-recruit__charm-item.item-02,
.p-sub-recruit__charm-item.item-01 {
  background-color: #f5f5f5;
  position: relative;
}

.p-sub-recruit__charm-item.item-03::after,
.p-sub-recruit__charm-item.item-02::after,
.p-sub-recruit__charm-item.item-01::after {
  content: "";
  display: inline-block;
  height: 9.3%;
  aspect-ratio: 1;
  background-color: #fff;
  clip-path: polygon(100% 100%, 0 100%, 0 0);
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-sub-recruit__charm-item.item-02::after {
  height: 20%;
}

.p-sub-recruit__charm-item {
  margin-bottom: clamp(30px, 4.5833333333vw, 55px);
}

.p-sub-recruit__charm-item.item-01 {
  width: 100%;
  padding-inline: clamp(20px, 6.6666666667vw, 100px);
  padding-bottom: clamp(30px, 3.5833333333vw, 43px);
}

.item-01 .p-sub-recruit__charm-ttl {
  font-size: clamp(20px, 2.6666666667vw, 32px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  padding-top: 0.8em;
}

.item-01 .p-sub-recruit__charm-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item-01 img {
  max-width: 200px;
}

.item-01 .p-sub-recruit__charm-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  word-break: auto-phrase;
}

.item-01 .p-sub-recruit__charm-txt + .p-sub-recruit__charm-txt {
  margin-top: 1em;
}

.item-01 .p-sub-recruit__charm-txt span {
  font-size: 4em;
  font-weight: 400;
  font-family: "Playfair", serif;
  color: #fd829b;
  padding-inline: 0.1em;
  line-height: 0.7;
}

.p-sub-recruit__charm-flex-02 {
  display: flex;
  flex-direction: column;
}

.p-sub-recruit__charm-flex-left {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.p-sub-recruit__charm-item.item-02 {
  width: 100%;
  margin-bottom: clamp(30px, 4.5833333333vw, 55px);
  padding: 20px clamp(30px, 4.8333333333vw, 58px) 20px
    clamp(30px, 7.6666666667vw, 92px);
}

.item-02 .p-sub-recruit__charm-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-02 .p-sub-recruit__charm-txt-wrap {
  width: 61.7%;
}

.item-02 .p-sub-recruit__charm-img-wrap {
  width: 33.6%;
}

.item-02 .p-sub-recruit__charm-ttl {
  font-size: clamp(20px, 2.6666666667vw, 32px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.item-02 .p-sub-recruit__charm-txt {
  font-size: clamp(14px, 1.6666666667vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  margin-top: 1.2em;
}

.p-sub-recruit__charm-item.item-09,
.p-sub-recruit__charm-item.item-08,
.p-sub-recruit__charm-item.item-07,
.p-sub-recruit__charm-item.item-06,
.p-sub-recruit__charm-item.item-05,
.p-sub-recruit__charm-item.item-03,
.p-sub-recruit__charm-item.item-04 {
  width: 47.07%;
}

.p-sub-recruit__charm-item.item-08,
.p-sub-recruit__charm-item.item-06,
.p-sub-recruit__charm-item.item-04 {
  margin-left: 5.86%;
}

.p-sub-recruit__charm-flex-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-recruit__charm-list {
    justify-content: space-between;
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-recruit__charm-item.item-03::after,
  .p-sub-recruit__charm-item.item-02::after,
  .p-sub-recruit__charm-item.item-01::after {
    height: 18.65%;
  }
  .p-sub-recruit__charm-flex-02 {
    flex-direction: row;
    justify-content: space-between;
  }
  .item-01 .p-sub-recruit__charm-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .item-01 .p-sub-recruit__charm-flex img {
    width: 24%;
    max-width: 285px;
  }
  .item-01 .p-sub-recruit__charm-txt-wrap {
    width: 66%;
  }
  .item-01 .p-sub-recruit__charm-txt {
    text-align: left;
    white-space: nowrap;
    font-size: clamp(14px, 1.6666666667vw, 20px);
  }
  .item-01 .p-sub-recruit__charm-txt + .p-sub-recruit__charm-txt {
    margin-top: 0;
  }
  .p-sub-recruit__charm-flex-left {
    width: 65.5%;
  }
  .p-sub-recruit__charm-item.item-02 {
    padding-block: clamp(10px, 1vw, 12px);
  }
  .p-sub-recruit__charm-flex-right {
    width: 30.8%;
  }
  .p-sub-recruit__charm-item.item-09,
  .p-sub-recruit__charm-item.item-08,
  .p-sub-recruit__charm-item.item-07 {
    width: 30.8%;
  }
  .p-sub-recruit__charm-item.item-06,
  .p-sub-recruit__charm-item.item-05 {
    width: 100%;
  }
  .p-sub-recruit__charm-item.item-08,
  .p-sub-recruit__charm-item.item-06,
  .p-sub-recruit__charm-item.item-04 {
    margin-left: 0;
  }
}
@media screen and (max-width: 450px) {
  .p-sub-recruit__charm-list {
    max-width: 280px;
  }
  .p-sub-recruit__charm-item.item-09,
  .p-sub-recruit__charm-item.item-08,
  .p-sub-recruit__charm-item.item-07,
  .p-sub-recruit__charm-item.item-06,
  .p-sub-recruit__charm-item.item-05,
  .p-sub-recruit__charm-item.item-04,
  .p-sub-recruit__charm-item.item-03 {
    width: 100%;
    margin-left: 0;
  }
  .item-02 .p-sub-recruit__charm-flex {
    flex-direction: column;
  }
  .item-02 .p-sub-recruit__charm-img-wrap,
  .item-02 .p-sub-recruit__charm-txt-wrap {
    width: 100%;
  }
  .item-02 .p-sub-recruit__charm-img-wrap {
    margin-top: 20px;
  }
  .p-sub-recruit__charm-item.item-02::after {
    height: 9.3%;
  }
  .item-02 .p-sub-recruit__charm-ttl,
  .item-01 .p-sub-recruit__charm-ttl {
    font-size: 24px;
  }
}
/*section-05*/
.p-sub-recruit__section-05 {
  margin-top: clamp(70px, 12.0833333333vw, 145px);
  margin-bottom: clamp(120px, 20vw, 240px);
}

.p-sub-recruit__interview-txt {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: clamp(50px, 6.6666666667vw, 80px);
}

.p-sub-recruit__interview-item {
  margin: clamp(40px, 4.6666666667vw, 56px) auto 0;
  background-image: url("../img/recruit/recruit-img-16.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  min-height: 294px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 clamp(20px, 4.1666666667vw, 50px) clamp(20px, 2.0833333333vw, 25px);
  z-index: 1;
  position: relative;
  max-width: 480px;
  transition: all 0.3s;
}

.p-sub-recruit__interview-item:hover {
  filter: brightness(1.1);
}

.p-sub-recruit__interview-item::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 66.67%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-sub-recruit__interview-item-ttl {
  color: #fff;
  font-size: clamp(30px, 4.1666666667vw, 50px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  z-index: 3;
  margin-bottom: 20px;
}

.p-sub-recruit__interview-item-ttl span {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-left: 1.2em;
  font-family: "Noto Sans JP", sans-serif;
}

.p-sub-recruit__interview-type-btn-area,
.p-sub-recruit__interview-btn-area {
  z-index: 3;
  width: 150px;
}

.p-sub-recruit__interview-type-btn-area .btn_design01 .flex,
.p-sub-recruit__interview-item .btn_design01 .flex {
  color: #fff;
}

.p-sub-recruit__interview-type-btn-area .btn_design01 .flex::before,
.p-sub-recruit__interview-item .btn_design01 .flex::before {
  background-image: url("../img/top/icon_link_white.svg");
}

.p-sub-recruit__interview-item:hover .btn_design01 .flex::before {
  left: 8px;
}

.p-sub-recruit__interview-flex {
  margin: clamp(60px, 16.6666666667vw, 200px) auto 0;
  max-width: 480px;
  display: flex;
  flex-direction: column;
}

.p-sub-recruit__interview-type {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.p-sub-recruit__interview-type:hover {
  filter: brightness(1.1);
}

.p-sub-recruit__interview-type + .p-sub-recruit__interview-type {
  margin-top: 20px;
}

.p-sub-recruit__interview-type:first-of-type {
  background-image: url("../img/recruit/recruit-img-17.webp");
}

.p-sub-recruit__interview-type:last-of-type {
  background-image: url("../img/recruit/recruit-img-18.webp");
}

.p-sub-recruit__interview-type-ttl {
  font-size: clamp(30px, 4.1666666667vw, 50px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.p-sub-recruit__interview-type-ttl-jp {
  color: #fff;
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 0.5em;
}

.p-sub-recruit__interview-type-btn-area {
  margin-top: clamp(30px, 2.8333333333vw, 34px);
}

.p-sub-recruit__interview-type:hover .btn_design01 .flex::before {
  left: 8px;
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-recruit__interview-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-recruit__interview-item-ttl {
    margin-bottom: 0;
  }
  .p-sub-recruit__interview-flex {
    max-width: inherit;
    margin-inline: 0;
    flex-direction: row;
    justify-content: space-between;
  }
  .p-sub-recruit__interview-type {
    width: 48.3%;
  }
  .p-sub-recruit__interview-type + .p-sub-recruit__interview-type {
    margin-top: 0;
  }
}
.recruit-page .c-contact-btn {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  height: clamp(70px, 8.3333333333vw, 100px);
  font-size: clamp(20px, 2.1666666667vw, 26px);
}

.recruit-page .c-contact-btn::before {
  width: clamp(24px, 2.8333333333vw, 34px);
}

/*----------------- recruit/new-grad.php -----------------*/
.p-sub-recruit-detail__top-flex {
  display: flex;
  flex-direction: column;
  margin: clamp(60px, 7.75vw, 93px) auto 0;
  max-width: 480px;
}

.p-sub-recruit-detail__top-img-wrap {
  margin-top: 30px;
}

.p-sub-recruit-detail__top-ttl {
  font-size: clamp(24px, 3.3333333333vw, 40px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.p-sub-recruit-detail__top-txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: clamp(30px, 4.1666666667vw, 50px);
}

.p-sub-recruit-detail + .p-sub-recruit-detail {
  margin-top: clamp(100px, 16vw, 192px);
}

.p-sub-recruit-detail__inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(60px, 8.3333333333vw, 100px);
  max-width: 1280px;
  display: flex;
}

.p-sub-recruit-detail__inner::after,
.p-sub-recruit-detail__inner::before {
  content: "";
  display: inline-block;
  position: absolute;
}

.p-sub-recruit-detail__inner::before {
  background-color: #f5f5f5;
  width: calc(50% + 50vw);
  height: 100%;
  top: 0;
  right: 20px;
  z-index: -2;
}

.p-sub-recruit-detail__inner::after {
  background-color: #fff;
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: 0;
  right: 20px;
  z-index: 1;
}

.p-sub-recruit-detail__section-02 .p-sub-recruit-detail__inner::after,
.p-sub-recruit-detail__section-02 .p-sub-recruit-detail__inner::before {
  right: inherit;
  left: 20px;
}

.p-sub-recruit-detail__section-02 .p-sub-recruit-detail__inner::after {
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.p-sub-recruit-detail__wrapper {
  padding-inline: 20px;
  width: 100%;
}

.p-sub-recruit-detail__sec-ttl-en {
  color: #999;
  font-size: clamp(32px, 5.3333333333vw, 64px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: -0.6em;
}

.p-sub-recruit-detail__sec-ttl-jp {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 1em;
}

.p-sub-recruit-detail__sec-subttl {
  padding-left: 2em;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  margin-top: clamp(60px, 8.3333333333vw, 100px);
  margin-bottom: clamp(30px, 4.1666666667vw, 50px);
}

.p-sub-recruit-detail__sec-subttl::before {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-sub-recruit-detail__list {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
}

.p-sub-recruit-detail__item {
  background-color: #fff;
  padding-bottom: clamp(24px, 2.5vw, 30px);
}

.p-sub-recruit-detail__item:not(:first-of-type) {
  margin-top: 30px;
}

.p-sub-recruit-detail__item-ttl {
  color: #fff;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  padding-block: 1.1em;
}

.p-sub-recruit-detail__item:first-of-type .p-sub-recruit-detail__item-ttl {
  background-color: #ff93a9;
}

.p-sub-recruit-detail__item:nth-of-type(2) .p-sub-recruit-detail__item-ttl {
  background-color: #63bbdf;
}

.p-sub-recruit-detail__item:last-of-type .p-sub-recruit-detail__item-ttl {
  background-color: #8496d4;
}

.p-sub-recruit-detail__item-txt-main {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  margin-block: clamp(20px, 3.3333333333vw, 40px);
}

.p-sub-recruit-detail__item-txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  padding-inline: 10%;
}

.p-sub-recruit-detail__card {
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(30px, 4.1666666667vw, 50px) 8.3%;
}

.p-sub-recruit-detail__card + .p-sub-recruit-detail__card {
  margin-top: 30px;
}

.p-sub-recruit-detail__card-ttl {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.p-sub-recruit-detail__card-txt {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 20px;
}

.p-sub-recruit-detail__card-txt .u-large {
  color: #f9899f;
  font-weight: 700;
  font-size: 1.44em;
}

.p-sub-recruit-detail__card-txt .u-small {
  font-weight: 500;
  font-size: 0.89em;
}

.p-sub-recruit-detail__card:last-of-type
  .p-sub-recruit-detail__card-txt
  .u-large {
  font-size: 2.22em;
  line-height: 1;
  margin-inline: 0.2em;
}

.p-sub-recruit-detail__card-txt .u-semilarge {
  font-size: 1.11em;
  font-weight: 700;
  line-height: 1;
}

.p-sub-recruit-detail__table-wrap {
  overflow: auto;
}

.p-sub-recruit-detail__table {
  min-width: 760px;
  overflow-x: scroll;
}

.p-sub-recruit-detail__table td,
.p-sub-recruit-detail__table th {
  width: 33.3333333333%;
}

.p-sub-recruit-detail__table th {
  padding: clamp(20px, 3.3333333333vw, 40px) clamp(15px, 2.0833333333vw, 25px);
  border-bottom: solid clamp(10px, 1.25vw, 15px) #f5f5f5;
}

.p-sub-recruit-detail__table-year {
  width: 100%;
  padding: 0.8em;
  text-align: center;
  color: #fff;
  font-size: clamp(14px, 1.6666666667vw, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  clip-path: polygon(0 0, 92.5% 0, 100% 50%, 92.5% 100%, 0 100%);
}

.table-01 th.u-column-01,
.table-01 .u-column-01 .p-sub-recruit-detail__table-year {
  background-color: #95a5df;
}

.table-01 th.u-column-02,
.table-01 .u-column-02 .p-sub-recruit-detail__table-year {
  background-color: #8496d4;
}

.table-01 th.u-column-03,
.table-01 .u-column-03 .p-sub-recruit-detail__table-year {
  background-color: #7689cb;
}

.table-02 th.u-column-01,
.table-02 .u-column-01 .p-sub-recruit-detail__table-year {
  background-color: #ffb0c0;
}

.table-02 th.u-column-02,
.table-02 .u-column-02 .p-sub-recruit-detail__table-year {
  background-color: #ff93a9;
}

.table-02 th.u-column-03,
.table-02 .u-column-03 .p-sub-recruit-detail__table-year {
  background-color: #f9889f;
}

.p-sub-recruit-detail__table-ttl {
  color: #fff;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: left;
  min-height: 3.2em;
}

.p-sub-recruit-detail__table-txt {
  color: #fff;
  font-size: clamp(12px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: clamp(20px, 2.5vw, 30px);
  text-align: left;
}

.p-sub-recruit-detail__table-caution {
  font-size: clamp(10px, 1.0833333333vw, 13px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 1.5em;
  text-align: right;
}

.p-sub-recruit-detail__flow-wrap {
  margin-top: clamp(60px, 8.3333333333vw, 100px);
  background-color: #fff;
  padding: clamp(30px, 5.8333333333vw, 70px) clamp(20px, 4.1666666667vw, 50px);
}

.p-sub-recruit-detail__flow-flex {
  margin: 0 auto clamp(40px, 5.8333333333vw, 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
}

.p-sub-recruit-detail__flow-img-wrap {
  max-width: 320px;
  margin: 0 auto;
}

.p-sub-recruit-detail__flow-txt-wrap {
  margin-top: 30px;
}

.p-sub-recruit-detail__flow-ttl {
  font-size: clamp(20px, 2.1666666667vw, 26px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}

.p-sub-recruit-detail__flow-txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 1.875em;
}

.p-sub-recruit-detail__flow-dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: clamp(30px, 7.5vw, 90px);
  position: relative;
  max-width: 870px;
  margin: 0 auto;
}

.p-sub-recruit-detail__flow-dl::after,
.p-sub-recruit-detail__flow-dl::before {
  content: "";
  display: inline-block;
  position: absolute;
}

.p-sub-recruit-detail__flow-dl::before {
  width: clamp(10px, 1.0833333333vw, 13px);
  aspect-ratio: 1;
  border-radius: 50vh;
  background-color: #333;
  top: 0.2em;
  left: 0;
  z-index: 2;
}

.p-sub-recruit-detail__flow-dl:not(:last-of-type)::after {
  width: 1px;
  height: 100%;
  background-color: #ccc;
  left: clamp(5px, 0.5416666667vw, 6.5px);
  top: 0.2em;
  z-index: 1;
}

.p-sub-recruit-detail__flow-dl:not(:last-of-type) {
  padding-bottom: clamp(30px, 3.75vw, 45px);
}

.p-sub-recruit-detail__flow-dt {
  font-size: clamp(16px, 1.6666666667vw, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.p-sub-recruit-detail__flow-dd {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 1em;
}

.p-sub-recruit-detail__requirements-wrap {
  background-color: #fff;
  margin-top: clamp(60px, 8.3333333333vw, 100px);
  padding: clamp(30px, 5.8333333333vw, 70px) clamp(20px, 8.3333333333vw, 100px);
}

/*小さいSP*/
@media screen and (max-width: 500px) {
  .p-sub-recruit-detail__requirements-wrap {
    padding-inline: 15px;
  }
}
.p-sub-recruit-detail__requirements-dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-inline: clamp(10px, 1.6666666667vw, 20px);
}

.p-sub-recruit-detail__requirements-dl:not(:last-of-type) {
  padding-bottom: clamp(20px, 2.5vw, 30px);
  margin-bottom: clamp(20px, 2.5vw, 30px);
  border-bottom: solid 1px #d8d8d8;
}

.p-sub-recruit-detail__requirements-dt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  margin-bottom: 0.5em;
}

.p-sub-recruit-detail__requirements-dd {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}

.p-sub-recruit-detail__requirements-list {
  list-style-type: disc;
  padding-left: 1em;
}

.p-sub-recruit-detail__requirements-address {
  display: flex;
  align-items: center;
  margin-top: 0.625em;
}

@media screen and (max-width: 520px) {
  .p-sub-recruit-detail__requirements-address {
    flex-direction: column;
    align-items: flex-end;
  }
}
.p-sub-recruit-detail__requirements-address .btn_design01 .flex {
  text-transform: capitalize;
  min-width: 130px;
  margin-left: 20px;
}

.p-sub-recruit-detail__requirements-address .btn_design01 .flex::before {
  width: 34px;
  aspect-ratio: 57/35;
  height: inherit;
}

.p-sub-recruit-detail__requirements-address .btn_design01 .flex:hover::before {
  right: -8px;
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-recruit-detail__top-flex {
    flex-direction: row;
    justify-content: space-between;
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-recruit-detail__top-txt-wrap {
    width: 50%;
  }
  .p-sub-recruit-detail__top-img-wrap {
    width: 41.7%;
  }
  .p-sub-recruit-detail__inner {
    max-width: 1390px;
  }
  .p-sub-recruit-detail__inner::after,
  .p-sub-recruit-detail__inner::before {
    right: 25px;
  }
  .p-sub-recruit-detail__section-02 .p-sub-recruit-detail__inner::after,
  .p-sub-recruit-detail__section-02 .p-sub-recruit-detail__inner::before {
    left: 25px;
  }
  .p-sub-recruit-detail__wrapper {
    padding-inline: clamp(30px, 5.8333333333vw, 70px);
  }
  .p-sub-recruit-detail__list {
    flex-direction: row;
    max-width: inherit;
    margin-inline: 0;
    justify-content: space-between;
  }
  .p-sub-recruit-detail__item {
    width: 31.7%;
  }
  .p-sub-recruit-detail__item:not(:first-of-type) {
    margin-top: 0;
  }
  .p-sub-recruit-detail__card {
    flex-direction: row;
    justify-content: space-between;
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-recruit-detail__card-txt {
    width: 60%;
    flex: 0 0 auto;
    margin-top: 0;
  }
  .p-sub-recruit-detail__table {
    min-width: 1100px;
  }
  .p-sub-recruit-detail__flow-flex {
    flex-direction: row;
    justify-content: space-between;
    max-width: 900px;
  }
  .p-sub-recruit-detail__flow-img-wrap {
    width: 30.6%;
    margin-inline: 0;
  }
  .p-sub-recruit-detail__flow-txt-wrap {
    width: 63.1%;
    margin-top: 0;
  }
  .p-sub-recruit-detail__flow-ttl {
    text-align: left;
  }
  .p-sub-recruit-detail__flow-dl {
    flex-direction: row;
    align-items: baseline;
  }
  .p-sub-recruit-detail__flow-dl:not(:last-of-type)::after,
  .p-sub-recruit-detail__flow-dl:not(:last-of-type)::before {
    top: 0.5em;
  }
  .p-sub-recruit-detail__flow-dt {
    width: clamp(100px, 14.3333333333vw, 172px);
    flex: 0 0 auto;
  }
  .p-sub-recruit-detail__flow-dd {
    margin-top: 0;
  }
  .p-sub-recruit-detail__requirements-dl {
    flex-direction: row;
    align-items: baseline;
  }
  .p-sub-recruit-detail__requirements-dt {
    margin-bottom: 0;
    width: clamp(100px, 15vw, 180px);
    flex: 0 0 auto;
  }
}
/*----------------- recruit/mid-career.php -----------------*/
.mid-career-page input[name="tab_item"] {
  display: none;
}

.p-sub-recruit-detail__tab-content {
  display: none;
  width: 100%;
}

#tab-01:checked ~ #content-01,
#tab-02:checked ~ #content-02,
#tab-03:checked ~ #content-03,
#tab-04:checked ~ #content-04,
#tab-05:checked ~ #content-05 {
  display: block;
}

.p-sub-recruit-detail__tab-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(60px, 1.6666666667vw, 20px);
}

.p-sub-recruit-detail__tab-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.33%;
  padding-block: clamp(10px, 1.6666666667vw, 20px);
  background-color: #ebebeb;
  border-right: solid 1px #fff;
  font-size: clamp(12px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.p-sub-recruit-detail__tab-label:hover {
  opacity: 0.7;
}

.tab-03.p-sub-recruit-detail__tab-label,
.tab-05.p-sub-recruit-detail__tab-label {
  border-right: none;
}

.tab-04.p-sub-recruit-detail__tab-label,
.tab-05.p-sub-recruit-detail__tab-label {
  width: 50%;
  border-top: solid 1px #fff;
}

input:checked + .p-sub-recruit-detail__tab-label {
  background-color: #333333;
  color: #fff;
}

.p-sub-recruit-detail__tab-list .p-sub-recruit-detail__requirements-wrap {
  margin-top: 0;
}

/*小さいSP*/
@media screen and (max-width: 500px) {
  .p-sub-recruit-detail__tab-label {
    width: 50%;
    font-size: clamp(10px, 2.4vw, 12px);
  }
  .tab-03.p-sub-recruit-detail__tab-label {
    border-right: solid 1px #fff;
    border-top: solid 1px #fff;
  }
  .p-sub-recruit-detail__tab-label:nth-of-type(2n) {
    border-right: none;
  }
  .p-sub-recruit-detail__tab-label:nth-of-type(5) {
    width: 100%;
    border-right: none;
  }
  .p-sub-recruit-detail__tab-label:not(:nth-first-of-type(2)) {
    border-top: solid 1px #fff;
  }
}
/*PC*/
@media screen and (min-width: 768px) {
  .tab-05.p-sub-recruit-detail__tab-label,
  .tab-04.p-sub-recruit-detail__tab-label,
  .tab-03.p-sub-recruit-detail__tab-label,
  .tab-02.p-sub-recruit-detail__tab-label,
  .tab-01.p-sub-recruit-detail__tab-label {
    width: 20%;
  }
  .tab-03.p-sub-recruit-detail__tab-label {
    border-right: solid 1px #fff;
  }
  .tab-03.p-sub-recruit-detail__tab-label,
  .tab-04.p-sub-recruit-detail__tab-label,
  .tab-05.p-sub-recruit-detail__tab-label {
    border-top: none;
  }
  .mid-career-page .p-sub-recruit__banner .c-lead-to-form-btn-area {
    justify-content: center;
  }
}
/*アコーディオン表示に変更*/
.p-sub-mid-career__sec-ttl {
  margin-top: clamp(60px, 9.75vw, 117px);
  font-size: clamp(16px, 1.6666666667vw, 20px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 1.75em;
}

.p-sub-recruit-detail__ac-wrap + .p-sub-mid-career__sec-ttl {
  margin-top: clamp(50px, 8.3333333333vw, 100px);
}

.p-sub-recruit-detail__ac-wrap + .p-sub-recruit-detail__ac-wrap {
  margin-top: clamp(20px, 2.5vw, 30px);
}

.p-sub-recruit-detail__ac-ttl {
  background-color: #fff;
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  padding: clamp(30px, 3.8333333333vw, 46px) clamp(20px, 8.3333333333vw, 100px);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.p-sub-recruit-detail__ac-ttl::after {
  content: "";
  display: inline-block;
  width: clamp(20px, 3.3333333333vw, 40px);
  height: clamp(20px, 3.3333333333vw, 40px);
  background-image: url("../img/recruit/ac-arrow-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: clamp(20px, 2.9166666667vw, 35px);
  transform: translateY(-50%);
  transition: all 0.3s;
}

.p-sub-recruit-detail__ac-ttl.active,
.p-sub-recruit-detail__ac-ttl:hover {
  background-color: #333;
  color: #fff;
}

.p-sub-recruit-detail__ac-ttl:hover::after {
  background-image: url("../img/recruit/ac-arrow-white.svg");
}

.p-sub-recruit-detail__ac-ttl.active::after {
  background-image: url("../img/recruit/ac-arrow-white.svg");
  transform: rotate(180deg) translateY(50%);
}

@media screen and (max-width: 360px) {
  .p-sub-recruit-detail__ac-ttl .u-small-sp {
    display: block;
  }
}
.mid-career-page .p-sub-recruit-detail__requirements-wrap {
  margin-top: 0;
}

.p-sub-recruit-detail__ac-content {
  display: none;
}

/*----------------- recruit/interview/ -----------------*/
.p-sub-interview {
  margin-top: clamp(80px, 8.75vw, 105px);
}

.p-sub-interview__list {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.p-sub-interview__item {
  width: 100%;
  margin-bottom: clamp(60px, 8.3333333333vw, 100px);
}

.p-sub-interview__img-wrap {
  position: relative;
  aspect-ratio: 460/430;
  z-index: 1;
}

.p-sub-interview__img-wrap::after,
.p-sub-interview__img-wrap::before {
  content: "";
  display: inline-block;
  position: absolute;
}

.p-sub-interview__img-wrap::after {
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  background-color: #fff;
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 3;
}

.p-sub-interview__img-wrap::before {
  width: 100%;
  height: 56%;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.p-sub-interview__item .p-sub-interview__img-wrap::before {
  background: linear-gradient(
    180deg,
    rgba(159, 160, 162, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.p-sub-interview__item-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 clamp(10px, 2.0833333333vw, 25px) clamp(10px, 2.0833333333vw, 25px);
  color: #fff;
  font-size: clamp(16px, 1.8333333333vw, 22px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  z-index: 4;
}

.p-sub-interview__btn-area {
  padding-top: clamp(20px, 1.25vw, 30px);
  padding-left: clamp(10px, 2.0833333333vw, 25px);
}

.p-sub-interview__item .btn_design01 .flex {
  width: 100%;
  max-width: inherit;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-sub-interview__item .btn_design01 .flex::before {
  left: inherit;
  position: absolute;
  right: 0;
}

.p-sub-interview__item .btn_design01 .flex:hover::before {
  left: inherit;
  right: -8px;
}

.p-sub-recruit__banner .c-lead-to-form-section {
  margin-top: clamp(100px, 16.6666666667vw, 200px);
}

.p-sub-recruit__banner .c-lead-to-form-btn-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
  max-width: 480px;
}

.p-sub-recruit__banner .c-contact-btn {
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.08em;
  border: solid 1px #333;
  width: 100%;
  max-width: 360px;
}

.p-sub-recruit__banner .c-contact-btn.p-sub-recruit__mynavi-btn {
  background-color: #fff;
  display: block;
  margin-top: 30px;
}

.p-sub-recruit__banner .c-contact-btn.p-sub-recruit__mynavi-btn::before {
  display: none;
}

.p-sub-recruit__banner .c-contact-btn.p-sub-recruit__mynavi-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-interview__list {
    max-width: 1000px;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .p-sub-interview__item {
    width: 46%;
  }
  .p-sub-recruit__banner .c-lead-to-form-btn-area {
    max-width: 1000px;
    flex-direction: row;
    justify-content: space-between;
  }
  .p-sub-recruit__banner .c-contact-btn {
    width: 48%;
    margin: 0;
    max-width: inherit;
  }
  .p-sub-recruit__banner .c-contact-btn.p-sub-recruit__mynavi-btn {
    margin-top: 0;
  }
}
/*----------------- recruit/interview/interview**.php -----------------*/
.p-sub-interview__top-flex {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
}

.p-sub-interview__top-txt-wrap {
  z-index: 1;
  position: relative;
  padding-top: clamp(50px, 5.8333333333vw, 70px);
  padding-bottom: clamp(80px, 8.3333333333vw, 100px);
}

.p-sub-interview__top-txt-wrap::before {
  content: "";
  display: inline-block;
  width: calc(50% + 50vw);
  height: 100%;
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}

.p-sub-interview__top-txt-wrap::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #fff;
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  bottom: 0;
  left: 50%;
  transform: translateX(-50vw);
  z-index: -1;
}

.p-sub-interview__top-img-wrap {
  z-index: 2;
  margin-left: 10%;
  width: calc(40% + 50vw);
  margin-top: -30px;
}

.u-deco-triangle {
  position: relative;
  z-index: 1;
}

.u-deco-triangle::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #fff;
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  bottom: 0;
  left: 0;
  z-index: 2;
}

.p-sub-interview__top-ttl-jp {
  font-size: clamp(20px, 2.8333333333vw, 34px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-sub-interview__top-ttl-en {
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #999;
  margin-top: 0.2em;
}

.p-sub-interview__top-txt {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: clamp(50px, 5.4166666667vw, 65px);
}

.p-sub-interview__catch {
  font-size: clamp(18px, 2.6666666667vw, 32px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: clamp(50px, 7.25vw, 87px);
  margin-bottom: clamp(60px, 8.9166666667vw, 107px);
  max-width: 480px;
  margin-inline: auto;
}

.p-sub-interview__detail {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: clamp(60px, 8.3333333333vw, 100px) auto 0;
}

.p-sub-interview__detail-img-wrap {
  max-width: 280px;
  margin: 0 auto;
}

.p-sub-interview__detail-txt-wrap {
  margin-top: 30px;
}

.p-sub-interview__question {
  font-size: clamp(16px, 1.6666666667vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  display: flex;
  align-items: baseline;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: solid 1px #d8d8d8;
}

.p-sub-interview__question span {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3.6666666667vw, 44px);
  font-weight: 200;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-right: 0.5em;
  color: #555;
  text-transform: uppercase;
  line-height: 1;
}

.p-sub-interview__answer {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0;
}

.p-sub-interview__answer + .p-sub-interview__question {
  margin-top: clamp(30px, 4.1666666667vw, 50px);
}

.p-sub-interview__thumb {
  font-size: clamp(12px, 1.25vw, 15px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  margin-top: 1em;
}

.p-sub-interview__message-wrap {
  position: relative;
  background-color: #f5f5f5;
  padding: clamp(30px, 5vw, 60px) clamp(20px, 8.3333333333vw, 100px);
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: clamp(60px, 8.3333333333vw, 100px) auto;
  z-index: 1;
}

.p-sub-interview__message-wrap::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #fff;
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.p-sub-interview__message-img-wrap {
  max-width: 280px;
  margin-inline: auto;
}

.p-sub-interview__message-txt-wrap {
  margin-top: 30px;
}

.p-sub-interview__detail-btn-area .btn_design01 .flex {
  max-width: 180px;
}

.p-sub-interview__message-ttl {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #fd829b;
  text-align: center;
}

.p-sub-interview__message-txt {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0;
  margin-top: 1.4em;
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-interview__top-flex {
    flex-direction: row;
    justify-content: space-between;
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-interview__top-txt-wrap {
    width: 45%;
    margin-top: clamp(40px, 4.1666666667vw, 50px);
    padding-inline: clamp(50px, 5.8333333333vw, 70px);
  }
  .p-sub-interview__top-txt-wrap::before {
    right: -15%;
  }
  .p-sub-interview__top-txt-wrap::after {
    left: inherit;
    right: -15%;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    transform: translateX(0);
  }
  .p-sub-interview__top-img-wrap {
    width: calc(5% + 50vw);
    margin-right: -25px;
    margin-left: 0;
    margin-top: 0;
  }
  .p-sub-interview__catch {
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-interview__detail {
    max-width: inherit;
    margin-inline: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .p-sub-interview__detail.u-reverse {
    flex-direction: row-reverse;
  }
  .p-sub-interview__detail-img-wrap {
    width: 39.2%;
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-interview__detail-txt-wrap {
    width: 54.2%;
    margin-top: 0;
  }
  .p-sub-interview__message-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-interview__message-img-wrap {
    width: 23%;
    max-width: inherit;
    margin-inline: 0;
  }
  .p-sub-interview__message-txt-wrap {
    width: 70%;
  }
  .p-sub-interview__message-ttl {
    text-align: left;
  }
}
/*----------------- company/profile.php -----------------*/
.p-sub-company {
  margin-top: clamp(80px, 10.8333333333vw, 130px);
  display: flex;
}

.p-sub-company.p-sub-company_pagelink .btn_design01 a {
  justify-content: center;
  max-width: none;
}
.p-sub-company.p-sub-company_pagelink .btn_design01 a::before {
  margin-right: 0.5rem;
}

.p-sub-company__inner {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding-bottom: clamp(60px, 8.3333333333vw, 100px);
}

.p-sub-company__inner::before {
  content: "";
  display: inline-block;
  width: calc(50% + 50vw);
  height: 100%;
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: -1;
}

.p-sub-company__inner::after {
  content: "";
  display: inline-block;
  width: clamp(40px, 8.3333333333vw, 100px);
  height: clamp(40px, 8.3333333333vw, 100px);
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 20px;
  clip-path: polygon(100% 100%, 0 100%, 0 0);
}

.p-sub-office .p-sub-company__inner::before {
  left: inherit;
  right: 20px;
}

.p-sub-office .p-sub-company__inner::after {
  left: inherit;
  right: 20px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.p-sub-company__inner-s {
  margin: 0 auto;
  padding-inline: 20px;
}

.p-sub-company__sec-ttl {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 5.3333333333vw, 64px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: -0.5em;
  white-space: nowrap;
  text-transform: uppercase;
  color: #999999;
}

.p-sub-company__sec-subttl {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 0.8em;
}

.p-sub-company__item-wrap {
  margin-top: clamp(50px, 6.6666666667vw, 80px);
}

.p-sub-company__item {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.5vw, 30px) clamp(10px, 1.6666666667vw, 20px);
  border-top: solid 1px #d8d8d8;
  position: relative;
}

.p-sub-company__item-ttl {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
}

.p-sub-company__item-txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  width: 100%;
}

.p-sub-company__sub-item {
  display: flex;
}

.p-sub-company__sub-item-ttl {
  width: clamp(100px, 13.3333333333vw, 160px);
  flex: 0 0 auto;
}

.p-sub-company__sub-item + .p-sub-company__sub-item {
  margin-top: 1em;
}

.p-sub-company__list {
  list-style-type: decimal;
  padding-left: 1em;
}

.p-sub-company__flex {
  display: flex;
  flex-direction: column;
}

.p-sub-company__flex-left span {
  letter-spacing: -0.15em;
}

.p-sub-company__history-wrap {
  width: 100%;
  position: relative;
  padding-bottom: clamp(60px, 8vw, 96px);
  margin-top: 1em;
}

.p-sub-company__history-wrap.js-scrollable {
  overflow-x: auto !important;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.p-sub-company__history-list .swiper-slide {
  padding-top: clamp(2px, 0.2916666667vw, 3.5px);
}

.p-sub-company__history-item {
  border-top: solid 1px #d9d9d9;
  padding-top: clamp(30px, 4.375vw, 52.5px);
  position: relative;
  z-index: 1;
}

.p-sub-company__history-item::after,
.p-sub-company__history-item::before {
  content: "";
  display: inline-block;
  position: absolute;
}

.p-sub-company__history-item::before {
  width: clamp(4px, 0.5833333333vw, 7px);
  height: clamp(4px, 0.5833333333vw, 7px);
  border-radius: 50vh;
  background-color: #333;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.p-sub-company__history-item::after {
  width: 1px;
  height: clamp(25px, 3.4166666667vw, 41px);
  background-color: #d9d9d9;
  top: 0;
  left: clamp(2px, 0.2916666667vw, 3.5px);
  z-index: 1;
}

.swiper-slide:not(:last-of-type) .p-sub-company__history-item {
  padding-right: clamp(30px, 5.8333333333vw, 70px);
}

.p-sub-company__history-year {
  font-size: clamp(18px, 2.1666666667vw, 26px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Poppins", sans-serif;
}

.p-sub-company__history-ttl {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-top: clamp(20px, 2.5vw, 30px);
}

.p-sub-company__history-txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: clamp(20px, 2.5vw, 30px);
}
.p-sub-company_pagelink .u-small-sp-only {
  display: none;
}
/*小さいSP*/
@media screen and (max-width: 400px) {
  .p-sub-company_pagelink .u-small-sp-only {
    display: block;
  }
}
/*swiperカスタマイズ*/
.p-sub-company .swiper-scrollbar {
  height: clamp(20px, 3vw, 36px) !important;
  /*border-radius: 0 !important;*/
  background-color: transparent;
  border: solid 1px #d9d9d9;
  padding: 3px;
}

.p-sub-company .swiper-scrollbar-drag {
  background-color: #333;
  /*border-radius: 0 !important;*/
  cursor: pointer;
  position: relative;
}

/*.p-sub-company .swiper-scrollbar-drag::before,
.p-sub-company .swiper-scrollbar-drag::after {
  content: "";
  display: inline-block;
  width: clamp(18px, 3vw, 36px);
  aspect-ratio: 36/7;
  position: absolute;
  top: 50%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.p-sub-company .swiper-scrollbar-drag::after {
  background-image: url("../img/company/arrow-right.svg");
  right: clamp(2px, 1vw, 12px);
}

.p-sub-company .swiper-scrollbar-drag::before {
  background-image: url("../img/company/arrow-left.svg");
  left: clamp(2px, 1vw, 12px);
}*/
.p-sub-company__office-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(40px, 6.6666666667vw, 80px);
}

.p-sub-company__office-item {
  width: 47%;
}

.p-sub-company__office-item:not(:first-of-type) {
  margin-top: clamp(40px, 6.6666666667vw, 80px);
}

.p-sub-company__office-item-main {
  width: 100%;
  margin-bottom: clamp(30px, 8.3333333333vw, 60px);
  display: flex;
  flex-direction: column;
}

.p-sub-company__office-txt-wrap {
  margin-bottom: clamp(30px, 4.1666666667vw, 50px);
}

.p-sub-company__office-map-wrap {
  aspect-ratio: 500/320;
  position: relative;
}

.p-sub-company__office-map-wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.p-sub-company__office-item:nth-of-type(2n) {
  margin-right: 6%;
}

.p-sub-company__btn-area {
  margin-top: clamp(16px, 1.6666666667vw, 200px);
}

.p-sub-company__btn-area .btn_design01 a {
  text-transform: inherit;
  margin-left: 0;
  margin-right: auto;
  max-width: 142px;
  font-weight: 500;
}

.p-sub-company__btn-area .btn_design01 a::before {
  width: 34px;
  height: 21px;
}

.p-sub-company__office-ttl {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.p-sub-company__office-txt {
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: 1em;
}

/*小さいSP*/
@media screen and (max-width: 500px) {
  .p-sub-company__office-item {
    width: 100%;
  }
  .p-sub-company__office-item:nth-of-type(2n) {
    margin-right: 0;
  }
}
/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-company__inner::after,
  .p-sub-company__inner::before {
    left: 25px;
  }
  .p-sub-office .p-sub-company__inner::after,
  .p-sub-office .p-sub-company__inner::before {
    right: 25px;
  }
  .p-sub-company__inner-s {
    max-width: 1050px;
    padding-inline: 25px;
  }
  .p-sub-company__item {
    flex-direction: row;
  }
  .p-sub-company__item-invoice {
    align-items: center;
  }
  .p-sub-company__item-ttl {
    width: clamp(100px, 15.1666666667vw, 182px);
    flex: 0 0 auto;
  }
  .p-sub-company__item-txt {
    flex: 1 1 auto;
    width: calc(100% - clamp(100px, 15.1666666667vw, 182px));
    position: relative;
  }
  .p-sub-company__office-item {
    width: 30%;
  }
  .p-sub-company__office-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .p-sub-company__office-item:not(:nth-of-type(3n + 1)) {
    margin-right: 5%;
  }
  .p-sub-company__history-wrap {
    width: calc(37.5% + 50vw);
    margin-top: 0;
  }
  .p-sub-company__office-item-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .p-sub-company__office-txt-wrap {
    width: 40%;
    margin-bottom: 0;
  }
  .p-sub-company__office-item-main .p-sub-company__office-map-wrap {
    width: 50%;
  }
  .p-sub-company__btn-area .btn_design01 a {
    max-width: clamp(132px, 11.8333333333vw, 142px);
  }
}
/*大きいPC*/
@media screen and (min-width: 900px) {
  .p-sub-company__flex {
    flex-direction: row;
    justify-content: space-between;
  }
  .p-sub-company__flex-left {
    margin-right: 2em;
    width: clamp(400px, 37.5vw, 450px);
    min-width: 400px;
    flex: 0 0 auto;
  }
}
/*SPのみスクロールヒントに*/
@media screen and (max-width: 767px) {
  .p-sub-company__history-item {
    padding-right: clamp(30px, 5.8333333333vw, 70px);
  }
}
/*----------------- company/about -----------------*/
.p-sub-message .p-sub-company__inner,
.p-sub-message {
  position: relative;
}

.p-sub-message .p-sub-company__inner::after,
.p-sub-message .p-sub-company__inner::before,
.p-sub-message::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.p-sub-message::before {
  background-image: url("../img/company/company-deco-01.svg");
  aspect-ratio: 70/73;
  width: clamp(47px, 5.8333333333vw, 70px);
  top: 0;
  left: 20px;
  transform: translateY(-100%);
}

.p-sub-message .p-sub-company__inner::before {
  background-image: url("../img/company/company-deco-02.svg");
  aspect-ratio: 116/121;
  width: clamp(77px, 9.6666666667vw, 116px);
  top: 0;
  right: 20px;
  left: inherit;
  bottom: inherit;
  height: inherit;
  background-color: transparent;
}

.p-sub-message .p-sub-company__inner::before {
  background-image: url("../img/company/company-deco-02.svg");
  aspect-ratio: 116/121;
  width: clamp(77px, 9.6666666667vw, 116px);
  top: 0;
  right: 20px;
  left: inherit;
  bottom: inherit;
  height: inherit;
  background-color: transparent;
}

.p-sub-message .p-sub-company__inner::after {
  background-image: url("../img/company/company-deco-03.svg");
  aspect-ratio: 116/121;
  width: clamp(77px, 9.6666666667vw, 116px);
  left: 20%;
  height: inherit;
  background-color: transparent;
  clip-path: inherit;
}

@media screen and (min-width: 1100px) {
  .p-sub-message::before {
    top: 30%;
    left: 50%;
    transform: translateX(-550px);
  }
  .p-sub-message .p-sub-company__inner::before {
    top: 40%;
    right: 25px;
  }
  .p-sub-message .p-sub-company__inner::after {
    bottom: 10%;
    left: 50%;
    transform: translateX(-600px);
  }
}
.about-page .p-sub-company__sec-subttl,
.about-page .p-sub-company__sec-ttl {
  text-align: center;
}

.p-sub-message .p-sub-company__sec-ttl {
  margin-top: 0;
}

.p-sub-message__contents {
  max-width: 800px;
  margin: clamp(50px, 6.6666666667vw, 80px) auto 0;
}

.p-sub-message__txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}

.p-sub-message__txt + .p-sub-message__txt {
  margin-top: 1.8em;
}

.p-sub-message__signature {
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(40px, 4.1666666667vw, 50px) 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.p-sub-message__signature-txt {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  display: flex;
  align-items: center;
}

.p-sub-message__signature-txt + .p-sub-message__signature-txt {
  margin-top: 0.8em;
}

.p-sub-message__signature-txt img {
  width: clamp(180px, 16.8333333333vw, 202px);
  margin-left: 1em;
}

.p-sub-philosophy .p-sub-company__inner::after {
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
}

.p-sub-philosophy__list {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 320px;
}

.p-sub-philosophy__item {
  width: 100%;
  padding-inline: 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 40px;
}

.p-sub-philosophy__item:not(:last-of-type) {
  border-bottom: solid 1px #c7c7c7;
}

.p-sub-philosophy__ttl-en {
  text-transform: uppercase;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "Poppins", sans-serif;
}

.p-sub-philosophy__ttl-jp {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-top: 0.7em;
}

.p-sub-philosophy__txt {
  font-size: clamp(12px, 1.3333333333vw, 16px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 2em;
  text-align: center;
}

.p-sub-field .p-sub-company__inner::before {
  display: none;
}

.p-sub-field__txt {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: clamp(50px, 6.6666666667vw, 80px);
  text-align: center;
}

.p-sub-field__table-wrap {
  margin-top: clamp(50px, 6.6666666667vw, 80px);
  overflow: auto;
}

.p-sub-field__table {
  text-align: center;
  min-width: 974px;
  overflow-x: scroll;
}

.p-sub-field__table tr {
  border-bottom: solid 1px #c7c7c7;
}

.p-sub-field__table th,
.p-sub-field__table td {
  padding: clamp(20px, 2.5vw, 30px) clamp(15px, 1.6666666667vw, 20px);
  border-right: solid 1px #c7c7c7;
  width: 29.1666%;
  vertical-align: middle;
}

.p-sub-field__table td {
  text-align: left;
}

.p-sub-field__table th {
  font-size: clamp(16px, 1.6666666667vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-sub-field__table-txt {
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.p-sub-field__table-txt_dot {
  padding-left: 1em;
  text-indent: -1em;
}
.p-sub-field__table-txt_dot:before {
  content: "・";
}

.p-sub-field__table-txt + .p-sub-field__table-txt {
  margin-top: 1.2em;
}

.p-sub-field__table .p-sub-field__table-cell-01 {
  width: 12.5%;
  flex: 0 0 auto;
}

.p-sub-field__table-txt-en {
  text-transform: uppercase;
  font-size: clamp(20px, 2.6666666667vw, 32px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.4em;
}

.p-sub-field__table-line-01 .p-sub-field__table-txt-en {
  color: #fd829b;
}

.p-sub-field__table-line-02 .p-sub-field__table-txt-en {
  color: #27aae1;
}

.p-sub-field__table-line-03 .p-sub-field__table-txt-en {
  color: #5379f6;
}

.p-sub-service-link .p-sub-company__inner::before {
  display: none;
}

.p-sub-service-link {
  margin-top: 0;
}

.p-sub-service-link .p-sub-company__inner {
  padding-bottom: 0;
}

.p-sub-service-link .p-sub-company__inner::after {
  display: none;
}

.p-sub-service-link__list {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  margin: 0 auto;
}

.p-sub-service-link__item {
  width: 100%;
  aspect-ratio: 320/140;
}

.p-sub-service-link__item + .p-sub-service-link__item {
  margin-top: 20px;
}

.p-sub-service-link__link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.p-sub-service-link__item:first-of-type .p-sub-service-link__link {
  background-image: url("../img/company/company-img-02.webp");
}

.p-sub-service-link__item:nth-of-type(2) .p-sub-service-link__link {
  background-image: url("../img/company/company-img-03.webp");
}

.p-sub-service-link__item:last-of-type .p-sub-service-link__link {
  background-image: url("../img/company/company-img-04.webp");
}

.p-sub-service-link__ttl {
  color: #fff;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.p-sub-service-link__btn-area {
  margin-top: clamp(20px, 2vw, 24px);
  width: 100%;
}

.p-sub-service-link__btn-area .btn_design01 .flex {
  color: #fff;
  margin: 0 auto;
  max-width: 152px;
}

.p-sub-service-link__btn-area .btn_design01 .flex::before {
  background: url("../img/company/icon_link_white.svg") no-repeat;
  aspect-ratio: 57/36;
  height: auto;
}

.p-sub-service-link__link:hover {
  filter: brightness(130%);
  opacity: 1;
}

.p-sub-service-link__link:hover .btn_design01 .flex::before {
  left: 8px;
  transition: 0.3s ease;
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-philosophy__list {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1150px;
    margin-top: clamp(50px, 6.6666666667vw, 80px);
  }
  .p-sub-philosophy__item {
    width: 33.33%;
    padding-block: 20px;
  }
  .p-sub-philosophy__item:not(:last-of-type) {
    border-right: solid 1px #c7c7c7;
    border-bottom: transparent;
  }
  .p-sub-service-link__list {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
  }
  .p-sub-service-link__item {
    width: 32%;
  }
  .p-sub-service-link__item + .p-sub-service-link__item {
    margin-top: 0;
  }
}
/*----------------- Partner -----------------*/
.p-sub-partner__inner {
  overflow: visible;
}

/* lead*/
.p-sub-partner__lead {
  margin-top: clamp(60px, 8.75vw, 105px);
}

.p-sub-partner__lead-txt {
  text-align: center;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-sub-partner__anchor-list {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  margin: clamp(50px, 8.3333333333vw, 100px) auto 0;
}

.p-sub-partner__anchor-item {
  width: 100%;
}

.p-sub-partner__anchor-item + .p-sub-partner__anchor-item {
  margin-top: 20px;
}

.p-sub-partner__anchor-item a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  padding-block: 1.2em;
  position: relative;
}

.p-sub-partner__anchor-item a::after {
  content: "";
  display: inline-block;
  width: clamp(8px, 0.8333333333vw, 10px);
  height: clamp(8px, 0.8333333333vw, 10px);
  border-bottom: solid 1px #333;
  border-right: solid 1px #333;
  position: absolute;
  right: clamp(8px, 0.8333333333vw, 10px);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-partner__anchor-list {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
  }
  .p-sub-partner__anchor-item {
    width: 31%;
  }
  .p-sub-partner__anchor-item + .p-sub-partner__anchor-item {
    margin-top: 0;
  }
}
/* sec-ttl*/
.p-sub-partner__sec-ttl {
  font-family: "Poppins", sans-serif;
  font-size: clamp(40px, 6.6666666667vw, 80px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #999999;
  text-align: center;
}

.p-sub-partner__sec-subttl {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  margin-top: 0.5em;
  margin-bottom: clamp(40px, 5.3333333333vw, 64px);
}

/* requirements*/
.p-sub-requirements {
  padding-top: clamp(100px, 15vw, 180px);
}

.p-sub-partner__requirements-dl {
  display: flex;
  flex-direction: column;
  border-top: solid 1px #eeeeee;
  padding: clamp(20px, 2.5vw, 30px) clamp(20px, 8.3333333333vw, 100px);
  max-width: 480px;
  margin: 0 auto;
}

.p-sub-partner__requirements-dl:last-of-type {
  border-bottom: solid 1px #eeeeee;
}

.p-sub-partner__requirements-dt {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  padding-left: clamp(28px, 2.75vw, 33px);
  position: relative;
  width: clamp(240px, 25vw, 300px);
  flex: 0 0 auto;
}

.p-sub-partner__requirements-dt::before {
  content: "";
  display: inline-block;
  width: clamp(11px, 1.0833333333vw, 13px);
  height: clamp(11px, 1.0833333333vw, 13px);
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-sub-partner__requirements-dd {
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}

.p-sub-partner__requirements-list {
  list-style-type: decimal;
  padding-left: 1em;
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-requirements {
    padding-top: 0;
    margin-top: clamp(100px, 15vw, 180px);
  }
  .p-sub-partner__requirements-dl {
    flex-direction: row;
    align-items: baseline;
    max-width: inherit;
    margin: 0;
  }
}
/*example*/
.p-sub-example {
  padding-top: clamp(80px, 13.3333333333vw, 160px);
}

.p-sub-partner__example-item {
  background-color: #f5f5f5;
  padding: clamp(30px, 6.6666666667vw, 80px) clamp(20px, 8.3333333333vw, 100px);
  position: relative;
}

.p-sub-partner__example-item::before {
  content: "";
  display: inline-block;
  background-color: #fff;
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  position: absolute;
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.p-sub-partner__example-item + .p-sub-partner__example-item {
  margin-top: clamp(60px, 6.6666666667vw, 80px);
}

.p-sub-partner__example-ttl {
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-sub-partner__example-ttl span {
  font-size: clamp(20px, 3.3333333333vw, 40px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0.3em;
}

.p-sub-partner__example-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  margin: clamp(40px, 4.1666666667vw, 50px) auto 0;
}

.p-sub-partner__example-before {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  justify-content: center;
}

.p-sub-partner__example-before::after {
  content: "";
  display: inline-block;
  background-image: url("../img/partner/partner-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 26/71;
  width: clamp(13px, 2.1666666667vw, 26px);
  position: absolute;
  left: 50%;
  top: calc(100% + clamp(30px, 6.518904824vw, 50px));
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-sub-partner__example-before-img-wrap {
  width: 48%;
}

.p-sub-partner__example-before-img-wrap:first-of-type {
  margin-right: 4%;
}

.p-sub-partner__example-item:last-of-type
  .p-sub-partner__example-before-img-wrap:last-of-type {
  margin-top: 20px;
}

.p-sub-partner__example-after {
  width: 100%;
  margin-top: clamp(60px, 13.037809648vw, 100px);
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-example {
    padding-top: 0;
    margin-top: clamp(80px, 13.3333333333vw, 160px);
  }
  .p-sub-partner__example-ttl {
    flex-direction: row;
    justify-content: center;
  }
  .p-sub-partner__example-ttl span {
    padding-right: 1em;
    padding-bottom: 0;
  }
  .p-sub-partner__example-flex {
    flex-direction: row;
    max-width: inherit;
    justify-content: space-between;
    align-items: center;
  }
  .p-sub-partner__example-before {
    width: 20%;
    flex-direction: column;
  }
  .p-sub-partner__example-before::after {
    left: 135%;
    top: 50%;
    transform: translate(0, -50%);
  }
  .p-sub-partner__example-before-img-wrap {
    width: 100%;
  }
  .p-sub-partner__example-before-img-wrap:first-of-type {
    margin-right: 0;
  }
  .p-sub-partner__example-before-img-wrap
    + .p-sub-partner__example-before-img-wrap {
    margin-top: 20px;
  }
  .p-sub-partner__example-after {
    margin-top: 0;
    width: 63%;
  }
}
/*entry*/
.p-sub-entry {
  padding-top: clamp(80px, 18.3333333333vw, 220px);
}

.p-sub-entry__contents {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
}

.p-sub-entry__contents::after,
.p-sub-entry__contents::before {
  content: "";
  display: inline-block;
}

.p-sub-entry__contents::before {
  background-color: #f5f5f5;
  width: calc(50% + 50vw);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.p-sub-entry__contents::after {
  background-color: #fff;
  width: clamp(30px, 4.1666666667vw, 50px);
  height: clamp(30px, 4.1666666667vw, 50px);
  position: absolute;
  bottom: 0;
  left: 0;
  clip-path: polygon(100% 100%, 0 100%, 0 0);
  z-index: -1;
}

.p-sub-entry__contents-inner {
  width: 100%;
  padding: 0 clamp(20px, 4.1666666667vw, 50px) clamp(50px, 6.6666666667vw, 80px);
}

.p-sub-entry__contents .p-sub-partner__sec-ttl {
  margin-top: -0.5em;
}

.p-sub-partner__entry-lead {
  text-align: center;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

/*PC*/
@media screen and (min-width: 768px) {
  .p-sub-entry {
    padding-top: 0;
    margin-top: clamp(80px, 18.3333333333vw, 220px);
  }
}
/*----------------- Contact -----------------*/
.p-sub-contact__pp-box {
  display: flex;
  justify-content: center;
  margin-block: clamp(60px, 6.6666666667vw, 80px);
}

.p-center {
  text-align: center;
  margin: clamp(40px, 6.6666666667vw, 80px) 0;
  font-size: min(18px, 1.5rem);
}

@media screen and (max-width: 768px) {
  .p-center {
    font-size: min(14px, 0.8rem);
  }
}
.p-sub-contact {
  margin: clamp(40px, 6.6666666667vw, 80px) 0 0;
  margin-bottom: 10rem;
}

@media screen and (max-width: 768px) {
  .p-sub-contact {
    margin: clamp(60px, 6.6666666667vw, 80px) 0;
    margin-bottom: 4rem;
  }
}
.p-sub-contact .c-sec-ttl {
  display: block;
  margin-bottom: 4.5rem;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .c-sec-ttl {
    margin-bottom: 1.5rem;
  }
}
.p-sub-contact .c-sec-ttl > * {
  text-align: center;
}

.p-sub-contact .c-sec-ttl .c-sec-ttl__main {
  font-size: min(80px, 5rem);
}

@media screen and (max-width: 768px) {
  .p-sub-contact .c-sec-ttl .c-sec-ttl__main {
    font-size: min(64px, 4rem);
  }
}
.p-sub-contact .c-sec-ttl .c-sec-ttl__sub {
  font-size: min(20px, 1.5rem);
}

@media screen and (max-width: 768px) {
  .p-sub-contact .c-sec-ttl .c-sec-ttl__sub {
    font-size: min(14px, 0.8rem);
  }
}
.p-sub-contact .p-sub-contact-border {
  border: 1px solid #ccc;
  padding: 4rem 6rem;
  max-width: 624px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .p-sub-contact-border {
    padding: 3rem 1rem;
  }
}
.p-sub-contact .p-sub-contact-border dl {
  align-items: center;
  justify-content: center;
}

.p-sub-contact .p-sub-contact-border dl dt {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: min(20px, 1.5rem);
  margin-right: 3rem;
}

@media screen and (max-width: 500px) {
  .p-sub-contact .p-sub-contact-border dl dt {
    margin-right: 0;
  }
}
.p-sub-contact .p-sub-contact-border dl dd {
  font-size: min(34px, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.1rem;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .p-sub-contact-border dl dd {
    margin-bottom: 1rem;
  }
}
.p-sub-contact .p-sub-contact-border .p_btm {
  margin-top: 2.5rem;
  text-align: center;
  font-weight: 400;
  font-size: min(16px, 1rem);
}

@media screen and (max-width: 768px) {
  .p-sub-contact .p-sub-contact-border .p_btm {
    margin-top: 1rem;
  }
}
.p-sub-contact .contact-form {
  margin: 0 auto;
  background: #f6f6f6;
  padding: 100px;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .contact-form {
    padding: 3rem 1rem;
  }
}
.p-sub-contact .contact-form .form-row {
  margin-bottom: clamp(30px, 4.1666666667vw, 50px);
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .contact-form .form-row {
    flex-wrap: wrap;
  }
}
.p-sub-contact .contact-form .form-row .contact-form-menu {
  display: block;
  font-weight: 500;
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
  flex: 0 0 auto;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .contact-form .form-row .contact-form-menu {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
.p-sub-contact .contact-form .form-row .contact-form-menu .required {
  color: #fff;
  background: #555;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 20px;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .contact-form .form-row .contact-form-menu .required {
    margin-left: 1rem;
  }
}
.p-sub-contact .contact-form .form-row input[type="text"],
.p-sub-contact .contact-form .form-row input[type="email"],
.p-sub-contact .contact-form .form-row textarea {
  width: 60%;
  padding: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 15px;
  min-height: 60px;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .contact-form .form-row input[type="text"],
  .p-sub-contact .contact-form .form-row input[type="email"],
  .p-sub-contact .contact-form .form-row textarea {
    width: 100%;
  }
}
.p-sub-contact .contact-form .form-row input[type="text"].half,
.p-sub-contact .contact-form .form-row input[type="email"].half,
.p-sub-contact .contact-form .form-row textarea.half {
  max-width: 300px;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .contact-form .form-row input[type="text"].half,
  .p-sub-contact .contact-form .form-row input[type="email"].half,
  .p-sub-contact .contact-form .form-row textarea.half {
    max-width: none;
  }
}
.p-sub-contact .contact-form .form-row textarea {
  height: 160px;
  resize: vertical;
}

.p-sub-contact .contact-form .form-row .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.p-sub-contact .contact-form .form-row .radio-group label span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.p-sub-contact .contact-form .form-row .radio-group label span:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #333;
  background: #fff;
  border-radius: 9px;
  margin-right: 0.5rem;
}

.p-sub-contact .contact-form .form-row .radio-group label input {
  position: absolute;
}

.p-sub-contact
  .contact-form
  .form-row
  .radio-group
  label
  input:checked
  + span::before {
  border-color: #333;
  background-color: #333;
  box-shadow: inset 0 0 0 4px #fff;
}

.p-sub-contact .contact-form .form-row .count-note {
  text-align: right;
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

.p-sub-contact .contact-form .form-row .min-note {
  position: absolute;
  right: 0;
  bottom: -2rem;
  font-weight: 500;
  font-size: min(14px, 0.8rem);
  color: #939598;
}

.p-sub-contact .contact-form .privacy-note {
  font-size: 13px;
  color: #666;
  margin-top: 4rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.p-sub-contact .contact-form .privacy-note a {
  color: #333;
  text-decoration: underline;
}

.p-sub-contact .contact-form .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  height: 90px;
  background: #333;
  font-weight: 500;
  color: #fff;
  font-size: min(20px, 1.5rem);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 auto;
}

.p-sub-contact .contact-form .submit-btn:hover {
  background: #000;
}

.p-sub-contact .p-sub-contact-check-h2 {
  color: #555;
  font-weight: 500;
  margin-bottom: 4rem;
  font-size: min(40px, 2.5rem);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .p-sub-contact-check-h2 {
    font-size: min(20px, 1.5rem);
    margin-bottom: 2rem;
  }
}
.p-sub-contact .p-sub-contact-check-p {
  color: #555;
  font-weight: 500;
  margin-bottom: 4rem;
  font-size: min(18px, 1.2rem);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .p-sub-contact-check-p {
    font-size: min(16px, 1rem);
  }
}
.p-sub-contact .btn_design01 a {
  margin: 0 auto;
  max-width: 180px;
}

.p-sub-contact .p-sub-contact-check-contents {
  background: #f5f5f5;
  padding: 100px;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .p-sub-contact-check-contents {
    padding: 3rem 1rem;
  }
}
.p-sub-contact .p-sub-contact-check-contents dl {
  padding: 2rem 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
}

.p-sub-contact .p-sub-contact-check-contents dl.b-none {
  border-bottom: none;
}

.p-sub-contact .p-sub-contact-check-contents dl > * {
  font-size: min(16px, 1rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .p-sub-contact-check-contents dl > * {
    font-size: min(14px, 0.8rem);
  }
}
.p-sub-contact .p-sub-contact-check-contents dl dt {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .p-sub-contact-check-contents dl dt {
    width: 100%;
  }
}
.p-sub-contact .p-sub-contact-check-contents dl dd {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .p-sub-contact .p-sub-contact-check-contents dl dd {
    width: 100%;
    font-weight: 400;
  }
}
.p-sub-contact
  .p-sub-contact-check-contents
  .p-sub-contact-check-contents-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
}

@media screen and (max-width: 768px) {
  .p-sub-contact
    .p-sub-contact-check-contents
    .p-sub-contact-check-contents-btns {
    margin-top: 3rem;
  }
}
.p-sub-contact
  .p-sub-contact-check-contents
  .p-sub-contact-check-contents-btns
  button {
  width: 340px;
  height: 90px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #000;
  margin: 0 2rem;
  cursor: pointer;
  font-size: min(20px, 1.5rem);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-sub-contact
    .p-sub-contact-check-contents
    .p-sub-contact-check-contents-btns
    button {
    margin: 0.5rem;
    height: 48px;
    font-size: min(16px, 1rem);
  }
}
.p-sub-contact
  .p-sub-contact-check-contents
  .p-sub-contact-check-contents-btns
  button.back {
  background: #bfbfbf;
}

#contact .contact_section {
  margin-top: 0;
}

.finish-page .p-sub-contact {
  margin-bottom: clamp(60px, 8.3333333333vw, 100px);
}

#information .p-sub-information {
  display: grid;
  grid-template-columns: minmax(auto, 128px) minmax(0, 950px);
  gap: clamp(40px, 10vw, 122px); /* 画面幅に応じて可変 */
  justify-content: center; /* 全体を中央寄せ */
  align-items: start;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px; /* 画面端の余白を確保 */
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #information .p-sub-information {
    display: block;
    padding: 0;
  }
}
#information .p-sub-information .p-sub-information-aside {
  position: sticky;
  top: 120px;
}

@media screen and (max-width: 768px) {
  #information .p-sub-information .p-sub-information-aside {
    margin-bottom: 3rem;
  }
}
#information .p-sub-information .p-sub-information-aside h3 {
  font-size: min(22px, 1.75rem);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: #555;
}

#information
  .p-sub-information
  .p-sub-information-aside
  .p-sub-information-aside-ul {
  display: flex;
  flex-direction: column;
}

#information
  .p-sub-information
  .p-sub-information-aside
  .p-sub-information-aside-ul
  li {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
  #information .p-sub-information .p-sub-information-aside h3 {
    text-align: center;
  }
  #information
    .p-sub-information
    .p-sub-information-aside
    .p-sub-information-aside-ul {
    flex-direction: row;
    max-width: 480px;
    margin-inline: auto;
    justify-content: space-between;
  }
  #information
    .p-sub-information
    .p-sub-information-aside
    .p-sub-information-aside-ul
    li {
    margin-bottom: 0;
  }
  #information
    .p-sub-information
    .p-sub-information-aside
    .p-sub-information-aside-ul
    li:not(:last-of-type) {
    margin-right: 1.5rem;
  }
}
@media screen and (max-width: 360px) {
  #information
    .p-sub-information
    .p-sub-information-aside
    .p-sub-information-aside-ul {
    flex-direction: column;
    align-items: center;
  }
  #information
    .p-sub-information
    .p-sub-information-aside
    .p-sub-information-aside-ul
    li:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}
#information
  .p-sub-information
  .p-sub-information-aside
  .p-sub-information-aside-ul
  li
  a {
  color: #959595;
  font-size: min(16px, 1rem);
  font-weight: 500;
  transition: all 0.3s;
}

#information
  .p-sub-information
  .p-sub-information-aside
  .p-sub-information-aside-ul
  li
  a:hover,
#information
  .p-sub-information
  .p-sub-information-aside
  .p-sub-information-aside-ul
  li.active
  a {
  color: #000;
  text-decoration: underline;
  text-decoration-thickness: 2px; /* 太さを変更 */
  text-underline-offset: 8px; /* 文字との距離を調整 */
}

#information .p-sub-information .p-sub-information-ul .p-sub-information-li a {
  padding: 2rem 2.5rem;
  align-items: center;
  border-bottom: 1px solid #ccc;
  flex-wrap: nowrap;
}
/* 詳細ページがある場合に矢印を表示 */
#information
  .p-sub-information
  .p-sub-information-ul
  .p-sub-information-li
  a
  .information-descriptions.has-detail::after {
  content: "";
  width: 10px;
  height: 20px;
  background: url(../img/common/icon_arrow.svg) no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

@media screen and (max-width: 768px) {
  #information
    .p-sub-information
    .p-sub-information-ul
    .p-sub-information-li
    a {
    padding: 3rem 1rem;
    flex-wrap: wrap;
  }
}
#information
  .p-sub-information
  .p-sub-information-ul
  .p-sub-information-li
  a
  .information-label {
  width: 150px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  font-size: min(14px, 0.85rem);
  color: #000;
}

#information
  .p-sub-information
  .p-sub-information-ul
  .p-sub-information-li
  a
  .information-descriptions {
  width: calc(100% - 180px);
  position: relative;
  padding-right: 1rem;
}

@media screen and (max-width: 768px) {
  #information
    .p-sub-information
    .p-sub-information-ul
    .p-sub-information-li
    a
    .information-descriptions {
    /*width: calc(100% - 32px);*/
    width: 100%;
    margin-top: 20px;
  }
}
#information
  .p-sub-information
  .p-sub-information-ul
  .p-sub-information-li
  a
  .information-descriptions
  .date {
  font-size: min(16px, 1rem);
  margin-bottom: 0.25rem;
  color: #000;
}

#information
  .p-sub-information
  .p-sub-information-ul
  .p-sub-information-li
  a
  .information-descriptions
  .title {
  font-size: min(16px, 1rem);
  color: #000;
  /*white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;*/
}

.p-sub-information__link-wrap {
  margin-top: 0.5em;
}

.p-sub-information__link {
  font-size: min(15px, 0.9375rem);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  display: inline;
}

#information
  .p-sub-information
  .p-sub-information-ul
  .p-sub-information-li
  a:hover {
  background: #f5f5f5;
  opacity: 1;
}

#information
  .p-sub-information
  .p-sub-information-ul
  .p-sub-information-li
  a.u-no-link {
  pointer-events: none;
}
#information
  .p-sub-information
  .p-sub-information-ul
  .p-sub-information-li
  a.u-no-link::after {
  display: none;
}
#information
  .p-sub-information
  .p-sub-information-ul
  .p-sub-information-li
  a.u-no-link
  .information-descriptions.has-detail::after {
  display: none !important;
}

#information
  .p-sub-information
  .p-sub-information-desc-content
  .p-sub-information-article {
  background: #f5f5f5;
  padding: 80px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #information
    .p-sub-information
    .p-sub-information-desc-content
    .p-sub-information-article {
    padding: 36px 20px;
  }
}
#information
  .p-sub-information
  .p-sub-information-desc-content
  .p-sub-information-article
  .top-desc {
  justify-content: space-between;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  #information
    .p-sub-information
    .p-sub-information-desc-content
    .p-sub-information-article
    .top-desc {
    margin-bottom: 1rem;
  }
}
#information
  .p-sub-information
  .p-sub-information-desc-content
  .p-sub-information-article
  .top-desc
  .date {
  font-size: min(18px, 1.2rem);
  margin-bottom: 0;
}

#information
  .p-sub-information
  .p-sub-information-desc-content
  .p-sub-information-article
  .top-desc
  .label {
  min-width: 150px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  font-size: min(14px, 0.8rem);
}

#information
  .p-sub-information
  .p-sub-information-desc-content
  .p-sub-information-article
  .title {
  font-weight: 500;
  font-size: min(24px, 1.5rem);
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
  #information
    .p-sub-information
    .p-sub-information-desc-content
    .p-sub-information-article
    .title {
    font-size: min(18px, 1.2rem);
    margin-bottom: 1.5rem;
  }
}
#information
  .p-sub-information
  .p-sub-information-desc-content
  .p-sub-information-article
  p {
  font-size: min(16px, 1rem);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  #information
    .p-sub-information
    .p-sub-information-desc-content
    .p-sub-information-article
    p {
    font-size: min(14px, 0.8rem);
    margin-bottom: 1.5rem;
  }
}
#information
  .p-sub-information
  .p-sub-information-desc-content
  .p-sub-information-article
  .link {
  margin-top: 4rem;
  display: block;
  font-size: min(16px, 1rem);
  font-weight: 400;
  line-height: 1.8;
  text-decoration: underline;
  text-decoration-thickness: 1px; /* 太さを変更 */
  text-underline-offset: 4px; /* 文字との距離を調整 */
}

@media screen and (max-width: 768px) {
  #information
    .p-sub-information
    .p-sub-information-desc-content
    .p-sub-information-article
    .link {
    font-size: min(14px, 0.8rem);
  }
}
#information
  .p-sub-information
  .p-sub-information-desc-content
  .p-sub-information-article::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 90px solid transparent;
  border-bottom: 90px solid #fff;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #information
    .p-sub-information
    .p-sub-information-desc-content
    .p-sub-information-article::after {
    border-left: 45px solid transparent;
    border-bottom: 45px solid #fff;
  }
}
#information .p-sub-information .btn_design01 a {
  margin: 108px auto 0;
}

#information .p-sub-information-nav {
  max-width: 374px;
  margin-left: auto;
}

#information .p-sub-information-nav ul li a {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(22px, 1.75rem);
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

#information .p-sub-information-nav ul li a:hover {
  text-decoration: underline;
  transition: 0.3s ease;
}

#information .p-sub-information-nav ul li a.prev,
#information .p-sub-information-nav ul li a.next {
  font-size: min(18px, 1.2rem);
}

#information .p-sub-information-nav ul li.active a {
  border: 1px solid #000;
}

/*----------------- News -----------------*/
/*------------------------------------------
 *  NEWSページ
 *------------------------------------------*/
/*------------------------------------------
 *  COMPANYページ
 *------------------------------------------*/
/*------------------------------------------
 *  CONTACTページ
 *------------------------------------------*/
/*------------------------------------------
 *  お問い合わせ完了ページ
 *------------------------------------------*/
/*------------------------------------------
 *  404ページ
 *------------------------------------------*/
.p-sub-404 {
  text-align: center;
}

.p-sub-404 .p-sub-404__ttl {
  font-weight: 500;
  font-size: min(28px, 1.75rem);
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .p-sub-404 .p-sub-404__ttl {
    font-size: min(20px, 1.25rem);
    margin-bottom: 3rem;
  }
}
.p-sub-404 .p-sub-404__txt {
  font-weight: 500;
  font-size: min(18px, 1.2rem);
  line-height: 1.8;
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .p-sub-404 .p-sub-404__txt {
    font-size: min(14px, 0.8rem);
    margin-bottom: 3rem;
  }
}
.p-sub-404 .btn_design01 a {
  max-width: 174px;
  margin: 0 auto;
}

/*------------------------------------------
 *  PRIVACY POLICYページ
 *------------------------------------------*/
.p-sub-privacypolicy {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.p-sub-privacypolicy .p-sub-404__ttl {
  font-size: min(24px, 1.5rem);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-sub-privacypolicy .p-sub-404__ttl {
    font-size: min(20px, 1.25rem);
  }
}
.p-sub-privacypolicy .p-sub-privacypolicy__txt {
  font-weight: 400;
  line-height: 1.8;
  font-size: min(16px, 1rem);
  border-bottom: 1px solid #eee;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
  .p-sub-privacypolicy .p-sub-privacypolicy__txt {
    font-size: min(14px, 0.9rem);
  }
}
.p-sub-privacypolicy .p-sub-privacypolicy__txt.border-none {
  margin-bottom: 5rem;
  padding-bottom: 0;
  border: none;
}

.fade-target {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 30px;
  bottom: 10px;
  background: url(../img/common/icon_top02.svg) no-repeat;
  border-radius: 30px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s,
    visibility 0.5s bottom 0.3s; /* 0.5秒かけて変化 */
}

@media screen and (max-width: 768px) {
  #page_top {
    right: 14px;
  }
}
#page_top.is-show {
  opacity: 1;
  visibility: visible;
}

#page_top.scrolled {
  bottom: 64px;
  transition: bottom 0.3s ease;
}

#page_top::before {
  content: none;
}

/*=================================================
 *  JavaScript用
 *================================================*/
.privacy-note label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
}

.privacy-note input[type="checkbox"] {
  /* デフォルトの見た目を消す */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  background-color: #fff;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  position: relative;
}

.privacy-note input[type="checkbox"]:checked {
  background-color: #333;
  border-color: #333; /* 枠線も黒に */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3e%3cpath fill='none' stroke='%23fff' stroke-width='2' d='M1 4l3 3 5-5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

@media screen and (max-width: 767px) {
  .p-sub-interior__flow {
    /* 横スクロールの必須設定 */
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .p-sub-interior__flow img {
    max-width: none;
    width: 200%;
  }
} /*# sourceMappingURL=style.css.map */
