@charset "UTF-8";
/*
Theme Name: 鳥居設計工房一級建築士事務所
Theme URI:
Description: 鳥居設計工房一級建築士事務所
Author: 
Author URI: 
Version: 1.0.0
*/

/*==========================================================================
Foundation
==========================================================================*/

/* ベースとなるリセットとノーマライズ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100vw;
  margin: 0;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E",
    "MS P明朝", serif;
  color: #2b2d2d;
  font-feature-settings: "palt";
  font-size: clamp(0.875rem, calc(0.85rem + 0.25vw), 1rem);
  line-height: 1.6;
  overflow-wrap: break-word;
  word-break: break-word;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: normal;
}

p {
  margin-top: 0;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2b2d2d;
}

img {
  display: block;
  max-width: 100%;
  /* ここはmax-widthのままが正しい */
  height: auto;
  vertical-align: middle;
  border-style: none;
  text-align: center;
  margin: 0 auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/*==========================================================================
Layout
==========================================================================*/

/* コンテナ
------------------------------------------*/
.l-container {
  max-width: 1000px;
  /* ここはmax-widthのままが正しい */
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
}

/* ヘッダー
------------------------------------------*/

.l-header {
  position: fixed;
  width: 100%;
  padding: 24px 0;
  background: #ffffff;
  z-index: 9999;
}

@media screen and (min-width: 768px) {
  .l-header {
    position: relative;
  }
}

.l-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .l-header__inner {
    flex-direction: row;
  }
}

/* メインナビゲーション
------------------------------------------*/
.l-gnav {
  display: none;
}

.l-gnav__container {
  width: 100%;
}

.l-gnav.is-active {
  position: static;
  width: auto;
  height: auto;
  opacity: 1;
  overflow-y: visible;
  box-shadow: none;
}

.l-gnav.is-active {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.7s ease;
}

.l-gnav.is-active .l-container {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  padding: 32px;
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 999;
  opacity: 1;
  transition: opacity 0.7s ease;
}

/* メニュートグルの開閉状態
------------------------------------------*/
.c-contact-toggle .is-open .c-hamburger__line {
  display: none;
}

.is-open .c-hamburger__line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.is-open .c-hamburger__line:nth-child(2) {
  opacity: 0;
}

.is-open .c-hamburger__line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ヘッダーが固定された状態 */
.is-fixed {
  overflow: hidden;
}

/* モバイルナビゲーション
------------------------------------------*/
/* 991px以下のスタイル（基本スタイルとして記述） */
.l-gnav.is-active .c-menu-list__item {
  opacity: 0;
  transform: translateX(20px);
  animation: fadeInRight 0.5s forwards;
}

.l-gnav.is-active .c-menu-list__item:nth-child(1) {
  animation-delay: 0.1s;
}

.l-gnav.is-active .c-menu-list__item:nth-child(2) {
  animation-delay: 0.2s;
}

.l-gnav.is-active .c-menu-list__item:nth-child(3) {
  animation-delay: 0.3s;
}

.l-gnav.is-active .c-menu-list__item:nth-child(4) {
  animation-delay: 0.4s;
}

.l-gnav.is-active .c-menu-list__item:nth-child(5) {
  animation-delay: 0.5s;
}

.l-gnav.is-active .c-menu-list__item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* コンタクトトグル - レスポンシブ対応
------------------------------------------*/
.c-contact-toggle {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: row;
}

@media screen and (min-width: 768px) {
  .c-contact-toggle {
    gap: 8px;
    margin-left: 8px;
    align-items: flex-start;
    flex-direction: column;
  }
}

/* メインビジュアル
------------------------------------------*/
.l-main-visual {
  position: relative;
  top: 150px;
  width: 100%;
}

/* メインコンテンツ
------------------------------------------*/
.l-main {
  padding: 0;
}

.l-content {
  width: 100%;
  margin: 0 auto;
}

