@charset "UTF-8";

/* ============================
* パンくずリスト c-breadcrumb
* ========================== */


.c-breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 45px;
  background-color: #fff;
  z-index: 6;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .c-breadcrumb {
    background-color: #f9f9f6;
    overflow: hidden;
  }
}

.c-breadcrumb-inner {
  max-width: 1366px;
  margin-inline: auto;
  padding-inline: 70px;
  width: 100%;
}

@media screen and (max-width:768px) {
  .c-breadcrumb-inner {
    margin-inline: 20px;
    padding-inline: 0;
    padding-block: 3px;
    overflow-x: scroll;
  }
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
  z-index: 1;
}

@media screen and (max-width:768px) {
    .c-breadcrumb__list {
        width: max-content;
        overflow-x: auto;
        padding-block: 3px;
    }
}

.c-breadcrumb__item {
  font-size: 0.75rem;
  line-height: 1.417;
  transition: 0.3s ease;
}

@media screen and (max-width: 768px) {
  .c-breadcrumb__item {
    font-size: 0.688rem;
    line-height: 1.455;
  }
}

.c-breadcrumb__item:not(:first-of-type) {
  padding-left: 12px;
}

@media screen and (max-width: 768px) {
  .c-breadcrumb__item:not(:first-of-type) {
    padding-left: 10px;
  }
}

.c-breadcrumb__item:not(:last-of-type) {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-breadcrumb__item:not(:last-of-type)::after {
  content: '';
  width: 7px;
  height: 12px;
  background-image: url('../images/arrow-c-breadcrumb.svg');
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .c-breadcrumb__item:not(:last-of-type) {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: baseline;
    gap: 6px;
  }

  .c-breadcrumb__item:not(:last-of-type)::after {
    width: 5px;
    height: 9px;
    background: url('../images/arrow-c-breadcrumb-sp.svg') no-repeat center / contain;
  }

  .c-breadcrumb__item--current {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}

.c-breadcrumb__link {
  font-weight: 700;
  text-transform: uppercase;
}

/*-------------------------
  ホバー時
-------------------------*/

.c-breadcrumb__item:hover .c-breadcrumb__link {
  opacity: 0.6;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

/* ============================
*  ボタン c-button
* ========================== */

.c-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 337px;
  width: 100%;
  height: 58px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid #2f2222;
  border-radius: 0;
  overflow: hidden;
  transition: border-radius 0.3s ease, opacity 0.3s ease;
}

@media screen and (max-width: 768px) {
  .c-button {
    max-width: 335px;
    margin-inline: auto;
    border: 2px solid #2f2222;
    border-radius: 4px;
  }
}

.c-button::after {
  position: absolute;
  content: '';
  display: block;
  width: 46px;
  height: 4px;
  right: -22px;
  transform: translateX(0);
  transition: transform 0.3s ease;
  background-image: url('../images/deco-c-button.svg');
}

@media screen and (max-width: 768px) {
  .c-button::after {
    width: 22px;
    height: 8px;
    right: -22px;
    width: 44px;
    background-image: url('../images/deco-c-button-sp.svg');
  }
}

.c-button__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #2f2222;
  font-size: 0.875rem;
  line-height: 1.429;
  letter-spacing: 0.1em;
  font-weight: 700;
  opacity: 1;
}

/* ホバー時 */

.c-button:hover {
  border-radius: 29px;
}

.c-button:hover .c-button__link {
  opacity: 0.6;
}

.c-button:hover::after {
  transform: translateX(-22px);
}

@media screen and (max-width: 768px) {
  .c-button:hover:after {
    transform: translateX(-16px);
  }
}

/* ============================
*  各種SNSリンク c-contact-social
* ========================== */

.c-contact-social__inner {
  width: 100%;
  padding: 48px 0;
  background-color: #f6f2ec;
}

@media screen and (max-width: 768px) {
  .c-contact-social__inner {
    padding: 40px 0;
  }
}

.c-contact-social__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 320px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .c-contact-social__content {
    max-width: 280px;
  }
}

.c-contact-social__desc {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-contact-social__desc {
    font-size: 0.875rem;
    line-height: 1.429;
  }
}

.c-contact-social__list {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .c-contact-social__list {
    gap: 16px;
  }
}

.c-contact-social__item {
  transition: 0.3s ease;
}

/* ホバー時 */

.c-contact-social__item:hover {
  opacity: 0.6;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

/* ============================
* 資料請求・お問合せ c-contact
* ========================== */

.c-contact__inner {
  padding-top: 100px;
  background-color: #f6f2ec;
}

.c-contact__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  padding: 64px 100px 78px;
  margin-inline: auto;
  background-image: url('../images/bg-top-contact-pc.png');
  background-size: cover;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .c-contact__content {
    display: flex;
    flex-direction: column;
    padding: 74px 40px;
    background-position: center;
    border-radius: 0;
  }

  .c-contact__text {
    display: contents;
  }

  .c-contact__tel {
    order: 3;
    padding-inline: 32px;
  }
}

/*-------------------------
  タイトル・説明文
-------------------------*/

.c-contact .c-section-title {
  flex-direction: row;
  align-items: flex-end;
  margin-bottom: 32px;
}

@media screen and (max-width: 1000px) {
  .c-contact .c-section-title {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
}

.c-contact .c-section-title--ja,
.c-contact .c-section-title--en {
  color: #fff;
}

.c-contact .c-section-title--en {
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .c-contact .c-section-title--en {
    margin-bottom: 0;
  }
}

.c-contact__desc {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.429;
  color: #fff;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .c-contact__desc {
    margin-bottom: 24px;
    font-size: 0.813rem;
    line-height: 1.846;
    text-align: center;
  }
}

/*-------------------------
  電話CTA
-------------------------*/

.c-contact__tel-number,
.c-contact__tel-hour {
  color: #fff;
}

.c-contact__tel-number-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-contact__tel-number {
  font-size: clamp(1.5rem, 2.35vw, 2rem);
  font-weight: 500;
  line-height: 1.531;
  letter-spacing: 0.05em;
  font-family: 'Prompt', sans-serif;
}

@media screen and (max-width: 768px) {
  .c-contact__tel-icon {
    width: 34px;
    height: 22px;
    object-fit: cover;
  }

  .c-contact__tel-number {
    font-size: 1.688rem;
    line-height: 1.481;
  }
}

.c-contact__tel-hour {
  font-size: 0.938rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.064em;
}

@media screen and (max-width: 768px) {
  .c-contact__tel-hour {
    font-size: 0.813rem;
    line-height: 1.462;
    letter-spacing: 0.059em;
  }
}

/*-------------------------
  ボタン群 共通
-------------------------*/

.c-contact__buttons {
  display: grid;
  grid-template-rows: repeat(2, minmax(auto, 1fr));
  grid-template-columns: minmax(auto, 356px);
  row-gap: 20px;
}

@media screen and (max-width: 768px) {
  .c-contact__buttons {
    padding-inline: 32px;
    grid-template-columns: minmax(auto, 1fr);
    row-gap: 16px;
    margin-bottom: 16px;
  }
}

