@charset "UTF-8";
/* CSS Document */
/*//////////SPサイズ///////////*/
@media screen and (max-width:767px) {
  /** ==============================
 * ファーストビュー start
 * ============================== **/
  .MainVisualSection {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #333;
  }
  
  /* ===== 動画背景 ===== */
  .MainVisualSection__video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  .MainVisualSection__video-bg video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
  }
  
/* ★ 黒オーバーレイ */
.MainVisualSection__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* 黒＋透明30% */
  z-index: 2;
  pointer-events: none; /* 下の動画ボタンなどの操作を邪魔しない */
}
  /* ===== ブランドMOVIEリンク・コピー配置 ===== */
  .MainVisualSection__content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
  }
  .MainVisualSection__brand-movie {
    align-self: flex-start;
    margin: 0 0 0 0;
    position: absolute;
    left: 5vw;
    bottom: 5vw;
    z-index: 2;
    pointer-events: auto;
  }
/* ブランドムービーボタン */
.MainVisualSection__brand-link img {
  width: 33vw;
  height: auto;
}

/* ライトボックスのスタイル */
.VideoLightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999; /* 必ずヘッダーより前に */
  align-items: center;
  justify-content: center;
}

.VideoLightbox.is-active {
  display: flex;
}

.VideoLightbox__inner {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}

.VideoLightbox__inner video {
  width: 100%;
    max-width:1280px;
  height: auto;
  display: block;
}

