@charset "UTF-8";
/* html/_scss/style.scss */
/* html/_scss/_settings.scss */
/* 編集してよい入口（サイト方針に関わる値のみ） */
/* html/_scss/_settings.scss */
/* 使うなら（将来カテゴリ色など） */
/* 背景の黒透過（0〜1） */
/* html/_scss/style.scss */
/* html/_scss/_vars.scss */
/* 基本は触らない土台（tokens） */
/* よく使う派生 */
/* html/_scss/style.scss */
/* html/_scss/_mixins.scss */
/* 既存の bp / mq 系はそのまま */
/* 追加：複数行省略（line-clamp） */
/* 
	+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-	
	Rimd
	+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-	
*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
/*
 * Mixin for placeholder
 * @include mixins.placeholderColor(#00ff00);
 */
/* html/_scss/style.scss */
/* html/_scss/_base.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: rgba(255, 255, 255, 0.92);
  background: #0b0f14;
  line-height: 1.7;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.wrap {
  max-width: 1100px;
  padding: 0 24px;
  margin: 0 auto;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.1;
}

::selection {
  background: rgba(0, 160, 233, 0.35);
}

/* html/_scss/style.scss */
/* html/_scss/_layout.scss */
.site-footer .site-footer__logo {
  display: block;
  width: 188px;
  margin: 0 auto;
}
.site-footer .site-footer__copy {
  text-align: center;
  color: #008ad2;
  padding: 20px 0 40px;
  font-size: 17px;
}
@media (max-width: 767px) {
  .site-footer .site-footer__copy {
    font-size: 14px;
  }
}
.site-footer .site-footer__inner .site-footer__banners {
  padding: 40px;
  text-align: center;
}
.site-footer .site-footer__inner .site-footer__banners a {
  display: inline-block;
  margin: 20px 20px;
}
@media (max-width: 767px) {
  .site-footer .site-footer__inner .site-footer__banners a {
    display: block;
    margin: 0 auto 8% auto;
    width: 100%;
    max-width: 500px;
  }
  .site-footer .site-footer__inner .site-footer__banners a img {
    width: 100%;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 56px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
}

.site-header__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

/* PCは “ナビだけ中央” が正：brandは非表示（必要になったら戻せる） */
.site-header__brand {
  display: none;
}

/* ナビ（PC） */
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 18px;
  line-height: 1;
}

/* ハンバーガー（PCは不要なら隠す。SPで表示させる） */
.site-header__menu-btn {
  display: none;
}

/* ナビリンク：下線アニメ（hover/focus） */
.site-nav__item {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 6px 2px; /* クリック/hoverしやすい */
}
.site-nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #008ad2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.site-nav__item:hover::after, .site-nav__item:focus-visible::after {
  transform: scaleX(1);
}

/* ここからSP（md未満をSP扱いにする例） */
@media (max-width: 767px) {
  .site-header__inner {
    justify-content: flex-start; /* SPは左寄せでもOK（必要なら） */
  }
  .site-header__menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
  /* SPでは nav をドロワー化（既存の is-open と接続） */
  .site-nav {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    display: none; /* 閉じてる状態 */
    flex-direction: column;
    gap: 0;
    background: #000;
    padding: 12px 16px;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav__item {
    padding: 12px 0;
  }
}
/* ハンバーガー（ボタンの見た目はSPだけ使う） */
.site-header__menu-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* 3本線 */
.site-header__menu-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.site-header__menu-icon::before, .site-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}
.site-header__menu-icon::before {
  top: -7px;
}
.site-header__menu-icon::after {
  bottom: -7px;
}