.c-contact__button {
  display: flex;
  align-items: center;
  height: 90px;
  padding: 30px 32px;
  font-size: clamp(1rem, 1.46vw, 1.25rem);
  line-height: 1.45;
  letter-spacing: 0.15em;
  font-weight: 700;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .c-contact__button {
    height: 58px;
    padding: 16px 20px;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.c-contact__button-label {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .c-contact__button-label {
    justify-content: center;
    gap: 8px;
  }
}

/* 矢印 */

.c-contact__button-label::after {
  content: '';
  display: block;
  width: 18px;
  height: 16px;
  margin-inline-start: auto;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .c-contact__button-label::after {
    display: none;
  }
}

.c-contact__button--inquiry .c-contact__button-label::after {
  background-image: url('../images/arrow-black-right.svg');
}

.c-contact__button--line .c-contact__button-label::after {
  background-image: url('../images/arrow-white-right.svg');
}

/*-------------------------
  お問合せ・資料請求
-------------------------*/

.c-contact__button--inquiry {
  border: 1px solid #2f2222;
  background-color: #fff;
  transition: 0.3s ease;
}

/* アイコン */

.c-contact__button--inquiry .c-contact__button-label::before {
  content: '';
  width: 20px;
  height: 24px;
  background-image: url('../images/icon-contact-apply.svg');
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .c-contact__button--inquiry .c-contact__button-label::before {
    width: 12px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

/* ホバー時  */

.c-contact__button--inquiry:hover {
  background-color: #2f2222;
}

.c-contact__button--inquiry:hover .c-contact__button-label {
  color: #fff;
}

.c-contact__button--inquiry:hover .c-contact__button-label::before {
  background-image: url('../images/icon-contact-apply-white.svg');
}

.c-contact__button--inquiry:hover .c-contact__button-label::after {
  background-image: url('../images/arrow-white-right.svg');
}

/*-------------------------
  LINE相談
-------------------------*/

.c-contact__button--line {
  background-color: #04c755;
  color: #fff;
  transition: 0.3s ease;
}

/* アイコン */

.c-contact__button--line .c-contact__button-label::before {
  content: '';
  width: 20px;
  height: 19px;
  background-image: url('../images/icon-contact-line.svg');
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .c-contact__button--line .c-contact__button-label::before {
    width: 15px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

/* ホバー時  */

.c-contact__button--line:hover {
  background-color: #2f2222;
}

/* ============================
*  イベント カード
* ========================== */

/*-------------------------
  リスト
-------------------------*/

.c-event-list {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  column-gap: 24px;
  row-gap: 40px;
}

@media screen and (max-width: 1000px) {
  .c-event-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .c-event-list {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}

.c-event-item.swiper-slide {
  width: auto !important;
}

@media screen and (max-width: 768px) {
  .c-event-item.swiper-slide {
    width: 282px !important;
  }
}

/*-------------------------
  カード
-------------------------*/

@media screen and (max-width: 768px) {
  .c-event-card:not(.p-top__event-card) {
    display: grid;
    grid-template-areas:
      'image heading'
      'image content';
    column-gap: 16px;
    justify-content: start;
  }
}

/* 種類・ステータス */

.c-event-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  grid-area: heading;
}

@media screen and (max-width: 768px) {
  .c-event-card__heading {
    flex-wrap: wrap;
    row-gap: 8px;
    width: 100%;
    margin-bottom: 8px;
  }
}

/* タグ */

.c-event-card__tags {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* タグ 共通 */

.c-event-card__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  width: 82px;
  height: 28px;
  font-size: 0.688rem;
  line-height: 1.455;
  letter-spacing: 0.05em;
}

/* タグ 見学会 */

.c-event-card__tag--tour {
  background-color: #fff;
  border: 1px solid #2f2222;
  color: #2f2222;
}

/* タグ 予約制 */

.c-event-card__tag--reserve {
  background-color: #b5a181;
  color: #fff;
}

/* ステータス 共通*/

.c-event-card__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  line-height: 1.417;
  letter-spacing: 0.05em;
}

.c-event-card__status::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

/* ステータス 受付中*/

.c-event-card__status--accepting {
  color: #a181b5;
}

.c-event-card__status--accepting::before {
  background-color: #a181b5;
}

/* 画像 */

.c-event-card__image {
  margin-bottom: 16px;
  grid-area: image;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .c-event-card__image {
    width: 37.87vw;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.c-event-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* 内容 */

.c-event-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-area: content;
}

@media screen and (max-width: 768px) {
  .c-event-card__content {
    gap: 8px;
    width: 47.2vw;
  }
}

/* タイトル */

.c-event-card__title {
  height: 58px;
  font-size: 1.125rem;
  line-height: 1.611;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .c-event-card__title {
    height: fit-content;
    font-size: 0.813rem;
    line-height: 1.462;
  }
}

/* 開催日時・開催場所 共通*/

.c-event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media screen and (max-width: 768px) {
  .c-event-card__meta {
    gap: 4px;
  }
}

.c-event-card__date,
.c-event-card__location {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

@media screen and (max-width: 768px) {
  .c-event-card__date,
  .c-event-card__location {
    gap: 4px;
  }
}

.c-event-card__date-text,
.c-event-card__location-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.417;
}

@media screen and (max-width: 768px) {
  .c-event-card__date-text,
  .c-event-card__location-text {
    font-size: 0.688rem;
    display: inline;
    line-height: 1.455;
    letter-spacing: 0.1em;
  }

  .c-event-card__date-icon,
  .c-event-card__location-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}

/* ホバー時 */

.c-event-item:hover .c-event-card__img {
  transform: scale(1.1);
}

/*-------------------------
  トップページ
-------------------------*/

@media screen and (max-width: 768px) {
  .p-top__event-list {
    display: flex !important;
    width: clamp(282px, 75.2vw, 564px) !important;
  }

  .p-top__event-item {
    margin-right: 0 !important;
  }

  .p-top__event-item:first-of-type {
    margin-left: 20px !important;
  }

  .p-top__event-item .c-event-card__image {
    width: 100%;
    aspect-ratio: 282 / 320;
  }

  .p-top__event-item .c-event-card__title {
    height: 48px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-top__event-item .c-event-card__content {
    width: 100%;
  }

  .p-top__event-item .c-event-card__date-text,
  .p-top__event-item .c-event-card__location-text {
    font-size: 0.75rem;
    line-height: 1.417;
  }
}

/* ============================
*  絞り込み検索 c-filter-nav
* ========================== */

.c-filter-nav {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 61px;
  margin-inline: auto;
  padding-inline: clamp(6px, 1.76vw, 24px);
  background-color: #fff;
  border: 1px solid #b5a181;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .c-filter-nav {
    flex-direction: column;
    width: 100%;
    height: fit-content;
    padding: 10px 13px;
  }
}

/* ラベル */

.c-filter-nav-label {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.76vw, 24px);
  font-size: 1.125em;
  line-height: 1.444;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #2f2222;
}

.c-filter-nav-label::after {
  content: '';
  width: 1px;
  height: 41px;
  background: repeating-linear-gradient(0deg, #707070 0px, #707070 3.5px, transparent 3.5px, transparent 5.5px);
}

@media screen and (max-width: 768px) {
  .c-filter-nav-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .c-filter-nav-label::after {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(90deg, #707070 0px, #707070 3.5px, transparent 3.5px, transparent 5.5px);
  }
}

.list-new-entry__small {
  display: inline-block;
}

/* リスト */

.c-filter-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: clamp(6px, 1.76vw, 24px);
}

@media screen and (max-width: 768px) {
  .c-filter-nav__list {
    padding-left: 0;
    padding-top: 10px;
  }
}

/* カテゴリー */

.c-filter-nav__item {
  height: 29px;
  border: 1px solid #b5a181;
  border-radius: 100px;
  transition: 0.3s ease;
}

@media screen and (max-width: 768px) {
  .c-filter-nav__item {
    height: 23px;
  }
}

.c-filter-nav__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 10px;
  width: 100%;
  height: 100%;
}

.c-filter-nav__label {
  font-size: clamp(0.625rem, 1.02vw, 0.875rem);
  line-height: 1.429;
  font-weight: 700;
  color: #b5a181;
}

@media screen and (max-width: 768px) {
  .c-filter-nav__label {
    font-size: 0.75rem;
    line-height: 1.333;
  }
}

/* ホバー時（activeではない場合のみ） */

.c-filter-nav__item:hover .c-filter-nav__button:not(.active) {
  opacity: 0.6;
}

/* アクティブ状態 */

.c-filter-nav__button.active {
  background-color: #b5a181;
  border-radius: 100px;
}

.c-filter-nav__button.active .c-filter-nav__label {
  color: #fff;
}

/*-------------------------
  施工事例ページ
-------------------------*/

.p-works-archive .c-filter-nav__list {
  gap: 16px;
}

/*-------------------------
  お知らせページ
-------------------------*/

@media screen and (max-width: 768px) {
  .p-news-archive .c-filter-nav__list {
    flex-wrap: wrap;
    padding-right: 66px;
  }
}

/* ============================
*  ニュース カード
* ========================== */

/*-------------------------
  ベース
-------------------------*/

.c-news-item {
  width: 100%;
}

.c-news-card {
  display: flex;
  flex-direction: column;
}

/* サムネイル画像 */

.c-news-card__image {
  width: 100%;
  overflow: hidden;
}

.c-news-card__img {
  width: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.c-news-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* タイトル */

.c-news-card__title {
  font-weight: 500;
}

.c-news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* カテゴリ */

.c-news-card__category {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 21px;
  padding-inline: 10px;
  border-radius: 15px;
  background-color: #b5a181;
  letter-spacing: 0.05em;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 12px;
  font-weight: 500;
}

/* 投稿日時 */

.c-news-card__date {
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: 'Prompt', sans-serif;
  margin-left: auto;
}

/* ホバー時 */

.c-news-item:hover .c-news-card__img {
  transform: scale(1.1);
}

/*-------------------------
  トップページ
-------------------------*/

.p-top__news-list {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  column-gap: 16px;
}

.p-top__news-item {
  width: 100% !important;
}

@media screen and (max-width: 1000px) {
  .p-top__news-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .p-top__news-list {
    display: flex !important;
    width: clamp(282px, 19.77vw, 540px) !important;
  }

  .p-top__news-item {
    margin-right: 0 !important;
  }

  .p-top__news-item:first-of-type {
    margin-left: 20px;
  }
}

.p-top__news .c-news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* カテゴリ */

.p-top__news .c-news-card__category {
  font-size: 0.625rem;
}

/* タイトル */

.p-top__news .c-news-card__title {
  font-size: 0.813rem;
  line-height: 1.462;
}

/* 投稿日時 */

.p-top__news .c-news-card__date {
  font-size: 0.75rem;
  line-height: 1.5;
}

/*-------------------------
  お知らせページ
-------------------------*/

.p-news-archive__news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.93vw, 40px);
}

@media screen and (max-width: 768px) {
  .p-news-archive__news-list {
    grid-template-columns: 1fr;
  }
}

.c-news-card.top__news-card {
  gap: 13px;
}

/* タイトル */

.p-news-archive__content .c-news-card__title {
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-news-archive__content .c-news-card__title {
    font-size: 0.938;
    line-height: 1.4;
  }
}

/* カテゴリ */

.p-news-archive__content .c-news-card__category {
  font-size: 0.75rem;
  line-height: 1.5;
}

/* 投稿日時 */

.p-news-archive__content .c-news-card__date {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ==================================
*  一覧ページ用 c-archive-pagination
* ================================ */

.c-pagination-wrapper {
  margin-top: 6.25rem;
}

@media screen and (max-width: 768px) {
  .c-pagination-wrapper {
    margin-top: 4rem;
  }
}

.pagination {
  align-items: center;
  width: fit-content;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .pagination {
    display: flex;
    justify-content: center;
    max-width: 100%;
  }
}

.nav-links {
  display: flex;
  gap: 5px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(47, 34, 34, 0.6);
  font-family: 'Prompt', sans-serif;
}

@media screen and (max-width: 768px) {
  .page-numbers {
    font-size: 0.813rem;
    line-height: 1.385;
    width: 44px;
    height: 44px;
  }
}

.page-numbers:not(.dots) {
  border: 1px solid rgba(181, 161, 129, 0.8);
  background-color: #fff;
}

.c-archive-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.c-archive-pagination__number {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(47, 34, 34, 0.6);
  font-family: 'Prompt', sans-serif;
}

@media screen and (max-width: 768px) {
  .c-archive-pagination__number {
    font-size: 0.813rem;
    line-height: 1.385;
  }
}

/*-------------------------
  該当ページ
-------------------------*/

.page-numbers.current {
  background-color: rgba(181, 161, 129, 0.4);
  color: rgba(47, 34, 34, 1);
}

/* ==================================
*  詳細記事用 c-single-pagination
* ================================ */

.c-single-pagination {
  max-width: 430px;
  width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .c-single-pagination {
    display: flex;
    justify-content: center;
    max-width: 100%;
    padding-inline: 14px;
  }
}

.c-single-pagination__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .c-single-pagination__list {
    gap: clamp(8px, 6.4vw, 12px);
  }
}

.c-single-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

@media screen and (max-width: 768px) {
  .c-single-pagination__link {
    gap: 8px;
  }
}

.c-single-pagination__item--prev .c-single-pagination__link::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background-image: url('../images/arrow-circle-brown-left.svg');
  background-size: cover;
}

.c-single-pagination__item--next .c-single-pagination__link::after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background-image: url('../images/arrow-circle-brown-right.svg');
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .c-single-pagination__item--prev .c-single-pagination__link::before,
  .c-single-pagination__item--next .c-single-pagination__link::after {
    width: 24px;
    height: 24px;
  }
}

.c-single-pagination-label {
  font-size: 1.125em;
  line-height: 1.444;
  font-weight: 700;
  color: #856249;
}

@media screen and (max-width: 768px) {
  .c-single-pagination-label {
    font-size: 0.938rem;
    line-height: 1.4;
  }
}

/* ============================
*  個別（詳細）ページ
* ========================== */

.p-single__article-inner {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f6f2eb;
}

@media screen and (max-width: 768px) {
  .p-single__article-inner {
    padding: 80px 20px;
  }
}

.p-single__article-inner .l-single-inner {
  max-width: 1030px;
  margin-inline: auto;
  margin-bottom: 64px;
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .p-single__article-inner .l-single-inner {
    padding: 40px 20px;
  }
}

.p-single__heading {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 950px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 40px;
}

.p-single__heading .c-event-card__heading {
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 0;
}

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

/*-------------------------
  ヒーロー画像
-------------------------*/

.c-single-article-hero {
  margin-bottom: 40px;
  width: 100%;
  height: auto;
}

.c-single-article-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 950 / 499;
}

@media screen and (max-width: 768px) {
  .c-single-article-hero-img {
    height: auto;
    aspect-ratio: 295 / 155 !important;
  }
}

/*-------------------------
  リスト
-------------------------*/

.c-single-page-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-single-page-list__item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.c-single-page-list__item::before {
  content: '';
  width: 14px;
  height: 14px;
  background-color: #d0ccc1;
  border-radius: 50%;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .c-single-page-list__item {
    gap: 8px;
    font-size: 0.875rem;
    line-height: 1.429;
  }
  .c-single-page-list__item::before {
    width: 10px;
    height: 10px;
  }
}

/*-------------------------
  本文
-------------------------*/

.c-single-desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.125;
}

