@charset "UTF-8";
/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * Variables
*/
/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * 共通スタイル
 */
/**
 * Reset
 * https://unpkg.com/modern-css-reset/dist/reset.min.css
 * ==========================================================================
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

li {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}
/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * 共通スタイル
 */
/**
 * Base
 * ==========================================================================
 */
/**
 * ↓ General
 */
html {
  font-size: 16px;
  -webkit-text-size-adjust: auto;
  -moz-text-size-adjust: auto;
  text-size-adjust: auto;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 320px;
  margin: 0 auto;
  overflow-x: hidden;
  word-wrap: break-word;
  line-height: 2;
  letter-spacing: 0.03em;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  color: #212028;
  scrollbar-gutter: stable;
}
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }
}

a:hover .scale-up {
  transform: scale(1.05);
  transition: all 0.3s;
}

::-moz-placeholder {
  color: #aaa;
}

::placeholder {
  color: #aaa;
}

.pc-only {
  display: block !important;
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site.architect-page {
  font-family: "Noto Serif JP", serif;
}

.site-content {
  flex: 1;
}

.ta-center {
  text-align: center !important;
}

.ta-right {
  text-align: right !important;
}

.t-white {
  color: #fff !important;
}

.t-shadow {
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7);
}

.pointer-none a,
.pointer-none {
  pointer-events: none;
}

.logo-black {
  filter: invert(1);
}

.bg-gray {
  background-color: #F9F9F9;
}

.v-rl {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: left;
  letter-spacing: 0.1em;
}

.list-style--circle, .list-style--number {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-style--circle li {
  position: relative;
  padding-left: 1.2em;
}
.list-style--circle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  border: 1px solid #212028;
  border-radius: 50%;
}
.list-style--number {
  counter-reset: list-counter;
}
.list-style--number li {
  counter-increment: list-counter;
}
.list-style--number li::before {
  content: counter(list-counter) ".";
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * 共通スタイル
 */
/**
 * ↓ Utility
*/
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/**
 * ↓ 共通パーツ
 */
.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .l-inner {
    padding: 0 15px;
    overflow: hidden;
  }
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  line-height: 1;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.section-title__label {
  display: block;
  color: #5A5A5A;
  opacity: 0.5;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .section-title__label {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
}
.section-title__heading {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.8;
}
@media (max-width: 576px) {
  .section-title__heading {
    font-size: 1.4rem;
  }
}
.section-title__heading-text {
  font-size: 1.2rem;
  margin-left: 3em;
}
@media (max-width: 576px) {
  .section-title__heading-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-left: 0;
    display: block;
    margin-top: 10px;
  }
}

.before-icon {
  position: relative;
  padding-left: 1.2em;
}
.before-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.before-icon.house::before {
  background-image: url("../images/icons/house.svg");
}
.before-icon.mail::before {
  background-image: url("../images/icons/mail.svg");
}

.f-button {
  display: inline-block;
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s;
}
.f-button:hover {
  filter: brightness(0.9);
}
.f-button.beige {
  background-color: #E5E0D0;
  color: #5A5A5A;
}
.f-button.black {
  background-color: #5A5A5A;
  color: #fff;
  font-weight: 400;
}

.fixed-buttons {
  position: fixed;
  bottom: 2.5rem;
  right: 0;
  z-index: 999;
  animation: fadeInUp 0.5s ease-out;
  gap: 8px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .fixed-buttons {
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    gap: 0;
  }
}
.fixed-buttons .f-button {
  padding-inline: 2rem;
}
@media (max-width: 768px) {
  .fixed-buttons .f-button {
    flex: 1;
    padding: 0.8rem 0;
  }
}

.page-title {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .page-title {
    gap: 0.8rem;
  }
}
.page-title__en {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.1em;
  color: #333333;
  line-height: 1;
}
@media (max-width: 768px) {
  .page-title__en {
    font-size: 2rem;
    letter-spacing: 0.01em;
  }
}
.page-title__slash {
  content: "";
  width: 1px;
  height: 1.8rem;
  background-color: #212028;
  transform: rotate(30deg);
  display: inline-block;
}
.page-title__ja {
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .page-title__ja {
    font-size: 0.85rem;
  }
}

.top-image {
  width: 100%;
  height: auto;
  aspect-ratio: 5/2;
  max-height: 600px;
}
@media (max-width: 768px) {
  .top-image {
    aspect-ratio: 16/9;
  }
}
.top-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.dotted-line {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #dcdcdc 0, #dcdcdc 2px, transparent 2px, transparent 4px);
}
.dotted-line--before {
  border-top: none !important;
  border-bottom: none !important;
  position: relative;
}
.dotted-line--before::before {
  content: "";
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #dcdcdc 0, #dcdcdc 2px, transparent 2px, transparent 4px);
  position: absolute;
  top: 0;
  left: 0;
}
.dotted-line--after {
  border-top: none !important;
  border-bottom: none !important;
  position: relative;
}
.dotted-line--after::after {
  content: "";
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #dcdcdc 0, #dcdcdc 2px, transparent 2px, transparent 4px);
  position: absolute;
  bottom: 0;
  left: 0;
}

.staggered-content {
  padding: 80px 0;
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .staggered-content {
    padding: 40px 0;
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.staggered-content__image {
  width: 42%;
  height: auto;
}
@media (max-width: 768px) {
  .staggered-content__image {
    width: 100%;
  }
}
.staggered-content__description {
  flex: 1;
}
.staggered-content__description h2 {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .staggered-content__description h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.staggered-content__description p {
  margin-bottom: 30px;
  line-height: 2.2;
}
@media (max-width: 576px) {
  .staggered-content__description p {
    margin-bottom: 20px;
  }
}
.staggered-content__description p:last-child {
  margin-bottom: 0;
}
.staggered-content.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .staggered-content.reverse {
    flex-direction: column-reverse;
  }
}

.sub-intro {
  padding: 120px 0;
  display: flex;
  gap: 120px;
}
@media (max-width: 768px) {
  .sub-intro {
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
  }
}
.sub-intro h2 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .sub-intro h2 {
    font-size: 1.6rem;
  }
}
.sub-intro__description {
  flex: 1;
}
.sub-intro__description p {
  font-size: 0.95rem;
  margin-bottom: 40px;
  line-height: 2.2;
}
@media (max-width: 576px) {
  .sub-intro__description p {
    margin-bottom: 20px;
  }
}

.banner {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 200px;
}
.banner a:hover {
  filter: brightness(0.9);
  transition: all 0.3s ease;
}
.banner p {
  margin-top: 40px;
}

/**
 * ↓ テンプレートパーツ ↓
 * ==================================================================
*/
/**
  * ↓ footer-buttons
  */
.footer-button {
  padding: 0;
}
.footer-button__inner {
  display: flex;
  justify-content: center;
  background-color: #fff;
}
@media (max-width: 768px) {
  .footer-button__inner {
    flex-direction: column;
    gap: 2px;
  }
}
.footer-button__inner h3 {
  font-family: "Barlow", sans-serif;
}
.footer-button__inner a {
  flex: 1;
  text-align: center;
  height: auto;
  aspect-ratio: 3/2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.footer-button__inner a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.5);
  transition: all 0.3s;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-button__inner a::after {
  content: "→";
  position: absolute;
  line-height: 1;
  font-size: 2rem;
  font-weight: 400;
  bottom: 16px;
  right: 20px;
}
.footer-button__inner a.event::before {
  background-image: url(../images/bg/btn-event_bg.jpg);
}
.footer-button__inner a.faq::before {
  background-image: url(../images/bg/btn-faq_bg.jpg);
}
.footer-button__inner a.real-estate::before {
  background-image: url(../images/bg/btn-real-estate_bg.jpg);
}
.footer-button__inner a:hover::before {
  transform: scale(1.05);
}
.footer-button__inner h3 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
}
@media (max-width: 576px) {
  .footer-button__inner h3 {
    font-size: 1.6rem;
  }
}
.footer-button__inner p {
  font-size: 0.9rem;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1em;
}
@media (max-width: 576px) {
  .footer-button__inner p {
    font-size: 0.8rem;
  }
}

/**
 * ↓ posts
 */
.archive-content {
  padding: 48px 0;
}

.posts {
  width: 100%;
  position: relative;
}

.posts__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .posts__list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.post-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.post-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-card__thumb img,
.post-card__thumb .post-card__thumb--placeholder {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.post-card__thumb--placeholder {
  background: linear-gradient(135deg, #f2f2f2, #e2e2e2);
}

.post-card__tags {
  display: flex;
  gap: 10px;
}

.post-card__tag {
  display: inline-block;
  background-color: #333333;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 300;
  padding: 0 18px;
}

.post-card__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #fff;
}
@media (max-width: 576px) {
  .post-card__body {
    gap: 0.5rem;
  }
}

.post-card__date {
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 800;
}

.post-card__title {
  font-size: 1rem;
  font-weight: 500;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
@media (max-width: 576px) {
  .post-card__title {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }
}

.post-card__excerpt {
  line-height: 1.8;
  font-size: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .post-card__excerpt {
    font-size: 0.9rem;
    -webkit-line-clamp: 4;
  }
}

.post-card__cta {
  margin-top: auto;
}

.post-card__btn {
  display: flex;
  justify-content: flex-end;
}

/**
 * ↓ single
*/
article h3 {
  font-size: 1.6rem;
  padding-bottom: 16px;
  border-bottom: 2px solid #212028;
  margin-bottom: 1.2em;
}
article h4 {
  font-size: 1.4rem;
  margin-bottom: 2em;
  padding-left: 16px;
  line-height: 1.4;
}
article .wp-block-image {
  margin-bottom: 2rem;
}
article p {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  article h3 {
    padding-bottom: 8px;
    margin-bottom: 1rem;
  }
  article p {
    margin-bottom: 1rem;
  }
}

.posts.view-more {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .posts.view-more {
    margin-bottom: 50px;
  }
}

/**
 * ↓ posts-list (シンプル版)
 */
.posts-list {
  width: 100%;
  position: relative;
}
.posts-list__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.posts-list__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #333333;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .posts-list__item {
    margin-bottom: 0;
    padding: 15px 0;
  }
}
.posts-list__item span {
  padding-bottom: 0.2rem;
}
.posts-list__item:last-child {
  margin-bottom: 0;
}
.posts-list__date {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
.posts-list__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 100px;
}
.posts-list__tag {
  display: inline-block;
  background-color: #333;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 2px;
}
.posts-list__title-link {
  flex: 1;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 768px) {
  .posts-list__title-link {
    flex-grow: 1;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }
}
.posts-list__title-link:hover .posts-list__title {
  opacity: 0.7;
}
.posts-list__title {
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
  color: #333;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .news-inner .posts-list__item {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .news-inner .posts-list__item span {
    display: none;
  }
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * 下層ページ
 */
.sub-page header {
  border-bottom: 1px solid #EAEAEA;
  background-color: rgba(255, 255, 255, 0.7);
}
.sub-page .header-menu a {
  color: #333333;
  border-color: #333333;
}
.sub-page .header-menu a::before {
  filter: brightness(0.2);
}

.sub-page-main {
  margin-top: 150px;
}
@media (max-width: 768px) {
  .sub-page-main {
    margin-top: 110px;
  }
}
.sub-page-main section {
  padding: 100px 0 120px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .sub-page-main section {
    padding: 40px 0 60px;
  }
}
.sub-page-main .archive-works .posts__list {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .sub-page-main .archive-works .posts__list {
    grid-template-columns: 1fr;
  }
}
.sub-page-main .news-inner {
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .sub-page-main .news-single {
    padding-bottom: 120px;
  }
}
.sub-page-main .news-single__date {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.sub-page-main .news-single__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .sub-page-main .news-single__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.sub-page-main .news-single__content {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.6;
}
@media (max-width: 576px) {
  .sub-page-main .news-single__content {
    font-size: 0.9rem;
    line-height: 2.4;
    padding-bottom: 30px;
  }
}
.sub-page-main .news-single__content p {
  margin-bottom: 1rem;
}

.architect-page header {
  border-bottom: none;
  background-color: transparent;
}
.architect-page .header-menu a {
  color: #212028;
}
.architect-page main {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .architect-page main {
    margin-top: 80px;
  }
}
.architect-page .about {
  padding: 100px 0 0;
}
@media (max-width: 768px) {
  .architect-page .about {
    padding: 40px 0 0;
  }
}

.privacy-policy-page .privacy-policy {
  line-height: 2.2;
}
+ .privacy-policy-page .privacy-policy__content {
  margin-top: 40px;
}
.privacy-policy-page .privacy-policy__content p + * {
  margin-top: 20px;
}
.privacy-policy-page .privacy-policy__content + .privacy-policy__content {
  margin-top: 40px;
}
.privacy-policy-page ul {
  margin: 0;
  padding: 0;
}
.privacy-policy-page .sign {
  margin-top: 1em;
}
@media (max-width: 768px) {
  .privacy-policy-page .page-title {
    flex-direction: column;
    align-items: flex-start;
  }
  .privacy-policy-page .page-title__slash {
    display: none;
  }
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * 共通スタイル
 */
/**
 * ↓ Header
 * ==========================================================================
*/
.site-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
  width: 100%;
  height: auto;
}
.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.header-inner {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header-inner {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .site-branding {
    display: flex;
    align-items: center;
  }
}
.site-branding a {
  text-decoration: none;
  height: 56px;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
}
.site-branding a img {
  width: auto;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-branding .logotype {
  max-width: 120px;
}
.site-branding .logotype.is-front {
  animation: fadein 1s ease-in forwards;
  animation-delay: 12s;
  opacity: 0;
}
@keyframes fadein {
  to {
    opacity: 1;
  }
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.header-menu {
  display: flex;
  gap: 1.2rem;
  padding: 0 30px;
}
.header-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #fff;
  transition: all 0.3s;
}
.header-menu a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .header-menu {
    display: none;
  }
}

/**
 * ↓ Navigation
*/
.main-navigation {
  display: flex;
  align-items: center;
}

.menu-toggle {
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: all 0.3s;
  z-index: 2000;
  background-color: #EAEAEA;
  border-radius: 50%;
}
.menu-toggle:hover {
  opacity: 0.7;
}

.is-front.menu-toggle {
  background-color: #fff;
}
@media (max-width: 768px) {
  .is-front.menu-toggle.is-open {
    background-color: #EAEAEA;
  }
}

.menu-toggle-bar {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #212028;
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(35deg);
}
.menu-toggle.is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-35deg);
}

/**
 * ↓ Drawer Menu
*/
.drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100vh;
  background-color: #fff;
  transition: all 0.3s;
  z-index: 1000;
  overflow-y: auto;
  display: flex;
}
@media (max-width: 768px) {
  .drawer-menu {
    width: 100%;
    flex-direction: column;
  }
}
.drawer-menu .site-branding {
  display: none;
}
.drawer-menu.is-open {
  right: 0;
}
@media (max-width: 768px) {
  .drawer-menu.is-open .site-branding {
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-left: 15px;
  }
}

