@charset "UTF-8";
/* CSS Document */

html, body {
  overflow-x: hidden;
  width: 100%;
}

/* リセットCSS */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* 共通変数 */
:root {
  --main-color: #0044ff;
  --text-dark: #000;
  --base-spacing: 12px;
  --section-margin: 75px;
  --title-margin: 37.5px;
  --lh-base: 1.75;
  --lh-tight: 1.4;
  --header-height: 100px;
}

li {
  list-style: none;
}

/* JSが有効な場合のみ、初期状態を透明にする */
.js-enabled body {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.5s ease-out, transform 1s ease-out;
}

/* クラスがついたら表示 */
.js-enabled body.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

.js-fade {
  opacity: 0;
  transform: translateY(37.5px);
  transition: opacity 2s cubic-bezier(0.33, 1, 0.68, 1), 
              transform 2s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: opacity, transform; /* 2026年流：ブラウザに動きを最適化させるおまじない */
}

/* JSで .is-visible がついたら、元の位置（0）に戻りつつ表示 */
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: "lato", "noto-sans-cjk-jp", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
  line-height: var(--lh-base);
  text-align: justify;
  text-justify: inter-character;
  line-break: strict;
  word-break: allow-end-steps;
  margin: 0;
  color: var(--text-dark);
  letter-spacing: .05em; 
  opacity: 0;
  transform: translateY(10px); /* 少し浮き上がる演出を加える場合 */
  transition: opacity 1.5s ease-out, transform 1s ease-out; /* 1.5秒かけてふわっと*/
}

body.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

.container {
  width: 100%;
  padding: 0 var(--base-spacing);
}

/* --- ヘッダー --- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 12.5px;
/*  background-color: #fff;*/
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1000;
}

.header-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}
.header-logo img { height: 50px; width: auto; display: block; }

.menu-trigger {
  position: relative;
  z-index: 1002;
  width: 68.75px;
  height: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-trigger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: all 0.5s;
}

.menu-trigger span:nth-child(1) { top: 0; }
.menu-trigger span:nth-child(2) { bottom: 0; }

.is-open .menu-trigger span:nth-child(1) {
  top: 2px;
  transform: rotate(15deg);
}

.is-open .menu-trigger span:nth-child(2) {
  bottom: 2px;
  transform: rotate(-15deg);
}

/* --- ハンバーガーメニュー --- */
.nav-menu {
  position: fixed;
/*  display: flex;*/
  display: block;
  overflow-y: auto; 
  -webkit-overflow-scrolling: touch;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1001;
  transition: all .5s ease-in-out;
  align-items: flex-start;
  padding-top: 75px;
  padding-left: 12.5px;
}
.is-open .nav-menu { right: 0; }

.nav-menu__list {
  padding-bottom: 50px; /* 一番下の項目が隠れないように余白 */
}

.nav-menu__list a {
  font-family: "ivypresto-display", serif;
  font-size: 35px;
  font-weight: 100;
  text-decoration: none;
  color: var(--text-dark);
  line-height: 1.625; 
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.is-open .nav-overlay { opacity: 1; visibility: visible; }

main {
  padding-top: 100px; 
  width: 100%;
  overflow-x: hidden;
}

#top {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.first-view-visual {
  position: relative;
  width: 300px;
  margin-left: 0;
}

.main-title-container {
  position: absolute;
  top: 50%;
  right: -68.75px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
}

.mask-title {
  font-family: "lato", "noto-sans-cjk-jp", sans-serif;
  font-size: 30px;
  text-align: right;
  line-height: 1.25;
  letter-spacing: .25em;
  margin: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: .75s;
}

.mask-title.is-visible {
  clip-path: inset(0 0 0 0);
}

.main_images {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-image.is-visible {
  clip-path: inset(0 0 0 0);
}

.hero-image:nth-child(1) {
  transition-delay: 0s;
}

.main_images .hero-image:nth-child(1) {
  width: 50vw; 
  margin-top: -11.3vw; 
  align-self: flex-end;
  transition-delay: 0.2s;
}

.main_images .hero-image:nth-child(2) {
  width: 40vw; 
  margin-top: -59.3vw; 
  margin-left: 10vw;
  align-self: flex-start;
  transition-delay: 0.4s;
}

/* --- profile --- */
#profile {
  margin-top: var(--section-margin);
  padding: 0 5%;
  background-color: #fff;
}