.l-content__inner {
  margin-right: 0;
}

/* フッター
------------------------------------------*/
.l-footer {
  width: 100%;
}

.l-footer__upper {
  background: #ffffff;
}

.l-footer__lower {
  background: #ffffff;
  padding: 30px 0;
}

/*==========================================================================
Component
==========================================================================*/

/* ロゴ
------------------------------------------*/
.c-logo__title {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .c-logo__title {
    font-size: 22px;
  }
}

.c-logo__link {
  text-decoration: none;
  display: block;
}

.c-logo__address {
  font-size: 9px;
  font-weight: normal;
  margin-top: 5px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-logo__address {
    font-size: 12px;
    text-align: left;
  }
}

/* コンタクトトグル
------------------------------------------*/
.c-contact-toggle__tel {
  display: flex;
  align-items: center;
  font-size: 20px;
  /* モバイル用のスタイルをベースに */
  font-weight: bold;
  margin: 0;
}

.c-contact-toggle__icon {
  height: 24px;
  /* モバイル用のスタイルをベースに */
  margin: 0;
  margin-right: 5px;
}

@media screen and (min-width: 768px) {
  .c-contact-toggle__tel {
    font-size: 16px;
  }

  .c-contact-toggle__icon {
    height: 20px;
  }
}

/* ハンバーガーメニュー
------------------------------------------*/
.c-hamburger {
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c-hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* メニューリスト
------------------------------------------*/

.c-menu-list .c-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-menu-list li {
  margin-bottom: 1px;
}

.c-menu-list li a {
  display: block;
  padding: 12px 8px;
  color: #2b2d2d;
  text-decoration: none;
  transition: background 0.3s ease;
}

.c-menu-list li a:hover {
  color: #2b2d2d;
}

/* CTA
------------------------------------------*/
.c-contact-cta {
  text-align: center;
  margin: 60px auto;
  max-width: 1000px;
  padding: 0 20px;
}

.c-contact-cta__lead {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.c-contact-cta__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.c-contact-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.c-contact-cta__icon img {
  height: clamp(20px, 4vw, 28px);
  width: auto;
  vertical-align: middle;
}

/* スマホサイズでタップ領域を広げる */
@media (max-width: 767px) {
  .c-contact-cta {
    margin: 40px auto;
  }

  .c-contact-cta__phone {
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    max-width: 300px;
  }

  .c-contact-cta__phone:active {
  }
}

/* セクションヘッダー
------------------------------------------*/
.c-section-header {
  width: 100%;
  margin: 0 0 24px;
  text-align: center;
  line-height: 1.2;
}

.c-section-header__title {
  font-weight: 600;
  font-size: 26px;
  margin: 0 0 24px;
}

.c-section-header--sub {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .c-section-header {
    margin-bottom: 36px;
  }
}

/* カード
------------------------------------------*/
.c-card-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}

/* ベースは1カラム表示（モバイル優先） */
.c-card {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 1.6rem;
  list-style-type: none;
}

.c-card__image {
  width: 80%;
  margin: 0 auto;
}

.c-card__title {
  margin: 10px 0 5px;
  font-size: 16px;
  font-weight: bold;
}

.c-card__text {
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (min-width: 481px) {
  .c-card {
    width: calc((100% - 4%) / 2);
    /* 2カラム */
  }
}

@media screen and (min-width: 768px) {
  .c-card {
    width: calc((100% - 4%) / 3);
    /* 3カラム */
  }
}

/* パララックス
------------------------------------------*/
.c-parallax {
  width: 100%;
}

.c-parallax__wrapper {
  width: 100vw;
  height: 300px;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-parallax__wrapper {
    height: 410px;
  }
}

.c-parallax__content {
  width: 100%;
  height: 100%;
  position: relative;
}

.c-parallax__content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.c-parallax__image {
  width: 100%;
  max-width: none;
}

/* ヒーローセクション
------------------------------------------*/
.c-hero {
  position: relative;
  width: 100%;
  max-height: 300px;
}

@media screen and (min-width: 768px) {
  .c-hero {
    height: 100vh;
    max-height: 649px;
  }
}

.c-hero .c-parallax__wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-height: 400px;
}

@media screen and (min-width: 768px) {
  .c-hero .c-parallax__wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    max-height: 600px;
  }
}