.drawer-menu__inner {
  flex: 1;
  padding: 30px;
}
@media (max-width: 768px) {
  .drawer-menu__inner {
    flex: none;
    padding: 20px 20px 30px;
  }
}
.drawer-menu__list {
  list-style: none;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  height: 100%;
}
.drawer-menu__list li {
  padding: 20px 0;
}
@media (max-width: 768px) {
  .drawer-menu__list li {
    padding: 10px 0;
  }
}
.drawer-menu__list li:hover {
  opacity: 0.7;
}
.drawer-menu__list a {
  text-decoration: none;
  color: #212028;
  font-size: 1.1rem;
  display: block;
  padding: 0;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .drawer-menu__list a {
    text-align: center;
    font-size: 1rem;
  }
}
.drawer-menu__buttons {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  flex: 1;
  background-image: url(../images/bg/menu_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .drawer-menu__buttons {
    padding: 50px 30px;
  }
}
.drawer-menu__buttons .f-button {
  width: 80%;
  margin: 0 auto;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .drawer-menu__buttons .f-button {
    width: 70%;
    padding: 1rem 0;
  }
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * 共通スタイル
 */
/**
 * ↓ Footer
 * ==========================================================================
*/
footer {
  position: relative;
  z-index: 1;
}

.footer-main {
  background-color: #fff;
  color: #333333;
  padding: 60px 0;
}
@media (max-width: 768px) {
  .footer-main {
    padding: 60px 0 30px;
  }
}
.footer-main__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-main__inner {
    padding: 0 15px;
  }
}
.footer-main__top {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .footer-main__top {
    margin-bottom: 30px;
  }
}
.footer-main__bottom {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .footer-main__bottom {
    flex-direction: column;
    gap: 20px;
  }
}

.footer-logo__area {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.footer-logo__area img {
  max-width: 200px;
}
.footer-logo__area .sns__wrapper {
  display: flex;
  gap: 1.5rem;
  font-size: 2rem;
}
@media (max-width: 576px) {
  .footer-logo__area .sns__wrapper {
    font-size: 1.2rem;
    gap: 1rem;
  }
}
.footer-logo__area .sns__wrapper a {
  color: #333333;
  transition: all 0.3s;
}
.footer-logo__area .sns__wrapper a:hover {
  color: #5A5A5A;
}

.footer-address__area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: -moz-fit-content;
  width: fit-content;
  gap: 0 2rem;
  padding: 30px 0;
}

.footer-menu__grid {
  flex: 1;
}
.footer-menu__grid ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;
  margin: 0;
  max-width: 840px;
}
@media (max-width: 576px) {
  .footer-menu__grid ul {
    font-size: 0.8rem;
    gap: 0.8em;
  }
}
.footer-menu__grid a {
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
}
.footer-menu__grid a:hover {
  opacity: 0.7;
}

.copyright {
  font-size: 0.9rem;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 400;
  color: #5A5A5A;
}
@media (max-width: 576px) {
  .copyright {
    font-size: 0.8rem;
  }
}

/**
 * Components Index
 * ================
 * 
 * @file _index.scss
 * @description コンポーネント層のすべてのスタイルをまとめてエクスポート
 * 
 * エクスポート対象:
 * - button: ボタンコンポーネントのスタイル
 * - breadcrumb: パンくずナビゲーションのスタイル
 * - pagination: ページネーションのスタイル
 * - filter: フィルター機能のスタイル
 * - slider: スライダー/カルーセルのスタイル
 */