.profile-container {
  max-width: 600px;
  width: 75%;
  margin: 50px auto 0;
  text-align: center;
}

.profile-name {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6.25px;
  line-height: var(--lh-tight);
}

.profile_sns {
  display: flex;
  justify-content: center;
  margin-bottom: 12.5px;
}

.profile_sns svg {
  width: 15px;
  height: auto;
  color: #000;
}

.profile_sns a {
  color: #000;
  transition: opacity .5s;
  display: inline-block;
}

.profile_sns a:hover { opacity: .5; }

.profile-spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 50px;
  margin: 0 auto;
}

.spec-group {
  display: flex;
  flex-direction: column;
  gap: 12.5px;
}

.spec-group dl {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
}

.spec-group dt {
  font-weight: 200;
  color: #000;
  text-align: left;
}

.spec-group dd {
  font-family: "lato", sans-serif;
  font-weight: 400;
  text-align: right;
  margin: 0;
}

.profile-details {
  margin-top: 12.5px;
  display: flex;
  flex-direction: column;
  gap: 12.5px;
}

.profile-details dl {
  display: flex;
  margin: 0;
  align-items: baseline;
}

.profile-details dt {
  font-weight: 200;
  text-align: left;
  width: 50%;
  color: #000;
}

.profile-details dd {
  font-family: "lato", "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  text-align: left;
  line-height: var(--lh-base);
  width: 50%;
  margin: 0;
}

.profile-cap { font-size: 10px; line-height: 1.4; }

.profile-biography-wrapper {
  position: relative;
  width: 86.6%;
  max-width: 600px;
  margin: 50px auto 0;
}

.profile-biography {
  position: relative;
  overflow: hidden;
}

.biography-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1) 75%);
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.biography-mask.is-hidden { opacity: 0; }

.more-button-container {
  width: 100%;
  text-align: center;
  margin-top: -37.5px;
  position: relative;
  z-index: 3;
  transition: margin-top 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.profile-more-content.is-open + .more-button-container {
  margin-top: 25px;
}

.work-category { margin-bottom: 50px; }

.work-label {
  font-weight: 500;
  text-align: center;
  margin-bottom: 6.25px;
  display: block;
  line-height: var(--lh-tight);
}

.work-text {
  font-family: "lato", "noto-sans-cjk-jp", sans-serif;
  text-align: justify;
  text-justify: inter-character;
  word-break: break-all;
  margin: 0;
  line-height: var(--lh-base);
}

.more-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 25px;
}

.profile-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s;
  opacity: 0;
}

.profile-more-content.is-open {
  max-height: 4000px;
  opacity: 1;
}

.profile-works {
  width: 86.6%;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 50px;
}

/* --- movie --- */
#movie {
  margin-top: var(--section-margin);
  padding-bottom: 50px;
}

.section-title {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: var(--title-margin);
  line-height: var(--lh-tight);
}

.movie-container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #000;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-wrapper + .video-wrapper {
  margin-top: 12.5px;
}

@media (max-width: 767px) {
  .movie-container {
    width: 100%;
    padding: 0;
  }
}

/* --- topics --- */
#topic {
  margin-top: var(--section-margin);
}

.topic-container {
  width: 86.6%;
  max-width: 600px;
  margin: 0 auto;
}

.topic-ticker {
  height: 40px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
}