@media screen and (min-width: 768px) {
  .c-hero .c-parallax__wrapper:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://marunouchi-arc.com/wp/wp-content/themes/torii/src/assets/images/parallax/c-parallax__wrapper--bg.jpg")
      rgba(0, 0, 0, 0.5);
    background-position: center bottom;
    background-repeat: repeat-x;
    background-size: auto;
    z-index: 1;
  }
}

/* ヒーローコンテンツ */
.c-hero__content {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
  color: #ffffff;
}

.c-hero__title {
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.4;
  margin-bottom: 30px;
  font-weight: 500;
}

.c-hero__description {
  max-width: 800px;
  margin: 0 auto;
}

.c-hero__text {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .c-hero__content {
    top: 15%;
  }

  .c-hero__skyline {
    height: 100px;
  }
}

/* 成約実績セクション
------------------------------------------*/
.p-performance {
  margin-bottom: 60px;
}

/* 成約実績グリッド */
.p-performance-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

/* モバイル: 1カラム */
@media (max-width: 767px) {
  .p-performance-grid {
    grid-template-columns: 1fr;
  }
}

/* タブレット: 2カラム */
@media (min-width: 768px) and (max-width: 991px) {
  .p-performance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* デスクトップ: 3カラム */
@media (min-width: 992px) {
  .p-performance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 物件成約実績カード */
.c-property-result {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 物件画像 */
.c-property-result__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.c-property-result__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.c-property-result:hover .c-property-result__image img {
  transform: scale(1.05);
}

/* 物件情報 */
.c-property-result__info {
  padding: 20px;
  text-align: center;
  background-color: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-property-result__name {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px 0;
  color: #333;
}

.c-property-result__price {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #333;
}

/* 物件詳細ページ
------------------------------------------*/
.p-single .p-property {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.p-single .p-property__header {
  margin-bottom: 30px;
}

.p-single .p-property__title-area {
  text-align: center;
  margin-bottom: 20px;
}

.p-single .p-property__title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 10px;
}

.p-single .p-property__info {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.p-single .p-property__size,
.p-single .p-property__area,
.p-single .p-property__price {
  font-size: 18px;
  font-weight: bold;
}

/* 物件詳細ページギャラリー
------------------------------------------*/

/* ギャラリーコンテナ */
.p-property__gallery {
  margin-bottom: 50px;
}

/* メイン画像 */
.p-property__main-image {
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}

.p-property__main-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* サムネイルエリア */
.p-property__thumbnails-wrapper {
  position: relative;
  overflow: hidden;
}

/* スライダー本体 */
.p-property__thumbnails {
  visibility: hidden;
  /* 初期化前は非表示 */
}

.p-property__thumbnails.slick-initialized {
  visibility: visible;
}

/* 各スライド */
.p-property__slide {
  display: flex;
  flex-direction: column;
  height: 410px;
  /* 2行分の高さ + 間隔 */
}

/* 各行 */
.p-property__row {
  display: flex;
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  /* 行間の隙間 */
}

.p-property__row:last-child {
  margin-bottom: 0;
}

/* サムネイル */
.p-property__thumbnail {
  position: relative;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  margin-right: 10px;
  /* サムネイル間の隙間 */
}

.p-property__thumbnail:last-child {
  margin-right: 0;
}

/* 画像サイズによるクラス */
.p-property__thumbnail--wide {
  flex: 2;
  /* 幅広の画像 */
}

.p-property__thumbnail--normal {
  flex: 1;
  /* 通常の画像 */
}

.p-property__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.p-property__thumbnail:hover img {
  transform: scale(1.05);
}

/* Slickスライダーのカスタマイズ */
/* デフォルト矢印を消す */

.slick-prev {
  z-index: 20;
  left: 0 !important;
}

.slick-next {
  z-index: 20;
  right: 0 !important;
}

.slick-prev::before,
.slick-next::before {
  display: none !important;
  content: none !important;
}

.arrow-icon {
  display: block;
  position: relative;
  width: 30px;
  height: 24px;
}

.arrow-icon::before,
.arrow-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2b2d2d;
  border-radius: 1px;
  top: 50%;
  left: 0;
}

/* 共通スタイル */
.slick-prev .arrow-icon,
.slick-next .arrow-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 14px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .slick-prev .arrow-icon,
  .slick-next .arrow-icon {
    width: 30px;
    height: 24px;
  }
}

/* 配置 */
.slick-prev .arrow-icon {
  left: 20px !important;
}

@media screen and (min-width: 768px) {
  .slick-prev .arrow-icon {
    left: 40px !important;
  }
}

.slick-next .arrow-icon {
  right: 20px !important;
}

@media screen and (min-width: 768px) {
  .slick-prev .arrow-icon {
    left: 40px !important;
  }
}

/* ミニマル矢印をCSSで描画 */
.slick-prev .arrow-icon::after,
.slick-next .arrow-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  top: 50%;
  left: 0;
  transform-origin: center;
}

.slick-prev .arrow-icon::before,
.slick-next .arrow-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  top: 50%;
  right: 0;
  transform-origin: center;
}

/* ← Prev 矢印 */
.slick-prev .arrow-icon::before {
  top: 16px;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .slick-prev .arrow-icon {
    left: 40px !important;
  }
}

.slick-prev .arrow-icon::after {
  top: 1px;
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .slick-prev .arrow-icon {
    left: 40px !important;
  }
}

/* → Next 矢印 */
.slick-next .arrow-icon::before {
  top: 16px;
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .slick-next .arrow-icon::before {
    top: 22px;
  }
}

.slick-next .arrow-icon::after {
  top: 1px;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .slick-next .arrow-icon::after {
    top: 1px;
  }
}

/* ホバーで拡大（任意） */
.slick-prev .arrow-icon:hover,
.slick-next .arrow-icon:hover {
  transform: translateY(-50%) scale(1);
}

/* Lightbox
------------------------------------------*/
.c-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.c-lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
}