@media screen and (max-width: 768px) {
  .c-single-desc {
    font-size: 0.875rem;
    line-height: 1.929;
  }
}

/* ============================
* 詳細記事用見出しコンポーネント
* ========================== */

/* TODO: 仮でくくってるので後で削除 */

.article__temp-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/*-------------------------
  H3タイトル
-------------------------*/

.c-single-sub-title {
  padding-bottom: 8px;
  border-bottom: 3px solid #e0d9d1;
  font-size: clamp(1.25rem, 2.05vw, 1.75rem);
  line-height: 1.429;
  font-weight: 600;
  color: #2f2222;
}

@media screen and (max-width: 768px) {
  .c-single-sub-title {
    font-size: 1.375rem;
    line-height: 1.455;
  }
}

/*-------------------------
  H4タイトル
-------------------------*/

.c-single-title--level-4 {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: clamp(1rem, 1.76vw, 1.5rem);
  line-height: 1.458;
  font-weight: 700;
  color: #2f2222;
}

.c-single-title--level-4::before {
  content: '';
  width: clamp(12px, 1.69vw, 23px);
  height: clamp(12px, 1.69vw, 23px);
  border-radius: 50%;
  background-color: #be9f7b;
}

@media screen and (max-width: 768px) {
  .c-single-title--level-4 {
    font-size: 1.188rem;
    line-height: 1.421;
  }
  .c-single-title--level-4::before {
    width: 20px;
    height: 20px;
  }
}

/*-------------------------
  H5タイトル
-------------------------*/

.c-single-title--level-5 {
  display: flex;
  align-items: center;
  padding-left: 16px;
  background-color: #ece6df;
  border-radius: 4px;
  font-size: clamp(1rem, 1.46vw, 1.25rem);
  font-weight: 700;
  color: #2f2222;
}

