/* =========================
Base / Tokens
========================= */
:root {
  --brand: #1d95d4;
  --ink: #111;
  --muted: rgba(244, 244, 244, 0.8);
  --bg: #fff;
  --circle-text: #268DC5;
}

body {
  padding: 0;
  margin: 0;
  background-color: #c8c8c8;
}

a {
  color: #1d95d4;
}

.clear {
  clear: both;
  padding: 0;
  margin: 0;
}

/* =========================
Layout shell
========================= */
#wrapper {
  width: 1200px;
  background-color: #FFFFFF;
  font-family: 'YuGothic', 'Yu Gothic', 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
  font-size: 13px;
  margin: 0 auto;
}

/* =========================
Header
========================= */
header {
  width: 1200px;
  height: 300px;
  background-color: #CCC;
  font-weight: bold;
  position: relative;
  color: #fff;
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, .9),
    1px -1px 0 rgba(0, 0, 0, .9),
    -1px 1px 0 rgba(0, 0, 0, .9),
    1px 1px 0 rgba(0, 0, 0, .9),
    0 2px 6px rgba(0, 0, 0, .6);
}

#logo {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 30px;
  left: 30px;
  transform: rotate(-15deg);
}

.header-titles {
  position: absolute;
  left: 35px;
  top: 150px;
  /* ←ここが全ページ共通の基準 */
  width: 665px;
  /* ←幅を固定するとさらに安定 */
  transform: rotate(-15deg);
  transform-origin: left top;
  z-index: 2;
}

.site-header__contact {
  width: 260px;
  height: 50px;
  position: absolute;
  top: 250px;
  right: 20px;
  font-size: 27px;
  text-align: center;
  font-weight: bold;
}

.site-header__contact a {
  color: #fff;
  text-decoration: none;
}

.site-header__hours {
  width: auto;
  height: auto;
  font-size: 15.5px;
  text-align: center;
  font-weight: bold;
  display: none;
}

.site-header__phone,
.site-header__phone a,
#phone,
#phone a {
  color: #fff !important;
  text-decoration: none;
}

h1 {
  font-size: 20px;
  position: static;
}

h2 {
  font-size: 20px;
  margin-top: -15px;
  margin-left: 3px;
  position: static;
}

/* =========================
Common headings
========================= */
/* 共通見出し（PC） */
h4 {
  text-align: center;
  font-size: 14px;
  width: 240px;
  color: #1d95d4;
  padding: 5px 10px;
  border: 1px #1d95d4 solid;
  margin: 40px 0 10px;
}

h5 {
  text-align: center;
  font-size: 14px;
  color: #1d95d4;
  padding: 5px 10px;
  border: 1.5px #1d95d4 solid;
  margin: 40px 0 10px;
  width: 200px;
}

/* h3系は共通部だけまとめる */
h3,
.price-section__title1,
.price-section__title2 {
  text-align: center;
  font-size: 17px;
  color: #FFF;
}

h3 {
  width: 250px;
  padding: 5px 30px;
  margin: 30px 0;
  background-color: #1d95d4;
}

.price-section__title1,
.price-section__title2 {
  width: 248px;
  padding: 8px 30px;
}

.price-section__title1 {
  margin: 0 0 0 0;
}

.price-section__title2 {
  margin: 80px 0 0 0;
}

/* =========================
Global nav & dropdown
========================= */
nav {
  width: 1200px;
  color: #CCC;
  padding: 10px 0 15px;
  position: relative;
  z-index: 10;
}

nav ul {
  width: 1200px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  letter-spacing: 1.1px;
}

nav ul li {
  float: left;
}

nav ul li+li {
  border-left: 1px solid #000;
}

nav ul li a {
  margin: 0 16px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-size: 12px;
}

nav ul li a:hover {
  background: linear-gradient(transparent 0%, #ffff66 0%);
}

/* Flex ナビ（PC/スマホ共通ベース） */
.site-nav .nav__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 auto;
}

.site-nav .nav__link[aria-current="page"] {
  background: linear-gradient(transparent 0%, #ffff66 0%);
}

/* ---- ドロップダウン ---- */
nav ul li.has-submenu {
  position: relative;
}

/* パネル本体 */
nav ul li.has-submenu>.submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #E5F3FF;
  border: 1.5px solid #1d95d4;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
  width: auto;
  min-width: 0;
  white-space: nowrap;
  box-sizing: border-box;
}

nav ul li.has-submenu:hover>.submenu {
  display: block;
}

/* 項目 */
nav ul li.has-submenu .submenu li {
  border: 0;
  float: none;
}

nav ul li.has-submenu .submenu li a {
  display: block;
  padding: 15px 19px;
  margin: 0;
  text-align: center;
  color: #333;
  text-decoration: none;
  line-height: 1.3;
  border-top: 1px solid #B5DDFF;
}

nav ul li.has-submenu .submenu li:first-child>a {
  border-top: none;
}

nav ul li.has-submenu .submenu li a:hover {
  background: linear-gradient(transparent 0%, #ffff66 0%);
}

/* 太い区切り線 */
nav ul li.has-submenu .submenu li.divider {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1.5px solid #1d95d4;
}

/* =========================
Main / Side layout
========================= */
#main {
  width: 950px;
  float: left;
}

#side {
  float: right;
  width: 250px;
  box-sizing: border-box;
  margin: 0;
}

/* =========================
Breadcrumb
========================= */
/* パンくず */
#path {
  width: 388px;
  height: 20px;
  margin: 15px 0 0 25px;
}

#path ol {
  margin: 0;
  padding: 0;
}

#path ol li {
  display: inline;
  list-style: none;
  color: #111;
  font-size: 12px;
}

#path ol li:after {
  content: " > ";
}

#path ol li:last-child:after {
  content: none;
}

#path ol li a {
  text-decoration: none;
  color: #DDD;
}

#path ol li a:hover {
  color: #000;
}

/* =========================
Sidebar : headers / reserve / news
========================= */
/* 見出しデフォルト（PC） */
#pickup_header,
#media_header {
  height: 20px;
  padding-left: 5px;
  font-size: 13px;
  font-weight: bold;
  color: #1d95d4;
  float: left;
}

#pickup_header {
  width: 225px;
  margin: 0 0 5px 0;
}

#media_header {
  width: 215px;
  margin: 20px 0 5px 0;
}

/* 「見出しを箱にする」バージョン（.section-title が付いたとき） */
#media_header.section-title,
#pickup_header.section-title {
  width: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  margin: 15px 0 10px 0;
  border: 1px solid #1d95d4;
  color: #1d95d4;
  line-height: 1;
  box-sizing: border-box;
}

/* 予約バナーなど */
.reserve {
  width: 225px;
  height: 90px;
  margin: 0 0 20px 0;
  border: 1px #1d95d4 solid;
  float: left;
}

.reserve:hover {
  opacity: .3;
  transition: opacity 0.3s ease-in-out;
}