.topic-list {
  padding: 0;
  margin: 0;
  list-style: none;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.topic-item {
  height: 40px;
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.topic-item a {
  display: flex;
  width: 100%;
  text-decoration: none;
  color: #000;
}

.topic-date {
  color: #000;
  margin-right: 12.5px;
  flex-shrink: 0;
}

.topic-text {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.topic-item a:hover .topic-text {
  color: #000;
  text-decoration: underline;
}

/* --- gallery --- */
#gallery {
  margin-top: var(--section-margin);
}

.gallery-container {
  width: 100%;
  padding: 0 3.333vw;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.666vw;
}

.gallery-item {
  width: calc((100% - 1.666vw) / 2);
  display: block;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
}

.modal__content {
  position: relative;
  z-index: 2001;
  width: 100%;
  padding: 0 25px;
}

.modal__content img {
  width: 100%;
  height: auto;
  display: block;
}

.modal__close-btn {
  position: fixed;
  top: 50px;
  right: 12.5px;
  z-index: 2002;
  width: 68.75px;
  height: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.modal__close-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  transition: transform 0.5s;
}

.modal__close-btn span:nth-child(1) {
  top: 2px;
  transform: rotate(15deg);
}

.modal__close-btn span:nth-child(2) {
  bottom: 2px;
  transform: rotate(-15deg);
}

/* --- about --- */
#about {
  margin-top: var(--section-margin);
  padding-bottom: 50px;
}

.about-container { width: 100%; }

.about-content {
  width: 86.6%;
  max-width: 600px;
  margin: 0 auto 30px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.about-item dt {
  font-weight: 600;
  line-height: var(--lh-tight);
}
.about-item dd {
  margin-left: 0;
  line-height: var(--lh-base);
}

.map-wrapper {
  margin: 0 3.333vw;
  aspect-ratio: 16 / 9;
}

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

/* --- footer --- */
.l-footer {
  margin-top: var(--section-margin);
  padding: 0 3.333vw 25px;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2.5px;
  margin-bottom: 50px;
}

.footer-nav__list a {
  text-decoration: none;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 2.0; 
}

.copyright {
  font-size: 10px;
  text-align: center;
  line-height: 1.2;
}





/* =============================================
   Topics Page Specific
   ============================================= */

/* 下層ページ専用のメインエリア余白 */
.l-main-content.topics-main {
  padding-top: 150px; /* ヘッダーとの被り回避 + 余白75px */
  min-height: 100vh;
}

.topics-page {
  padding: 0 5%;
}

/* ページタイトル：20px / Lato / 中央揃え */
.topics-title {
  font-family: "lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 37.5px;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* 記事内パーツ：日付・タイトル */
.topics-date {
  display: block;
  font-size: 12px;
  text-align: left;
  color: var(--text-dark);
  margin-bottom: 12.5px;
}

.topics-article-title {
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  line-height: var(--lh-tight);
  margin-bottom: 25px;
}

/* 本文エリア：幅 600px / 両端揃え */
.topics-body {
  width: 86.6%;
  max-width: 600px;
  margin: 0 auto;
  text-align: justify;
  text-justify: inter-character;
  line-break: strict;
  line-height: var(--lh-base);
}

/* --- バックボタンエリア --- */
.topics-footer {
  width: 86.6%;
  max-width: 600px;
  margin: 25px auto 37.5px; /* 下マージン37.5px */
  text-align: left;
}

.back-button {
  display: inline-block;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500; /* 本文より少し太く */
  
  /* 細い下線の設定 */
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 0.5px;
  transition: opacity 0.3s;
}

.back-button:hover {
  opacity: 0.5;
}





/* =============================================
   Lower Pages (Privacy / Topics Detail etc.)
   ============================================= */

/* 下層ページ共通の余白設定 */
.l-main-content.is-lower-page {
  padding-top: 150px; 
  min-height: 100vh;
}

/* 共通のページタイトルスタイル */
.page-title {
  font-family: "lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 37.5px; /* ここから本文が始まる */
  letter-spacing: 0.1em;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* 本文エリア（TOPICSと共通の幅設定） */
.privacy-body {
  width: 86.6%;
  max-width: 600px;
  margin: 0 auto;
  text-align: justify;
  text-justify: inter-character;
  line-height: var(--lh-base);
}

/* 本文内の小見出し（もし使う場合） */
.privacy-body h3 {
  font-size: 14px;
  margin: 40px 0 12.5px;
  font-weight: 600;
}

.privacy-body p {
  margin-bottom: 1.5em;
}

/* フッター・バックボタン（TOPICSと共通） */
.page-footer {
  width: 86.6%;
  max-width: 600px;
  margin: 50px auto 37.5px;
  text-align: left;
}





/* =============================================
   Media Queries - Tablet (768px ~)
   ============================================= */
@media screen and (min-width: 768px) {
  body {
  font-size: 15px;
  }
	
  :root {
    --header-height: 100px;
  }

  .nav-menu {
    padding-top: 150px !important;
  }
	
  .menu-trigger {
    width: 100px !important;
    padding: 0;
    display: block;
    position: relative;
    z-index: 1002;
  }

  .menu-trigger span {
    width: 100% !important;
    height: 1px;
    background-color: #000;
  }

  #top {
    padding: 25px 100px 0; /* 上50px, 左右100px */
    max-width: none;
    width: 100%;
  }

  .first-view-visual {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
  }

  .first-view-visual .hero-image {
    width: 50vw;
    max-width: 384px;
    height: auto;
  }

  .main_images img.hero-image:nth-of-type(1) {
    position: relative !important;
    width: 33.33vw;
    max-width: 256px;
    margin: 0 0 0 auto;
    margin-top: max(-7.1vw, -54.4px); 
    z-index: 2;
    display: block;
  }

  .main_images img.hero-image:nth-of-type(2) {
    /* absoluteに戻して、画像②の高さによる押し下げを無視させる */
    position: absolute !important;
    width: 20vw;
    max-width: 153.5px;
    right: min(33.33vw, 256px);
    margin: 0;
    z-index: 3;
  }

  .main-title-container {
    position: absolute;
    z-index: 10;
    top: 108.8px; 
    right: 0; 
    transform: translateY(-50%);  
    display: flex;
    justify-content: flex-end;
	margin-right: -1.125em;
  }
	
  .mask-title {
    margin: 0;
    line-height: 1.25; /* 揃えやすくするために少し詰め気味に */
    font-size: 45px;
    letter-spacing: .375em;
  }

	
	


  #profile {
    margin-top: 50px;
    padding-left: 100px;
    padding-right: 100px;
    position: relative;
    z-index: 5;
  }

  .profile-container {
  max-width: 768px;
  width: 50%;
  margin: 50px auto 0;
  text-align: center;
}
	
  .profile-name {
  font-size: 25px;
  margin-bottom: 7.5px;
}

.profile_sns {
  margin-bottom: 25px;
}

.profile_sns a:hover { opacity: .5; }

.profile-spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 50px;
  margin: 0 auto;
}

.spec-group {
  display: flex;
  flex-direction: column;
  gap: 12.5px;
}

.profile-details {
  margin-top: 12.5px;
  display: flex;
  flex-direction: column;
  gap: 12.5px;
}

.profile-cap { font-size: 10px; line-height: 1.4; }

.profile-biography-wrapper {
  position: relative;
  width: 100%;
  max-width: 512px;
  margin: 50px auto 0;
}

.profile-biography {
  position: relative;
  overflow: hidden;
}

.biography-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1) 75%);
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.biography-mask.is-hidden { opacity: 0; }