.c-lightbox__container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 1;
}

.c-lightbox__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-lightbox__image {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

/* 共通ボタンスタイル */
.c-lightbox__close,
.c-lightbox__prev,
.c-lightbox__next {
  position: absolute !important;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.c-lightbox__close {
  top: 40px;
  right: 40px;
}

.c-lightbox__prev {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c-lightbox__next {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* 共通ラインパーツ（×、←、→） */
.c-lightbox__close--line,
.c-lightbox__arrow {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #2b2d2d;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.c-lightbox__arrow {
  background: none;
}

/*（Close）専用ライン */
.c-lightbox__close--line:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}

.c-lightbox__close--line:nth-child(2) {
  transform: translateY(0px) rotate(-45deg);
}

/* ←（Prev） */
.c-lightbox__arrow--prev {
  position: relative;
}

.c-lightbox__arrow--prev::before,
.c-lightbox__arrow--prev::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2b2d2d;
  border-radius: 1px;
  top: 50%;
  left: 0;
  transform-origin: left center;
  transition: all 0.3s ease;
}

.c-lightbox__arrow--prev::before {
  transform: rotate(45deg);
}

.c-lightbox__arrow--prev::after {
  transform: rotate(-45deg);
}

/* →（Next） */
.c-lightbox__arrow--next {
  position: relative;
}

.c-lightbox__arrow--next::before,
.c-lightbox__arrow--next::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2b2d2d;
  border-radius: 1px;
  top: 50%;
  right: 0;
  transform-origin: right center;
  transition: all 0.3s ease;
}

.c-lightbox__arrow--next::before {
  transform: rotate(-45deg);
}

.c-lightbox__arrow--next::after {
  transform: rotate(45deg);
}

/* ホバー効果（共通） */
.c-lightbox__close:hover,
.c-lightbox__prev:hover,
.c-lightbox__next:hover {
  transform: scale(1) translateY(-50%);
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .p-property__slide {
    height: 170px;
    /* 2行分の高さ + 間隔（モバイル用） */
  }

  .p-property__row {
    height: 70px;
  }
}

/* 物件詳細情報
------------------------------------------*/
.p-single .p-property__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .p-single .p-property__details {
    grid-template-columns: 1fr;
  }
}