/* 開いたら×（A案：btnにも is-open を付ける前提） */
.site-header__menu-btn.is-open .site-header__menu-icon {
  background: transparent;
}
.site-header__menu-btn.is-open .site-header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header__menu-btn.is-open .site-header__menu-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.section__more {
  text-align: right;
}
@media (min-width: 768px) {
  .section__more {
    padding: 30px 0 40px 0;
  }
  .section__more .btn {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .section__more {
    padding: 30px 20px 40px 20px;
  }
  .section__more .btn {
    font-size: 20px;
  }
}

/* html/_scss/style.scss */
/* html/_scss/_components.scss */
/*
.moreBtnBox {
	a {
		display: block;
		margin: 0 0 0 auto;
		wi
	}
}
*/
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.button:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.button--primary {
  background: #008ad2;
  color: #fff;
  border-color: transparent;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.postcard {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.postcard__thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.postcard__title {
  font-weight: 800;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.postcard__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.pager {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
}

.pager a {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pager a.is-current {
  background: #111;
  color: #fff;
  border-color: transparent;
}

/* html/_scss/_components.scss */
/* moreボタン（outline） */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  padding: 2px 22px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  letter-spacing: 0.08em;
  text-decoration: none;
  /* “ちょいカッコいい”の核：走るハイライト */
  position: relative;
  overflow: hidden;
  isolation: isolate; /* 擬似要素を安全に前後関係管理 */
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  /* 斜めのハイライト（青っぽい） */
  background: linear-gradient(120deg, transparent 0%, rgba(80, 160, 255, 0) 35%, rgba(80, 160, 255, 0.35) 50%, rgba(80, 160, 255, 0) 65%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.btn:hover {
  transform: translateY(1px);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(0);
}

/* フォーカス（キーボード操作） */
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(80, 160, 255, 0.35);
}

/* font-size：PC 18px / SP 20px */
@media (min-width: 768px) {
  .btn {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: 20px;
  }
}
/* もし “白枠だけのmore” を明示したいなら */
.btn--outline {
  border-color: #fff;
}

.headerAjust {
  margin-top: -56px;
  padding-top: 56px;
}

.spacerHalf {
  width: 100%;
  height: 40px;
}
@media (max-width: 767px) {
  .spacerHalf {
    height: 40px;
  }
}

/* カード共通 */
.card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.card .card__link {
  display: block;
  color: #fff;
  text-decoration: none;
}
.card {
  /* 画像：1:1 cover + 角丸40px（角丸はここだけ） */
  /* 枠 */
}
.card .card__media {
  aspect-ratio: 1/1;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}
.card {
  /* 画像 */
}
.card .card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.2s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.4s ease;
}
.card {
  /* hover */
}
.card .card__link:hover .card__thumb {
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.4s ease;
  transform: scale(1.12);
  filter: brightness(1.3) saturate(1.3);
}
.card .card__meta {
  padding: 12px 4px 0;
}
.card .card__date {
  font-size: 19px;
  font-weight: bold;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.card .card__text {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.topix-list.pc {
  display: flex;
  justify-content: left;
  align-items: stretch;
  flex-wrap: wrap;
}
.topix-list.pc .card {
  width: 22.75%;
  margin-right: 3%;
}
.topix-list.pc .card:nth-child(4n) {
  margin-right: 0;
}

#gallery .card .card__media {
  border-radius: 0px;
}

#blog--gallary #gallery .section__inner {
  padding: 20px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  #blog--gallary #gallery .section__inner .topix-list.pc {
    display: flex;
    justify-content: left;
    align-items: stretch;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  #blog--gallary #gallery .section__inner .topix-list.pc article {
    width: 47%;
    padding-bottom: 7%;
  }
}

/* html/_scss/style.scss */
/* html/_scss/_sections.scss */
/* ここは “ページ固有の最後の上書き” 置き場。肥大化したら pages/ へ */
/* Widget外枠（w-）の基本 */
.w-postcards {
  display: grid;
  gap: 24px;
}
@media (min-width: ) {
  .w-postcards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.w-postcards--works { /* 作品系の微調整が必要ならここ */ }

/* cat- の色付け（例） */
.cat-ai {
  color: #00a0e9;
}

.cat-art {
  color: #ff4fa3;
}

.cat-music {
  color: #33d17a;
}

/* page overrides (last) */
/* html/_scss/style.scss */
/* pages/_home.scss or _sections.scss */
#movie {
  padding-top: 76px;
}
@media (max-width: 767px) {
  #movie {
    padding-top: 76px;
  }
}
#movie .movBox {
  padding: 0 20px 30px;
  width: 100%;
  box-sizing: border-box;
}
#movie .movBox .video-wrap {
  width: 100%;
  max-width: 800px; /* 必要なら上限幅。いらなければ消してOK */
  margin: 0 auto; /* センター寄せしたいとき */
  position: relative;
  aspect-ratio: 16/9; /* 縦横比 */
}
#movie .movBox .card__meta {
  width: 100%;
  max-width: 800px; /* 必要なら上限幅。いらなければ消してOK */
  box-sizing: border-box;
  padding: 10px 0;
  color: white;
  margin: 0 auto;
}
#movie .movBox .card__meta .card__date {
  font-size: 19px;
  font-weight: bold;
  font-weight: 900;
  letter-spacing: 0.02em;
}
#movie .movBox .card__meta .card__text {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
#movie .movBox .video-wrap iframe {
  position: absolute;
  inset: 0; /* top/right/bottom/left:0 の省略 */
  width: 100%;
  height: 100%;
}

#about {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
  /* 背景画像は “幅100% + cover” を擬似要素で */
}
#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/about_bg.webp") center/cover no-repeat; /* 後で差し替え */
  z-index: 0;
}
#about {
  /* 透過レイヤー */
}
#about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
#about .section__inner {
  position: relative;
  z-index: 2;
  max-width: 1173px; /* 1173px */
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1039px) {
  #about .section__inner {
    padding: 0;
  }
}
#about .section__inner h2.section__title {
  padding-top: 40px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  #about .section__inner h2.section__title {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