.reserve--sp {
  display: none;
}

#news {
  width: 225px;
  height: 90px;
  margin: 0 0 40px 0;
  border: 2px #1d95d4 solid;
  transition: .1s;
}

#news:hover {
  opacity: .5;
}

/* =========================
Sidebar : media
========================= */
/* メディア掲載 */
#media {
  width: 225px;
  margin: 0 0 20px 0;
  padding: 7px 6px 2px 6px;
  box-sizing: border-box;
  background: #E5F3FF;
  border: 1px solid #B5DDFF;
  color: #000;
  font-size: 10.3px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  float: left;
  font-kerning: normal;
  font-variant-east-asian: proportional-width;
  font-feature-settings: "palt" 1;
}

#media .media-intro {
  color: #333;
  margin: 1px 0 5px 0;
  padding-bottom: 7px;
  border-bottom: 1px solid #B5DDFF;
}

#media .media-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#media .media-list li {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #B5DDFF;
}

#media .media-list li:last-child {
  border-bottom: none;
}

#media .media-list a {
  display: block;
  color: #1d95d4;
  text-decoration: none;
  border: 0;
}

.media-list li a {
  text-decoration: none;
}

.media-list li:hover a {
  background: linear-gradient(transparent 0%, #B5DDFF 0%);
}

/* =========================
Sidebar : featured / pickup / links
========================= */
/* サイド：制作実例ボックスなど */
#side .pickup,
#side .featured__item {
  width: 225px;
  box-sizing: border-box;
  background: #E5F3FF;
  border: 1px solid #B5DDFF;
  padding: 4px;
}

.pickup {
  width: 225px;
  margin: 0 0 20px 0;
  font-size: 10.2px;
  line-height: 1.7;
  float: left;
  font-kerning: normal;
  font-variant-east-asian: proportional-width;
  font-feature-settings: "palt" 1;
}

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

.featured__item a:hover {
  text-decoration: underline;
}

#side .featured__item .ytload,
#side .pickup .ytload {
  margin: 0;
  padding: 0;
  width: 100%;
}

#side .featured__item .ytload iframe,
#side .pickup .ytload iframe,
#side .ytload iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border: 0;
  margin: 0;
  box-sizing: content-box;
}

.noytload iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0;
  margin: 0 0 9px 0;
  box-sizing: content-box;
}

/* サイドのリンク枠 */
#link {
  width: 225px;
  height: 180px;
  margin: 0 0 25px 0;
  border: 2px #1d95d4 solid;
  transition: .1s;
}

#link:hover {
  opacity: .5;
}

/* =========================
News page local layout
========================= */
.page-news main.news iframe {
  max-width: 100%;
  height: auto;
}

.page-news main.news a,
.page-news main.news p {
  overflow-wrap: anywhere;
  /* これ強い */
  word-break: break-word;
}

.page-news main.news {
  min-width: 0;
}

/* newsだけ：mainとasideが兄弟なら、これで並ぶ */
body.news main,
body.news aside#side {
  display: block;
}

body.news .contents,
body.news #contents,
body.news .container,
body.news #container,
body.news .wrapper,
body.news #wrapper {
  display: flex !important;
  align-items: flex-start;
  gap: 24px;
}

body.news main {
  flex: 1 1 auto;
  min-width: 0;
}

body.news aside#side {
  flex: 0 0 320px;
}

/* =========================
Footer
========================= */
.site-footer {
  width: 1200px;
  background: #efefef;
  color: #1d95d4;
  padding: 34px 0 24px;
  text-align: center;
  box-sizing: border-box;
  border-top: 1px solid #1d95d4;
}

.site-footer__inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.site-footer__lead {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #5f88a2;
}

.site-footer__tel {
  display: inline-block;
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #5f88a2;
  text-decoration: none;
}

.site-footer__tel:hover {
  opacity: .65;
}

.site-footer__hours {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.8;
  font-weight: bold;
  color: #5f88a2;
}

.site-footer__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 24px;
}

.site-footer__line,
.site-footer__mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  transition:
    opacity 0.3s ease;
}

.site-footer__line {
  background: #06c755;
}

.site-footer__mail {
  background: #1d95d4;
}

.site-footer__line:hover,
.site-footer__line:focus-visible {
  opacity: 0.5;
  outline: none;
}

.site-footer__mail:hover,
.site-footer__mail:focus-visible {
  opacity: 0.5;
  outline: none;
}

.site-footer__line-text,
.site-footer__mail-text {
  display: inline-block;
  letter-spacing: 0.03em;
}

.site-footer__info {
  margin: 0 auto;
  padding: 22px 24px 20px;
  background: #f7f7f7;
  border: 1px solid #d7e4ee;
  border-radius: 10px;
  color: #567a92;
  box-sizing: border-box;
}

.site-footer__address {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.9;
  font-weight: bold;
  color: #1d95d4;
}

.site-footer__stations {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__stations li {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #567a92;
}

.site-footer__stations li+li {
  margin-top: 2px;
}

.site-footer__copyright {
  margin: 18px 0 10px 0;
  padding-top: 18px;
  border-top: 1px solid #d7e4ee;
  font-size: 11.8px;
  letter-spacing: 0.05em;
  color: #7d9aae;
}

/* =========================
Responsive
========================= */
@media screen and (max-width: 768px) {
  .site-footer {
    width: 100%;
    padding: 26px 0 20px;
  }

  .site-footer__inner {
    max-width: 100%;
    padding: 0 14px;
  }

  .site-footer__lead {
    margin-bottom: 2px;
    font-size: 12.5px;
  }

  .site-footer__tel {
    font-size: 27px;
    line-height: 1.15;
  }

  .site-footer__hours {
    margin-top: 6px;
    font-size: 12.5px;
    line-height: 1.75;
  }

  .site-footer__cta-group {
    gap: 18px;
    margin: 16px 0 20px;
  }

  .site-footer__line,
  .site-footer__mail {
    min-width: 0;
    width: 100%;
    max-width: 300px;
    min-height: 48px;
    font-size: 13px;
    padding: 2px 16px 0px;
  }

  .site-footer__info {
    padding: 16px 14px 15px;
    border-radius: 8px;
  }

  .site-footer__address {
    margin-bottom: 12px;
    font-size: 12.6px;
    line-height: 1.9;
  }

  .site-footer__stations li {
    font-size: 12.1px;
    line-height: 1.9;
  }
}

/* =========================
Legacy lower pages / tables
========================= */
#reamp1 {
  width: 900px;
  margin: 0 25px 50px;
  line-height: 25px;
}

.reamp-upper {
  color: #1d95d4;
  padding: 30px 15px;
  margin: 0;
}

.reamp-lower {
  background-color: #efefef;
  color: #1d95d4;
  margin: 0;
  padding: 10px 15px 5px;
}

/* 各種テーブル */
#ui-tab table {
  width: 860px;
  border: 1.5px #1d95d4 solid;
  border-collapse: collapse;
  background-color: #FFF;
}