.p-single .p-property__floor-plan {
  cursor: pointer;
  overflow: hidden;
}

.p-single .p-property__floor-plan img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.p-single .p-property__floor-plan:hover img {
  transform: scale(1.05);
}

.p-single .p-property__specs {
  padding: 20px;
}

.p-single .p-property__spec-list {
  display: grid;
  grid-template-columns: 35% 65%;
  row-gap: 10px;
  margin: 0;
}

.p-single .p-property__spec-list dt {
  padding: 2px 0;
  text-align: justify;
}

.p-single .p-property__spec-list dd {
  margin: 0;
  padding: 2px 0;
}

/* 取引実績テーブルセクション
------------------------------------------*/
.p-transaction {
  margin: 40px 0 60px;
  position: relative;
}

/* スクロール可能なテーブルラッパー */
.c-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  max-height: 300px;
  /* 縦スクロールの高さ制限 */
  overflow-y: auto;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  position: relative;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #5b5d5d #f1f1f1;
}

/* カスタムスクロールバー（Chrome、Edge、Safari用） */
.c-scroll-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.c-scroll-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.c-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #5b5d5d;
  border-radius: 4px;
}

.c-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: #5b5d5d;
}

.c-scroll-indicator__icon {
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid #5b5d5d;
  border-bottom: 2px solid #5b5d5d;
  transform: rotate(45deg);
  animation: scrollIndicator 2s infinite;
  opacity: 0;
}

.c-scroll-indicator__icon:nth-child(1) {
  top: 0;
  animation-delay: 0s;
}

.c-scroll-indicator__icon:nth-child(2) {
  top: 10px;
  animation-delay: 0.2s;
}

.c-scroll-indicator__icon:nth-child(3) {
  top: 20px;
  animation-delay: 0.4s;
}

@keyframes scrollIndicator {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(5px, 5px);
  }
}

/* 取引テーブル */
.c-transaction-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
}

.c-transaction-table__head {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 1;
}

.c-transaction-table__header {
  padding: 15px 10px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
  white-space: nowrap;
}

.c-transaction-table__row {
  transition: background-color 0.2s ease;
}

.c-transaction-table__row:hover {
  background-color: #f5f5f5;
}

.c-transaction-table__row--even {
  background-color: #f9f9f9;
}

.c-transaction-table__row--odd {
  background-color: #ffffff;
}

.c-transaction-table__cell {
  padding: 12px 10px;
  border-bottom: 1px solid #e0e0e0;
}

/* 最後の行のボーダーを消す */
.c-transaction-table__row:last-child .c-transaction-table__cell {
  border-bottom: none;
}

/* 表の下部にグラデーションでスクロールを促す */
.c-scroll-wrapper::after {
  display: none;
  opacity: 0;
}

.c-scroll-wrapper:hover::after {
  opacity: 0;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .c-transaction-table {
    font-size: 12px;
  }

  .c-transaction-table__header,
  .c-transaction-table__cell {
    padding: 10px 8px;
  }
}

/* スライダー
------------------------------------------*/
.c-slider {
  margin-bottom: 20px;
}