#about .section__inner h2.section__title img {
  display: block;
  width: 352px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #about .section__inner h2.section__title img {
    width: 33.0623306233%;
  }
}
#about .ttBox {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
#about .ttBox .titleBox, #about .ttBox .textBox {
  width: 50%;
  box-sizing: border-box;
}
#about .ttBox .titleBox {
  padding-top: 70px;
}
#about .ttBox .titleBox .about_1, #about .ttBox .titleBox .about_2 {
  background-color: white;
}
#about .ttBox .titleBox .about_1 {
  width: 298px;
  width: 407px;
  height: 38px;
  height: 37px;
  margin-bottom: 14px;
}
#about .ttBox .titleBox .about_2 {
  width: 417px;
  width: 407px;
  height: 38px;
  height: 37px;
}
#about .ttBox .titleBox .logoBox {
  padding-top: 140px;
  padding-left: 140px;
}
@media (max-width: 1039px) {
  #about .ttBox .titleBox .logoBox {
    display: none;
  }
}
#about .ttBox .textBox p {
  font-size: 14px;
  margin-bottom: 2em;
  padding: 0;
  line-height: 27px;
  text-align: justify;
}
#about .ttBox .textBox .logoBox {
  display: none;
}
@media (max-width: 1039px) {
  #about .ttBox .textBox .logoBox {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 1039px) {
  #about .ttBox {
    padding: 0 20px;
  }
  #about .ttBox .titleBox, #about .ttBox .textBox {
    width: 100%;
    box-sizing: border-box;
  }
  #about .ttBox .titleBox {
    padding-top: 70px;
    padding-bottom: 40px;
  }
  #about .ttBox .titleBox .about_1, #about .ttBox .titleBox .about_2 {
    height: auto;
  }
  #about .ttBox .titleBox .about_1 img, #about .ttBox .titleBox .about_2 img {
    display: block;
  }
  #about .ttBox .titleBox .about_1 {
    width: 71.4628297362%;
    width: 100%;
    max-width: 298px;
    max-width: 407px;
    margin-bottom: 14px;
  }
  #about .ttBox .titleBox .about_2 {
    width: 100%;
    max-width: 417px;
    max-width: 407px;
  }
  #about .ttBox .titleBox .logoBox {
    padding-top: 140px;
    padding-left: 140px;
  }
}
@media (max-width: 1039px) and (max-width: 1039px) {
  #about .ttBox .titleBox .logoBox {
    display: none;
  }
}
@media (max-width: 1039px) {
  #about .ttBox .textBox p {
    font-size: 13px;
    margin-bottom: 1em;
    padding: 0 30px;
    line-height: 23px;
  }
  #about .ttBox .textBox .logoBox {
    display: none;
  }
}
@media (max-width: 1039px) and (max-width: 1039px) {
  #about .ttBox .textBox .logoBox {
    display: block;
    width: 180px;
    margin: 0 auto;
    padding-top: 40px;
  }
  #about .ttBox .textBox .logoBox img {
    display: block;
    width: 100%;
  }
}

#topix, #archives, #gallery {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
  /* 背景画像は “幅100% + cover” を擬似要素で */
}
#topix::before, #archives::before, #gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}
#topix, #archives, #gallery {
  /* 透過レイヤー */
}
#topix::after, #archives::after, #gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
#topix .section__inner, #archives .section__inner, #gallery .section__inner {
  position: relative;
  z-index: 2;
  max-width: 1173px; /* 1173px */
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  #topix .section__inner, #archives .section__inner, #gallery .section__inner {
    padding: 0;
  }
}
#topix .section__inner h2.section__title, #archives .section__inner h2.section__title, #gallery .section__inner h2.section__title {
  padding-top: 40px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  #topix .section__inner h2.section__title, #archives .section__inner h2.section__title, #gallery .section__inner h2.section__title {
    padding-top: 20px;
  }
}
#topix .section__inner h2.section__title img, #archives .section__inner h2.section__title img, #gallery .section__inner h2.section__title img {
  display: block;
  width: 114px;
}
@media (max-width: 767px) {
  #topix .section__inner h2.section__title img, #archives .section__inner h2.section__title img, #gallery .section__inner h2.section__title img {
    width: 75px;
    margin: 0 auto;
  }
}
#topix .section__inner .topix-swiper.sp, #archives .section__inner .topix-swiper.sp, #gallery .section__inner .topix-swiper.sp {
  display: none;
}
@media (max-width: 767px) {
  #topix .section__inner .topix-list.pc, #archives .section__inner .topix-list.pc, #gallery .section__inner .topix-list.pc {
    display: none;
  }
  #topix .section__inner .topix-swiper.sp, #archives .section__inner .topix-swiper.sp, #gallery .section__inner .topix-swiper.sp {
    display: block;
  }
}