.more-button-container {
  width: 100%;
  text-align: center;
  margin-top: -25px;
  position: relative;
  z-index: 3;
  transition: margin-top 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.profile-more-content.is-open + .more-button-container {
  margin-top: 25px;
}

.work-category { margin-bottom: 50px; }

.work-label {
  font-weight: 500;
  text-align: center;
  margin-bottom: 6.25px;
  display: block;
  line-height: var(--lh-tight);
}

.more-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 25px;
}

.profile-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s;
  opacity: 0;
}

.profile-more-content.is-open {
  max-height: 4000px;
  opacity: 1;
}

.profile-works {
  width: 86.6%;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 50px;
}
	
	
	
	
/* --- movie --- */
#movie {
  margin-top: var(--section-margin);
  padding-bottom: 25px;
}

.section-title {
  font-size: 25px;
}

.movie-container {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
	
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
	
.video-wrapper + .video-wrapper {
  margin-top: 25px;
}
	
	
	
/* --- topics --- */
#topic {
  margin-top: var(--section-margin);
}

.topic-container {
  width: 100%;
  max-width: 668px;
  margin: 0 auto;
}

.topic-ticker {
  height: 50px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
}

.topic-list {
  padding: 0;
  margin: 0;
  list-style: none;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.topic-item {
  height: 50px;
  display: flex;
  align-items: center;
  line-height: 1.25;
}

.topic-item a {
  display: flex;
  width: 100%;
  text-decoration: none;
  color: #000;
}

.topic-date {
  color: #000;
  margin-right: 12.5px;
  flex-shrink: 0;
}

.topic-text {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.topic-item a:hover .topic-text {
  color: #000;
  text-decoration: underline;
}

/* --- gallery --- */
#gallery {
  margin-top: var(--section-margin);
}

.gallery-container {
  width: 100%;
  padding: 0;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.gallery-item {
  width: 50%; 
  display: block;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
}

.modal__content {
  width: 100%;
  padding: 0;
}

.modal__content img {
  width: 100%;
  height: auto;
  display: block;
}

.modal__close-btn {
  position: fixed;
  top: 50px;
  right: 12.5px;
  z-index: 2002;
  width: 100px;
  height: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.modal__close-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  transition: transform 0.5s;
}

.modal__close-btn span:nth-child(1) {
  top: 2px;
  transform: rotate(15deg);
}

.modal__close-btn span:nth-child(2) {
  bottom: 2px;
  transform: rotate(-15deg);
}

/* --- about --- */
#about {
  margin-top: var(--section-margin);
  padding-bottom: 50px;
}

.about-container { width: 100%; }

.about-content {
  width: 100%;
  max-width: 512px;
  margin: 0 auto 50px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.about-item dt {
  font-weight: 600;
  line-height: var(--lh-tight);
}
.about-item dd {
  margin-left: 0;
  line-height: var(--lh-base);
}

.map-wrapper {
  margin: 0 5vw;
  aspect-ratio: 16 / 9;
}

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

/* --- footer --- */
.l-footer {
  margin-top: var(--section-margin);
  padding: 0 3.333vw 25px;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2.5px;
  margin-bottom: 75px;
}

.footer-nav__list a {
  text-decoration: none;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 2.0; 
}

.copyright {
  font-size: 12px;
  text-align: center;
  line-height: 1.25;
}
	
	
	
/* =============================================
   5. Lower Pages (Topics Detail / Privacy)
   ============================================= */

/* 下層ページ専用のメインエリア */
.l-main-content.topics-main, 
.l-main-content.is-lower-page {
  /* ヘッダー(100px) + 元の余白(50px) + 追加の25px = 175px */
  padding-top: 175px; 
  min-height: 100vh;
}

/* ページタイトル：20px / Lato / 中央揃え */
.topics-title, 
.page-title {
  font-size: 25px;
  margin-bottom: 50px;
}

/* 本文エリア：メインの biography 等と共通の幅設定 */
.topics-body, 
.privacy-body {
  width: 100%;
  max-width: 512px;
  margin: 0 auto;
  text-align: justify;
  text-justify: inter-character;
  line-height: var(--lh-base);
}

/* 記事内の日付と個別タイトル */
.topics-date {
  display: block;
  font-size: 13px;
  margin-bottom: 6.25px;
  color: var(--text-dark);
}

.topics-article-title {
  font-size: 18.75px;
  margin-bottom: 25px;
}

/* --- フッター・バックボタンエリア --- */
.topics-footer, 
.page-footer {
  width: 100%;
  max-width: 668px;
  margin: 75px auto 37.5px ; /* 上に少し余裕を持たせて配置 */
  text-align: left;
}

.back-button {
  display: inline-block;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 2px;
}
	
	
	
	
	
/* =============================================
   5. Lower Pages (Common Settings)
   ============================================= */

/* 下層ページ共通の余白：TOPICSと高さを統一 */
.l-main-content.is-lower-page {
  padding-top: 175px; /* タイトルをさらに25px下げた位置に合わせる */
  min-height: 100vh;
}

/* ページタイトル共通：PRIVACY & POLICY */
.page-title {
  font-size: 25px;
  margin-bottom: 50px;
}

/* プライバシーポリシー内の段落設定 */
.privacy-body p {
  margin-bottom: 25px; /* 文章ごとの区切りをしっかり */
}

/* 小見出し：個人情報の取り扱いについて 等 */
.privacy-body h3 {
  font-size: 15px;
  margin: 50px 0 12.5px;
}
}










/* =============================================
   Media Queries - PC (1024px ~)
   ============================================= */
@media screen and (min-width: 1024px) {
	
  body {
  font-size: 12px;
  }
	
  #top {
    padding: 0 !important;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    height: auto !important; 
    margin-bottom: 100px !important;
  }

  .first-view-visual {
    width: 750px !important;
    margin-left: 150px !important;
    position: relative !important;
    display: block !important;
    line-height: 0;
  }

  .first-view-visual .hero-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain;
    max-width: none !important;
  }

  .main_images {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .main_images img.hero-image:nth-of-type(1) {
    position: absolute !important;
  width: 375px !important;
  max-width: none !important;
  height: auto !important;
  left: 825px !important;
  right: auto !important;
  top: 177px !important; 
  margin: 0 !important;
  z-index: 3;
  }

  .main_images img.hero-image:nth-of-type(2) {
  position: absolute !important;
  width: 250px !important;
  max-width: none !important;
  height: auto !important;
  left: 575px !important;
  top: 530px !important; 
  margin: 0 !important;
  z-index: 2;
  }

  .main-title-container {
    position: absolute !important;
    top: 82.5px !important; 
    left: 1056.25px !important;
    transform: translateX(-100%) !important;
    right: auto !important;
    z-index: 10;
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    width: auto !important;
}

.mask-title {
  font-size: 50px;
  line-height: 1.125;
  text-align: right;
  margin-right: -0.25em !important; 
}
	
	
	
#profile {
    position: relative !important;
    background: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .profile-container {
  position: absolute !important;
  top: -46.875px !important;
  left: 50px !important;
  /* ↓ 画面幅の1/7（約14.2%）に設定。ただし狭すぎると崩れるので最小幅も検討 */
  width: 14.2vw !important; 
  min-width: 250px; /* ← これ以下にはならないという保険（デザインに合わせて調整してね） */
  
  text-align: left;
  z-index: 10;
  display: flex !important;
  flex-direction: column;
  margin: 0 !important;
  box-sizing: border-box;
  }
	
  .profile-name {
  font-size: 20px;
  margin-bottom: 12.5px; /* 名前とSNSの間に少し余白 */
  }

.profile_sns {
  display: flex;
  justify-content: flex-start; /* 左揃え。もし中央なら center */
  margin-bottom: 12.5px;
}

.profile_sns a {
  color: #000;
  transition: opacity .5s;
  display: inline-block;
}

.profile_sns a:hover { opacity: .5; }

.profile-spec {
  display: flex;
  width: 100%;
  gap: 0 50px; /* 幅が狭くなるので、間の溝も少し詰めると綺麗 */
}

.spec-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12.5px; /* 行間も少しタイトに */
}