#ui-tab table.two {
  width: 860px;
  border: none;
  background-color: #efefef;
}

#ui-tab table td.box {
  border: 1.5px #1d95d4 solid;
  background-color: #FFF;
  width: 30%;
}

#ui-tab table td.box2 {
  border: 1.5px #1d95d4 solid;
  background-color: #FFF;
  width: 45%;
}

#ui-tab table td.none {
  border-bottom: none;
  border-top: none;
  background-color: #efefef;
}

#ui-tab .black {
  font-size: 12px;
  color: #000;
  text-align: center;
}

#ui-tab .blue {
  font-size: 16px;
  text-align: center;
  margin: 15px 0 10px;
}

/* 共通テーブル */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}

table tr td,
table tr th {
  border: 1px #1d95d4 solid;
  padding: 18px 0 13px 0;
  line-height: 1.72;
}

.price-table-wrap {
  position: relative;
  margin-top: 18px;
}

.price-table-wrap__tax {
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 11.8px;
  color: #1d95d4;
  line-height: 1;
}

.tbl--price {
  font-size: 18px;
  text-align: center;
  color: #1d95d4;
}

.tbl--price th,
.tbl--price td {
  font-weight: normal;
}

.tbl--equip {
  font-size: 13.2px;
  color: #333;
  text-align: left;
  letter-spacing: 0.22px;
}

.tbl--equip th,
.tbl--equip td {
  padding-left: 20px;
  font-weight: normal;
}

.tbl--equip th:first-child img {
  vertical-align: middle;
  margin-right: 10px;
}

table tr.bg,
table td.bg {
  background-color: #efefef;
}

table .description {
  font-size: 12.8px;
}

table .description2 {
  display: inline-block;
  font-size: 12.8px;
  color: #333;
  line-height: 1.98;
}

table .campaign {
  font-size: 12px;
  color: #FF0004;
}

table .campaign2 {
  font-size: 12px;
  color: #1d95d4;
}

/* drums改修後に削除 */
#mixing1 {
  width: 900px;
  margin: 0 25px 90px;
  line-height: 25px;
  letter-spacing: 0;
}

/* drums改修後に削除 */
#equipments1 {
  width: 900px;
  margin: 0 25px 50px;
  line-height: 25px;
}

#equipments1 table {
  width: 900px;
  border: 1px #1d95d4 solid;
  border-collapse: collapse;
  background-color: #FFF;
}

#equipments1 table tr td {
  padding: 20px 0 20px 20px;
  border: 1px #1d95d4 solid;
  text-align: left;
  font-size: 13px;
  color: #000;
}

#equipments1 table img {
  vertical-align: -18px;
}

#topics {
  width: 900px;
  margin: 0 25px 50px;
  line-height: 25px;
  letter-spacing: 0;
}

.topics_yt {
  width: 720px;
}

#studio1 {
  width: 900px;
  margin: 0 25px 90px;
  line-height: 25px;
  letter-spacing: 0;
}

#studio1 img {
  vertical-align: -10px;
}

#schedule {
  margin: 25px 0px 30px 10px;
  line-height: 24px;
}

#rec_sample {
  width: 900px;
  height: 160px;
}

#reamp_sample {
  width: 900px;
  margin-left: 25px;
  margin-bottom: 30px;
}

.youtube2 {
  width: 252px;
  height: 155px;
  float: left;
  margin-top: 5px;
  margin-right: 45px;
}

.youtube {
  width: 252px;
  height: 188px;
  float: left;
  font-size: 11px;
  line-height: 15px;
  margin: 0 45px 30px 0;
}

/* =========================
Studio / facility blocks
========================= */
.zumen {
  width: 748px;
  padding: 30px 0 0 50px;
}

.photos {
  width: 900px;
  margin-bottom: 1px;
}

.photos img {
  transition: .1s;
}

.photos img:hover {
  opacity: .5;
}

.photo-l {
  float: left;
  margin-right: 1px;
}

.photo-r {
  margin-left: 15px;
  float: left;
}

.studio-spec {
  list-style: none;
  margin: 18px 0 55px 0;
  padding: 0;
}

.studio-spec__item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.studio-spec__icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-spec__icon img,
.facility-list__item img {
  width: 38px;
  height: 38px;
  max-width: none;
  object-fit: contain;
}

.studio-spec__text,
.facility-list__label,
.smoke__text {
  padding-left: 4px;
}

.facility-list {
  list-style: none;
  margin: 25px 0 0 0;
  padding: 0;
}

.facility-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.smoke {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 55px;
}

.smoke__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

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

/* =========================
Price blocks
========================= */
/* 料金ボックス */
.price {
  margin-top: 0;
  margin-bottom: 15px;
}

.price p {
  line-height: 2.0;
  font-size: 13.8px;
}

.price__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 15px;
  gap: 1px;
  border: 1px solid #1d95d4;
  background: #1d95d4;
}

.price__item {
  flex: 1 1 212px;
  background: #fff;
  padding: 24px 0 24px 24px;
  box-sizing: border-box;
}

.price--narrow .price__item {
  flex: 1 1 242px;
  background: #fff;
  padding: 25px 0 25px 25px;
  box-sizing: border-box;
}

.price__label {
  font-size: 15.5px;
  font-weight: bold;
  color: #1d95d4;
  margin-bottom: 8.8px;
}

.price__details {
  font-size: 13.8px;
  color: #222;
  margin-bottom: 14px;
}

.price__value {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #1d95d4;
}

.price__note {
  font-size: 13.8px;
  color: #222;
}

.u-per {
  font-size: 16.8px;
}

.price__mixtype {
  margin-top: 16px;
  margin-bottom: 5px;
  font-size: 18.4px;
  font-weight: 700;
  line-height: 1.4;
}

.price__mixtype--high,
.price__mixtype--simple {
  color: #1d95d4;
}

/* =========================
Recording / content sections
========================= */
/* =========================
Recording (新ナレーション)
========================= */
.recording,
main.recording {
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
  float: left;
}

.rec-section {
  padding: 27px 24px 20px 24px;
  width: 900px;
  margin: 0 0 55px 20px;
  border: 1px solid var(--brand);
  background: #fff;
  box-sizing: border-box;
}

.rec-section__title {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  padding: 8px 28px;
  margin: 0 0 18px 0;
}

.rec-section__body {
  line-height: 2.0;
  font-size: 13.8px;
}

.rec-section__subtitle--small {
  text-align: left;
  font-size: 16.8px;
  width: 240px;
  color: #1d95d4;
  padding: 0;
  border: none;
  margin: 38px 0 0 0;
}

.rec-section__text--small {
  padding: 0;
  margin: 2px 0 -8px 0;
}

.contact-strong {
  font-size: 14.5px;
  /* 文字を少し大きく */
  font-weight: bold;
}