/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * ↓ c-button
*/
.c-button__wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 50px;
  gap: 10px;
}
@media (max-width: 576px) {
  .c-button__wrapper {
    margin-top: 30px;
  }
}
.c-button__wrapper.center {
  align-items: center;
}
.c-button__wrapper h2 {
  font-weight: 400;
}
.c-button {
  display: inline-flex;
  align-items: center;
  padding: 1.2rem;
  min-width: 240px;
  background-color: transparent;
  color: #333333;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #333333;
  position: relative;
  transition: color all 0.3s, border-color all 0.3s;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 576px) {
  .c-button {
    width: 220px;
  }
}
.c-button.t-shadow {
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}
.c-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  transform: translateX(-110%);
  transition: transform 0.4s ease;
  z-index: 0;
  border-radius: 5px;
}
.c-button span {
  font-weight: 400;
  line-height: 1;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
}
.c-button span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 1px;
  transform: translateY(-50%);
  background-color: #333333;
  transition: all 0.3s;
  z-index: 2;
}
.c-button span::after {
  content: "";
  position: absolute;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  width: 7px;
  height: 7px;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.c-button:hover::after {
  transform: translateX(0);
}
.c-button:hover {
  border-color: #333333;
  color: #fff;
  text-shadow: none;
}
.c-button:hover span::before {
  background-color: #fff;
  transform: translate(5px, -50%);
}
.c-button:hover span::after {
  border-color: #fff;
  transform: translate(5px, -50%) rotate(45deg);
}
.c-button.c-button--white {
  color: #fff;
  border-color: #fff;
}
.c-button.c-button--white::after {
  background-color: #fff;
}
.c-button.c-button--white span::before {
  background-color: #fff;
}
.c-button.c-button--white span::after {
  border-color: #fff;
}
.c-button.c-button--white:hover {
  color: #333333;
}
.c-button.c-button--white:hover span::before {
  background-color: #333333;
  transform: translate(5px, -50%);
}
.c-button.c-button--white:hover span::after {
  border-color: #333333;
  transform: translate(5px, -50%) rotate(45deg);
}
.c-button.c-button--black {
  color: #fff;
  background-color: #333333;
}
.c-button.c-button--black::after {
  background-color: #fff;
}
.c-button.c-button--black span::before {
  background-color: #fff;
}
.c-button.c-button--black span::after {
  border-color: #fff;
}
.c-button.c-button--black:hover {
  color: #333333;
}
.c-button.c-button--black:hover span::before {
  background-color: #333333;
  transform: translate(5px, -50%);
}
.c-button.c-button--black:hover span::after {
  border-color: #333333;
  transform: translate(5px, -50%) rotate(45deg);
}
.c-button.no-arrow span::before,
.c-button.no-arrow span::after {
  display: none;
}
.c-button.arrow-fill span::before {
  background-image: url(../images/architect/ico_btn_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent !important;
  height: 15px;
}
.c-button.arrow-fill span::after {
  display: none;
}
.c-button.arrow-fill:hover span::before {
  filter: brightness(0);
}
.c-button.arrow-fill.c-button--outline span::before {
  filter: brightness(0);
}
.c-button.arrow-fill.c-button--outline:hover span::before {
  filter: brightness(1);
}
.c-button.arrow-down::after {
  transform: translateY(-110%);
}
.c-button.arrow-down span::before {
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  right: 5px;
}
.c-button.arrow-down span::after {
  transform: translateY(-50%) rotate(135deg);
  top: 70%;
  right: 2px;
}
.c-button.arrow-down:hover::after {
  transform: translateY(0);
}
.c-button.arrow-down:hover span::before {
  transform: translateY(0);
}
.c-button.arrow-down:hover span::after {
  transform: translateY(20%) rotate(135deg);
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * ↓ c-breadcrumb
*/
.c-breadcrumb {
  padding: 1rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}
.c-breadcrumb__list {
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: 0.3rem;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .c-breadcrumb__list {
    padding: 0 1rem;
    font-size: 0.8rem;
  }
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.c-breadcrumb__item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
}
.c-breadcrumb__link {
  color: #212028;
  text-decoration: none;
  transition: all 0.3s;
}
.c-breadcrumb__link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.c-breadcrumb__separator {
  margin: 0;
  color: #212028;
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * ↓ c-pagination
*/
.c-pagination {
  margin: 3rem 0;
  text-align: center;
}
.c-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 1.5rem; /* 間隔を少し広めに */
  padding: 0;
}
.c-pagination__item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.c-pagination__item--next {
  align-items: center;
}
.c-pagination__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-decoration: none;
  transition: all all 0.3s;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  color: #a8a8a8;
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "Barlow", sans-serif;
}
.c-pagination__link i {
  font-size: 1.25rem;
}
.c-pagination__link:hover {
  background-color: transparent;
  color: #212028;
  border-color: #212028;
}
.c-pagination__link--prev, .c-pagination__link--next {
  font-weight: 600;
}
.c-pagination__link--next {
  background-color: #fff; /* 次ボタンは白で縁取りの見た目 */
  border: 2px solid #212028;
  width: 56px;
  height: 56px;
}
.c-pagination__link--next i {
  font-size: 1.25rem;
}
.c-pagination .c-pagination__next-label {
  display: inline-block;
  margin-left: 0.8rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #212028;
}

.page-numbers.current,
.page-numbers.current.c-pagination__link {
  color: #212028 !important;
  pointer-events: none;
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * ↓ c-tag-filter
 */
.c-tag-filter {
  margin-bottom: 2rem;
  display: flex;
  gap: 4rem;
  padding: 1.5rem;
  background-color: #F9F9F9;
}
@media (max-width: 768px) {
  .c-tag-filter {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
}
.c-tag-filter__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333333;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.c-tag-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
}
.c-tag-filter__item {
  display: inline-block;
  background-color: #EAEAEA;
  color: #5A5A5A;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0 8px;
  border: 1px solid #EAEAEA;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.c-tag-filter__item:hover {
  background-color: #e8e8e8;
  border-color: #ccc;
}
.c-tag-filter__item.is-active {
  background-color: #333333;
  color: #fff;
  border-color: #333333;
}
.c-tag-filter__item.is-active:hover {
  background-color: #555;
  border-color: #555;
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * ↓ c-slider
*/
.c-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide-content {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.slide-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.slide-tag {
  display: inline-block;
  background-color: #333333;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 300;
  padding: 0 18px;
}
.slide-title {
  flex-grow: 1;
}
.slide-title a {
  color: inherit;
  text-decoration: none;
}
.slide-title a:hover {
  opacity: 0.7;
}
.slide-title h3 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 576px) {
  .slide-title h3 {
    font-size: 0.9rem;
    line-clamp: 1;
    -webkit-line-clamp: 1;
  }
}
.slide-description {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * about / factory ページ
 */
.about .section-title {
  padding: 120px 0 0;
  line-height: 2.2;
}
@media (max-width: 768px) {
  .about .section-title {
    padding: 60px 0 0;
  }
}
.about .section-title__heading {
  margin-bottom: 40px;
}
.about-meeting {
  padding: 60px 0;
}
.about-meeting .l-inner {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media (max-width: 768px) {
  .about-meeting .l-inner {
    flex-direction: column;
    gap: 20px;
  }
}
.about-meeting__image {
  width: 42%;
  height: auto;
  aspect-ratio: 4/3;
}
@media (max-width: 768px) {
  .about-meeting__image {
    width: 100%;
  }
}
.about-meeting__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-meeting__description {
  flex: 1;
}
.about-meeting__description h2 {
  font-weight: 400;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .about-meeting__description h2 {
    margin-bottom: 10px;
  }
}
.about-meeting__description p {
  font-size: 0.95rem;
  margin-bottom: 40px;
  line-height: 2.2;
}
@media (max-width: 576px) {
  .about-meeting__description p {
    margin-bottom: 20px;
  }
}
.about-meeting__description p:last-child {
  margin-bottom: 0;
}
.about-links {
  padding: 80px 0;
}
@media (max-width: 576px) {
  .about-links {
    padding: 40px 0;
  }
}
.about-links__container {
  width: 100%;
}
.about-links__group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}
@media (max-width: 768px) {
  .about-links__group {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.about-links__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 32px 0;
  text-decoration: none;
  border-top: 1px solid #212028;
  border-bottom: 1px solid #212028;
  transition: all 0.3s;
  position: relative;
}
@media (max-width: 768px) {
  .about-links__item {
    border-bottom: none;
  }
}
@media (max-width: 576px) {
  .about-links__item {
    gap: 6px;
  }
}
.about-links__item:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.about-links__item:last-child {
  border-top: none;
}
@media (max-width: 768px) {
  .about-links__item:last-child {
    border-top: 1px solid #212028;
    border-bottom: 1px solid #212028;
  }
}
.about-links__label {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media (max-width: 576px) {
  .about-links__label {
    font-size: 1.5rem;
  }
}
.about-links__sublabel {
  font-size: 0.9rem;
  line-height: 1;
}
@media (max-width: 576px) {
  .about-links__sublabel {
    font-size: 0.7rem;
  }
}
.about-links__arrow {
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  background-color: #212028;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
}

.p-factory {
  padding-bottom: 0 !important;
}
.p-factory .section-title {
  font-size: 2.5rem;
  letter-spacing: 0.12em;
}
@media (max-width: 768px) {
  .p-factory .section-title {
    font-size: 1.6rem;
  }
}
.p-factory-intro {
  background-image: url("../images/factory/desc-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .p-factory-intro {
    padding: 60px 0;
  }
}
.p-factory-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e5e0d0;
  opacity: 0.95;
  z-index: 0;
}
.p-factory-description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-factory-description {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-factory-description p {
  font-size: 0.95rem;
  margin-bottom: 40px;
  line-height: 2.2;
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * 松澤建設関連ページ
 */
/*
 * ↓ 共通スタイル
 */
.architect-page {
  position: relative;
}
.architect-page::before {
  background-image: url(../images/architect/sub-header-bg.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 550px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .architect-page::before {
    height: 300px;
    background-size: cover;
  }
}
.architect-page .site-branding a {
  height: 60px;
}
@media (max-width: 768px) {
  .architect-page .site-branding a {
    height: 40px;
  }
}
.architect-page .menu-toggle {
  display: none;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  background-color: transparent;
  padding: 0;
}
@media (max-width: 1024px) {
  .architect-page .menu-toggle {
    display: flex;
    background-color: transparent !important;
  }
}
.architect-page .menu-toggle-bar {
  width: 2px;
  height: 15px;
}
@media (max-width: 768px) {
  .architect-page .menu-toggle-bar {
    background-color: #a8a8a8;
  }
}
.architect-page .menu-toggle-bar:nth-child(2) {
  height: 25px;
}
.architect-page .menu-toggle-bar:nth-child(3) {
  height: 35px;
}
.architect-page .menu-toggle.is-open .menu-toggle-bar {
  height: 35px;
}
.architect-page .menu-toggle.is-open .menu-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translateX(11px);
}
.architect-page .menu-toggle.is-open .menu-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translateX(-11px);
}
@media (max-width: 1024px) {
  .architect-page .header-menu {
    display: none;
  }
}
.architect-page .header-menu a {
  border-bottom: none;
}
.architect-page .contact-button {
  background-image: url(../images/architect/contact-btn-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff !important;
  padding: 0.8rem 3em;
  position: relative;
}
@media (max-width: 768px) {
  .architect-page .contact-button {
    padding: 0.5rem 3em;
    font-size: 0.9rem;
  }
}
.architect-page .page-title {
  display: block;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .architect-page .page-title {
    gap: 0.8rem;
  }
}
.architect-page .page-title__en {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  color: #333333;
}
@media (max-width: 768px) {
  .architect-page .page-title__en {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
  }
}
.architect-page .page-title__ja {
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  line-height: 2.2;
}
@media (max-width: 768px) {
  .architect-page .page-title__ja {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .architect-page .drawer-menu {
    width: 60%;
    background-color: #333333;
  }
}
.architect-page .drawer-menu__inner {
  height: 100%;
}
.architect-page .drawer-menu__list {
  align-items: flex-start;
  height: 100%;
  padding: 0;
}
.architect-page .drawer-menu__list a {
  color: #fff;
}
.architect-page {
  /*
  * ↓ フッター
  */
}
.architect-page .footer-contact-section {
  background-image: url(../images/architect/contact-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 16/5;
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .architect-page .footer-contact-section {
    aspect-ratio: 16/9;
    margin-bottom: 20px;
  }
}
.architect-page .footer-contact-section:hover {
  filter: brightness(0.8);
  transition: all 0.3s;
}
.architect-page .footer-contact-section:hover .footer-contact-section__arrow {
  transform: translateX(5px);
  transition: all 0.3s;
}
.architect-page .footer-contact-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 20px 40px;
}
@media (max-width: 576px) {
  .architect-page .footer-contact-section__overlay {
    padding: 15px;
  }
}
.architect-page .footer-contact-section__content {
  color: #fff;
}
.architect-page .footer-contact-section__label {
  font-family: "Noto Serif JP", serif;
  font-size: 0.8rem;
}
.architect-page .footer-contact-section__link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  line-height: 1.4;
}
@media (max-width: 576px) {
  .architect-page .footer-contact-section__link {
    gap: 10px;
  }
}
.architect-page .footer-contact-section__text {
  font-size: 1.4rem;
  letter-spacing: 0.25em;
}
@media (max-width: 576px) {
  .architect-page .footer-contact-section__text {
    font-size: 1.2rem;
  }
}
.architect-page .footer-contact-section__arrow {
  width: 16px;
  height: auto;
}
@media (max-width: 576px) {
  .architect-page .footer-contact-section__arrow {
    width: 12px;
  }
}
.architect-page .architect-footer {
  background-color: #333333;
  color: #fff;
  padding: 80px 0 50px;
}
@media (max-width: 768px) {
  .architect-page .architect-footer {
    padding: 40px 0 30px;
  }
}
.architect-page .architect-footer__inner {
  width: 90%;
  margin: 0 auto;
}
.architect-page .architect-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #5A5A5A;
}
@media (max-width: 1024px) {
  .architect-page .architect-footer__content {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
    align-items: flex-start;
  }
}
.architect-page .architect-footer__left {
  flex-shrink: 0;
}
.architect-page .architect-footer__logo {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .architect-page .architect-footer__logo {
    gap: 25px;
  }
}
.architect-page .architect-footer__logo-main {
  width: 200px;
}
@media (max-width: 576px) {
  .architect-page .architect-footer__logo-main {
    width: 35%;
    min-width: 150px;
  }
}
.architect-page .architect-footer__logo-sub {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  padding-bottom: 10px;
}
@media (max-width: 576px) {
  .architect-page .architect-footer__logo-sub {
    font-size: 1.4rem;
  }
}
.architect-page .architect-footer__nav {
  flex-shrink: 0;
}
.architect-page .architect-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 18px;
}
.architect-page .architect-footer__menu li {
  margin: 0;
  position: relative;
}
.architect-page .architect-footer__menu li:last-child a::after {
  display: none;
}
.architect-page .architect-footer__menu a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.architect-page .architect-footer__menu a:hover {
  opacity: 0.7;
}
.architect-page .architect-footer__menu a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background-color: #5A5A5A;
}
.architect-page .architect-footer__copyright {
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
@media (max-width: 576px) {
  .architect-page .architect-footer__copyright {
    padding: 15px 0;
  }
}
.architect-page .architect-footer__copyright p {
  margin: 0;
}
.architect-page {
  /*
  * ↓ メッセージセクション
  */
}
.architect-page .message-image {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 80vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .architect-page .message-image {
    aspect-ratio: 3/2;
  }
}
.architect-page .message-image h2 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  z-index: 1;
}
@media (max-width: 576px) {
  .architect-page .message-image h2 {
    font-size: 1.2rem;
  }
}
.architect-page .message-image__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 160px;
}
@media (max-width: 768px) {
  .architect-page .message-image__content {
    flex-direction: column;
    gap: 40px;
  }
}
.architect-page .message-image__content h2 {
  padding-top: 5px;
}
.architect-page .message-image__content p {
  text-align: left;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .architect-page .message-image__content .v-rl {
    writing-mode: inherit;
  }
}
.architect-page .message-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  z-index: 0;
}
.architect-page .message-image.about01 {
  background-image: url(../images/architect/about/about01.jpg);
}
.architect-page .message-image.about02 {
  background-image: url(../images/architect/about/about02.jpg);
}
.architect-page .message-image.concept01 {
  background-image: url(../images/architect/concept/concept01.jpg);
  max-height: unset;
}
@media (max-width: 768px) {
  .architect-page .message-image.concept01 {
    padding: 60px 15px;
  }
}
.architect-page {
  /*
  * ↓ aboutページ
  */
}
.architect-page .sub-intro {
  padding: 60px 0 160px;
}
@media (max-width: 768px) {
  .architect-page .sub-intro {
    padding: 40px 0 60px;
  }
}
.architect-page .sub-intro__content {
  display: flex;
  justify-content: space-between;
  gap: 10%;
}
@media (max-width: 768px) {
  .architect-page .sub-intro__content {
    flex-direction: column;
    gap: 20px;
  }
}
.architect-page .sub-intro__content .content--left {
  flex: 1;
}
.architect-page .sub-intro__content .content--right {
  width: 42%;
}
@media (max-width: 768px) {
  .architect-page .sub-intro__content .content--right {
    width: 100%;
  }
}
.architect-page .sub-intro__content .content--right p {
  margin-bottom: 30px;
}
.architect-page .sub-intro__content .content--right .intro-image {
  width: 100%;
  margin-bottom: 20px;
}
.architect-page .sub-intro__content .content--right .name {
  text-align: right;
}
.architect-page .sub-intro__content .logo-image {
  width: 50%;
  max-width: 250px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .architect-page .sub-intro__content .logo-image {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.architect-page .sub-intro__content .logo-image.ns {
  max-width: 200px;
  padding: 20px;
}
@media (max-width: 768px) {
  .architect-page .sub-intro__content .logo-image.ns {
    max-width: 150px;
  }
}
.architect-page .sub-intro__content .message h2 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .architect-page .sub-intro__content .message h2 {
    font-size: 1.2rem;
  }
}
.architect-page .sub-intro__content .message p {
  margin-bottom: 30px;
}
.architect-page {
  /*
  * ↓ conceptページ
  */
}
.architect-page .concept {
  padding: 100px 0 0;
}
@media (max-width: 768px) {
  .architect-page .concept {
    padding: 40px 0 0;
  }
}
.architect-page .concept-description {
  background-color: #000;
  color: #fff;
  padding: 30px 0 80px;
}
@media (max-width: 576px) {
  .architect-page .concept-description {
    padding: 20px 0 40px;
  }
}
.architect-page .concept-description__title {
  display: flex;
  justify-content: center;
  font-weight: 400;
  font-size: 1.4rem;
  padding: 60px 0;
}
@media (max-width: 576px) {
  .architect-page .concept-description__title {
    font-size: 1.2rem;
    padding: 40px 0;
  }
}
.architect-page .concept-description__title h2 {
  font-size: 1.4rem;
  font-weight: 400;
}
.architect-page .concept-description__content {
  overflow: hidden;
}
.architect-page {
  /*
   * 説明タブ
   */
}
.architect-page .concept-tabs__buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px 40px;
  background-color: #212121;
  border: 2px solid transparent;
}
@media (max-width: 576px) {
  .architect-page .concept-tabs__buttons {
    gap: 15px;
    padding: 15px 20px;
  }
}
.architect-page .concept-tabs__button {
  background: none;
  border: none;
  color: #fff;
  letter-spacing: 0.2em;
  padding: 4px 0;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  white-space: nowrap;
  font-size: 13px;
}
.architect-page .concept-tabs__button:hover {
  color: #fff;
}
.architect-page .concept-tabs__button--active {
  background-color: #3b3b3b;
  padding: 4px 16px;
}
.architect-page .concept-tabs__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  margin-bottom: 60px;
}
@media (max-width: 576px) {
  .architect-page .concept-tabs__title {
    margin-bottom: 0;
    gap: 15px;
  }
}
.architect-page .concept-tabs__title-arrow {
  background: none;
  border: none;
  color: #5A5A5A;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  padding: 8px;
  border-radius: 50%;
  background-color: #212121;
  width: 24px;
  height: 24px;
}
.architect-page .concept-tabs__title-arrow:hover {
  filter: brightness(0.8);
  transition: all 0.3s;
}
.architect-page .concept-tabs__title-arrow--prev img {
  transform: rotate(180deg);
}
.architect-page .concept-tabs__title-item {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .architect-page .concept-tabs__title-item {
    font-size: 1.2rem;
  }
}
.architect-page .concept-tabs__title-item--prev, .architect-page .concept-tabs__title-item--next {
  color: #5A5A5A;
  opacity: 0.5;
}
.architect-page .concept-tabs__title-item--active {
  color: #fff;
  padding-bottom: 16px;
  position: relative;
}
@media (max-width: 576px) {
  .architect-page .concept-tabs__title-item--active {
    padding-bottom: 6px;
  }
}
.architect-page .concept-tabs__title-item--active::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  right: 0;
  bottom: 0;
  left: 0;
}
.architect-page .concept-tabs__content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 15px;
}
@media (max-width: 576px) {
  .architect-page .concept-tabs__content {
    padding: 40px 15px;
  }
}
.architect-page .concept-tabs__panel {
  display: none;
  width: 100%;
}
.architect-page .concept-tabs__panel--active {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .architect-page .concept-tabs__panel--active {
    flex-direction: column;
    gap: 20px;
  }
}
.architect-page .concept-tabs__image {
  flex-shrink: 0;
  width: 40%;
  aspect-ratio: 3/4;
}
@media (max-width: 768px) {
  .architect-page .concept-tabs__image {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.architect-page .concept-tabs__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.architect-page .concept-tabs__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.architect-page .concept-tabs__text h3 {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .architect-page .concept-tabs__text h3 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.architect-page .concept-tabs__text p {
  letter-spacing: 0.05em;
}
.architect-page .concept-tabs--first .concept-tabs__title-item {
  min-width: 130px;
}
@media (max-width: 576px) {
  .architect-page .concept-tabs--first .concept-tabs__title-item {
    min-width: 110px;
  }
}
@media (max-width: 576px) {
  .architect-page .concept-tabs--second .concept-tabs__button {
    letter-spacing: 0;
    font-size: 11px;
  }
}
.architect-page .concept-tabs--second .concept-tabs__title-item {
  min-width: 310px;
}
@media (max-width: 576px) {
  .architect-page .concept-tabs--second .concept-tabs__title-item {
    min-width: 260px;
  }
}
.architect-page .architect-fv .message-image {
  background-image: url(../images/architect/architect-fv.jpg);
}
@media (max-width: 768px) {
  .architect-page .architect-fv .message-image {
    background-position: top center;
    background-size: cover;
    height: 100vh;
    max-height: 100vh;
  }
}
.architect-page .architect-fv .message-image::before {
  display: none;
}
.architect-page .architect-fv .message-image h2 {
  letter-spacing: 0.25em;
  font-size: 1.8rem;
}
.architect-page .architect-intro {
  padding: 180px 0;
  background-color: #000;
  color: #fff;
}
@media (max-width: 768px) {
  .architect-page .architect-intro {
    padding: 60px 0;
  }
}
.architect-page .architect-intro--concept, .architect-page .architect-intro--about {
  display: flex;
  justify-content: center;
  gap: 120px;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .architect-page .architect-intro--concept, .architect-page .architect-intro--about {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
  }
}
.architect-page .architect-intro__image {
  flex-shrink: 0;
  width: 30%;
  aspect-ratio: 3/4;
}
@media (max-width: 768px) {
  .architect-page .architect-intro__image {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.architect-page .architect-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}
.architect-page .architect-intro__content {
  display: flex;
  gap: 100px;
}
@media (max-width: 768px) {
  .architect-page .architect-intro__content {
    gap: 20px;
  }
}
.architect-page .architect-intro__subtitle {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .architect-page .architect-intro__subtitle {
    font-size: 1.2rem;
  }
}
.architect-page .architect-intro__text {
  flex: 1;
}
.architect-page .architect-intro__text p {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .architect-page .architect-intro__text {
    padding: 30px 0 0;
  }
}
.architect-page .architect-intro__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  margin-bottom: 40px !important;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .architect-page .architect-intro__title {
    font-size: 1rem;
    margin-bottom: 20px !important;
  }
}
.architect-page .architect-intro__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 40px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  margin-top: 20px;
}
.architect-page .architect-intro__button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.architect-page .architect-intro__button img {
  width: 14px;
  height: auto;
}
@media (max-width: 768px) {
  .architect-page .architect-intro--about {
    flex-direction: column-reverse;
  }
  .architect-page .architect-intro--about .architect-intro__content {
    flex-direction: column;
    gap: 40px;
  }
  .architect-page .architect-intro--about .architect-intro__content .v-rl {
    writing-mode: inherit;
  }
  .architect-page .architect-intro--about .architect-intro__text {
    padding: 0;
  }
}
.architect-page .architect-works {
  background-image: url(../images/architect/sub-header-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .architect-page .architect-works {
    padding: 60px 0;
  }
}
.architect-page .architect-works__header {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .architect-page .architect-works__header {
    flex-direction: column;
    gap: 0;
  }
}
.architect-page .architect-works__left {
  flex: 0 0 400px;
}
@media (max-width: 1024px) {
  .architect-page .architect-works__left {
    flex: none;
    width: 100%;
  }
}
.architect-page .architect-works__en {
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.architect-page .architect-works__title {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 0.12em;
  line-height: 2.2;
}
@media (max-width: 768px) {
  .architect-page .architect-works__title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.architect-page .architect-works__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #5A5A5A;
  margin-top: 10px;
}
.architect-page .architect-works__description {
  margin: 20px 0 80px;
  line-height: 1.8;
  font-weight: 400;
  color: #333333;
}
@media (max-width: 768px) {
  .architect-page .architect-works__description {
    margin: 20px 0 30px;
  }
}
.architect-page .architect-works__controls {
  display: flex;
  gap: 15px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .architect-page .architect-works__controls {
    margin-bottom: 20px;
  }
}
.architect-page .architect-works__arrow {
  width: 40px;
  height: 40px;
  background-color: #EAEAEA;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.architect-page .architect-works__arrow--prev::before, .architect-page .architect-works__arrow--next::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  border-top: 1px solid #a5a5a5;
  border-right: 1px solid #a5a5a5;
}
.architect-page .architect-works__arrow--prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
  margin-left: 5px;
}
.architect-page .architect-works__arrow--next::before {
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -5px;
}
.architect-page .architect-works__arrow:hover {
  background-color: #5A5A5A;
}
.architect-page .architect-works__slider-container {
  flex: 1;
  position: relative;
}
@media (max-width: 768px) {
  .architect-page .architect-works__slider-container {
    flex: none;
    width: 100%;
  }
}
.architect-page .architect-works__slider {
  overflow: hidden;
}
.architect-page .architect-works__slide {
  width: 100%;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .architect-page .architect-works__slide {
    padding-bottom: 20px;
  }
}
.architect-page .architect-works__slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
}
.architect-page .architect-works__sp-controls {
  display: none;
}
@media (max-width: 768px) {
  .architect-page .architect-works__sp-controls {
    display: block;
    margin-bottom: 60px;
  }
}
.architect-page .architect-works__sp-description {
  display: none;
}
@media (max-width: 768px) {
  .architect-page .architect-works__sp-description {
    display: block;
    margin: 20px 0 30px;
  }
}
.architect-page .architect-works__sp-button {
  display: none;
}
@media (max-width: 768px) {
  .architect-page .architect-works__sp-button {
    display: block;
    text-align: center;
  }
}
.architect-page .architect-works .splide__pagination {
  bottom: 16px;
  gap: 2px;
}
@media (max-width: 768px) {
  .architect-page .architect-works .splide__pagination {
    bottom: 8px;
  }
}
.architect-page .architect-works .splide__pagination__page.is-active {
  background-color: #333333;
  transform: scale(1);
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * 会社概要ページ
 */
.company-main section {
  padding: 100px 0 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .company-main section {
    padding-top: 40px;
  }
}
.company-main h2 {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}
@media (max-width: 576px) {
  .company-main h2 {
    font-size: 1.4rem;
  }
}
.company-main table {
  width: 100%;
  border-collapse: collapse;
}
.company-main table th,
.company-main table td {
  border: 1px solid #dcdcdc;
  padding: 20px 30px;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 576px) {
  .company-main table th,
  .company-main table td {
    padding: 20px 15px;
  }
}
.company-main table th {
  background-color: #F9F9F9;
  width: 25%;
  font-weight: 400;
}
.company-main table td {
  background-color: white;
  width: 75%;
}
.company-main .company .section-title {
  padding: 0;
  line-height: 2.2;
}
.company-main .company .section-title__heading {
  margin-bottom: 40px;
}
.company-main .company .section-inner {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .company-main .company .section-inner {
    padding: 40px 0;
  }
}
.company-main .company .content-title {
  min-width: 280px;
  width: 15%;
  display: inline-block;
  white-space: nowrap;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.8;
}
@media (max-width: 576px) {
  .company-main .company .content-title {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .company-main .company .greeting.section-inner {
    padding: 0 0 40px;
  }
}
.company-main .company .greeting__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .company-main .company .greeting__content {
    flex-direction: column;
    gap: 30px;
  }
}
.company-main .company .greeting__image {
  width: 50%;
  margin-right: calc(-1 * (100vw - 1200px) / 2 - 15px);
}
@media (max-width: 768px) {
  .company-main .company .greeting__image {
    width: 100%;
    margin-right: 0;
  }
}
.company-main .company .greeting__message {
  flex: 1;
}
@media (max-width: 768px) {
  .company-main .company .greeting__message {
    width: 100%;
  }
}
.company-main .company .greeting__message h2 {
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .company-main .company .greeting__message h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.company-main .company .history {
  background-color: #F9F9F9;
}
.company-main .company .history__content {
  margin-top: 40px;
}
@media (max-width: 576px) {
  .company-main .company .history__content {
    margin-top: 20px;
  }
}
.company-main .company .history__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 576px) {
  .company-main .company .history__grid {
    grid-template-columns: 1fr;
  }
}
.company-main .company .history__item {
  padding: 40px;
}
@media (max-width: 768px) {
  .company-main .company .history__item {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .company-main .company .history__item {
    padding: 20px 0;
  }
}
.company-main .company .history__item-title {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding-bottom: 16px;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .company-main .company .history__item-title {
    font-size: 1.2rem;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
.company-main .company .history__item-text {
  color: #5A5A5A;
  line-height: 2;
}
.company-main .company .factory {
  padding: 150px 0;
  background-image: url(../images/about/factory/top-image.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 768px) {
  .company-main .company .factory {
    padding: 40px 0;
  }
}
.company-main .company .factory::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #121212;
  opacity: 0.7;
  z-index: 0;
}
.company-main .company .factory__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
  color: white;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .company-main .company .factory__content {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .company-main .company .factory__content .c-button {
    width: 180px;
  }
}
.company-main .company .factory__content h2,
.company-main .company .factory__content p {
  font-weight: 300;
}
@media (max-width: 576px) {
  .company-main .company .factory__content h2 {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
.company-main .company .overview__content {
  display: flex;
}
@media (max-width: 768px) {
  .company-main .company .overview__content {
    flex-direction: column;
    gap: 30px;
  }
}
.company-main .access__map {
  width: 100%;
}
.company-main .access__content {
  display: flex;
}
@media (max-width: 768px) {
  .company-main .access__content {
    flex-direction: column;
    gap: 30px;
  }
}
.company-main .access__content iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.company-main .access__content .address {
  padding: 20px 0;
  border-bottom: 1px solid #dcdcdc;
}
@media (max-width: 576px) {
  .company-main .access__content .address {
    padding: 10px 0;
  }
}
.company-main .access__content .traffic {
  display: flex;
  gap: 50px;
}
@media (max-width: 768px) {
  .company-main .access__content .traffic {
    flex-direction: column;
    gap: 0;
  }
}
.company-main .access__content .traffic__item {
  padding: 20px 0;
}
@media (max-width: 576px) {
  .company-main .access__content .traffic__item {
    padding: 10px 0;
  }
}
.company-main .access__content .traffic__item p {
  line-height: 2.2;
}
.company-main .recruit {
  background-color: #F9F9F9;
}
@media (max-width: 768px) {
  .company-main .recruit.section-inner {
    padding: 40px 0 100px;
  }
}
.company-main .recruit .section-title__label {
  margin-bottom: 1rem;
}
.company-main .recruit-guideline__content {
  display: flex;
}
@media (max-width: 768px) {
  .company-main .recruit-guideline__content {
    flex-direction: column;
    gap: 30px;
  }
}
.company-main .recruit-guideline__content th {
  background-color: #707070;
  color: white;
  border-color: white;
  font-weight: 300;
}
.company-main .recruit-flow__content {
  display: flex;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .company-main .recruit-flow__content {
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
  }
}
.company-main .recruit-flow__content .flow-inner {
  flex: 1;
}
.company-main .recruit-flow__content .flow-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.company-main .recruit-flow__content .flow-list__item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 0 16px;
  border-bottom: 1px solid #5A5A5A;
  position: relative;
  font-size: 1.8rem;
  font-weight: 400;
}
@media (max-width: 576px) {
  .company-main .recruit-flow__content .flow-list__item {
    font-size: 1.1rem;
    gap: 8px;
    padding: 32px 0 8px;
    letter-spacing: 0;
  }
}
.company-main .recruit-flow__content .flow-list__item::after {
  content: "";
  position: absolute;
  left: 56px;
  bottom: -14px;
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 14px solid #707070;
}
@media (max-width: 576px) {
  .company-main .recruit-flow__content .flow-list__item::after {
    left: calc(50% - 16px);
    bottom: -20px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 12px solid #707070;
  }
}
.company-main .recruit-flow__content .flow-list__item:first-child {
  padding-top: 0;
}
.company-main .recruit-flow__content .flow-list__item:last-child::after {
  display: none;
}
.company-main .recruit-flow__content .flow-list__step {
  display: inline-block;
  padding: 0 16px;
  background-color: #EAEAEA;
  letter-spacing: 0.08em;
  border-radius: 4px;
  font-size: 1.6rem;
  font-family: "Barlow", sans-serif;
  line-height: 1.8;
  text-align: center;
  width: 160px;
}
@media (max-width: 576px) {
  .company-main .recruit-flow__content .flow-list__step {
    font-size: 0.9rem;
    padding: 0;
    width: 76px;
  }
}
.company-main .recruit-flow__content .flow-list__text {
  letter-spacing: 0.02em;
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * お問い合わせページ
 */
/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/* =========================
  フォーム
========================= */
.form__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  padding: 4rem 0 6rem;
  margin-top: 4rem;
}

.contact-form {
  font-size: 1rem;
}

.wpcf7 h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 400;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.2rem 0;
  position: relative;
}
.row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #a8a8a8 0, #a8a8a8 3px, transparent 3px, transparent 6px);
}
.row--last::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #a8a8a8 0, #a8a8a8 3px, transparent 3px, transparent 6px);
}

.row.align-start {
  align-items: flex-start;
}

.label__area {
  width: 30%;
}

.label__area label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

label.required::after {
  content: "必須";
  color: white;
  margin-left: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.5rem;
  font-weight: 400;
  background-color: #5A5A5A;
  padding: 0 0.3rem;
  display: inline-block;
  /* border-radius: 2px; */
  margin-top: 5px;
}

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

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

span.wpcf7-list-item-label {
  margin: 0;
  display: flex;
  align-items: center;
}

.wpcf7-checkbox input[type=checkbox] {
  display: none;
}

/* チェックボックスを非表示 */
.contact_type input[type=checkbox] {
  display: none;
}

/* ラベルの前に枠を作成 */
.contact_type .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 1rem;
  border: 1px solid #a8a8a8;
  background: #fff;
  vertical-align: middle;
  position: relative;
}

/* チェックが入った時の色やチェックマーク */
.contact_type input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 6px;
  width: 4px;
  height: 10px;
  border-right: 2px solid #5A5A5A;
  border-bottom: 2px solid #5A5A5A;
  transform: rotate(45deg);
}

/* リストアイテムのスタイル */
.contact_type .wpcf7-list-item {
  margin: 0;
  position: relative;
}

.contact_type span.wpcf7-list-item-label {
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

/* チェックボックスコンテナのスタイル */
.contact_type {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.input__area {
  flex: 1;
  min-width: 300px;
}

.input__area.name {
  display: flex;
  gap: 10px;
}

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dcdcdc;
  font-size: 16px;
}

.wpcf7 textarea {
  height: 150px;
  resize: vertical;
}

.input__area.tel input,
.input__area.zip input {
  width: 50%;
}

.input__area.date-time input {
  width: calc(35% - 10px);
  margin-right: 10px;
  padding: 10px;
  height: 56px;
}

.input__area.date-time select {
  width: calc(35% - 10px);
  height: 56px;
  border-color: #a8a8a8;
  font-size: 1rem;
  padding: 10px;
}

.input__area.reserve,
.input__area.attendance {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reserve__row,
.attendance__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.name .wpcf7-form-control-wrap,
.attendance__row .wpcf7-form-control-wrap,
.reserve__row .wpcf7-form-control-wrap {
  width: 30%;
}

.reserve__label,
.attendance__label {
  width: 80px;
  font-size: 0.9rem;
}

.reserve__date,
.reserve__time {
  height: 56px;
}

.reserve__date {
  width: 40%;
}

.reserve__time {
  width: 100%;
  border-color: #dcdcdc;
  padding: 0 0.8em;
}

.attendance__input {
  width: 30%;
  height: 56px;
}

.attendance__unit {
  font-size: 0.95rem;
}

.wpcf7 input[type=submit] {
  display: block;
  width: 200px;
  margin: 40px auto 0;
  padding: 15px;
  background: #333333;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s;
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
}

.wpcf7 input[type=submit]:hover {
  opacity: 0.8;
}

.wpcf7 .privacy-policy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 12px;
  margin-top: 5px;
}

input.wpcf7-form-control.wpcf7-text {
  height: 3.5rem;
  border: 1px solid #dcdcdc;
}

.caution {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
}

.caution a {
  text-decoration: underline;
}

.wpcf7 input[type=submit] {
  padding: 1.2rem;
  background: #333333;
  color: white;
  width: 300px;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
}

input[name=event-name] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .contact-form {
    padding: 2rem 0;
  }
  .contact-form {
    font-size: 0.8rem;
  }
  .wpcf7 h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .row {
    flex-direction: column;
    gap: 10px;
  }
  .label__area {
    width: 100%;
  }
  .label__area label {
    font-size: 0.9rem;
  }
  label.required::after {
    font-size: 0.7rem;
    line-height: 1.2rem;
  }
  .input__area {
    width: 100%;
  }
  .input__area.name {
    gap: 10px;
    width: 100%;
  }
  .input__area.tel input,
  .input__area.zip input {
    width: 100%;
  }
  .reserve__row,
  .attendance__row {
    flex-wrap: wrap;
  }
  .reserve__label {
    width: 100%;
  }
  .reserve__date,
  .reserve__time,
  .attendance__input {
    width: 100%;
  }
  .caution {
    font-size: 1rem;
  }
  .wpcf7 input[type=submit] {
    width: 250px;
    font-size: 1rem;
    padding: 1rem;
  }
  .attendance__row .wpcf7-form-control-wrap {
    width: 45%;
  }
  .name .wpcf7-form-control-wrap,
  .reserve__row .wpcf7-form-control-wrap {
    flex: 1;
  }
}
.contact-main section {
  padding: 100px 0 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .contact-main section {
    padding-top: 40px;
  }
}
.contact-main .contact__container {
  background-color: #F9F9F9;
  padding: 60px 0 120px;
}
@media (max-width: 576px) {
  .contact-main .contact__container {
    padding: 40px 0 60px;
  }
}
.contact-main .tel__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-main .tel__inner {
    padding: 40px 10px 60px;
  }
}
.contact-main .tel__inner .tel-image {
  width: 540px;
}
@media (max-width: 768px) {
  .contact-main .tel__inner .tel-image {
    max-width: 300px;
  }
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * お問い合わせページ
 */
/**
 * 共通スタイル
 */
.archive-event-main .post-card__thumb {
  aspect-ratio: 4/3;
}
.archive-event-main .post-card__event-time {
  position: relative;
  padding-left: 1.5em;
  color: #333333;
  min-height: 1rem;
}
.archive-event-main .post-card__event-time::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 0.1em;
}

.event-single__outline {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 32px;
  align-items: start;
}
.event-single__media {
  background-color: #F9F9F9;
}
.event-single__image {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-single__status {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.event-single__status-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background-color: #333333;
  color: #fff;
  line-height: 1;
  font-size: 0.8rem;
}
.event-single__status-item.is-ended {
  background-color: #EAEAEA;
  color: #333333;
}
.event-single__title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}
.event-single__meta {
  margin: 0;
}
.event-single__meta-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #dcdcdc;
}
.event-single__meta-title {
  margin: 0;
  color: #5A5A5A;
}
.event-single__meta-text {
  margin: 0;
  color: #333333;
}
.event-single__cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.event-single__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background-color: #3b3b3b;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}
.event-single__cta-button:hover {
  opacity: 0.85;
}
.event-single__cta-arrow {
  font-size: 14px;
  line-height: 1;
}
.event-single__article {
  margin-top: 56px;
}
.event-single__article-item + .event-single__article-item {
  margin-top: 40px;
}
.event-single__article-media {
  background-color: #F9F9F9;
}
.event-single__article-image {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-single__article-body {
  margin-top: 16px;
}
.event-single__article-title {
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 0;
  margin-bottom: 12px;
  color: #333333;
  border-bottom: none;
  letter-spacing: 0.12em;
}
.event-single__article-text {
  margin: 0;
  color: #5A5A5A;
  letter-spacing: 0.05em;
}
.event-single__map {
  width: 100vw;
  transform: translateX(-50%);
  background-color: #F9F9F9;
  margin: 80px 0 100px 50%;
  aspect-ratio: 5/2;
}
.event-single__map-embed {
  height: 100%;
}
.event-single__map-embed iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0;
}
@media (max-width: 768px) {
  .event-single__outline {
    grid-template-columns: 1fr;
  }
  .event-single__meta-row {
    grid-template-columns: 80px 1fr;
  }
  .event-single__media {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw - 15px);
    transform: translateX(50%);
  }
  .event-single__title, .event-single__article-title {
    font-size: 18px;
  }
  .event-single__map {
    aspect-ratio: 6/5;
    margin: 60px 0 60px 50%;
  }
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * よくある質問ページ
 */