.VideoLightbox__close {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000; /* 念のためボタンも強く */
}


  .MainVisualSection__brand-link:hover {
    opacity: 0.8;

  }
  .MainVisualSection__copy {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: absolute;
    left: 1.5rem;
    bottom: 30%;
    margin: 0;
    z-index: 2;
    pointer-events: auto;
  }
  .MainVisualSection__en.serif {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 100;
    color: #fff;
	line-height: 130%;
    letter-spacing: 0.09em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
    margin-bottom: 0.35em;
  }
  .MainVisualSection__jp.serif {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.13);
    letter-spacing: 0.07em;
  }
  /** ==============================
 * ファーストビュー end
 * ============================== **/
  /** ==============================
 * About Usセクション start
 * ============================== **/
  .AboutUsSection {
    width: 100vw;
    padding: 0 0 20vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }
  .AboutUsSection__inner {
    display: grid;
  grid-template-columns: 1fr;
    gap: 10vw;
    width: 100%;
    align-items: center;
    margin: 0 auto;
    min-height: 0;
  }
  /* 左側写真 */
  .AboutUsSection__image-area {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .AboutUsSection__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    /* border-radius: 1vw; ← 削除 */
  }
  /* 右側テキスト・リンク */
  .AboutUsSection__content {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    align-items: flex-start;
	width: 85%;
	margin: auto;
  }
  /* タイトルまわり */
  .AboutUsSection__header {
    display: inline-block;
    align-items: center;
    gap: 1.5vw;
  }
  .AboutUsSection__title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    color: #235296;
    font-weight: 400;
    letter-spacing: 0.05em;
	line-height: 100%;
  }
  .AboutUsSection__subtitle {
    font-size: 0.8rem;
	display: inline;
    color: #666;
    margin-left: 1vw;
  }
  /* moreリンク */
  .AboutUsSection__more {
    display: flex;
    align-items: center;
    font-size: 1.09rem;
    color: #235296;
    font-weight: 600;
    margin-left: 2vw;
    text-decoration: none;
    gap: 1em;
	width: 40vw;
    position: relative;
    transition: color 0.2s;
	padding: 5vw 0;
  }
  .AboutUsSection__more:hover {
    color: #04b0aa;
  }
  /* 矢印画像のマスク＆サイズ指定 */
  .AboutUsSection__arrow.hidden, .AboutUsSection__arrow.links {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30vw;
    height: auto;
    overflow: hidden;
  }
  .AboutUsSection__arrow img {
    width:30vw;
    height: auto;
    display: block;
    animation: arrowMove 1.3s ease-in-out infinite;
  }
  /* 左に移動して戻るアニメーション */
  @keyframes arrowMove {
    0% {
      transform: translateX(0);
    }
    40% {
      transform: translateX(-8px);
    }
    55% {
      transform: translateX(-8px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .AboutUsSection__more-text {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
  /* 本文コピー */
  .AboutUsSection__copy p {
    font-size: 1rem;
    color: #222;
    line-height: 2;
    margin-bottom: 0.5em;
	text-align: justify;
	width: 100%;
  }
  /* 動画リンク */
  .AboutUsSection__video-link {
    margin-top: 1vw;
	text-align: center;
	width: 100%;
  }
  .AboutUsSection__video-frame {
    display: inline-block;
    width: 50vw;
	aspect-ratio: 16 / 9;
    background: #eee;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s, background 0.2s;
  }
  .AboutUsSection__video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /** ==============================
 * About Usセクション end
 * ============================== **/
  /** ==============================
 * Historyセクション start
 * ============================== **/
  .HistorySection {
    width: 100vw;
    aspect-ratio: auto; /* 高さに応じて伸縮可 */
padding: 0 0 20vw 0;
    display: block; /* フレックス解除 */
  }
  .HistorySection__inner {
    display: grid;
    grid-template-columns: 1fr; /* 1カラム */
    gap: 1.5rem;
    width: 100%;
    height: auto;
  }
  /* 左カラム：全体を上下左右中央揃え */
  .HistorySection__content {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    align-items: flex-start;
	width: 85%;
	margin: auto;
  }
  /* 中身ラッパー（デフォルトblock縦積み・追加なし） */
  .HistorySection__content-inner {
    /* 追加スタイルなし */
  }
  /* タイトル行（下にvwで間隔を空ける） */
  .HistorySection__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .HistorySection__title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    color: #235296;
    font-weight: 400;
    letter-spacing: 0.05em;
	line-height: 100%;
  }
  .HistorySection__subtitle {
    font-size: 0.8rem;
	display: inline;
    color: #666;
    margin-left: 1vw;
  }
  .HistorySection__more {
    display: flex;
    align-items: center;
    font-size: 1.09rem;
    color: #235296;
    font-weight: 600;
    margin-left: 2vw;
    text-decoration: none;
    gap: 1em;
	width: 40vw;
    position: relative;
    transition: color 0.2s;
	padding: 5vw 0;
  }
  .HistorySection__more:hover {
    color: #04b0aa;
  }
  .HistorySection__arrow.hidden, .HistorySection__arrow.links {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30vw;
    height: auto;
    overflow: hidden;
  }
  .HistorySection__arrow img {
    width:30vw;
    height: auto;
    display: block;
    animation: arrowMove 1.3s ease-in-out infinite;
  }
  .HistorySection__more-text {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
  /* 本文 */
  .HistorySection__copy {
    width: 100%;
    text-align: left;
    margin-left: 0;
  }
  .HistorySection__copy p {
    font-size: 1rem;
    color: #222;
    line-height: 2;
    margin-bottom: 0.5em;
	text-align: justify;
	width: 100%;
  }
  /* 右カラム（画像） */
  .HistorySection__image-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
	width: 85%;
    height: 100%;
	margin: auto;
  }
  .HistorySection__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /** ==============================
 * Historyセクション end
 * ============================== **/
  /** ==============================
 * Serviceセクション start
 * ============================== **/
  .ServiceSection {
    width: 100vw;
padding: 0 0 20vw 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

  }
  .ServiceSection__inner {
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .ServiceSection__header {
    display: inline-block;
    align-items: center;
    justify-content: flex-start;
    gap: 1.3vw;
    width: 100%;
    margin-bottom: 2.5vw;
  }
  .ServiceSection__title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    color: #235296;
    font-weight: 400;
    letter-spacing: 0.05em;
	line-height: 100%;
  }
  .ServiceSection__subtitle {
    font-size: 0.8rem;
    color: #333;
    margin-left: 1vw;
    display: inline;
    align-items: center;
    line-height: 1.1;
  }
  .ServiceSection__more {
    display: flex;
    align-items: center;
    font-size: 1.09rem;
    color: #235296;
    font-weight: 600;
    margin-left: 2vw;
    text-decoration: none;
    gap: 1em;
	width: 40vw;
    position: relative;
    transition: color 0.2s;
	padding: 5vw 0;
  }
  .ServiceSection__more:hover {
    color: #04b0aa;
  }
  .ServiceSection__arrow.hidden, .ServiceSection__arrow.links {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30vw;
    height: auto;
    overflow: hidden;
  }
  .ServiceSection__arrow img {
    width: 30vw;
    height: auto;
    display: block;
    animation: arrowMove 1.3s ease-in-out infinite;
  }
  .ServiceSection__more-text {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
  /* 4カラムグリッド */
  .ServiceSection__grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10vw;
    margin: 0 auto;
  }
  .ServiceSection__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #222;
    transition: opacity 0.2s;
  }
  .ServiceSection__img-wrap {
    width: 100%;
    aspect-ratio: 1 / 0.7; /* 幅:高さ = 1:1.618 黄金比 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ServiceSection__img {
    width: 100%;
    aspect-ratio: 1 / 0.7; /* 幅:高さ = 1:1.618 黄金比 */
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(.23, 1.07, .67, 1);
  }
  /* hover時に画像のみ拡大（マスク内） */
  .ServiceSection__item:hover .ServiceSection__img, .ServiceSection__img-wrap:hover .ServiceSection__img {
    transform: scale(1.1);
  }
  .ServiceSection__caption {
    margin-top: 1vw;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.01em;
    line-height: 1.7;
    display: block;
  }
  /** ==============================
 * Serviceセクション end
 * ============================== **/
  /** ==============================
 * Property Portfolio・CustomGallery セクション start
 * ============================== **/
  .PortfolioSection {
    width: 100vw;

    background: #eae6e2;
    position: relative;
    overflow: hidden;
    display: block;
  }
  /* タイトルヘッダー */
  .PortfolioSection__header {
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	padding:5vw 0 5vw 7.5vw
  }
  .PortfolioSection__title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    color: #235296;
    font-weight: 400;
    letter-spacing: 0.04em;
  }
  .PortfolioSection__subtitle {
    font-size: 0.8rem;
    color: #222;
    letter-spacing: 0.05em;
  }
  .PortfolioSection__content {
    width: 100vw;
    height: 100%;

    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 2;
  }
  /* --- スライダー本体 --- */
  .CustomGallery__frame {
    width: 100vw;
    height: 30vh;
    position: relative;
    overflow: hidden;
    margin: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .CustomGallery__strip {
    display: flex;
    align-items: center;
    height: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .CustomGallery__strip::-webkit-scrollbar {
    display: none;
  }
  .CustomGallery__img {
    height: 100%;
    width: auto;
    display: block;
    margin-right: 0vw;
    border: none;
    background: none;
    pointer-events: none;
    user-select: none;
  }
  /* ← NEW! 端ピタ用ダミー */
  .CustomGallery__dummy {
    flex: none;
    width: calc(80vw - 0vw); /* stripの親幅 - 最後の画像の右マージン分 */
    height: 1px;
    background: transparent;
    pointer-events: none;
  }
  /* --- メタ情報 --- */
  .PortfolioGallery__meta {
    width: 85vw;
    display: inline-block;
    align-items: center;
    gap: 2vw;
    padding: 1rem 0 20vw 7.5vw ;
    position: relative;
    justify-content: flex-start;
    min-height: 3vw;
    overflow: visible;
    z-index: 10;
  }
  .PortfolioGallery__category {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    color: #222;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .PortfolioGallery__more {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #235296;
    font-weight: 600;
    text-decoration: none;
    gap: 0.7em;
    position: relative;
    transition: color 0.2s;
  }
  .PortfolioGallery__more:hover {
    color: #04b0aa;
  }
  .PortfolioGallery__arrow.hidden, .PortfolioGallery__arrow.links {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30vw;
    height: auto;
    overflow: hidden;
  }
  .PortfolioGallery__arrow img {
    width: 30vw;
    height: auto;
    display: block;
    animation: arrowMove 1.3s ease-in-out infinite;
  }
  .PortfolioGallery__more-text {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    width: 30vw;
  }
  /* --- ナビボタン：meta内右端絶対配置 --- */
  .PortfolioGallery__nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 3;
    width: 3vw;
    height: 3vw;
    min-width: 36px;
    min-height: 36px;
    background: #aaa;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
  }
  .PortfolioGallery__nav--prev {
    right: 0vw;
    margin-right: 2vw; /* ← 追加部分 */
  }
  .PortfolioGallery__nav--next {
    right: -10vw;
  }
  .PortfolioGallery__nav svg {
    width: 2vw;
    height: 2vw;
    min-width: 20px;
    min-height: 20px;
    fill: #fff;
    display: block;
    pointer-events: none;
  }
  .PortfolioGallery__nav:hover {
    background: #235296;
  }
  /** ==============================
 * Property Portfolio・CustomGallery セクション end
 * ============================== **/
  /** ==============================
 * CSRセクション start
 * ============================== **/
  .CsrSection {
    width: 100vw;
    padding-top: 8vw;
    padding-bottom: 8vw;
    background: #fff;
  }
  .CsrSection__inner {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .CsrSection__title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    color: #235296;
    font-weight: 400;
    margin-bottom: 2vw;
    letter-spacing: 0.05em;
    line-height: 100%
  }
  .CsrSection__subtitle {
    font-size: 0.8rem;
    color: #222;
    margin-bottom: 2vw;
    letter-spacing: 0.05em;
  }
  .CsrSection__lead, .CsrSection__desc {
    width: 85vw;
    font-size: 1rem;
    color: #222;
    text-align: left;
    line-height: 2;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10vw;
  }
  .CsrSection__img-wrap {
    width: 65vw;
    margin: 3vw auto 10vw auto;
    display: flex;
    justify-content: center;
  }
  .CsrSection__img {
    width: 100%;
    height: auto;
    display: block;
  }
  /** ==============================
 * CSRセクション end
 * ============================== **/
  /** ==============================
 * 重なりスクロールセクション start
 * ============================== **/
  .OverlapSectionGroup {
    width: 100vw;
    position: relative;
  }
  .OverlapSection {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .OverlapContent {
    display: grid;
    grid-template-columns: 1fr;
    width: 100vw;
    height: 100%;
	padding: 10vw 0;
	background-color: #FFF;	border-top: 1px solid rgba(212,212,212,1.00);
  }
  .OverlapContent__left {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
	padding: 0 0 10vw 0;
  }
  /* 右側画像 */
  .OverlapContent__right {
    width: 100vw;
  
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .OverlapContent__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /** ==============================
 * 重なりスクロールセクション end
 * ============================== **/
  /** ==============================
 * HonoraryConsulateBlockセクション start
 * ============================== **/
  .HonoraryConsulateBlock {
	max-width: 100%;
	text-align: center;
  }
  .HonoraryConsulateBlock__title-en {
    font-size: 1.5rem;
    color: #235296;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.5vw;
  }
  .HonoraryConsulateBlock__subtitle {
    font-size: 0.3rem;
    color: #222;
    margin-bottom: 3vw;
  }
  .HonoraryConsulateBlock__title-jp {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 2vw;
  }
  .HonoraryConsulateBlock__text {
    font-size: 1rem;
    color: #222;
    line-height: 2;
    text-align: justify;
    margin-bottom: 3vw;
    display: inline-block;
    width: 75%;
  }
  .HonoraryConsulateBlock__img-wrap {
    width: 100%;
    margin-bottom: 10vw;
    display: flex;
    justify-content: center;
  }
  .HonoraryConsulateBlock__img {
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  .HonoraryConsulateBlock__more {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    margin-top: 1vw;
    position: relative;
  }
  /* →ラインと矢印をCSSで再現 */
  .HonoraryConsulateBlock__arrow {
    display: inline-block;
    width: 4rem; /* 線の長さ */
    height: 1px;
    background: #235296; /* 線色（青） */
    position: relative;
  }
  .HonoraryConsulateBlock__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(-45deg);
    width: 0.6rem;
    height: 0.6rem;
    border-right: 1px solid #235296;
    border-bottom: 1px solid #235296;
  }
  .HonoraryConsulateBlock__more-text {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
  /** ==============================
 * HonoraryConsulateBlockセクション end
 * ============================== **/
 /** ==============================
 * Awards & Media セクション start (SP)
 * ============================== **/
.AwardsMediaSection {
  background: #f3f3f3;
  padding: 10vw 7.5vw;
}

.AwardsMediaSection__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4vw;
  margin-bottom: 6vw;
}

.AwardsMediaSection__title-en {
  font-size: 1.8rem;
  color: #235296;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.AwardsMediaSection__subtitle {
  font-size: 0.9rem;
  color: #222;
}

.AwardsMediaSection__frame {
  max-height: 150vw; /* 3件分くらい */
  overflow-y: scroll; /* 縦スクロール */
}

.AwardsMediaSection__strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8vw;
}

.AwardsMediaSection__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  text-decoration: none;
  color: #fff;
  background: #ccc;
}

.AwardsMediaSection__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.AwardsMediaSection__item:hover img {
  transform: scale(1.05);
}

.AwardsMediaSection__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: justify;
  padding: 1rem;
}

.AwardsMediaSection__item:hover .AwardsMediaSection__overlay {
  opacity: 1;
}

.AwardsMediaSection__text {
  width: 90%;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #fff;
  font-weight: 400;
}

/* ★ ナビゲーションボタンはSPでは非表示 */
.AwardsMediaSection__nav {
  display: none;
}
/** ==============================
 * Awards & Media セクション end (SP)
 * ============================== **/




  /** ==============================
 * Accessセクション start
 * ============================== **/
  .AccessSection {
    background: #FFFFFF;
    padding: 10vw 0;
  }
  .AccessSection__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4vw;
    align-items: start;
    width: 90vw;
    margin: 0 auto;
  }
  .AccessSection__left img.AccessSection__main-img {
    width: 100%;
    height: auto;
    display: block;
  }
  .AccessSection__right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .AccessSection__side-img-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    max-width: 260px;
  }
  .AccessSection__side-img {
    width: 100%;
    height: auto;
    display: block;
  }
  .AccessSection__title-en {
    font-size: 2.5rem;
    color: #235296;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }
  .AccessSection__title-jp {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 2rem;
  }
  .AccessSection__address {
    font-size: 1rem;
    color: #222;
    line-height: 2;
    margin-bottom: 1.5rem;
  }
      .AccessSection__address p:nth-child(1){
	font-size:1.3rem;
	}
  .AccessSection__map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #235296;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 0.5rem;
  }
  .AccessSection__contact {
    font-size: 1rem;
    color: #222;
    line-height: 2;
    margin-bottom: 2rem;
  }
    .AccessSection__contact span {
    font-size: 0.6rem;
    color: #222;
    line-height: 2;
    margin-bottom: 2rem;
  }
  .AccessSection__contact img {
    vertical-align: middle;
    margin-right: 0.3rem;
  }
  .AccessSection__contact-button {
    width: 100%;
    background: #8a5e5b;
    color: #fff;
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between; /* ← 左右に配置 */
    box-sizing: border-box;
    margin-bottom: 2rem;
  }
  .AccessSection__contact-text {
    flex-shrink: 0;
  }
  .AccessSection__contact-arrow {
    width: 1.5rem;
    height: auto;
    flex-shrink: 0;
  }
  .AccessSection__station {
    border-top: 1px solid #235296;
    padding-top: 1rem;
    font-size: 0.95rem;
    color: #222;
    line-height: 1.8;
  }
  /** ==============================
 * Accessセクション end
 * ============================== **/
  /** ==============================
 * 山田グループセクション start
 * ============================== **/
  .YamadaGroupSection {
    background: #f4f4f4;
    padding: 10vw 10vw;
    text-align: center;
  }
  .YamadaGroupSection__title {
    font-size: 1.8rem;
    color: #1a3f78;
    margin: 10vw 0;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
  }
  .YamadaGroupSection__list {
    width: 85vw;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10vw;
    margin: 0 auto;
    list-style: none;
    padding: 0;
  }
  .YamadaGroupSection__list li {
    box-sizing: border-box;
    transition: all 0.3s ease;
    height: 100%;
  }
  .YamadaGroupSection__list a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .YamadaGroupSection__logo {
    width: 100%;
    height: auto;
    margin-bottom: 3vw;
  }
  .YamadaGroupSection__logo img {
    width: 80%;
	margin: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .YamadaGroupSection__text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
  }
  .YamadaGroupSection__text p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
  }
  /** ==============================
 * 山田グループセクション end
 * ============================== **/
  /** ==============================
 * Informationセクション start
 * ============================== **/
  .InformationSection {
    background: #000;
    color: #D4D4D4;
    padding: 5vw 0vw;
  }
  .InformationSection__title {
    font-size: 1.8rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    margin-bottom: 2vw;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5rem;
	text-align: center;
  }