.c-slider__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 矢印スタイル */
.c-slider .slick-prev,
.c-slider .slick-next {
  z-index: 1;
  width: 40px;
  height: 40px;
}

.c-slider .slick-prev {
  left: 20px;
}

.c-slider .slick-next {
  right: 20px;
}

.c-slider .slick-prev:before,
.c-slider .slick-next:before {
  font-size: 40px;
  color: #000;
  opacity: 0.75;
}

/* 写真グリッド
------------------------------------------*/
.c-photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* モバイル優先で2カラム */
.c-photo-grid__item {
  flex: 0 0 calc(50% - 10px);
}

.c-photo-grid__image {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

@media (min-width: 769px) {
  .c-photo-grid__item {
    flex: 0 0 calc(33.333% - 14px);
    /* PCでは3カラム */
  }

  .c-photo-grid__image {
    height: 150px;
  }
}

/* オフィスギャラリー
------------------------------------------*/
.c-office-gallery {
  display: flex;
  flex-direction: column;
  /* モバイル優先で縦並び */
  gap: 20px;
  margin-bottom: 30px;
}

.c-office-gallery__item {
  flex: 1;
  height: 200px;
  overflow: hidden;
}

.c-office-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.c-office-gallery__image:hover {
  transform: scale(1.05);
}

@media (min-width: 769px) {
  .c-office-gallery {
    flex-direction: row;
    /* PCでは横並び */
  }

  .c-office-gallery__item {
    height: 250px;
  }
}

/* 地図
------------------------------------------*/
.c-map {
  width: 100%;
  height: 300px;
}

@media (min-width: 769px) {
  .c-map {
    width: 100%;
    height: 500px;
  }
}

.c-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* フォーム
------------------------------------------*/
.c-form {
  max-width: 600px;
  margin: 0 auto;
}

.c-form__row {
  display: flex;
  flex-direction: column;
}

@media (min-width: 769px) {
  .c-form__row {
    margin-bottom: 0;
    flex-direction: row;
  }
}

@media (min-width: 769px) {
  .c-form__row:not(:last-child) {
    margin-bottom: 0;
  }
}

.c-form__cell {
  border: 1px solid #000000;
  padding: 15px;
}

@media (min-width: 769px) {
  .c-form__row:not(:first-child) .c-form__cell {
    border-top: none;
  }
}

.c-form__cell--half {
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 769px) {
  .c-form__cell--half {
    width: 50%;
    margin-bottom: 0;
  }
}

@media (min-width: 769px) {
  .c-form__cell--half:last-child {
    border-left: none;
  }
}

.c-form__cell--full {
  width: 100%;
}

.c-form__input,
.c-form__textarea {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  background: transparent;
}

.c-form__textarea {
  height: 150px;
  resize: none;
}

.c-form__submit {
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 769px) {
  .c-form__submit {
    text-align: right;
  }
}

.c-button {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.c-button--submit {
  background-color: #000000;
  color: white;
  padding: 15px 50px;
  font-size: 16px;
}

.c-button--submit:hover {
  background-color: #333;
}

/* 隠しフィールド */
input[name="company"] {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

/* コピーライト
------------------------------------------*/
.c-copyright {
  text-align: center;
  font-size: 12px;
  margin: 0;
}

/*==========================================================================
Project
==========================================================================*/

/* お知らせセクション
------------------------------------------*/
/*c-card-grid*/

.p-topics {
  display: none;
}

@media (min-width: 769px) {
  .p-topics {
    display: block;
  }
}

/* 物件セクション
------------------------------------------*/
/* 物件グリッド共通スタイル */
.p-property-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

/* モバイル: すべてのグリッドは1カラム */
.p-property-grid {
  grid-template-columns: 1fr;
}

/* 奇数配置用のクラス */
.p-property-grid--odd-first .c-property-card:first-child {
  grid-column: 1 / -1;
  max-width: 100%;
  justify-self: center;
}

@media (min-width: 768px) {
  .p-property-grid--odd-first .c-property-card:first-child {
    grid-column: 1 / -1;
    width: 50%;
    max-width: 100%;
    justify-self: center;
  }
}

/* タブレット以上: 2カラムと3カラム表示 */
@media (min-width: 768px) {
  /* 2カラムレイアウト */
  .p-property-grid--feature,
  .p-property-grid--col2 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 3カラムレイアウト（タブレットでは2カラム） */
  .p-property-grid--col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* デスクトップ: 3カラム表示（特集エリアは除く） */
@media (min-width: 992px) {
  .p-property-grid--col3 {
    grid-template-columns: repeat(3, 1fr);
  }

  /* 特集エリアは2カラムのまま */
  .p-property-grid--feature {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* カードコンポーネント
------------------------------------------*/
.c-property-card {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.c-property-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.c-property-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.c-property-card__info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.c-property-card__type {
  display: inline-block;
  font-size: 0.75rem;
  color: #666666;
  margin-bottom: 0.5rem;
}

.c-property-card__name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.c-property-card__description,
.property_transportation {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.c-property-card__location,
.c-property-card__units {
  font-size: 0.75rem;
  color: #666666;
  margin-bottom: 1rem;
}

.c-property-card__specs {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  justify-content: center;
}

/* 価格とステータスエリア */
.c-property-card__action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  gap: 16px;
}

.c-property-card__price {
  font-size: 1.125rem;
  font-weight: 700;
}

.c-property-card__status {
  display: inline-block;
  text-align: center;
  margin: 0;
  padding: 0.5rem 0;
  width: 120px;
  /* 固定幅 */
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.c-property-card__status--available {
  background-color: #2b2d2d;
  background-color: #8d8d8d;
  color: white;
}

.c-property-card__status--sold {
  background-color: #8d8d8d;
  color: white;
}

/* リフォームセクション
------------------------------------------*/
.p-reform {
  margin-bottom: 40px;
}

/* 会社概要セクション
------------------------------------------*/
.p-company {
  margin-bottom: 40px;
}

.p-company dl div {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-bottom: 16px;
}

.p-company .group-info__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-bottom: 16px;
}

.p-company dl div dd {
  margin-left: 6px;
}

/* オフィスセクション
------------------------------------------*/
.p-office {
  margin-bottom: 40px;
}

/* お問い合わせセクション
------------------------------------------*/
.p-contact {
  margin-bottom: 40px;
}

/* 成約実績セクション
------------------------------------------*/
.p-performance {
  margin-bottom: 40px;
}

/*==========================================================================
Utility
==========================================================================*/

/* テキスト配置
------------------------------------------*/
.u-text-center {
  text-align: center;
}

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

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

/* スペーサー
------------------------------------------*/
.u-spacer {
  height: 16px;
}

.u-spacer--sm {
  height: 8px;
}

.u-spacer--md {
  height: 16px;
}

.u-spacer--lg {
  height: 24px;
}

.u-spacer--xl {
  height: 32px;
}

.u-spacer--xxl {
  height: 48px;
}

@media screen and (min-width: 768px) {
  .u-spacer--sm {
    height: 10px;
  }

  .u-spacer--md {
    height: 20px;
  }

  .u-spacer--lg {
    height: 30px;
  }

  .u-spacer--xl {
    height: 40px;
  }

  .u-spacer--xxl {
    height: 60px;
  }
}

/* クリアフィックス
------------------------------------------*/
.u-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* フォント
------------------------------------------*/
.u-font--en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.u-font--regular {
  font-weight: 400;
}

.u-font--medium {
  font-weight: 500;
}

.u-font--semibold {
  font-weight: 600;
}

.u-font--bold {
  font-weight: 700;
}

/* 表示・非表示
------------------------------------------*/
.u-sp-only {
  display: block;
  /* モバイル優先でデフォルト表示 */
}

.u-pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }

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