.contact-strong--tel {
  font-size: 18px;
  /* 文字を少し大きく */
  font-weight: bold;
  letter-spacing: 0.8px;
}

/* テキストリンク */
.rec-text a {
  color: var(--brand);
  text-decoration: underline;
}

.rec-text a:hover {
  text-decoration: none;
}

.u-highlight-red,
.u-highlight-red a {
  color: red;
  font-weight: bold;
}

/* =========================
Circle lists
========================= */
.rec-circles,
.nar-circles {
  display: grid;
  /* 148px 以上を保ちつつ、余った分は自動で伸び縮み */
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 17px;
  padding: 0;
  list-style: none;
}

.rec-circles {
  margin: 25px 0 0;
}

.nar-circles {
  margin: 25px 0 35px 0;
}

/* 四角は「幅に合わせて正方形」にする */
.rec-circles>li,
.nar-circles>li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #268DC5;
  border: 1px solid #268DC5;
  line-height: 2;
  padding: 20px;
  letter-spacing: 0.02em;
  box-sizing: border-box;
  /* ← ここがポイント */
  width: 100%;
  aspect-ratio: 1 / 1;
  /* 正方形を維持 */
}

/* =========================
Photo grids / Lightbox
========================= */
/* 写真サムネ（Lightbox） */
.rec-photos,
.nar-photos {
  display: grid;
  /* 1枚あたり 160〜214px の幅で、入るだけカラムを作る */
  grid-template-columns: repeat(auto-fit, minmax(160px, 282px));
  gap: 1px;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
  /* ← 2枚しかないときも左寄せ */
}

.rec-photos {
  margin: 15px 0 0;
}

.nar-photos {
  margin: 15px 0 65px 0;
}

.rec-photos__img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity .3s ease-in-out;
}

.rec-photos__img:hover {
  opacity: .5;
}

/* =========================
Video grid / YouTube player
========================= */
/* 動画グリッド */
.rec-videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: opacity 0.5s ease;
}

.rec-videos.is-fading {
  opacity: 0;
}

.rec-videos__item {
  margin-top: 18px;
  list-style: none;
}

.rec-videos__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: #000;
}

.rec-videos__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rec-videos__play {
  all: unset;
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  cursor: pointer;
  line-height: 0;
}

.rec-videos__icon {
  width: 80px;
  height: 80px;
  pointer-events: none;
}

.rec-videos__icon .bg {
  fill: rgba(0, 0, 0, 0.28);
  transition: fill 0.21s ease;
}

.rec-videos__icon .fg {
  fill: #fff;
}

.rec-videos__player:is(:hover, :focus-within) .rec-videos__icon .bg {
  fill: rgba(0, 0, 0, 0.48);
}

.rec-videos__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.rec-videos__detail {
  margin: 8px 0 10px;
  font-size: 11.1px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #333;
}

/* サイドバー用キャプション */
.rec-videos__detail--featured {
  float: left;
  margin: 10px 0 5px;
  font-size: 10.2px;
  line-height: 1.7;
  color: #444;
  font-kerning: normal;
  font-variant-east-asian: proportional-width;
  font-feature-settings: "palt" 1;
}

.rec-videos__stop {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 38px;
  height: 38px;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity .2s ease,
    transform .2s ease,
    background-color .2s ease,
    border-color .2s ease;
}

.rec-videos__stop::before,
.rec-videos__stop::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: #fff;
  border-radius: 999px;
}

.rec-videos__stop::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.rec-videos__stop::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.rec-videos__player.is-playing:hover .rec-videos__stop,
.rec-videos__player.is-playing:focus-within .rec-videos__stop {
  opacity: 1;
  pointer-events: auto;
}

.rec-videos__stop:hover,
.rec-videos__stop:focus-visible {
  background: rgba(0, 0, 0, .62);
  border-color: rgba(255, 255, 255, .82);
  transform: scale(1.06);
  outline: none;
}

.rec-videos__stop:active {
  transform: scale(.96);
}

/* =========================
FAQ
========================= */
.rec-faq {
  background: var(--muted);
  padding: 8px 8px;
}

/* =========================
Toggle / more panels
========================= */
.sim-toggle-wrap {
  margin: 12px 0 18px;
}

/* 開閉本体 */
.sim-toggle-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.58s ease,
    opacity 1.0s ease;
}

.sim-toggle-panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.sim-toggle-panel__inner {
  overflow: hidden;
}

/* 開いた時に中身が少しふわっと見える感じを足す */
.sim-toggle-panel__inner>* {
  transform: translateY(-380px);
  transition: transform 0.7s ease;
}

.sim-toggle-panel.is-open .sim-toggle-panel__inner>* {
  transform: translateY(0);
}

.mix-more-toggle-wrap {
  margin: 12px 0 18px;
  text-align: center;
}

.mix-more-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.6s ease,
    opacity 0.6s ease;
  margin-top: 18px;
}

.mix-more-panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.mix-more-panel__inner {
  overflow: hidden;
}

.mix-more-panel__inner>* {
  transform: translateY(-28px);
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
  opacity: 0;
}

.mix-more-panel.is-open .mix-more-panel__inner>* {
  transform: translateY(0);
  opacity: 1;
}

.sim-toggle-btn__label,
.mix-more-toggle-btn__label {
  display: inline-block;
  transition: opacity .1s ease;
}

.sim-toggle-btn.is-text-switching .sim-toggle-btn__label,
.mix-more-toggle-btn.is-text-switching .mix-more-toggle-btn__label {
  opacity: 0;
}

.sim-toggle-btn,
.toggle-btn {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 305px;
  min-height: 42px;
  border: 1px solid #1d95d4;
  background: #fff;
  color: #1d95d4;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 12.8px;
  position: relative;
  transition: background-color 0.35s ease;
}

.sim-toggle-btn:hover,
.toggle-btn:hover,
.toggle-btn:focus-visible {
  background: #E5F3FF;
}

.sim-toggle-btn:active,
.toggle-btn:active {
  background: #E5F3FF;
}

/* =========================
Sample filter
========================= */
.sample-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 5px 0 5px 0;
}

.sample-filter__btn {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 9px 18px;
  border: 1px solid #1d95d4;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  color: #1d95d4;
  font-size: 12.8px;
  font-weight: 700;
  transition: background-color 0.18s ease;
}

.sample-filter__btn:hover,
.sample-filter__btn:focus-visible {
  background: #E5F3FF;
}

.sample-filter__btn.is-active {
  background: #1d95d4;
  color: #fff;
}

/* =========================
Time breakdown
========================= */
/* ===== Time Breakdown (Bar) ===== */
.time-breakdown {
  margin-top: 20px;
}

.time-breakdown .tb-card {
  padding: 14px 100px 14px 0px;
  margin: 8px 0 12px 0;
  box-sizing: border-box;
}

.time-breakdown .tb-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.time-breakdown .tb-title {
  font-weight: 700;
  color: #555;
  font-size: 14px;
}