.faq-main section {
  padding: 100px 0 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .faq-main section {
    padding-top: 40px;
  }
}
.faq-main .faq__container {
  background-color: #F9F9F9;
}
.faq-main .faq__inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq-main .faq__content {
  width: 100%;
  padding: 60px 0 120px;
}
@media (max-width: 576px) {
  .faq-main .faq__content {
    padding: 40px 0 60px;
  }
}
.faq-main .faq__item {
  width: 100%;
  margin-bottom: 20px;
  padding: 30px 40px;
  background-color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .faq-main .faq__item {
    padding: 20px;
  }
}
.faq-main .faq__item:hover {
  background-color: #f9f9f9;
}
.faq-main .faq__question-text {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding-right: 25px;
  color: #333333;
}
@media (max-width: 576px) {
  .faq-main .faq__question-text {
    padding-right: 15px;
    font-size: 0.95rem;
  }
}
.faq-main .faq__icon {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #EAEAEA;
}
.faq-main .faq__icon::before, .faq-main .faq__icon::after {
  content: "";
  position: absolute;
  background-color: #333333;
}
.faq-main .faq__icon::before {
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.faq-main .faq__icon::after {
  top: 50%;
  left: 50%;
  width: 1px;
  height: 18px;
  transform: translate(-50%, -50%);
}
.faq-main .faq-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.faq-main .faq-modal.is-active {
  display: block;
}
.faq-main .faq-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.faq-main .faq-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 820px;
  max-height: 80vh;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .faq-main .faq-modal__content {
    width: 95%;
    max-height: 90vh;
    margin-top: 30px;
  }
}
.faq-main .faq-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #EAEAEA;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10;
}
@media (max-width: 576px) {
  .faq-main .faq-modal__close {
    width: 36px;
    height: 36px;
    top: 15px;
    right: 15px;
  }
}
.faq-main .faq-modal__close:hover {
  background-color: rgb(221.25, 221.25, 221.25);
}
.faq-main .faq-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1px;
  background-color: #333333;
}
@media (max-width: 576px) {
  .faq-main .faq-modal__close span {
    width: 18px;
  }
}
.faq-main .faq-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.faq-main .faq-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.faq-main .faq-modal__body {
  padding: 80px 80px 80px 60px;
  max-height: 80vh;
  overflow-y: auto;
}
@media (max-width: 576px) {
  .faq-main .faq-modal__body {
    padding: 60px 20px 30px;
    max-height: 70vh;
  }
}
.faq-main .faq-modal__title {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .faq-main .faq-modal__title {
    font-size: 1rem;
  }
}
.faq-main .faq-modal__divider {
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #a8a8a8 0, #a8a8a8 3px, transparent 3px, transparent 6px);
  margin-bottom: 20px;
}
.faq-main .faq-modal__text {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 2.2;
}
@media (max-width: 576px) {
  .faq-main .faq-modal__text {
    font-size: 0.9rem;
  }
}
.faq-main .faq-modal__text p {
  margin-bottom: 15px;
}
.faq-main .faq-modal__text p:last-child {
  margin-bottom: 0;
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * flowページ
 */
.flow {
  padding: 100px 0 0;
}
@media (max-width: 768px) {
  .flow {
    padding: 40px 0 0;
  }
}
.flow-content {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .flow-content {
    padding: 40px 0;
  }
}
.flow-step {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 576px) {
  .flow-step {
    gap: 12px;
  }
}
.flow-step__head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.flow-step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  background-color: #333333;
  color: #fff;
  border-radius: 4px;
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media (max-width: 576px) {
  .flow-step__badge {
    font-size: 1.1rem;
    padding: 0.4rem 1rem;
  }
}
.flow-step__heading {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 576px) {
  .flow-step__heading {
    font-size: 1.2rem;
  }
}
.flow-step__body {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 24px;
  align-items: start;
}
@media (max-width: 768px) {
  .flow-step__body {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.flow-step__image {
  width: 100%;
}
.flow-step__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.flow-step__list {
  display: flex;
  flex-direction: column;
}
.flow-step__list ul {
  margin: 0;
  padding: 0 0 0 30px;
}
.flow-step__list li {
  list-style: disc;
}
.flow-step__item {
  padding: 0 0 18px;
  line-height: 1.8;
}
.flow-step__item-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
  padding: 0 0 8px;
  letter-spacing: 0.05em;
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * フロントページ
 */
.front-main section {
  padding-block: 120px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .front-main section {
    padding-block: 60px;
  }
}
.front-main .eyecatch-inner {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
}
.front-main .eyecatch-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.front-main .front-fv {
  margin: 0;
  padding: 0;
  background-color: #fff;
}
.front-main .front-fv__main {
  width: 100vw;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.front-main .front-fv__main .splide__track,
.front-main .front-fv__main .splide__list,
.front-main .front-fv__main .splide__slide {
  width: 100%;
  height: 100%;
}
.front-main .front-fv__main .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transform: scale(1);
  transform-origin: center center;
}
.front-main .front-fv__main .splide__slide.is-active img {
  animation: front-fv-zoom var(--fv-zoom-duration, 10000ms) linear forwards;
}
@keyframes front-fv-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
@media (max-width: 768px) {
  .front-main .front-fv__main {
    aspect-ratio: 3/4;
  }
}
.front-main .front-fv__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 20%;
  max-width: 280px;
  animation: fadeout 1s ease-in forwards;
  animation-delay: 11s;
}
@keyframes fadeout {
  to {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .front-main .front-fv__logo {
    max-width: 250px;
    width: 70%;
  }
}
.front-main .front-event {
  background-color: #F9F9F9;
}
.front-main .front-event .post-card__event-time {
  position: relative;
  padding-left: 1.5em;
  color: #333333;
}
.front-main .front-event .post-card__event-time::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 0.1em;
}
.front-main .front-introduction {
  position: relative;
  color: #fff;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 768px) {
  .front-main .front-introduction {
    padding-block: 80px;
  }
}
.front-main .front-introduction__video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.front-main .front-introduction::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212028;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}
.front-main .front-introduction .section-title {
  position: relative;
  z-index: 2;
}
.front-main .front-introduction .section-title__heading {
  font-size: 2.1rem;
  font-weight: 300;
}
@media (max-width: 576px) {
  .front-main .front-introduction .section-title__heading {
    font-size: 1.4rem;
  }
}
.front-main .front-introduction .l-inner {
  position: relative;
  z-index: 2;
}
.front-main .front-introduction__inner {
  display: flex;
  flex-direction: column;
  gap: 120px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .front-main .front-introduction__inner {
    padding: 40px 15px;
    gap: 60px;
  }
}
.front-main .front-introduction__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .front-main .front-introduction__content {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .front-main .front-introduction__content {
    font-size: 0.9rem;
  }
}
.front-main .front-introduction__image {
  width: 50%;
  aspect-ratio: 6/5;
}
@media (max-width: 768px) {
  .front-main .front-introduction__image {
    width: 100%;
  }
}
.front-main .front-introduction__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.front-main .front-introduction__text {
  flex: 1;
}
.front-main .front-introduction__text p {
  max-width: 500px;
  line-height: 2.6;
  letter-spacing: 0.1em;
}
.front-main .front-introduction .reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .front-main .front-introduction .reverse {
    flex-direction: column;
  }
}
.front-main .front-introduction .reverse .front-introduction__text p {
  margin-left: auto;
}
@media (max-width: 768px) {
  .front-main .front-introduction .c-button__wrapper {
    justify-content: center;
  }
}
.front-main .front-introduction__cards {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .front-main .front-introduction__cards {
    flex-direction: column;
    gap: 15px;
  }
}
.front-main .front-introduction__cards.l-inner {
  padding: 0;
}
.front-main .front-introduction .intro-card {
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.front-main .front-introduction .intro-card.right {
  width: 70%;
}
@media (max-width: 768px) {
  .front-main .front-introduction .intro-card.right {
    width: 100%;
  }
}
.front-main .front-introduction .intro-card.left {
  flex: 1;
}
@media (max-width: 768px) {
  .front-main .front-introduction .intro-card.left {
    width: 100%;
  }
}
.front-main .front-introduction .intro-card__image {
  width: 100%;
  height: 50%;
  overflow: hidden;
}
.front-main .front-introduction .intro-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.front-main .front-introduction .intro-card__content {
  padding: 50px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .front-main .front-introduction .intro-card__content {
    padding: 30px 20px;
  }
}
.front-main .front-introduction .intro-card__title {
  font-weight: 400;
  margin: 0;
  color: #212028;
  line-height: 1.8rem;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .front-main .front-introduction .intro-card__title {
    gap: 15px;
  }
}
.front-main .front-introduction .intro-card__en {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Barlow", sans-serif;
}
@media (max-width: 576px) {
  .front-main .front-introduction .intro-card__en {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}
.front-main .front-introduction .intro-card__slash {
  content: "";
  width: 1px;
  height: 1.8rem;
  background-color: #212028;
  transform: rotate(30deg);
  display: inline-block;
}
.front-main .front-introduction .intro-card__ja {
  display: inline;
  font-weight: 400;
  font-size: 0.9rem;
  vertical-align: top;
}
@media (max-width: 576px) {
  .front-main .front-introduction .intro-card__ja {
    font-size: 0.8rem;
  }
}
.front-main .front-introduction .intro-card__text {
  color: #212028;
  flex-grow: 1;
  line-height: 2.2;
}
.front-main .front-introduction .intro-card__link {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #212028;
  transition: transform 0.3s ease;
}
.front-main .front-introduction .intro-card__link:hover {
  transform: translateX(5px);
}
.front-main .front-introduction .intro-card__arrow {
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
}
.front-main .front-works {
  background-color: #F9F9F9;
  overflow: hidden;
}
.front-main .front-works__slide {
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  width: 100vw;
}
@media (max-width: 768px) {
  .front-main .front-works__slide {
    margin-left: 0;
    padding-left: 0;
    width: 95%;
  }
}
.front-main .front-works .c-slider--splide {
  overflow: visible;
}
.front-main .front-works .c-slider--splide .splide__track {
  overflow: visible;
}
.front-main .front-works .c-slider--splide .splide__list {
  width: calc(100% - (100vw - 1200px) / 2);
}
@media (max-width: 768px) {
  .front-main .front-works .c-slider--splide .splide__list {
    width: 100%;
  }
}
.front-main .front-works .c-slider--splide .splide__slide {
  padding: 0;
}
.front-main .front-works .c-slider--splide .splide__arrow {
  border-radius: 0;
  background-color: #fff;
  width: 3em;
  height: 3em;
  opacity: 1;
}
.front-main .front-works .c-slider--splide .splide__arrow svg {
  display: none;
}
.front-main .front-works .c-slider--splide .splide__arrow::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50%;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
}
.front-main .front-works .c-slider--splide .splide__arrow:disabled {
  opacity: 0;
  cursor: not-allowed;
}
.front-main .front-works .c-slider--splide .splide__arrow--prev {
  left: calc(-10px - (100vw - 1200px) / 2);
}
.front-main .front-works .c-slider--splide .splide__arrow--prev::after {
  transform: translateY(-50%) rotate(-135deg);
  left: 1.2em;
}
.front-main .front-works .c-slider--splide .splide__arrow--next {
  right: 10px;
}
.front-main .front-works .c-slider--splide .splide__arrow--next::after {
  transform: translateY(-50%) rotate(45deg);
  right: 1.2em;
}
.front-main .front-works .c-slider--splide .slide-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.front-main .front-works .c-slider--splide .slide-image {
  position: relative;
  width: 100%;
  aspect-ratio: 5/6;
  overflow: hidden;
}
.front-main .front-works .c-slider--splide .slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.front-main .front-works .c-slider--splide .slide-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.front-main .front-works .c-slider--splide .slide-image a:hover img {
  transform: scale(1.05);
}
.front-main .front-works .c-slider--splide .slide-content-wrapper {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-grow: 1;
}
.front-main .front-line-up {
  background-color: #121212;
  padding: 80px 0 0;
}
.front-main .front-line-up .line-up__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 180px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .front-main .front-line-up .line-up__content {
    padding: 120px 15px;
    gap: 25px;
  }
}
.front-main .front-line-up .line-up__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.5s ease;
}
.c-button:hover ~ .front-main .front-line-up .line-up__content::before, .front-main .front-line-up .line-up__content:has(.c-button:hover)::before {
  transform: scale(1.05);
}
.front-main .front-line-up .line-up__content p {
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.front-main .front-line-up .line-up__content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .front-main .front-line-up .line-up__content h2 {
    font-size: 2rem;
  }
}
.front-main .front-line-up .line-up__content img {
  max-width: 200px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.front-main .front-line-up .line-up__content .c-button {
  position: relative;
  z-index: 2;
}
.front-main .front-line-up .front-wb-house {
  position: relative;
}
.front-main .front-line-up .front-wb-house::before {
  background-image: url(../images/bg/wb-house_bg.jpg);
}
.front-main .front-line-up .front-wb-house::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212028;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}
.front-main .front-line-up .front-architecture::before {
  background-image: url(../images/bg/endo_bg.jpg);
}
.front-main .front-real-estate {
  background-color: #121212;
  position: relative;
  overflow: hidden;
}
.front-main .front-real-estate__slide {
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  width: 100vw;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .front-main .front-real-estate__slide {
    padding: 0 15px;
    margin-top: 30px;
  }
}
.front-main .front-real-estate .c-slider--splide {
  overflow: visible;
}
.front-main .front-real-estate .c-slider--splide .splide__track {
  overflow: visible;
}
.front-main .front-real-estate .c-slider--splide .splide__list {
  width: calc((100% - 48px) / 3);
  min-width: 360px;
}
@media (max-width: 768px) {
  .front-main .front-real-estate .c-slider--splide .splide__list {
    min-width: 90%;
    padding: 0 15px;
  }
}
.front-main .front-real-estate .c-slider--splide .splide__slide {
  padding: 0;
}
.front-main .front-real-estate .c-slider--splide .splide__pagination {
  bottom: -40px;
}
@media (max-width: 768px) {
  .front-main .front-real-estate .c-slider--splide .splide__pagination {
    bottom: -30px;
  }
}
.front-main .front-real-estate .c-slider--splide .splide__pagination__page {
  background: #fff;
  margin: 4px;
}
.front-main .front-real-estate .c-slider--splide .splide__pagination__page.is-active {
  background: #5A5A5A;
  transform: initial;
}
.front-main .front-real-estate .c-slider--splide .slide-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
}
.front-main .front-real-estate .c-slider--splide .slide-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.front-main .front-real-estate .c-slider--splide .slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.front-main .front-real-estate .c-slider--splide .slide-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.front-main .front-real-estate .c-slider--splide .slide-image a:hover img {
  transform: scale(1.05);
}
.front-main .front-real-estate .c-slider--splide .slide-content-wrapper {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.front-main .front-real-estate .c-slider--splide .slide-tag {
  margin-bottom: 8px;
  background-color: #5A5A5A;
}
.front-main .front-real-estate .c-slider--splide .slide-price {
  font-weight: 400;
  color: #333333;
}
.front-main .front-real-estate .c-slider--splide .slide-address {
  color: #333333;
  font-weight: 400;
  line-height: 1.4;
}
.front-main .front-real-estate .c-button__wrapper {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .front-main .front-real-estate .c-button__wrapper {
    margin: 60px 0 30px;
  }
}
.front-main .front-news {
  background-color: #F9F9F9;
}
.front-main .front-news .l-inner {
  max-width: 900px;
}
.front-main .front-news .section-title {
  margin-bottom: 0;
}
.front-main .front-news .section-title__heading {
  font-weight: 700;
  letter-spacing: 0.05em;
}
.front-main div#nendebcopy {
  display: none;
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * 不動産情報ページ
 */
.archive-real-estate .post-card__body {
  gap: 0.5rem;
}
.archive-real-estate .post-card__tag {
  background-color: #5A5A5A;
}
.archive-real-estate .post-card__title, .archive-real-estate .post-card__price, .archive-real-estate .post-card__address {
  line-height: 1;
}

.sub-page-main .real-estate-single {
  padding: 100px 0 0;
}
@media (max-width: 768px) {
  .sub-page-main .real-estate-single {
    padding: 40px 0 0;
  }
}
.sub-page-main .real-estate-single .real-estate-detail {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.sub-page-main .real-estate-single .real-estate-detail__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sub-page-main .real-estate-single .real-estate-detail__label {
  display: inline-block;
  padding: 0 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #5A5A5A;
  width: -moz-fit-content;
  width: fit-content;
}
.sub-page-main .real-estate-single .real-estate-detail__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #333333;
}
.sub-page-main .real-estate-single .real-estate-detail__date {
  font-size: 0.9rem;
  line-height: 1;
  color: #333333;
}
.sub-page-main .real-estate-single .real-estate-detail__body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .sub-page-main .real-estate-single .real-estate-detail__body {
    display: flex;
    flex-direction: column-reverse;
  }
}
.sub-page-main .real-estate-single .real-estate-detail__table {
  border: 1px solid #dcdcdc;
  background-color: #fff;
  width: 100%;
}
.sub-page-main .real-estate-single .real-estate-detail__table .info-table {
  width: 100%;
  border-collapse: collapse;
}
.sub-page-main .real-estate-single .real-estate-detail__table .info-table th,
.sub-page-main .real-estate-single .real-estate-detail__table .info-table td {
  border: 1px solid #dcdcdc;
  padding: 16px 24px;
  font-size: 0.95rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .sub-page-main .real-estate-single .real-estate-detail__table .info-table th,
  .sub-page-main .real-estate-single .real-estate-detail__table .info-table td {
    padding: 12px 8px;
    font-size: 0.9rem;
  }
}
.sub-page-main .real-estate-single .real-estate-detail__table .info-table th {
  width: 30%;
  font-weight: 400;
  background-color: #EAEAEA;
  text-align: left;
}
.sub-page-main .real-estate-single .real-estate-detail__table .info-table td {
  line-height: 1.5;
}
.sub-page-main .real-estate-single .real-estate-detail__visual {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.sub-page-main .real-estate-single .real-estate-detail__thumb--top {
  width: 100%;
  aspect-ratio: 3/2;
  background: #F9F9F9;
  border: 1px solid #EAEAEA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.sub-page-main .real-estate-single .real-estate-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.sub-page-main .real-estate-single .real-estate-detail__thumb {
  background: #F9F9F9;
  border: 1px solid #EAEAEA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  height: auto;
  aspect-ratio: 5/6;
}
.sub-page-main .real-estate-single .real-estate-map {
  margin: 80px 0 60px;
  background-color: #cfcfcf;
  display: flex;
  justify-content: center;
}
.sub-page-main .real-estate-single .real-estate-map iframe {
  width: 100%;
  height: 640px;
  border: none;
}
@media (max-width: 768px) {
  .sub-page-main .real-estate-single .real-estate-map iframe {
    height: 320px;
  }
}
.sub-page-main .real-estate-single .real-estate-map__placeholder {
  font-size: 1.1rem;
  color: #d0021b;
  letter-spacing: 0.12em;
  padding: 200px 0;
}
.sub-page-main .real-estate-single .c-button {
  padding: 1.5rem 2.5rem;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .sub-page-main .real-estate-single .c-button {
    margin-bottom: 60px;
    width: 90%;
    max-width: 320px;
  }
}
.sub-page-main .real-estate-single .real-estate-related {
  background-color: #F9F9F9;
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
}
@media (max-width: 768px) {
  .sub-page-main .real-estate-single .real-estate-related {
    padding: 40px 0 60px;
  }
}
.sub-page-main .real-estate-single .real-estate-related__title {
  font-size: 1.6rem;
  font-weight: 400;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .sub-page-main .real-estate-single .real-estate-related__title {
    font-size: 1.2rem;
    text-align: center;
  }
}
.sub-page-main .real-estate-single .real-estate-related__list {
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  width: 100vw;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .sub-page-main .real-estate-single .real-estate-related__list {
    padding: 0;
    margin-top: 30px;
  }
}
.sub-page-main .real-estate-single .real-estate-related .c-slider--splide {
  overflow: visible;
}
.sub-page-main .real-estate-single .real-estate-related .c-slider--splide .splide__track {
  overflow: visible;
}
.sub-page-main .real-estate-single .real-estate-related .c-slider--splide .splide__list {
  width: 28%;
  min-width: 360px;
}
@media (max-width: 768px) {
  .sub-page-main .real-estate-single .real-estate-related .c-slider--splide .splide__list {
    min-width: 90%;
    padding: 0 15px;
  }
}
.sub-page-main .real-estate-single .real-estate-related .c-slider--splide .splide__slide {
  padding: 0;
}
.sub-page-main .real-estate-single .real-estate-related .c-slider--splide .slide-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sub-page-main .real-estate-single .real-estate-related .c-slider--splide .slide-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.sub-page-main .real-estate-single .real-estate-related .c-slider--splide .slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.sub-page-main .real-estate-single .real-estate-related .c-slider--splide .slide-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.sub-page-main .real-estate-single .real-estate-related .c-slider--splide .slide-image a:hover img {
  transform: scale(1.05);
}
.sub-page-main .real-estate-single .real-estate-related .c-slider--splide .slide-content-wrapper {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.sub-page-main .real-estate-single .real-estate-related .c-slider--splide .slide-tag {
  margin-bottom: 8px;
  background-color: #5A5A5A;
  border-radius: 16px;
}
.sub-page-main .real-estate-single .real-estate-related .c-slider--splide .slide-price {
  font-weight: 400;
  color: #333333;
}
.sub-page-main .real-estate-single .real-estate-related .c-slider--splide .slide-address {
  color: #333333;
  font-weight: 400;
  line-height: 1.4;
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * スタッフ紹介ページ
 */
.staff .staff-list {
  display: grid;
  gap: 90px;
  grid-template-columns: repeat(2, 1fr);
  padding: 120px 0 60px;
}
@media (max-width: 768px) {
  .staff .staff-list {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 0 30px;
  }
}
.staff .staff-card {
  text-align: center;
  max-width: 520px;
  color: #333333;
}
.staff .staff-card__photo {
  width: 90%;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #EAEAEA;
  background: #F9F9F9;
}
@media (max-width: 576px) {
  .staff .staff-card__photo {
    width: 70%;
    border-width: 6px;
  }
}
.staff .staff-card__photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff .staff-card__role {
  font-size: 0.9rem;
  color: #5A5A5A;
  margin-bottom: 1em;
  letter-spacing: 0.08em;
}
@media (max-width: 576px) {
  .staff .staff-card__role {
    margin-bottom: 0.5em;
  }
}
.staff .staff-card__name-ja {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .staff .staff-card__name-ja {
    font-size: 1.4rem;
  }
}
.staff .staff-card__name-en {
  font-size: 0.9rem;
  color: #a8a8a8;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.staff .staff-card__badge {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 16px;
  min-width: 140px;
  color: #fff;
  background: #5A5A5A;
}
@media (max-width: 576px) {
  .staff .staff-card__badge {
    padding: 4px 12px;
    min-width: 100px;
  }
}
.staff .staff-card__title {
  font-size: 1.1rem;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .staff .staff-card__title {
    font-size: 1rem;
    margin-bottom: 16px;
  }
}
.staff .staff-card__description {
  font-size: 0.95rem;
  line-height: 2.2;
  text-align: left;
  margin-bottom: 0;
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * about / factory ページ
 */
.wb-main .sub-intro h2 {
  font-size: 2.2rem;
}
.wb-main .sub-intro {
  gap: 60px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .wb-main .sub-intro {
    gap: 30px;
    padding-bottom: 20px;
  }
}

/**
  * @file style.scss
  * @description すべてのスタイルをまとめてエクスポート
  *
  * エクスポート対象:
  * - variables: カラー、フォント、スペーシングなどの値を管理
  * - foundation: ブラウザのデフォルトスタイルをリセットし、基本的なスタイルを提供
  * - layout: ヘッダー、フッター、共通レイアウトのスタイル
  * - components: ボタン、パンくず、ページネーションなどの再利用可能なコンポーネントのスタイル
  * - page: 各ページ固有のスタイル
  */
/**
 * 施工事例詳細ページ
 */
.works-single-main .c-breadcrumb__link {
  color: #fff;
}
.works-single-main .c-breadcrumb__separator {
  color: #fff;
}
.works-single-main .works-fv {
  margin: 0;
  padding: 0;
  background-color: #fff;
  width: 100vw;
  height: auto;
  aspect-ratio: 16/9;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .works-single-main .works-fv {
    aspect-ratio: 9/19.5;
    max-height: calc(100vh - 53px);
  }
}
.works-single-main .works-fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.works-single-main .works-fv__main {
  padding-top: 150px;
  color: #fff;
  position: relative;
  z-index: 1;
  height: 100%;
}
@media (max-width: 768px) {
  .works-single-main .works-fv__main {
    padding-top: 110px;
  }
}
.works-single-main .works-fv__content {
  position: absolute;
  left: 0;
  bottom: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .works-single-main .works-fv__content {
    padding: 15px;
  }
}
.works-single-main .works-fv__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.works-single-main .works-fv__tag {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  font-size: 0.85rem;
  color: #fff;
  background-color: #333333;
}
.works-single-main .works-fv__title {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: #fff;
}
@media (max-width: 768px) {
  .works-single-main .works-fv__title {
    font-size: 1.4rem;
  }
}
@media (max-width: 576px) {
  .works-single-main .works-fv__title {
    font-size: 1.2rem;
  }
}
.works-single-main .works-single {
  padding: 40px 0 100px;
}
@media (max-width: 768px) {
  .works-single-main .works-single {
    padding: 30px 0 60px;
  }
}
.works-single-main .works-single h3 {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .works-single-main .works-single h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }
}
.works-single-main .works-single .works-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #EAEAEA;
}
.works-single-main .works-single .works-table th,
.works-single-main .works-single .works-table td {
  border: 1px solid #EAEAEA;
  padding: 18px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
  color: #333333;
}
.works-single-main .works-single .works-table th {
  width: 240px;
  background-color: #F9F9F9;
  text-align: left;
}
@media (max-width: 768px) {
  .works-single-main .works-single .works-table th {
    width: 100%;
    padding: 14px 12px;
    font-size: 0.9rem;
  }
}
.works-single-main .works-single .works-table td {
  width: calc(100% - 240px);
}
@media (max-width: 768px) {
  .works-single-main .works-single .works-table td {
    width: 100%;
    padding: 18px 12px;
    font-size: 0.9rem;
  }
}
.works-single-main .works-single .works-table.pc-only {
  display: table !important;
}
@media (max-width: 768px) {
  .works-single-main .works-single .works-table.pc-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .works-single-main .works-single .works-table.sp-only {
    display: table !important;
  }
}
.works-single-main .works-single .works-detail > div {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .works-single-main .works-single .works-detail > div {
    margin-bottom: 60px;
  }
}
.works-single-main .works-single .works-detail__head {
  line-height: 2.5;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .works-single-main .works-single .works-detail__head {
    margin-bottom: 60px;
  }
}
.works-single-main .works-single .works-detail__gallery .gallery-main {
  margin-bottom: 25px;
}
.works-single-main .works-single .works-detail__gallery .gallery-main__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 20px;
}
.works-single-main .works-single .works-detail__gallery .gallery-main__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-single-main .works-single .works-detail__gallery .gallery-main__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333333;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider {
  overflow: hidden;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .splide__list {
  width: 210px;
  height: auto;
  aspect-ratio: 4/3;
}
@media (max-width: 576px) {
  .works-single-main .works-single .works-detail__gallery .gallery-slider .splide__list {
    width: 25%;
  }
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .splide__slide {
  padding: 0;
  width: 100%;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  transition: all 0.3s;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .splide__pagination {
  bottom: -30px;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .splide__pagination__page {
  background-color: #ccc;
  width: 8px;
  height: 8px;
  margin: 0 4px;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .splide__pagination__page.is-active {
  background-color: #333333;
  transform: scale(1);
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .splide__track--nav > .splide__list > .splide__slide {
  border: none;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .splide__track--nav > .splide__list > .splide__slide.is-active {
  border: none;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .splide__track {
  overflow: visible;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .slide-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .slide-image {
  position: relative;
  width: 100%;
  aspect-ratio: 5/6;
  overflow: hidden;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .slide-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider .slide-content-wrapper {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-grow: 1;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider--main .splide__track {
  padding-bottom: 60px;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider--main .splide__track p {
  padding: 6px 0 0;
}
.works-single-main .works-single .works-detail__gallery .gallery-slider--main .splide__list {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .works-single-main .works-single .works-detail__gallery .gallery-slider--main .splide__list {
    width: 100%;
  }
}
.works-single-main .works-single .works-detail__features {
  width: 100%;
}
.works-single-main .works-single .works-detail__performance {
  width: 75%;
}
@media (max-width: 768px) {
  .works-single-main .works-single .works-detail__performance {
    width: 100%;
  }
}
.works-single-main .works-single .works-detail__video {
  width: 100%;
}
.works-single-main .works-single .works-detail__video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}/*# sourceMappingURL=style.css.map */