@media screen and (max-width: 768px) {
  .c-single-title--level-5 {
    align-items: flex-start;
    padding-bottom: 16px;
    padding-inline: 16px;
    font-size: 1rem;
  }
}

/* ============================
*  詳細記事用リストコンポーネント
* ========================== */

.c-single-page-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-single-page-list__item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #2f2222;
}

.c-single-page-list__item::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #d0ccc1;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .c-single-page-list__item {
    gap: 8px;
    font-size: 0.875rem;
    line-height: 1.429;
  }
  .c-single-page-list__item::before {
    width: 10px;
    height: 10px;
  }
}

/* ============================
*  タイトル コンポーネント
* ========================== */

/*---------------------------------
  下層 ページタイトル
---------------------------------*/

.c-page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.c-page-title--ja {
  font-size: clamp(2rem, 2.57vw, 2.188rem);
  line-height: 1.457;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #2f2222;
}

@media screen and (max-width: 768px) {
  .c-page-title--ja {
    font-size: 1.563rem;
    line-height: 1.44;
    /* white-space: nowrap; */
  }
}

.c-page-title--en {
  font-size: 0.813rem;
  line-height: 1.462;
  letter-spacing: 0.2em;
  color: #b5a181;
  font-family: 'Prompt', sans-serif;
  text-transform: uppercase;
}

/*---------------------------------
  トップ・下層 セクションタイトル
---------------------------------*/

.c-section-title {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1.08vh, 16px);
}

@media screen and (max-width: 768px) {
  .c-section-title {
    align-items: center;
    text-align: center;
  }
}

.c-section-title--ja {
  font-size: clamp(2rem, 2.93vw, 2.5rem);
  line-height: 1.45;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #2f2222;
}

@media screen and (max-width: 768px) {
  .c-section-title--ja {
    font-size: 1.875rem;
    line-height: 1.4;
    white-space: nowrap;
  }
}

.c-section-title--en {
  font-size: 0.813rem;
  line-height: 1.462;
  letter-spacing: 0.2em;
  color: #b5a181;
  font-family: 'Prompt', sans-serif;
  text-transform: uppercase;
}

.c-single-sub-title {
  margin-bottom: 40px;
  padding-bottom: 5px;
  border-bottom: 3px solid #e0d9d1;
  font-size: clamp(1.25rem, 2.05vw, 1.75rem);
  line-height: 1.536;
  font-weight: 600;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .c-single-sub-title {
    margin-bottom: 24px;
    padding-bottom: 8px;
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

/* h4 見出し */

.c-single-title--level-4 {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 24px;
  font-size: clamp(1.25rem, 1.76vw, 1.5rem);
  line-height: 1.458;
  font-weight: 700;
}

.c-single-title--level-4::before {
  content: '';
  width: 23px;
  height: 23px;
  background-color: #be9f7b;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .c-single-title--level-4 {
    gap: 4px;
    font-size: 1.188rem;
    line-height: 1.789;
  }
  .c-single-title--level-4::before {
    width: 20px;
    height: 20px;
  }
}

/* h5 見出し */

.c-single-title--level-5 {
  margin-bottom: 24px;
  padding: 14px 16px 15px;
  font-size: clamp(1rem, 1.46vw, 1.25rem);
  line-height: 1.45;
  font-weight: 700;
  background-color: #ece6df;
}

@media screen and (max-width: 768px) {
  .c-single-title--level-5 {
    padding: 16px;
    font-size: 1rem;
    line-height: 1.813;
  }
}

/* ============================
*  お客様の声 c-voice-card
* ========================== */

/*-------------------------
  ベース
-------------------------*/

.c-voice-card:hover .c-voice-card__img {
  scale: 1.1;
}

.c-voice-card__image {
  overflow: hidden;
}

.c-voice-card__img {
  transition: scale 0.25s;
}

.c-voice-card,
.c-voice-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-voice-card__meta {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.c-voice-card__category-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.c-voice-card__date {
  font-size: 0.75rem;
  line-height: 1.333;
  font-family: 'Roboto', sans-serif;
}

.c-voice-card__category-item {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 21px;
  padding-inline: 8px;
  border: 1px solid #b5a181;
  border-radius: 15px;
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #b5a181;
}

.c-voice-card__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.444;
}

/*-------------------------
  トップページ
-------------------------*/

.p-top__voice-list-item .c-voice-card {
  gap: 16px;
}

/* ============================
*  施工事例 カード
* ========================== */

/*-------------------------
  ベース
-------------------------*/

.c-work-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .c-work-card {
    gap: 16px;
  }
}

.c-work-card__image {
  overflow: hidden;
  flex-grow: 1;
}

.c-work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.25s;
}

.c-work-card:hover .c-work-card__img {
  scale: 1.1;
}

.c-work-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .c-work-card__content {
    padding-inline: 20px;
  }
}

/* タイトル */

.c-work-card__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.444;
}