.time-breakdown .tb-note {
  font-size: 13.5px;
  color: #444;
}

/* これが“横バー”本体 */
.time-breakdown .tb-bar {
  display: flex;
  /* ←横並びにする核心 */
  width: 100%;
  height: 50px;
  border: 1px solid #1d95d4;
  background: #f7fbff;
  overflow: hidden;
  border-radius: 8px;
}

/* バーの各区間 */
.time-breakdown .tb-seg {
  display: flex;
  /* ←中の文字を中央寄せ */
  align-items: center;
  justify-content: center;
  min-width: 0;
  /* ←長文で崩れにくくする */
  padding: 0 8px;
  box-sizing: border-box;
}

/* 区間ラベル（バー内文字） */
.time-breakdown .tb-seg>span {
  display: inline-block;
  /* テキスト塊を中央扱いに */
  text-align: center;
  line-height: 1.4;
  /* 2行の見た目調整 */
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 700;
  color: #555;
}

/* 色分け（好みで変えてOK） */
.time-breakdown .tb-seg--prep {
  background: #E5F3FF;
}

.time-breakdown .tb-seg--rec {
  background: #FFF3BF;
}

.time-breakdown .tb-seg--post {
  background: #DDF3E0;
}

.time-breakdown .tb-seg--buffer {
  background: #EFEFEF;
}

/* 凡例 */
.time-breakdown .tb-legend {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  font-size: 12px;
  color: #333;
  line-height: 1.7;
}

.time-breakdown .tb-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-breakdown .tb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, .15);
}

.time-breakdown .tb-dot--prep {
  background: #E5F3FF;
}

.time-breakdown .tb-dot--rec {
  background: #FFFF66;
}

.time-breakdown .tb-dot--post {
  background: #DDF3E0;
}

.time-breakdown .tb-dot--buffer {
  background: #EFEFEF;
}

/* =========================
Price simulator
========================= */
/* ===== Price Simulator (Left controls / Right result) ===== */
.sim-box {
  margin-top: 8px;
}

.sim-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  /* 左：選択肢 / 右：結果 */
  gap: 14px;
  align-items: start;
}

/* 左カラム全体を囲う（←ここが今回の主役） */
.sim-left {
  border: 1px solid #1d95d4;
  background: #fff;
  padding: 12px;
  box-sizing: border-box;
  min-width: 0;
}

.sim-right {
  min-width: 0;
}

.sim-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* 各項目は囲わない（枠なし・白ベースのまま） */
.sim-item {
  border: 0;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
}

.sim-label {
  display: block;
  font-weight: 700;
  font-size: 13.8px;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.8;
}

.sim-select {
  width: 100%;
  font-size: 17.8px;
  margin: 3px 0 8px 0;
  border: 1px solid #1d95d4;
  background: rgba(29, 149, 212, 0.08);
  border-radius: 8px;
  color: #555;
  box-sizing: border-box;
}

.sim-note {
  margin: 2px 0 12px 0;
  font-size: 12px;
  color: #444;
  line-height: 1.8;
}

/* チェック1行（囲みなし） */
.sim-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.sim-check input {
  transform: scale(1.15);
}

/* 以前の囲み系を無効化する保険 */
.sim-check--plain {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  font-size: 15px;
}

/* 右側の結果 */
.sim-result {
  border: 1px solid #1d95d4;
  background: #fff;
  padding: 12px 12px;
  box-sizing: border-box;
  position: sticky;
  top: 12px;
}

.sim-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #B5DDFF;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.sim-total__label {
  font-weight: 800;
  color: #444;
  font-size: 15px;
}

.sim-total__value {
  font-weight: 700;
  color: #1d95d4;
  font-size: 24px;
}

.sim-lines {
  font-size: 13.5px;
  color: #444;
  line-height: 1.9;
}

.sim-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.sim-line__name {
  color: #444;
}

.sim-line__price {
  font-weight: 700;
  color: #444;
}

.sim-muted {
  color: #444;
}

/* =========================
Self simulator : rentals
========================= */
/* ===== Self simulator: rentals (checkbox list) ===== */
.sim-rentals {
  border: 0;
  padding: 0;
  border-radius: 0;
}

/* グループごとにカードっぽく */
.sim-rentals__group {
  background: #E5F3FF;
  border-radius: 8px;
  padding: 10px 10px 5px 10px;
  margin: 10px 0;
  box-sizing: border-box;
}

/* 見出し */
.sim-rentals__title {
  font-weight: 700;
  color: #1d95d4;
  font-size: 13px;
  margin: 0 0 8px 0;
  letter-spacing: 0.02em;
}

/* チェック行：横並びにして揃える */
.sim-rentals__check {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  column-gap: 10px;
  row-gap: 0;
  padding: 8px 8px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  line-height: 1.4;
}

/* hover */
.sim-rentals__check:hover {
  background: #ffff66;
}

/* inputの見た目（ちょい大きめ） */
.sim-rentals__check input[type="checkbox"] {
  transform: scale(1.15);
  margin: 0;
}

/* <br> が残ってても詰める（行間を消す） */
.sim-rentals__group br {
  display: none;
}

/* グループ内の行をほどよく区切る（最後はなし） */
.sim-rentals__group .sim-rentals__check+.sim-rentals__check {
  border-top: 1px solid #ffffff;
}

/* 「全解除」ボタン */
.sim-rentals__actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.sim-rentals__clear {
  appearance: none;
  border: 1px solid #1d95d4;
  background: #fff;
  color: #1d95d4;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 12.8px;
  transition: background-color 0.18s ease;
}

.sim-rentals__clear:hover {
  background: #E5F3FF;
}

/* 機材名：左寄せ / 料金：右寄せ */
.sim-rentals__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid #ffffff;
}

.sim-rentals__name {
  flex: 1 1 auto;
  text-align: left;
  min-width: 0;
}

.sim-rentals__price {
  flex: 0 0 auto;
  color: #555;
  text-align: right;
  white-space: nowrap;
}

.sim-rentals__group .sim-rentals__row:last-child {
  border-bottom: none;
}

@media screen and (min-width: 769px) {
  .sim-rentals {
    margin-top: 15px;
    max-width: 900px;
    /* 480〜560くらいで好み調整 */
  }
}

/* レンタル機材一覧：2カラム */
.sim-rentals--static-2col {
  display: block;
}

.sim-rentals__col {
  display: block;
}

.note-pop {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: 15px;
  padding: 0;
  border: 1px solid #1d95d4;
  border-radius: 999px;
  background: #fff;
  color: #1d95d4;
  font-size: 12.2px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  top: -10px;
  transition: background-color 0.3s ease;
}

.note-pop:hover,
.note-pop:focus-visible {
  background: #E5F3FF;
}

.note-pop:active {
  transform: translateY(0);
}