.InformationList {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 120vw;      /* 3件分表示で固定（SP比率に合わせ調整） */
  overflow-y: auto;       /* 縦スクロール */
  -webkit-overflow-scrolling: touch;
}
.InformationList::-webkit-scrollbar {
  width: 2vw;
}
.InformationList::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.3);
  border-radius: 2vw;
}
  .InformationItem {
    display: inline-block;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #666;
	padding-bottom: 5vw
  }
  .InformationItem__thumb {
    width: 100%;
    max-width: 400px;
    padding: 7.5vw 5vw;
  }
  .InformationItem__thumb img {
    width: 100%;
    height: auto;
    display: block;
  }
  .InformationItem__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .InformationItem__content p {
    font-size: 1rem;
    line-height: 1.8;
	width: 85%;
	margin: 1rem auto;
    letter-spacing: 0.1rem
  }
  .InformationItem__content p span{
  font-size: 0.9rem;
  opacity: 0.8;
  font-family: 'Noto Sans JP', sans-serif;
}
  .InformationItem__more {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    text-decoration: none;
  }
  .PortfolioGallery__arrow img {
    height: auto;
    margin-right: 0.5rem;
  }
  .PortfolioGallery__more-text {

  }
  /** ==============================
 * Informationセクション end
 * ============================== **/
  /** ==============================
 * Footerセクション start
 * ============================== **/
  .topFooterSection {
    background-color: #000;
    color: #fff;
    padding: 4vw 2vw;
    position: relative;
    font-size: 0.95rem;
  }
  .topFooterInner {
    width: 85%;
	margin: 0 auto;
  }
  .topFooterLogo {

    text-align: center;
    margin-bottom: 10vw;
  }
  .topFooterLogo img {
    width: 38vw;
    height: auto;
  }
  .topFooterLogo p {
    font-size: 0.9rem;
    color: #ccc;
  }
  .topFooterNav ul {
    justify-content: left;
    gap: 1rem;
    margin-bottom: 5vw;
    padding: 0;
    list-style: none;
  }
  .topFooterNav li {
display: block; 
margin-bottom: 2vw;
color: #666;
  }
  .topFooterNav li:not(:last-child)::after {
  }
  .topFooterNav a {
  width: 100%;
  display: inline-block;
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.9rem;
	font-weight: 100;
  }
  .topFooterBottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .topFooterPolicy {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
  }
  .topFooterPolicy a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
  }
  .topFooterCopyright {
    font-size: 0.85rem;
    color: #aaa;
  }
  .PageTop {
    position: absolute;
    top: 0;
    right: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .PageTop a {
    writing-mode: vertical-rl;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
  }
  .PageTop img {
    width: 16px;
    height: auto;
    margin-bottom: 0.5rem;
  }
  /** ==============================
 * Footerセクション end
 * ============================== **/
  .PC {
    display: none;
    max-width: 0%;
    max-height: 0%;
  }
  .SP {}
}