@media screen and (max-width: 768px) {
  .c-work-card__title {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* カテゴリ */

.c-work-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.c-work-card__category-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.c-work-card__category {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.1em 0.75em;
  border-radius: 15px;
  background-color: #b5a181;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

@media screen and (max-width: 768px) {
  .c-work-card__category {
    color: #b5a181;
    border: 1px solid #b5a181;
    background-color: #fff;
  }
}

.c-work-card__category--white {
  color: #b5a181;
  background-color: #fff;
  border: 1px solid #b5a181;
  font-weight: 700;
}

/* カテゴリ ホバー時 */

/* .c-work-card__category:hover {
  background-color: #b5a181;
  color: #fff;
} */

/* タグ */

.c-work-card__tags {
  display: flex;
  gap: 8px;
}

.c-work-card__tag {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.5;
  color: #b5a181;
}

.c-work-card__tag--bold {
  font-weight: 700;
}

/* 施工場所・オーナー様 */

.c-work-card__location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-work-card__location-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.c-work-card__location-text {
  font-size: 0.75rem;
  line-height: 1.417;
}

/*-------------------------
  トップページ
-------------------------*/

.p-top__works-card-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-top__works-card-content {
  max-width: 407px;
  width: 100%;
  margin-inline: auto;
}

/*-------------------------
  施工事例ページ
-------------------------*/

.p-works-archive__item .c-work-card__meta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-works-archive__works-card-title .c-work-card__location-text {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-works-archive__works-card-location {
    display: none;
  }

  .p-works-archive__works-card-title .c-work-card__location-text {
    display: inline;
    font-size: 1rem;
    line-height: 1.5;
  }
}

:root {
  --font-family-zenkakugothic: 'Zen Kaku Gothic New', sans-serif;
  --font-family-prompt: 'Prompt', sans-serif;
  --color-black: #2f2222;
  --color-white: #f9f8f5;
  --color-yellow-orange: #b5a181;
  --color-line-color: #06c755;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

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

[id] {
  scroll-margin-top: 64px;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.l-header {
  position: relative;
}

@media screen and (max-width: 768px) {
  .l-header {
    z-index: 7;
  }
}

.l-header__content--normal {
  position: relative;
  z-index: 8;
  border-top: 4px solid #2a1f1f;
  padding-top: 16px;
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .l-header__content--normal {
    border-top: none;
    padding-top: unset;
    margin-top: 57px;
    z-index: 1;
  }
}

.l-header__content:not(.l-header__content--fixed) .l-header__logo {
  width: fit-content;
  margin-inline: auto;
  font-family: var(--font-family-prompt);
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .l-header__content:not(.l-header__content--fixed) .l-header__logo {
    display: none;
  }
}

.l-header__logo-name {
  font-family: var(--font-family-zenkakugothic);
}

.l-header__content:not(.l-header__content--fixed) .l-header__nav {
  background-color: #f9f8f5;
  color: var(--color-black);
}

.l-header__nav-item-link {
  display: flex;
  align-items: center;
  padding-block: 15px;
  transition: 0.25s opacity ease;
}

@media screen and (max-width: 1300px) {
  .l-header__content--normal .l-header__nav-item-link {
    flex-direction: column;
    gap: 8px;
    padding-block-end: 9px;
    padding-inline: 8px;
    line-height: 1.2525;
  }

  .l-header__content--fixed .l-header__nav-item-link {
    padding: 0.5em;
  }

  .l-header__content--fixed .l-header__nav-item {
    width: 25%;
  }
}

@media screen and (max-width: 768px) {
  .l-header__content--fixed .l-header__nav-item-link {
    width: fit-content;
  }
}

.l-header__nav-item-link:hover,
.accordion-list-item-link:hover {
  opacity: 0.6;
}

.l-header__nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1366px;
  margin-inline: auto;
  padding-inline: 70px;
}

@media screen and (max-width: 1300px) {
  .l-header__nav-list {
    flex-wrap: wrap;
    padding-inline: 20px;
  }
}

@media screen and (max-width: 768px) {
  .l-header__nav-list {
    align-items: stretch;
  }
}

.l-header__nav-item {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family-zenkakugothic);
  font-size: clamp(0.75rem, -1.712rem + 3.03vw, 0.875rem);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .l-header__nav-item {
    text-align: center;
    font-size: min(2.9333vw, 11px);
    align-items: stretch;
  }

  .is-open .l-header__nav-item {
    font-size: min(3.7333vw, 14px);
    font-weight: var(--font-weight-regular);
  }
}

.br-menu {
  display: none;
}

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

.l-header__content:not(.l-header__content--fixed) .nav__item--top .l-header__nav-item-link::before {
  content: '';
  display: inline-flex;
  width: 14px;
  height: 14px;
  -webkit-mask: url(../images/icon-home.svg);
  mask: url(../images/icon-home.svg);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #cbc5b9;
  margin-right: 0.5124vw;
}

@media screen and (max-width: 1300px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--top .l-header__nav-item-link::before {
    margin-right: 0;
  }
}

@media screen and (max-width: 942px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--top {
    display: none;
  }
}

.l-header__content:not(.l-header__content--fixed) .nav__item--model-house .l-header__nav-item-link::before {
  content: '';
  display: inline-flex;
  width: 14px;
  height: 14px;
  -webkit-mask: url(../images/icon-model-house.png);
  mask: url(../images/icon-model-house.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #cbc5b9;
  margin-right: 0.5124vw;
}

@media screen and (max-width: 1300px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--model-house .l-header__nav-item-link::before {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--model-house .l-header__nav-item-link::before {
    width: 18px;
    height: 18px;
    margin-right: unset;
  }
}

.l-header__content:not(.l-header__content--fixed) .accordion-content {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  padding-inline: min(1.7569vw, 24px);
  display: none;
  background-color: #f9f8f5;
  width: max-content;
  z-index: 1000;
}

.accordion-toggle::after {
  display: inline-flex;
  align-items: center;
  content: '';
  width: 8px;
  height: 7px;
  margin-left: 4px;
  -webkit-mask: url(../images/icon-inverted-triangle.svg);
  mask: url(../images/icon-inverted-triangle.svg);
  background-color: #4b4b4b;
}

@media screen and (max-width: 1300px) {
  .accordion-toggle::after {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 942px) {
  .accordion-toggle::after {
    content: none;
  }
}

.accordion-toggle:hover::after {
  background-color: #2f2222;
  opacity: 0.25;
}

.accordion-list-item {
  line-height: 1.42857;
  padding-bottom: 24px;
}

.nav__item--model-house:hover .accordion-content {
  display: block;
}

@media screen and (max-width: 768px) {
  .nav__item--model-house:hover .accordion-content {
    display: none;
  }

  .is-open .nav__item--model-house:hover .accordion-content {
    display: block;
  }
}

.l-header__content:not(.l-header__content--fixed) .nav__item--works .l-header__nav-item-link::before {
  content: '';
  display: inline-flex;
  width: 14px;
  height: 12.7px;
  -webkit-mask: url(../images/icon-case.png);
  mask: url(../images/icon-case.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #cbc5b9;
  margin-right: 0.5124vw;
}

@media screen and (max-width: 1300px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--works .l-header__nav-item-link::before {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--works .l-header__nav-item-link::before {
    margin-bottom: 0.5em;
    width: 18px;
    height: 16.33px;
    margin-right: unset;
  }
}

.l-header__content:not(.l-header__content--fixed) .nav__item--voice .l-header__nav-item-link::before {
  content: '';
  display: inline-flex;
  width: 14px;
  height: 13.5px;
  -webkit-mask: url(../images/icon-voice.png);
  mask: url(../images/icon-voice.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #cbc5b9;
  margin-right: 0.5124vw;
}

@media screen and (max-width: 1300px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--voice .l-header__nav-item-link::before {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--voice .l-header__nav-item-link::before {
    margin-bottom: 0.5em;
    width: 18px;
    height: 18px;
    margin-right: unset;
  }
}

.l-header__content:not(.l-header__content--fixed) .nav__item--event .l-header__nav-item-link::before {
  content: '';
  display: inline-flex;
  width: 14px;
  height: 14px;
  -webkit-mask: url(../images/icon-calendar.png);
  mask: url(../images/icon-calendar.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #cbc5b9;
  margin-right: 0.5124vw;
}

@media screen and (max-width: 1300px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--event .l-header__nav-item-link::before {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--event .l-header__nav-item-link::before {
    margin-bottom: 0.5em;
    width: 18px;
    height: 18px;
    margin-right: unset;
  }
}

.l-header__content:not(.l-header__content--fixed) .nav__item--staff .l-header__nav-item-link::before {
  content: '';
  display: inline-flex;
  width: 14px;
  height: 10.5px;
  -webkit-mask: url(../images/icon-staff.png);
  mask: url(../images/icon-staff.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #cbc5b9;
  margin-right: 0.5124vw;
}

@media screen and (max-width: 1300px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--staff .l-header__nav-item-link::before {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--staff .l-header__nav-item-link::before {
    width: 18px;
    height: 13.5px;
    margin-right: unset;
  }
}

.l-header__content:not(.l-header__content--fixed) .nav__item--company .l-header__nav-item-link::before {
  content: '';
  display: inline-flex;
  width: 14px;
  height: 16.8px;
  -webkit-mask: url(../images/icon-company.png);
  mask: url(../images/icon-company.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #cbc5b9;
  margin-right: 0.5124vw;
}

@media screen and (max-width: 1300px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--company .l-header__nav-item-link::before {
    margin-right: 0;
  }
}

@media screen and (max-width: 942px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--company {
    display: none;
  }
}

.l-header__content:not(.l-header__content--fixed) .nav__item--news .l-header__nav-item-link::before {
  content: '';
  display: inline-flex;
  width: 14px;
  height: 16.8px;
  -webkit-mask: url(../images/icon-news.png);
  mask: url(../images/icon-news.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #cbc5b9;
  margin-right: 0.5124vw;
}

@media screen and (max-width: 1300px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--news .l-header__nav-item-link::before {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--news {
    display: none;
  }
}

.l-header__content:not(.l-header__content--fixed) .nav__item--contact .l-header__nav-item-link::before {
  content: '';
  display: inline-flex;
  width: 14px;
  height: 10.84px;
  -webkit-mask: url(../images/icon-contact.png);
  mask: url(../images/icon-contact.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #cbc5b9;
  margin-right: 0.5124vw;
}

@media screen and (max-width: 1300px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--contact .l-header__nav-item-link::before {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .l-header__content:not(.l-header__content--fixed) .nav__item--contact {
    display: none;
  }
}

/* ============================
* 追従メニューバー専用CSS
* ========================== */

.l-header__content--fixed {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 1.7569vw; */
  padding-left: min(1.7569vw, 24px);
  padding-right: min(1.5373vw, 21px);
  padding-top: 13px;
  padding-bottom: 12px;
  /* border-top: 4px solid var(--color-black); */
  position: fixed;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  background-color: #ffffff;
  max-width: 1366px;
}

.l-header__content--fixed:before {
  content: '';
  position: absolute;
  top: 0;
  left: calc((1366px - 100vw) / 2);
  bottom: 0;
  border-top: 4px solid var(--color-black);
  background-color: #fff;
  width: 100vw;
  z-index: -1;
}

@media screen and (max-width: 1366px) {
  .l-header__content--fixed:before {
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  .l-header__content--fixed:before {
    content: none;
  }
}

@media screen and (max-width: 768px) {
  .l-header__content--fixed {
    height: 54px;
    z-index: 3;
    border-top: none;
  }
}

.l-header__content--fixed .l-header__content-inner {
  max-width: 1366px;
  margin-inline: auto;
}

.l-header__content--fixed .accordion-content {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  padding-inline: 12px;
  display: none;
  background-color: #ffffff;
  width: max-content;
  z-index: 1000;
  font-size: 10px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.024em;
  line-height: 1.5;
}

.is-open .l-header__nav-item {
  text-align: left;
}

.is-open .accordion-content {
  display: block;
  position: relative;
  width: auto;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: calc(14 / 12);
  font-weight: var(--font-weight-regular);
  padding-inline: unset;
  padding-left: 1.5em;
}

.is-open .accordion-list-item {
  padding-bottom: 10px;
}

.l-header__content--fixed .l-header__nav-list {
  column-gap: min(1.4641vw, 20px);
  font-size: clamp(0.688rem, 0.527rem + 0.334vw, 0.813rem);
  padding-inline: 0;
}

@media screen and (max-width: 1300px) {
  .l-header__content--fixed .l-header__nav-list {
    gap: unset;
  }
}

.c-contact-tel--header {
  display: flex;
  flex-direction: column;
}

.c-contact-tel__top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.c-contact-tel__number {
  font-size: 21px;
  letter-spacing: 0.028em;
  line-height: 1.5238;
  font-family: var(--font-family-prompt);
  font-weight: var(--font-weight-medium);
}

@media screen and (max-width: 768px) {
  .c-contact-tel__number {
    font-size: 24px;
  }
}

.c-contact-tel__hour {
  margin-top: -7px;
  font-size: 9px;
  letter-spacing: 0.064em;
  line-height: 1.4444;
  font-weight: var(--font-weight-medium);
}

@media screen and (max-width: 768px) {
  .c-contact-tel__hour {
    margin-top: -4px;
    text-align: right;
  }
}

@media screen and (max-width: 768px) {
  .l-header__logo-img {
    width: min(46.1333vw, 173px);
  }
}

/* ============================
* ハンバーガーメニュー
* ========================== */

.hamburger-menu__wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: min(24px, 1.7569vw);
}

.hamburger-menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamburger-menu {
    position: fixed;
    right: min(3.86666vw, 14.5px);
    top: min(4.53333vw, 17px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color-black);
    border-radius: 0 0 0 10px;
    gap: 8px;
    z-index: 3;
  }
}

@media screen and (max-width: 1024px) {
  .hamburger-menu__wrapper {
    gap: unset;
  }

  /* closed */
  /* .hamburger-menu__wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: var(--bg-color-body);
        position: absolute;
        top: 70px;
        left: 0;
        right: auto;
        width: 100vw;
        height: 0;
        padding: 0 8px;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    } */
  /* opened */
  .hamburger-menu__wrapper.open {
    visibility: visible;
    opacity: 1;
    height: calc(100vh - 70px);
    z-index: 100;
  }

  .header__nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    /* z-index: 10; */
    width: 100%;
    height: fit-content;
    padding: 32px;
    margin-inline: auto;
    transition: left 0.3s ease;
    background-color: #fff;
    border-radius: 16px;
    overflow-y: scroll;
    box-sizing: border-box;
  }

  .header__nav-list {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    gap: 16px;
    width: 100%;
  }

  #drawerMenu.open .header__nav {
    left: 0;
  }
}

.l-header__contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: min(0.5856vw, 8px);
}

@media screen and (max-width: 906px) {
  .l-header__contact-info {
    display: none;
  }
}

.l-header__contact-info .c-cta-button {
  height: 44px;
}

@media screen and (max-width: 1300px) {
  .l-header__contact-info .c-cta-button {
    display: none;
  }
}

.c-cta-button--inquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block-start: min(1.098vw, 15px);
  padding-block-end: min(1.0248vw, 14px);
  padding-inline: 8px;
  border-radius: 4px;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  background-color: #ffffff;
  font-size: 10px;
  font-weight: var(--font-weight-medium);
  /* line-height: 1.5; */
  transition: all 0.5s;
}

.c-cta-button--inquiry:hover {
  background-color: var(--color-black);
  color: #ffffff;
}

.c-cta-button--inquiry .c-cta-button__label:first-of-type {
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.c-cta-button--inquiry .c-cta-button__label:first-of-type:before {
  content: '';
  display: inline-flex;
  width: 10px;
  height: 12px;
  background-color: var(--color-black);
  margin-right: 4px;
  align-items: center;
  vertical-align: middle;
  -webkit-mask: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDEwIDEyIj48cGF0aCBkPSJNOS40ODcsMy4wOCw2Ljg1OS41QTEuODMsMS44MywwLDAsMCw1LjU3NywwSDEuNzk1QTEuNzA3LDEuNzA3LDAsMCwwLDAsMS42NjV2OC42MTNBMS43NTYsMS43NTYsMCwwLDAsMS43OTUsMTJoNi40MUExLjc1NywxLjc1NywwLDAsMCwxMCwxMC4yNzhWNC4yNDlBMS42NDgsMS42NDgsMCwwLDAsOS40ODcsMy4wOE0zLjA3Nyw0Ljg2NEg1YS41LjUsMCwwLDEsLjUxMy40OTJBLjQ2My40NjMsMCwwLDEsNSw1Ljg0OEgzLjA3N2EuNDkzLjQ5MywwLDEsMSwwLS45ODRNNi45MjMsOC4zMDlIMy4wNzdhLjUuNSwwLDAsMS0uNTEzLS40OTIuNDYzLjQ2MywwLDAsMSwuNTEzLS40OTJINi45MjNhLjQ5My40OTMsMCwxLDEsMCwuOTg0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIC0wLjAwMSkiLz48L3N2Zz4=');
  mask: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDEwIDEyIj48cGF0aCBkPSJNOS40ODcsMy4wOCw2Ljg1OS41QTEuODMsMS44MywwLDAsMCw1LjU3NywwSDEuNzk1QTEuNzA3LDEuNzA3LDAsMCwwLDAsMS42NjV2OC42MTNBMS43NTYsMS43NTYsMCwwLDAsMS43OTUsMTJoNi40MUExLjc1NywxLjc1NywwLDAsMCwxMCwxMC4yNzhWNC4yNDlBMS42NDgsMS42NDgsMCwwLDAsOS40ODcsMy4wOE0zLjA3Nyw0Ljg2NEg1YS41LjUsMCwwLDEsLjUxMy40OTJBLjQ2My40NjMsMCwwLDEsNSw1Ljg0OEgzLjA3N2EuNDkzLjQ5MywwLDEsMSwwLS45ODRNNi45MjMsOC4zMDlIMy4wNzdhLjUuNSwwLDAsMS0uNTEzLS40OTIuNDYzLjQ2MywwLDAsMSwuNTEzLS40OTJINi45MjNhLjQ5My40OTMsMCwxLDEsMCwuOTg0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIC0wLjAwMSkiLz48L3N2Zz4=');
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  .c-cta-button--inquiry .c-cta-button__label:first-of-type:before {
    width: 12px;
    height: 14px;
  }
}

.c-cta-button--inquiry:hover .c-cta-button__label:first-of-type:before {
  background-color: #ffffff;
  /* fill: #ffffff; */
}

.c-cta-button--inquiry .c-cta-button__label:last-of-type {
  position: relative;
  margin-left: 9px;
  line-height: 1.5;
}

.c-cta-button--inquiry .c-cta-button__label:last-of-type:before {
  content: '';
  display: block;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: var(--color-black);
  transition: background-color 0.5s;
}

.c-cta-button--inquiry:hover .c-cta-button__label:last-of-type:before {
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .small-font {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
  .order3 {
    order: 3;
  }
}

.c-cta-button--line {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: min(2.0497vw, 28px);
  padding-block: min(1.06149vw, 14.5px);
  border-radius: 4px;
  background-color: var(--color-line-color);
  color: #ffffff;
  font-size: 10px;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: all 0.5s;
}

.c-cta-button--line::before {
  content: '';
  display: inline-flex;
  width: 12px;
  height: 11.43px;
  background-color: #ffffff;
  margin-right: 4px;
  align-items: center;
  vertical-align: middle;
  -webkit-mask: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMi40MzUiIHZpZXdCb3g9IjAgMCAxMyAxMi40MzUiPiA8ZyBpZD0i44Kw44Or44O844OXXzEyIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC41IDAuNSkiPiA8cGF0aCBpZD0i5YmN6Z2i44Kq44OW44K444Kn44Kv44OI44Gn5Z6L5oqc44GNXzEiIGRhdGEtbmFtZT0i5YmN6Z2i44Kq44OW44K444Kn44Kv44OI44Gn5Z6L5oqc44GNIDEiIGQ9Ik0tMTIyNi4zMy0yNC44NDlhLjIuMiwwLDAsMS0uMTYxLS4wNjMuNDQuNDQsMCwwLDEtLjAzMS0uMzM0bDAtLjAxM2MuMDE1LS4wOS4wODUtLjUxMy4wODUtLjUxM2ExLjE1OSwxLjE1OSwwLDAsMC0uMDE5LS41NDNjLS4wNjYtLjE2NS0uMzI0LS4yNTItLjUyOC0uMy0yLjkwOC0uMzg0LTUuMDE4LTIuNC01LjAxOC00LjgsMC0yLjY4NSwyLjY5Mi00Ljg3LDYtNC44N3M2LDIuMTg1LDYsNC44N2E0LjM1MSw0LjM1MSwwLDAsMS0xLjI4NiwzQTE5LjIsMTkuMiwwLDAsMS0xMjI2LTI0LjkzNS45MDYuOTA2LDAsMCwxLTEyMjYuMzMtMjQuODQ5Wm0yLjY0OS03Ljg2MmEuMTE1LjExNSwwLDAsMC0uMTE1LjExNHYyLjYxN2EuMTE2LjExNiwwLDAsMCwuMTE1LjExNkgtMTIyMmEuMTE0LjExNCwwLDAsMCwuMTE0LS4xMTRWLTMwLjRhLjExNC4xMTQsMCwwLDAtLjExNC0uMTE0aC0xLjE0NnYtLjQ0MkgtMTIyMmEuMTE1LjExNSwwLDAsMCwuMTE0LS4xMTVWLTMxLjVhLjExNS4xMTUsMCwwLDAtLjExNC0uMTE1aC0xLjE0NnYtLjQ0MkgtMTIyMmEuMTE0LjExNCwwLDAsMCwuMTE0LS4xMTRWLTMyLjZhLjExNC4xMTQsMCwwLDAtLjExNC0uMTE0aC0xLjY4NlptLTIuMzU3LDEuMTc4LDAsMCwxLjIsMS42MThhLjEuMSwwLDAsMCwuMDMuMDI5bC4wMDguMDA1LjAwOSwwLC4wMDYsMCwuMDExLDBhLjE0LjE0LDAsMCwwLC4wMzEsMGguNDI0YS4xMTQuMTE0LDAsMCwwLC4xMTQtLjExNFYtMzIuNmEuMTE0LjExNCwwLDAsMC0uMTE0LS4xMTRoLS40MjZhLjExNS4xMTUsMCwwLDAtLjExNS4xMTR2MS41NTVsLTEuMi0xLjYxN2EuMDU1LjA1NSwwLDAsMC0uMDA5LS4wMTJsLS4wMDctLjAwOC0uMDA4LS4wMDcsMCwwLS4wMDYsMC0uMDA2LDAsMCwwaDBsLS4wMDcsMC0uMDA3LDAtLjAwNywwLS4wMSwwaC0uNDQ1YS4xMTQuMTE0LDAsMCwwLS4xMTQuMTE0djIuNjE5YS4xMTQuMTE0LDAsMCwwLC4xMTQuMTE0aC40MjZhLjExNC4xMTQsMCwwLDAsLjExNC0uMTE0di0xLjU1NVptLTEuNi0xLjE3OGEuMTE0LjExNCwwLDAsMC0uMTE0LjExNHYyLjYxOWEuMTE0LjExNCwwLDAsMCwuMTE0LjExNGguNDI2YS4xMTQuMTE0LDAsMCwwLC4xMTQtLjExNFYtMzIuNmEuMTE0LjExNCwwLDAsMC0uMTE0LS4xMTRabS0yLjI3NSwwYS4xMTQuMTE0LDAsMCwwLS4xMTQuMTE0djIuNjE3YS4xMTUuMTE1LDAsMCwwLC4xMTQuMTE2aDEuNjg2YS4xMTUuMTE1LDAsMCwwLC4xMTUtLjExNFYtMzAuNGEuMTE1LjExNSwwLDAsMC0uMTE1LS4xMTRoLTEuMTQ2Vi0zMi42YS4xMTQuMTE0LDAsMCwwLS4xMTQtLjExNFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyMzIgMzYuMjgzKSIgZmlsbD0iI2ZmZiIgc3Ryb2tlPSJyZ2JhKDAsMCwwLDApIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMSIvPiA8L2c+PC9zdmc+');
  mask: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMi40MzUiIHZpZXdCb3g9IjAgMCAxMyAxMi40MzUiPiA8ZyBpZD0i44Kw44Or44O844OXXzEyIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC41IDAuNSkiPiA8cGF0aCBpZD0i5YmN6Z2i44Kq44OW44K444Kn44Kv44OI44Gn5Z6L5oqc44GNXzEiIGRhdGEtbmFtZT0i5YmN6Z2i44Kq44OW44K444Kn44Kv44OI44Gn5Z6L5oqc44GNIDEiIGQ9Ik0tMTIyNi4zMy0yNC44NDlhLjIuMiwwLDAsMS0uMTYxLS4wNjMuNDQuNDQsMCwwLDEtLjAzMS0uMzM0bDAtLjAxM2MuMDE1LS4wOS4wODUtLjUxMy4wODUtLjUxM2ExLjE1OSwxLjE1OSwwLDAsMC0uMDE5LS41NDNjLS4wNjYtLjE2NS0uMzI0LS4yNTItLjUyOC0uMy0yLjkwOC0uMzg0LTUuMDE4LTIuNC01LjAxOC00LjgsMC0yLjY4NSwyLjY5Mi00Ljg3LDYtNC44N3M2LDIuMTg1LDYsNC44N2E0LjM1MSw0LjM1MSwwLDAsMS0xLjI4NiwzQTE5LjIsMTkuMiwwLDAsMS0xMjI2LTI0LjkzNS45MDYuOTA2LDAsMCwxLTEyMjYuMzMtMjQuODQ5Wm0yLjY0OS03Ljg2MmEuMTE1LjExNSwwLDAsMC0uMTE1LjExNHYyLjYxN2EuMTE2LjExNiwwLDAsMCwuMTE1LjExNkgtMTIyMmEuMTE0LjExNCwwLDAsMCwuMTE0LS4xMTRWLTMwLjRhLjExNC4xMTQsMCwwLDAtLjExNC0uMTE0aC0xLjE0NnYtLjQ0MkgtMTIyMmEuMTE1LjExNSwwLDAsMCwuMTE0LS4xMTVWLTMxLjVhLjExNS4xMTUsMCwwLDAtLjExNC0uMTE1aC0xLjE0NnYtLjQ0MkgtMTIyMmEuMTE0LjExNCwwLDAsMCwuMTE0LS4xMTRWLTMyLjZhLjExNC4xMTQsMCwwLDAtLjExNC0uMTE0aC0xLjY4NlptLTIuMzU3LDEuMTc4LDAsMCwxLjIsMS42MThhLjEuMSwwLDAsMCwuMDMuMDI5bC4wMDguMDA1LjAwOSwwLC4wMDYsMCwuMDExLDBhLjE0LjE0LDAsMCwwLC4wMzEsMGguNDI0YS4xMTQuMTE0LDAsMCwwLC4xMTQtLjExNFYtMzIuNmEuMTE0LjExNCwwLDAsMC0uMTE0LS4xMTRoLS40MjZhLjExNS4xMTUsMCwwLDAtLjExNS4xMTR2MS41NTVsLTEuMi0xLjYxN2EuMDU1LjA1NSwwLDAsMC0uMDA5LS4wMTJsLS4wMDctLjAwOC0uMDA4LS4wMDcsMCwwLS4wMDYsMC0uMDA2LDAsMCwwaDBsLS4wMDcsMC0uMDA3LDAtLjAwNywwLS4wMSwwaC0uNDQ1YS4xMTQuMTE0LDAsMCwwLS4xMTQuMTE0djIuNjE5YS4xMTQuMTE0LDAsMCwwLC4xMTQuMTE0aC40MjZhLjExNC4xMTQsMCwwLDAsLjExNC0uMTE0di0xLjU1NVptLTEuNi0xLjE3OGEuMTE0LjExNCwwLDAsMC0uMTE0LjExNHYyLjYxOWEuMTE0LjExNCwwLDAsMCwuMTE0LjExNGguNDI2YS4xMTQuMTE0LDAsMCwwLC4xMTQtLjExNFYtMzIuNmEuMTE0LjExNCwwLDAsMC0uMTE0LS4xMTRabS0yLjI3NSwwYS4xMTQuMTE0LDAsMCwwLS4xMTQuMTE0djIuNjE3YS4xMTUuMTE1LDAsMCwwLC4xMTQuMTE2aDEuNjg2YS4xMTUuMTE1LDAsMCwwLC4xMTUtLjExNFYtMzAuNGEuMTE1LjExNSwwLDAsMC0uMTE1LS4xMTRoLTEuMTQ2Vi0zMi42YS4xMTQuMTE0LDAsMCwwLS4xMTQtLjExNFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyMzIgMzYuMjgzKSIgZmlsbD0iI2ZmZiIgc3Ryb2tlPSJyZ2JhKDAsMCwwLDApIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMSIvPiA8L2c+PC9zdmc+');
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  .c-cta-button--line::before {
    width: 15px;
    height: 14px;
  }
}

.c-cta-button--line:hover {
  background-color: var(--color-black);
}

.l-header-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-header-sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 57px;
    display: block;
    margin-inline: unset;
    margin-right: auto;
    padding-left: min(5.333vw, 20px);
    font-family: var(--font-family-prompt);
    padding-top: 12px;
    border-top: 4px solid var(--color-black);
    background-color: #ffffff;
    z-index: 3;
  }
}

@media screen and (max-width: 768px) {
  .l-header__contact-info {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    gap: 10px;
  }

  .l-header__contact-info .c-cta-button {
    display: flex;
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.16em;
    line-height: calc(24 / 16);
  }
}

@media screen and (max-width: 768px) {
  #flowmenu.l-header__content--fixed {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 100vw;
    /* height: 100vh; */
    height: 100dvh;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 36vw, #ffffff 36vw, #ffffff 100%);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 900;
    padding: 0;
    padding-left: calc(36vw + 24px);
    padding-top: min(18.666vw, 70px);
    padding-bottom: 1rem;
    padding-right: 24px;
    box-sizing: border-box;
    overflow-y: auto;
  }

  #flowmenu.l-header__content--fixed.is-open {
    transform: translateX(0);
  }

  .l-header__logo {
    width: fit-content;
  }

  #flowmenu .l-header__logo {
    margin-bottom: 30px;
    width: 100%;
  }

  #flowmenu .l-header__logo img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  #flowmenu #drawerMenu,
  #flowmenu nav,
  #flowmenu .l-header__nav-list {
    width: 100%;
    display: block;
  }

  #flowmenu .l-header__nav-list {
    display: flex;
    flex-direction: column;
    gap: 5.4vw;
  }

  .is-open .l-header__nav-item {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
  }

  #flowmenu #drawerMenu {
    display: block !important;
    background: transparent;
    position: static;
    height: auto;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

#hamburgerMenu {
  transition: all 0.25s;
}

.js-scroll-lock {
  overflow: hidden !important;
}

/* ============================
*  Footer .l-footer
* ========================== */

.l-footer {
  background-color: #2f2222;
  color: #fff;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin-inline: auto;
  padding: 49px 0 35px;
}

@media screen and (max-width: 1000px) {
  .l-footer__inner {
    gap: 40px;
    padding: 41px 0 106px;
  }
}

/*-------------------------
  ロゴ
-------------------------*/

.l-footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 社名 */

.l-footer__logo-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* キャッチコピー */

.l-footer__logo-catchcopy {
  font-family: 'Prompt', sans-serif;
  font-size: 0.5rem;
  line-height: 1.5;
  text-transform: uppercase;
}

/*-------------------------
  グローバルナビゲーション
-------------------------*/

.l-footer__nav-list {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  .l-footer__nav-list {
    flex-direction: column;
    gap: 16px;
  }
}

.l-footer__nav-item {
  display: flex;
  align-items: center;
  opacity: 1;
  transition: 0.3s ease;
}

/* ホバー時 */

.l-footer__nav-item:hover {
  opacity: 0.6;
}

.l-footer__nav-item:not(:last-of-type) {
  border-right: 1px solid #fff;
}

@media screen and (max-width: 1000px) {
  .l-footer__nav-item:not(:last-of-type) {
    border-right: none;
  }
}

.l-footer__nav-item:first-of-type {
  padding-left: 0;
}

.l-footer__nav-item:last-of-type {
  padding-right: 0;
}

.l-footer__nav-link {
  width: 100%;
  height: 100%;
  padding-inline: clamp(6px, 1.76vw, 24px);
  font-size: 0.813rem;
  line-height: 1.462;
  font-weight: 700;
}

@media screen and (max-width: 1000px) {
  .l-footer__nav-link {
    padding-inline: 0;
    font-size: 0.75rem;
    line-height: 1.417;
  }
}

/*-------------------------
 サブナビゲーション
-------------------------*/

.l-footer__sub-nav-list {
  display: flex;
  align-items: center;
}

.l-footer__sub-nav-item {
  display: flex;
  align-items: center;
  opacity: 1;
  transition: 0.3s ease;
}

/* ホバー時 */

.l-footer__sub-nav-item:hover {
  opacity: 0.6;
}

.l-footer__sub-nav-item:not(:last-of-type) {
  border-right: 1px solid #fff;
}

.l-footer__sub-nav-link {
  width: 100%;
  height: 100%;
  padding-inline: clamp(12px, 1.76vw, 24px);
  font-size: 0.813rem;
  font-weight: 500;
  line-height: 1.462;
}

@media screen and (max-width: 1000px) {
  .l-footer__sub-nav-link {
    font-size: 0.75rem;
    line-height: 1.417;
  }
}

/*-------------------------
 コピーライト
-------------------------*/

.l-footer__copyright {
  font-family: 'Prompt', sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.6;
}

.c-line-cta--fixed {
  position: fixed;
  z-index: 10;
  bottom: min(117px, 15.23vh);
  right: 0;
  transition: 0.3s ease opacity;
}

.c-line-cta--fixed:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .c-line-cta--fixed {
    display: none;
  }
}

.c-cta-buttons--fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}

@media screen and (max-width: 768px) {
  .c-cta-buttons--fixed {
    display: grid;
    grid-template-columns: 50% 50%;
    z-index: 6;
  }
  .c-cta-buttons--fixed .c-cta-button {
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    height: 67px;
  }
  .c-cta-buttons--fixed .c-cta-button--inquiry .c-cta-button__label:first-of-type:before {
    width: 22px;
    height: 27px;
    margin-right: 8px;
  }
  .c-cta-buttons--fixed .c-cta-button--line:before {
    width: 28px;
    height: 27px;
    margin-right: 10px;
  }
  .c-cta-buttons--fixed .c-cta-button--inquiry .c-cta-button__label:last-of-type {
    margin-left: 16px;
  }
  .c-cta-buttons--fixed .c-cta-button--inquiry .c-cta-button__label:last-of-type:before {
    left: -8px;
  }
}