.spec-group dl {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
}

.spec-group dt {
  font-weight: 200;
  color: #000;
  text-align: left;
}

.spec-group dd {
  font-family: "lato", sans-serif;
  font-weight: 400;
  text-align: right;
  margin: 0;
}

.profile-details {
  margin-top: 12.5px;
  display: flex;
  flex-direction: column;
  gap: 12.5px 0;
  width: 100%;
}

.profile-details dl {
  display: flex;
  margin: 0;
  align-items: baseline;
}

.profile-details dt {
  font-weight: 200;
  width: 37.5%;
  color: #000;
}

.profile-details dd {
  width: 50%;
  margin: 0;
}

.profile-cap { font-size: 10px; line-height: 1.4; }
	
/*
  #top {
    height: auto !important;
  }
*/
	
  .profile-biography-wrapper,
  .profile-accordion-container {
    position: static !important; 
    width: 1000px !important;
    margin: 50px auto !important;
    text-align: left !important;
    display: block !important;
    clear: both;
}
	
	.profile-biography-wrapper {
    margin-top: 400px !important;
	position: relative;
	width: 41.6666%;
	max-width: 625px;
  }
  
  .profile-biography {
  position: relative;
  overflow: hidden;
}

.biography-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1) 75%);
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.biography-mask.is-hidden { opacity: 0; }