/* TOPIX */
#topix {
  padding-top: 56px;
}
#topix::before {
  background: url("/img/topix_bg.webp") center/cover no-repeat; /* 後で差し替え */
}
#topix {
  /* 透過レイヤー */
}
#topix::after {
  background: rgba(0, 0, 0, 0.1);
}

/* /TOPIX */
#archives .section__inner h2.section__title {
  padding-top: 40px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  #archives .section__inner h2.section__title {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
#archives .section__inner h2.section__title img {
  display: block;
  width: 328px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #archives .section__inner h2.section__title img {
    width: 30.7588075881%;
  }
}

/* /archives  */
#gallery {
  background-color: #008ad2;
}
#gallery .section__inner h2.section__title {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  #gallery .section__inner h2.section__title {
    padding-top: 8%;
    padding-bottom: 8%;
  }
}
#gallery .section__inner h2.section__title img {
  display: block;
  width: 368px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #gallery .section__inner h2.section__title img {
    width: 39.0243902439%;
  }
}

/* /gallery */
#contact {
  background-color: #fff;
  padding-bottom: 50px;
}
#contact .section__inner h2.section__title {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  #contact .section__inner h2.section__title {
    padding-top: 8%;
    padding-bottom: 8%;
  }
}
#contact .section__inner h2.section__title img {
  display: block;
  width: 285px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #contact .section__inner h2.section__title img {
    width: 33.4688346883%;
  }
}
#contact .section__inner .contact {
  text-align: center;
  color: #008ad2;
}
#contact .section__inner .contact .contact__org {
  font-size: 17px;
  font-weight: bold;
}
@media (max-width: 767px) {
  #contact .section__inner .contact .contact__org {
    /*
    	$kizyunFontSize:基準点でのフォントサイズ
    	$kizyunWindowWidth:基準点でのウインドウサイズ
    	@include kahenFontSize($kizyunFontSize, $kizyunWindowWidth);
    */
    font-size: 3.3875338753vw;
  }
}
#contact .section__inner .contact .contact__mail {
  font-size: 17px;
}
@media (max-width: 767px) {
  #contact .section__inner .contact .contact__mail {
    /*
    	$kizyunFontSize:基準点でのフォントサイズ
    	$kizyunWindowWidth:基準点でのウインドウサイズ
    	@include kahenFontSize($kizyunFontSize, $kizyunWindowWidth);
    */
    font-size: 3.3875338753vw;
  }
}

/* /contact */
.hero {
  position: relative;
  overflow: hidden;
  background: #000;
  /* PC比率 */
  aspect-ratio: 1370/661;
}
.hero .hero__title-img {
  /* 比率は画像が勝手に保つので width だけでOK */
  height: auto;
  display: block;
  /* PC基準：1370px のとき 626px。1370px未満は画面幅に追従。1370px以上は626で頭打ち */
  width: min(626px, 45.6934306569vw);
  /* 端に当たりたくない場合の保険（必要なら） */
  max-width: calc(100vw - 32px);
}
.hero .hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1; /* bgより上、titleより下 */
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  opacity: 0; /* デフォルトOFF */
  transition: opacity 0.2s ease;
}
.hero {
  /* ONにしたい時だけクラスを付ける */
}
.hero .is-shaded.hero__shade {
  opacity: 1;
}
.hero {
  /* SP基準：738px のとき 544px（= 544/738）。それ以下は追従。 */
}
@media (max-width: 738px) {
  .hero .hero__title-img {
    width: min(544px, 73.7127371274vw);
  }
}

.ssm img {
  display: block;
  width: 100%;
}

/* 例：html/_scss/pages/_home.scss もしくは _sections.scss の home 範囲 */
/* SP比率 */
@media (max-width: 767px) {
  .hero {
    aspect-ratio: 738/375;
  }
}
/* 背景動画：cover + 中央 */
.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 前面のロゴ画像（中央・比率維持） */
.hero__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

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

/* もしコラージュが hero 内に重なるなら、z-index を整理 */
.collage {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.post-foot {
  padding-top: 2rem;
}

.br-sp {
  display: none;
}

.br-pc {
  display: inline;
}

@media (max-width: 768px) {
  .br-sp {
    display: inline;
  }
  .br-pc {
    display: none;
  }
}
.rm-body p {
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.rm-h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 2.4rem 0 1.2rem;
  margin: 0 0 1.2rem;
}

.rm-embed {
  margin: 3rem 0;
}
.rm-embed--youtube {
  position: relative;
  aspect-ratio: 16/9;
}
.rm-embed--youtube iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.rm-link {
  word-break: break-all;
}
.rm-link--button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.rm-link-wrap--button {
  margin: 2.4rem 0;
}