.note-floating {
  position: fixed;
  z-index: 9999;
  max-width: 360px;
  padding: 18px 18px;
  border: 2px solid #1d95d4;
  background: #E5F3FF;
  color: #333;
  font-size: 13.8px;
  line-height: 1.9;
  font-family: 'YuGothic', 'Yu Gothic', 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  border-radius: 10px;

  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.note-floating.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.note-floating.is-closing {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.note-floating::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: #E5F3FF;
  border-right: 2px solid #1d95d4;
  border-bottom: 2px solid #1d95d4;
  transform: rotate(45deg);
}

.note-floating.is-below::after {
  top: -8px;
  bottom: auto;
  transform: rotate(225deg);
}

.note-source {
  display: none;
}

@media (min-width: 900px) {
  .sim-rentals--static-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }

  .sim-rentals__col {
    min-width: 0;
  }

  .sim-rentals--static-2col .sim-rentals__group {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 768px) {
  .note-floating {
    max-width: min(320px, calc(100vw - 24px));
    font-size: 13px;
    line-height: 1.85;
  }

  .note-pop:hover {
    transform: none;
    box-shadow: none;
  }
}

.audio-pop {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 135px;
  height: 40px;
  padding: 8px 18px;
  margin: 12px 0 10px;
  border: 1px solid #1d95d4;
  background: #1d95d4;
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13.5px;
  transition: opacity 0.3s ease;
}

.audio-pop:hover,
.audio-pop:focus-visible {
  opacity: 0.5;
  outline: none;
}

.audio-floating {
  position: fixed;
  z-index: 10000;
  width: min(410px, calc(100vw - 24px));
  padding: 14px 14px 18px;
  border: 2px solid #1d95d4;
  background: #E5F3FF;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.audio-floating.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.audio-floating.is-closing {
  opacity: 0;
  transform: translateY(6px);
}

.audio-floating::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: #E5F3FF;
  border-right: 2px solid #1d95d4;
  border-bottom: 2px solid #1d95d4;
  transform: rotate(45deg);
}

.audio-floating.is-below::after {
  top: -8px;
  bottom: auto;
  transform: rotate(225deg);
}

.audio-floating__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: #333;
  font-family: 'YuGothic', 'Yu Gothic', 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
}

.audio-floating__close {
  appearance: none;
  -webkit-appearance: none;
  width: 27px;
  height: 27px;
  border: 2px solid #1d95d4;
  border-radius: 999px;
  background: #fff;
  color: #1d95d4;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}

.audio-floating__close:hover,
.audio-floating__close:focus-visible {
  background: #fffbe6;
  outline: none;
}

.audio-floating__player {
  display: block;
  width: 100%;
}

.audio-source {
  display: none;
}

.audio-pop--text {
  min-height: auto;
  padding: 0;
  margin: 0 0 4px;
  border: none;
  background: transparent;
  border-radius: 0;
  font-size: 13.8px;
  font-weight: normal;
  text-decoration: underline;
}

.audio-pop--text:hover,
.audio-pop--text:focus-visible {
  background: transparent;
  color: #126fa1;
}

.price-links-intro {
  color: #1d95d4;
  font-weight: bold;
}

.rec-section--price-links {
  background: #E5F3FF;
  border: 1px solid #1d95d4;
  border-radius: 8px;
  padding: 18px 18px 16px;
}

.rec-section--price-links .price-links-intro {
  margin: 0 0 14px 0;
  line-height: 1.8;
}

.price-notes {
  margin-top: 30px;
}

.price-notes__summary {
  margin-bottom: 18px;
}

.price-accordion {
  border: 1px solid #1d95d4;
  margin: 0 0 10px 0;
  background: #fff;
}

.price-accordion__button {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 0;
  background: #fff;
  color: #1d95d4;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 15px;
  font-weight: bold;
  box-sizing: border-box;
  transition: background-color 0.22s ease;
}

.price-accordion__button:hover,
.price-accordion__button:focus-visible {
  background: #E5F3FF;
  outline: none;
}

.price-accordion__label {
  padding-right: 16px;
}

.price-accordion__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.price-accordion__icon::before,
.price-accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #1d95d4;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.price-accordion__icon::before {
  width: 12px;
  height: 2px;
}

.price-accordion__icon::after {
  width: 2px;
  height: 12px;
}

.price-accordion__button[aria-expanded="true"] .price-accordion__icon::after {
  opacity: 0;
}

.price-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
}

.price-accordion__panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.price-accordion__inner {
  overflow: hidden;
  border-top: 1px solid #B5DDFF;
  background: #fafdff;
}

.price-accordion__inner .rec-section__text {
  margin: 0;
  padding: 14px 16px 15px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .price-accordion__button {
    font-size: 14px;
    padding: 13px 14px;
  }

  .price-accordion__inner .rec-section__text {
    padding: 12px 14px 14px;
    line-height: 1.75;
  }
}

.price-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 14px 0 6px 0;
}

.price-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 9px 18px;
  border: 1px solid #1d95d4;
  border-radius: 8px;
  background: #fff;
  color: #1d95d4;
  font-size: 12.8px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.18s ease;
  box-sizing: border-box;
}

.price-links__item:hover,
.price-links__item:focus-visible {
  background: #E5F3FF;
  outline: none;
}

.discount-box {
  margin: 18px 0 0;
  padding: 16px 18px 15px;
  border: 1px solid #1d95d4;
  background: #eaf6ff;
  box-sizing: border-box;
}

.discount-box__label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: #1d95d4;
}

.discount-box__title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #1d95d4;
}

.discount-box__text {
  margin: 0;
  font-size: 13.8px;
  line-height: 1.9;
  color: #333;
}

@media screen and (max-width: 768px) {
  .discount-box {
    margin-top: 16px;
    padding: 14px 14px 13px;
  }

  .discount-box__title {
    font-size: 16px;
    line-height: 1.5;
  }

  .discount-box__text {
    font-size: 13px;
    line-height: 1.8;
  }
}