.more-button-container {
  width: 100%;
  text-align: center;
  margin-top: -100px;
  position: relative;
  z-index: 3;
  transition: margin-top 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.profile-more-content.is-open + .more-button-container {
  margin-top: 25px;
}

.work-category { margin-bottom: 37.5px; }

.work-label {
  margin-bottom: 6.25px;
  display: block;
  line-height: var(--lh-tight);
}

.more-button {
  font-size: 11px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12.5px;
}

.profile-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .75s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s;
  opacity: 0;
}

.profile-more-content.is-open {
  max-height: 4000px;
  opacity: 1;
}

.profile-works {
  width: 41.6666%;
  max-width: 625px;
  margin: 0 auto;
  padding-top: 0;
}
	
/*
  .profile-accordion-container {
    margin-bottom: 75px !important;
  }
*/
	
	
	
  /* --- movie --- */
#movie {
  margin-top: var(--section-margin);
  padding-bottom: 50px;
}

.section-title {
  font-size: 20px;
}

.movie-container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
	
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
	
.video-wrapper + .video-wrapper {
  margin-top: 25px;
}
	
	
	
	
	
  /* --- topics --- */
#topic {
  margin-top: var(--section-margin);
}

.topic-container {
  width: 100%;
  max-width: 750px;
}

.topic-ticker {
  height: 37.5px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
}

.topic-list {
  padding: 0;
  margin: 0;
  list-style: none;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.topic-item {
  height: 37.5px;
  display: flex;
  align-items: center;
  line-height: 1.25;
}

.topic-item a {
  display: flex;
  width: 100%;
  text-decoration: none;
  color: #000;
}

.topic-date {
  color: #000;
  margin-right: 25px;
  flex-shrink: 0;
}

.topic-text {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.topic-item a:hover .topic-text {
  color: #000;
  text-decoration: underline;
}
	
	
	
	

 /* --- gallery --- */
#gallery {
  margin-top: var(--section-margin);
}

.gallery-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.gallery-item {
  width: 50%;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
}

.modal__content {
  width: auto;      /* 横幅固定を解除 */
    height: 90vh;     /* 画面の高さの90%くらいにする（上下に少し余裕を持たせる） */
    padding: 0;       /* 余計な余白をリセット */
}

.modal__content img {
  width: auto;      /* 横幅を自動（画像の比率維持）に */
    height: 100%;     /* 親（.modal__content）の高さ（90vh）に合わせる */
    max-width: 90vw;  /* 万が一、横に長すぎる画像があった時の保険 */
    margin: 0 auto;
}

  .modal__close-btn {
  position: fixed;
  top: 50px;
  right: 12.5px;
  z-index: 2002;
  width: 100px;
  height: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.modal__close-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  transition: transform 0.5s;
}

.modal__close-btn span:nth-child(1) {
  top: 2px;
  transform: rotate(15deg);
}

.modal__close-btn span:nth-child(2) {
  bottom: 2px;
  transform: rotate(-15deg);
}
	

	
	
/* --- about --- */
#about {
  margin-top: var(--section-margin);
  padding-bottom: 50px;
}

.about-container { width: 100%; }

.about-content {
  width: 86.6%;
  max-width: 600px;
  margin: 0 auto 30px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.about-item dt {
  font-weight: 600;
  line-height: var(--lh-tight);
}
.about-item dd {
  margin-left: 0;
  line-height: var(--lh-base);
}

.map-wrapper {
  width: 100%;
  max-width: 625px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

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

/* --- footer --- */
.l-footer {
  margin-top: var(--section-margin);
  padding: 0 50px 25px;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2.5px;
  margin-bottom: 37.5px;
}

.footer-nav__list a {
  text-decoration: none;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 2.0; 
}

.copyright {
  font-size: 10px;
  text-align: center;
  line-height: 1.2;
}
}