/* =========================
Responsive: <=768px（スマホ）
PC通常ルールの並びに合わせて整理
========================= */
@media screen and (max-width: 768px) {

  /* =========================
  Base / Layout shell
  ========================= */
  body {
    min-width: 0;
    background-color: #ffffff;
  }

  #wrapper,
  header,
  nav,
  footer,
  #copyright {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }

  #wrapper {
    display: flex;
    flex-direction: column;
  }

  /* =========================
  Header
  ========================= */
  header {
    height: auto;
    /* 固定300pxをやめて、中身に合わせる */
    position: relative;
    background-color: #ccc;
    /* PCと同じグレー帯は維持 */
    margin-bottom: 20px;
  }

  /* ヘッダー画像縮小 */
  header img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .header-titles {
    position: absolute;
    left: 5px;
    top: 48px;
    /* ←ここが全ページ共通の基準 */
    width: auto;
    /* ←幅を固定するとさらに安定 */
    transform: none;
    z-index: 10;
  }

  #logo {
    top: 4px;
    left: 8px;
    transform: scale(0.65);
    transform-origin: left top;
  }

  header h1 {
    margin-top: 17.2px;
    font-size: 11.8px;
  }

  header h2 {
    margin-top: -10px;
    margin-left: 0px;
    font-size: 12.4px;
  }

  .site-header__contact {
    top: 4px;
    right: 8px;
    bottom: auto;
    left: auto;
    z-index: 5;
    width: auto;
    height: auto;
    font-size: 19.8px;
    text-align: right;
  }

  .site-header__hours {
    font-size: 11.0px;
    text-align: right;
    display: none;
  }

  /* =========================
  Navigation
  ========================= */
  /*=====スマホ用グローバルナビ（ボタン風）=====*/
  nav {
    background: #ffffff;
    /* パンくず上下のライン原因なので border は無しに */
    border-top: none;
    border-bottom: none;
    z-index: 100;
    padding-bottom: 30px;
  }

  /* 1段ごとにボタンを並べる */
  nav>ul {
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px 15px;
    /* ← ここを大きめに（お好みで 12〜20px くらい） */
    padding: 10px 10px 14px;
    margin: 0 auto;
  }

  /* 各メニュー項目（スマホでは区切り線なし） */
  nav>ul>li {
    float: none;
    border-left: none;
  }

  nav ul li+li {
    border-left: none !important;
    /* ← TOP / STUDIO 間の縦線を消す */
  }

  /* 親メニューをボタン化 */
  nav>ul>li>a {
    display: inline-block;
    padding: 8px 13px;
    margin: 0;
    border: 1px solid #1d95d4;
    font-size: 12.2px;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    color: #000;
    letter-spacing: 0.04em;
  }

  /* ホバー（タップ中）は PC と同じ黄色帯っぽく */
  nav>ul>li>a:hover {
    background: linear-gradient(transparent 0%, #ffff66 0%);
    border-color: #e0d55c;
  }

  /* 現在ページ風（必要なら） */
  nav>ul>li.current>a,
  .nav__item--current>a,
  nav>ul>li>a[aria-current="page"] {
    background: #ffff66;
    border-color: #1d95d4;
  }

  /* サブメニューは PC と同じフラットデザインを維持 */
  nav ul li.has-submenu .submenu li a {
    padding: 15px 19px;
    background: #E5F3FF;
  }

  nav ul li.has-submenu .submenu li a:hover {
    background: linear-gradient(transparent 0%, #ffff66 0%);
  }

  /* ===== SP: RECORDING ドロップダウン（navの下にオーバーレイ） ===== */
  /* li から relative を外して、nav を基準にする */
  nav ul li.has-submenu {
    position: static;
  }

  /* メニューのパネル本体 */
  nav ul li.has-submenu>.submenu {
    position: absolute;
    left: 0;
    right: 0;
    top: 85px;
    /* グローバルメニューの直下 */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    display: none;
    /* 通常は非表示 */
    background: #E5F3FF;
    z-index: 200;
    /* nav やパンくずより前面に */
  }

  /* is-open が付いたときだけ表示（JS側はそのままでOK） */
  nav ul li.has-submenu.is-open>.submenu {
    display: block;
  }

  /* 中のリンクは折り返しOK */
  nav ul li.has-submenu .submenu li a {
    white-space: normal;
  }

  /* =========================
  Breadcrumb
  ========================= */
  /* パンくずとナビの間隔 */
  #path {
    width: 100%;
    height: auto;
    margin: 10px 0 15px;
    padding: 0 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
  }

  /* =========================
  Main / Side layout
  ========================= */
  /* メイン＆サイドを縦並びに */
  main.recording,
  #main {
    float: none;
  }

  #side,
  .sidebar {
    float: none;
    width: 100%;
    margin: 35px 0 0;
    padding: 0 10px;
    box-sizing: border-box;
  }

  /* 念のため、スマホではサイドバーのfloatを解除しておくと安心 */
  #side.sidebar {
    float: none;
    width: 100%;
  }

  /* footerをサイドバーより上に表示 */
  footer {
    order: 5;
  }

  #side {
    order: 6;
  }

  /* もし copyright も一番下に置きたいなら */
  #copyright {
    order: 7;
  }

  /* =========================
  Sidebar
  ========================= */
  /* サイド見出しがサムネと被らないように中央寄せ */
  #pickup_header,
  #media_header {
    float: none;
    width: 100%;
    margin: 20px auto 10px;
    padding-left: 0;
    text-align: center;
    box-sizing: border-box;
  }

  #pickup_header.section-title {
    width: 100%;
    max-width: 360px;
    margin: 25px auto 35px;
    padding-left: 0;
    padding-bottom: 25px;
    text-align: center;
    display: block;
  }

  #media_header.section-title {
    width: 100%;
    max-width: 360px;
    /* FEATURED WORKS と同じ箱幅 */
    margin: 25px auto 20px;
    /* 上下マージンはお好みで。35px にしてもOK */
    padding-left: 0;
    padding-bottom: 25px;
    text-align: center;
    display: block;
    float: none;
  }

  /* サイド内の各ボックスも縦並び */
  .reserve,
  #media,
  .pickup,
  #link {
    float: none;
    width: 225px;
    margin: 0 auto 0px;
  }

  .reserve,
  #media,
  #link {
    text-align: center;
  }

  .reserve--sp {
    display: block;
    margin: 0px auto 13px auto;
    text-align: center;
  }

  /* 代わりにサイドバーの「お問い合わせ」(reserve--pc)は非表示にする */
  #side .reserve--pc {
    display: none;
  }

  #side .pickup,
  #side .featured__item {
    width: 100%;
    padding: 10px;
    margin-bottom: 35px;
  }

  /* サイドバー featured：ジャケット画像の下からテキストを始める */
  #side .featured__item img {
    display: block;
    /* 画像をブロック化 → その下の行からテキスト開始 */
    max-width: 100%;
    height: auto;
    margin: 0 0 8px 0;
    /* 画像とテキストの間に少し余白 */
  }

  #side .featured__item .rec-videos__detail {
    margin-top: 6px;
    /* 説明ブロックにも少し余白（お好みで調整） */
  }

  /* サイドの「制作実例」内の説明テキストが枠から飛び出さないように */
  #side .pickup .rec-videos__detail--featured,
  #side .featured__item .rec-videos__detail--featured {
    float: none;
    /* PCで使っているfloatをスマホでは解除 */
    display: block;
    width: 100%;
    margin: 10px 0 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    /* 長い単語でも枠内で折り返す保険 */
  }

  /* =========================
  Content sections
  ========================= */
  /* メインコンテンツ幅 */
  #path,
  #main,
  main,
  main.recording,
  #recording1,
  #mixing1,
  #mixing2,
  #reamp1,
  #equipments1,
  #topics,
  #studio1,
  #access,
  #contact,
  #tokucho,
  #tokucho_rec,
  #tokucho_uta,
  #rec_sample,
  #reamp_sample,
  .photos,
  .topics_yt {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
    padding: 0 5px;
    box-sizing: border-box;
  }

  /* 丸アイコン群（旧ページ用）は縦並び */
  #tokucho,
  #tokucho_rec,
  #tokucho_uta {
    height: auto;
    padding: 15px 0;
  }

  /* .circle_1, .circle_2, .circle_3, .circle_3b, .circle_2b { float: none; display: block; margin: 0 auto 12px; } */

  /* ナレーション等の大きなボックス */
  .recording_box {
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 20px;
  }

  /* ナレーション専用セクションをスマホ幅へ */
  .rec-section,
  .rec-section--intro {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 75px 0 !important;
    padding: 0 5px 0px 5px !important;
    box-sizing: border-box;
  }

  .rec-section__body {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 10px 0 !important;
    box-sizing: border-box;
  }

  .rec-section__title {
    margin: 18px 0 18px 5px;
  }

  .studio-spec__item {
    line-height: 20px;
    margin-bottom: 24px;
  }

  .page-demo #price .price-section__title1,
  .page-uta #price .price-section__title1,
  .page-mixing #price .price-section__title1,
  .page-mastering #price .price-section__title1,
  .page-ma #price .price-section__title1 {
    margin-top: 18px;
  }

  /* =========================
  Photos / images
  ========================= */
  /* 画像保険 */
  img {
    max-width: 100%;
    height: auto;
  }

  .rec-photos,
  .nar-photos {
    display: grid;
    /* これがないと grid-template-columns が効かない */
    /* スマホでは常に2列 */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    justify-content: center;
  }

  .rec-photos__img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

  #contact-section img[src$="line2.png"] {
    display: block;
    max-width: 380px;
    width: 50%;
    height: auto;
    margin: 18px 0 30px 0;
  }

  /* =========================
  Video grid
  ========================= */
  main.news .rec-videos {
    width: 100%;
  }

  /* =========================
  Price / simulator
  ========================= */
  .price {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 0 0 !important;
    padding: 18px 10px 10px !important;
    box-sizing: border-box;
  }

  .price__list {
    margin-left: 0;
    margin-right: 0;
  }

  .sim-layout {
    grid-template-columns: 1fr;
  }

  .sim-left {
    border: none;
  }

  .sim-result {
    position: static;
    top: auto;
    margin-bottom: 10px;
    border: none;
    border-top: 1px solid #1d95d4;
  }

  .sim-rentals {
    padding: 10px;
  }

  .sim-rentals__group {
    padding: 10px;
  }

  .sim-rentals__check {
    grid-template-columns: 22px 1fr;
    grid-template-areas:
      "cb name"
      "cb price";
    row-gap: 4px;
  }

  .sim-rentals__check input[type="checkbox"] {
    grid-area: cb;
  }

  .sim-rentals__name {
    grid-area: name;
  }

  .sim-rentals__price {
    grid-area: price;
    justify-self: start;
    color: #666;
  }

  .sim-rentals__actions {
    justify-content: center;
  }

  .sim-rentals__clear {
    width: 100%;
    max-width: 320px;
  }

  .time-breakdown .tb-card {
    padding: 10px 4px 10px 0px;
    margin: 8px 0 18px 0;
    box-sizing: border-box;
  }

  .time-breakdown .tb-seg>span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11.5px;
    color: #555;
  }

  /* =========================
  Toggle / filter
  ========================= */
  .sim-toggle-btn,
  .toggle-btn {
    margin-left: 5px;
  }

  .sample-filter {
    gap: 10px;
    margin: 15px 0 5px 5px;
  }

  .sample-filter__btn {
    min-height: 35px;
    padding: 10px 13px;
  }

  /* =========================
  Misc
  ========================= */
  /* ナレーション用ポイント表 */
  .narration_point,
  .narration_point table,
  .narration_point td {
    width: 100%;
  }

  /* 料金テーブル文字少し小さく */
  table {
    font-size: 13px;
  }

  /* フッター付近の LINE アイコン */
  footer {
    padding: 20px 0 20px 0;
  }

  footer img {
    max-width: 180px;
    height: auto;
  }

  .note-pop {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    font-size: 11px;
    top: -2px;
  }

  .note-floating {
    max-width: min(320px, calc(100vw - 24px));
    font-size: 13px;
    line-height: 1.85;
  }

  .tbl--price {
    font-size: 13.5px;
  }

  table .description {
    font-size: 11.7px;
  }

  table .description2 {
    font-size: 11.9px;
  }

  .rec-section--price-links {
    padding: 14px 12px 12px !important;
    margin-bottom: 45px !important;
  }

  .rec-section--price-links .price-links-intro {
    margin: 0 0 12px 0;
    font-size: 13px;
    line-height: 1.75;
  }

  .price-links {
    gap: 10px;
    margin: 0;
  }

  .price-links__item {
    min-height: 34px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .page-price .rec-section.rec-section--plain,
  .page-equipments .rec-section.rec-section--plain {
    border: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-price .rec-section.rec-section--plain>.rec-section__title,
  .page-equipments .rec-section.rec-section--plain>.rec-section__title {
    margin-left: 11px !important;
    margin-top: 19px !important;
  }

  #side,
  .sidebar {
    display: none !important;
  }

  .page-voice #side,
  .page-voice .sidebar,
  .page-narration #side,
  .page-narration .sidebar,
  .page-ma #side,
  .page-ma .sidebar {
    display: block !important;
  }
}

/* =========================
Contact CTA
========================= */
.contact-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 30px 0 48px;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.contact-cta__text {
  display: inline-block;
  letter-spacing: 0.03em;
}

.contact-cta--line {
  background: #06c755;
}

.contact-cta--mail {
  background: #1d95d4;
}

.contact-cta--tel {
  background: #4d7fa0;
}

.contact-cta--line:hover,
.contact-cta--line:focus-visible {
  opacity: 0.5;
  outline: none;
}

.contact-cta--mail:hover,
.contact-cta--mail:focus-visible {
  opacity: 0.5;
  outline: none;
}

.contact-cta--tel:hover,
.contact-cta--tel:focus-visible {
  opacity: 0.5;
  outline: none;
}

.contact-notice {
  margin: 0 auto;
  padding: 15px 15px 15px;
}

.contact-notice p {
  margin: 0;
  font-size: 13.8px;
  line-height: 1.9;
}

.contact-notice p+p {
  margin-top: 8px;
}

/* =========================
Contact CTA Responsive
========================= */
@media screen and (max-width: 768px) {
  .contact-cta-group {
    gap: 24px;
    margin: 18px 0 20px;
  }

  .contact-cta {
    width: 70%;
    min-width: 0;
    min-height: 48px;
    font-size: 13px;
    padding: 2px 16px 0;
  }

  .contact-notice {
    padding: 14px 14px 13px 10px;
    border-radius: 8px;
  }

  .contact-notice p {
    font-size: 12.6px;
    line-height: 1.85;
  }
}