@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", "Alexandria", sans-serif;
  color: #111;
  background-color: transparent;
  line-height: 1.6;
  max-width: 100%;
}

#panel2 {
  font-family: "Alexandria", sans-serif;
}

.product-h-en {
  font-family: "Alexandria", sans-serif;
}

.product-text-en {
  font-family: "Alexandria", sans-serif;
}

.lang-en {
  font-family: "Alexandria", sans-serif;
}

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

img {
  max-width: 100%;
  display: block;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  width: 60px;
  height: 60px;
  background-image: url("/asset/img/home/pagetop.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .back-to-top {
    height: 48px;
    right: 26px;
    bottom: 32px;
  }
}
.back-to-top:hover {
  background-image: url("/asset/img/home/pagetop_hover.png");
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top::after {
  content: "Page Top";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #91002C;
  margin-top: 4px;
  white-space: nowrap;
  pointer-events: none;
  font-family: "Alexandria", sans-serif;
}
@media screen and (max-width: 768px) {
  .back-to-top::after {
    font-size: 10px;
  }
}

/* ▼▼▼ ここが汎用パララックスセクション ▼▼▼ */
.parallax-section {
  position: relative;
  z-index: 1;
  padding: 50px 0; /* コンテンツの内側の余白 */
}
.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("/asset/img/under/under-para.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-bg-product::before {
  background-image: url("/asset/img/product/bg.png");
}

.header {
  position: fixed;
  top: 2.5rem;
  left: 1rem;
  right: 1rem;
  margin: 0 auto;
  padding: 1.5rem 150px 1.5rem 2.5rem;
  height: 5.25rem;
  border-radius: 2.5rem;
  background: #FFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header {
    height: 52px;
    padding: 0 1rem;
    top: 16px;
  }
}
.header.is-fixed {
  opacity: 1;
}
.header.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.header__logo img {
  height: 40px;
  display: block;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    height: 20px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__link {
  margin-left: 1.5rem;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  color: initial;
  transition: color 0.3s ease;
}
.header__link::after {
  content: "●";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  color: transparent;
  transition: color 0.5s ease;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .header__link::after {
    bottom: 6px;
    left: -13px;
  }
}
.header__link:hover {
  color: #91002C;
}
.header__link:hover::after {
  color: #91002C;
}
.header__link.is-current {
  color: #91002C;
}
.header__link.is-current::after {
  color: #91002C;
}
.header__toggle {
  display: none;
  position: relative;
  width: 28px;
  height: 22px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  z-index: 4000;
}
.header__toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
}
.header__toggle span:nth-child(1) {
  top: 0;
}
.header__toggle span:nth-child(2) {
  top: 9px;
}
.header__toggle span:nth-child(3) {
  top: 18px;
}
.header__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}
@media screen and (max-width: 768px) {
  .header__toggle {
    display: block;
  }
}
.header__drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 80px 20px;
  gap: 1.5rem;
  transition: right 0.3s ease;
  z-index: 3000;
}
.header__drawer .header__link.is-current {
  position: relative;
}
.header__drawer .header__link.is-current::after {
  color: #91002C;
  content: "●";
  bottom: 6px;
  left: -13px;
  transform: translateX(-50%);
  font-size: 0.5rem;
  transition: color 0.5s ease;
  pointer-events: none;
}
.header__drawer.is-open {
  right: 0;
}
.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 2000;
}
.header__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.footer {
  width: 100%;
  min-width: 100%;
  z-index: 10;
  position: relative;
}
.footer .footer_box {
  width: 100%;
  min-width: 100%;
  background-color: #111;
  color: #fff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 100px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .footer .footer_box {
    padding: 100px 0;
    display: block;
    padding-left: 10%;
  }
}
.footer .footer_box .footer_box_logo {
  max-width: 80%;
}
.footer .footer_box .footer_box_logo .footer_logo {
  padding-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .footer .footer_box .footer_box_logo .footer_logo {
    width: 75%;
  }
}
.footer .footer_box .footer_box_logo p {
  font-size: 12px;
}
.footer .footer_box .footer_box_nav {
  border-left: 1px #fff solid;
  padding-left: 16px;
}
@media screen and (max-width: 768px) {
  .footer .footer_box .footer_box_nav {
    margin-top: 56px;
  }
}
.footer .footer_box .footer_box_nav .footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer .footer_box .footer_box_nav .footer__nav .footer__link {
  display: inline-flex;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer .footer_box .footer_box_nav .footer__nav .footer__link {
    font-size: 14px;
  }
}
.footer .footer_box .footer_box_nav .footer__nav .footer__link:hover {
  color: #E5C614;
}
.footer .footer_box .footer_box_nav .footer__nav .footer__link::before {
  content: "";
  display: inline-block;
  width: 12px;
  margin-right: 8px;
}
.footer .footer_box .footer_box_nav .footer__nav .footer__link.is-current {
  color: #E5C614;
}
.footer .footer_box .footer_box_nav .footer__nav .footer__link.is-current::before {
  color: #E5C614;
  font-size: 8px;
  content: "●";
  display: inline-block;
  transform: translateY(7px);
}
.footer .footer_box .footer_box_nav .footer__nav .footer__link_pp {
  font-size: 12px;
}
.footer .footer_c {
  color: #fff;
  height: 36px;
  background-color: #111;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  display: flex;
  /* 横中央 */
  justify-content: center;
  /* 横中央 */
  align-items: center;
  /* 縦中央 */
}
@media screen and (max-width: 768px) {
  .footer .footer_c {
    font-size: 12px;
  }
}

a[download] {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
a[download]::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 6px;
  background: url("/asset/img/common/download-icon.png") no-repeat center/contain;
  vertical-align: middle;
  transition: background-image 0.2s ease;
}
a[download]:hover::after {
  background-image: url("/asset/img/common/download-icon_yh.png");
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* 　　Loading画面 (再修正版) */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: grid;
  place-items: center;
  /* 子要素をすべてまとめて中央に配置 */
  opacity: 1;
  transform: translateY(0);
  /* --- ↓変更点↓ --- */
  /* 輪とロゴのサイズを画面サイズに応じて可変にするためのCSS変数 */
  /* 画面の小さい方の80%を基準に、最小280px、最大346px */
  --ring-size: clamp(280px, 80vmin, 346px);
  --ring-radius: calc(var(--ring-size) / 2);
  /* 半径を計算 */
  /* ロゴのサイズもレスポンシブに調整 */
  --logo-width: clamp(10rem, 40vmin, 14rem);
  /* 最小10rem, 基本は画面の小さい方の40%, 最大14rem */
}

#loading.loaded {
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1), opacity 0s 1s;
  opacity: 0;
  transform: translateY(-100vh);
  pointer-events: none;
}

/* --- ↓変更点↓ --- */
/* logo, dots-container, circle-svg を同じグリッドセル（中央）に配置 */
#loading .logo,
#loading .dots-container,
#loading .circle-svg {
  grid-area: 1/1;
  /* すべての要素を同じグリッドセルに配置 */
  /* これらの要素が親のグリッドの中央に配置されるように、
     明示的にサイズを指定し、かつ中央に配置されるように調整 */
  width: var(--ring-size);
  /* ドットコンテナとSVGはリングサイズに合わせる */
  height: var(--ring-size);
  /* grid-area の要素はデフォルトで stretch されるので、
     サイズ指定を有効にするために justify-self と align-self を center に設定 */
  justify-self: center;
  align-self: center;
}

#loading .logo {
  width: var(--logo-width);
  /* ロゴの幅をCSS変数でレスポンシブに */
  height: auto;
  /* 幅に合わせて高さを自動調整 */
  animation: fadeIn 1s forwards;
  animation-delay: 0.3s;
  opacity: 0;
  z-index: 10;
  /* ロゴは常に一番上 */
}

#loading .dots-container {
  pointer-events: none;
  z-index: 20;
  /* ★★★ 修正点: circle-svg (z-index: 5) より高くする ★★★ */
  position: relative;
  /* ドットの絶対配置の基準にするため */
}

#loading .dots-container .dot {
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -50%);
  /* 中央を基準にする */
  animation: fadeInDot 0.3s forwards;
  animation-delay: calc(var(--index) * 0.25s + 0.6s);
}

/* --- ↓変更点↓ --- */
/* ドットの配置計算で固定値の代わりにCSS変数(--ring-radius)を使用 */
#loading .dots-container .dot:nth-child(1) {
  /* 角度計算 (変更なし) */
  /* topとleftは親の.dots-containerの50%を基準に、半径分移動 */
  top: calc(50% + var(--ring-radius) * sin(-90deg));
  left: calc(50% + var(--ring-radius) * cos(-90deg));
  /* ドットのサイズはそのまま */
  width: 1.5rem;
  height: 1.5rem;
}

#loading .dots-container .dot:nth-child(2) {
  /* 角度計算 (変更なし) */
  /* topとleftは親の.dots-containerの50%を基準に、半径分移動 */
  top: calc(50% + var(--ring-radius) * sin(-60deg));
  left: calc(50% + var(--ring-radius) * cos(-60deg));
  /* ドットのサイズはそのまま */
  width: 1.35rem;
  height: 1.35rem;
}

#loading .dots-container .dot:nth-child(3) {
  /* 角度計算 (変更なし) */
  /* topとleftは親の.dots-containerの50%を基準に、半径分移動 */
  top: calc(50% + var(--ring-radius) * sin(-30deg));
  left: calc(50% + var(--ring-radius) * cos(-30deg));
  /* ドットのサイズはそのまま */
  width: 1.25rem;
  height: 1.25rem;
}

#loading .dots-container .dot:nth-child(4) {
  /* 角度計算 (変更なし) */
  /* topとleftは親の.dots-containerの50%を基準に、半径分移動 */
  top: calc(50% + var(--ring-radius) * sin(0deg));
  left: calc(50% + var(--ring-radius) * cos(0deg));
  /* ドットのサイズはそのまま */
  width: 1.5rem;
  height: 1.5rem;
}

#loading .dots-container .dot:nth-child(5) {
  /* 角度計算 (変更なし) */
  /* topとleftは親の.dots-containerの50%を基準に、半径分移動 */
  top: calc(50% + var(--ring-radius) * sin(30deg));
  left: calc(50% + var(--ring-radius) * cos(30deg));
  /* ドットのサイズはそのまま */
  width: 1.35rem;
  height: 1.35rem;
}

#loading .dots-container .dot:nth-child(6) {
  /* 角度計算 (変更なし) */
  /* topとleftは親の.dots-containerの50%を基準に、半径分移動 */
  top: calc(50% + var(--ring-radius) * sin(60deg));
  left: calc(50% + var(--ring-radius) * cos(60deg));
  /* ドットのサイズはそのまま */
  width: 1.25rem;
  height: 1.25rem;
}

#loading .dots-container .dot:nth-child(7) {
  /* 角度計算 (変更なし) */
  /* topとleftは親の.dots-containerの50%を基準に、半径分移動 */
  top: calc(50% + var(--ring-radius) * sin(90deg));
  left: calc(50% + var(--ring-radius) * cos(90deg));
  /* ドットのサイズはそのまま */
  width: 1.5rem;
  height: 1.5rem;
}

#loading .dots-container .dot:nth-child(8) {
  /* 角度計算 (変更なし) */
  /* topとleftは親の.dots-containerの50%を基準に、半径分移動 */
  top: calc(50% + var(--ring-radius) * sin(120deg));
  left: calc(50% + var(--ring-radius) * cos(120deg));
  /* ドットのサイズはそのまま */
  width: 1.35rem;
  height: 1.35rem;
}

#loading .dots-container .dot:nth-child(9) {
  /* 角度計算 (変更なし) */
  /* topとleftは親の.dots-containerの50%を基準に、半径分移動 */
  top: calc(50% + var(--ring-radius) * sin(150deg));
  left: calc(50% + var(--ring-radius) * cos(150deg));
  /* ドットのサイズはそのまま */
  width: 1.25rem;
  height: 1.25rem;
}

#loading .dots-container .dot:nth-child(10) {
  /* 角度計算 (変更なし) */
  /* topとleftは親の.dots-containerの50%を基準に、半径分移動 */
  top: calc(50% + var(--ring-radius) * sin(180deg));
  left: calc(50% + var(--ring-radius) * cos(180deg));
  /* ドットのサイズはそのまま */
  width: 1.5rem;
  height: 1.5rem;
}

#loading .dots-container .dot:nth-child(11) {
  /* 角度計算 (変更なし) */
  /* topとleftは親の.dots-containerの50%を基準に、半径分移動 */
  top: calc(50% + var(--ring-radius) * sin(210deg));
  left: calc(50% + var(--ring-radius) * cos(210deg));
  /* ドットのサイズはそのまま */
  width: 1.35rem;
  height: 1.35rem;
}

#loading .dots-container .dot:nth-child(12) {
  /* 角度計算 (変更なし) */
  /* topとleftは親の.dots-containerの50%を基準に、半径分移動 */
  top: calc(50% + var(--ring-radius) * sin(240deg));
  left: calc(50% + var(--ring-radius) * cos(240deg));
  /* ドットのサイズはそのまま */
  width: 1.25rem;
  height: 1.25rem;
}

#loading .circle-svg {
  pointer-events: none;
  z-index: 5;
  /* ★★★ 修正点: dots-container (z-index: 20) より低くする ★★★ */
}

#loading .circle {
  fill: none;
  stroke: #91002C;
  stroke-width: 2;
  opacity: 0.6;
  stroke-dasharray: 1036;
  /* SVGの描画範囲（viewBox="0 0 340 340"）と、circleのr="165"が
     --ring-size に合わせて拡大縮小されるため、stroke-dasharrayとoffsetも
     相対的に調整が必要になる場合があります。
     このままでも問題ないことが多いですが、もし線の表示がおかしい場合は
     drawCircleアニメーションを調整する必要があります。
     とりあえずviewBoxのサイズに合わせて、stroke-dasharrayの値を調整しました。
  */
  stroke-dashoffset: 1036;
  /* 2 * PI * 165 = 1036.7... */
  animation: drawCircle 1s linear forwards;
  animation-delay: 4s;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
}

/* アニメーション定義 (変更なし) */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeInDot {
  to {
    opacity: 1;
  }
}
@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}
.target-section:last-child {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .target-section:last-child {
    margin-bottom: 100px;
  }
}

.section {
  position: relative;
  overflow: visible;
  display: flex;
  background-color: transparent;
}
@keyframes slide-down {
  0% {
    top: 0%;
    opacity: 1;
  }
  75% {
    /* ← ここを85%から75%に短縮 */
    top: 100%;
    opacity: 1;
  }
  76% {
    /* ← 透明フェーズ開始 */
    opacity: 0;
    top: 100%;
  }
  100% {
    top: 0%;
    opacity: 0;
  }
}
.section .l-inner {
  max-width: 76rem;
  margin: 0;
  padding: 116px 88px;
  display: flex;
  flex-direction: column;
  flex: auto;
  position: relative;
  z-index: 10;
  color: #fff;
}
.section__en-lead {
  font-size: 5.5rem;
  font-weight: 700;
  line-height: normal;
}
.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 6rem;
}
.section__text_ja {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2rem;
}
.section__text_en {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
}
.section .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 274px;
  height: 60px;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 3rem;
  text-decoration: none;
  background: #fff;
  color: #91002C;
  border: 1px solid #fff;
  margin-top: 24px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.section .btn:hover, .section .btn:focus, .section .btn:active {
  background: #91002C;
  color: #fff;
  border-color: #fff;
}
.section .circle-video {
  position: absolute;
  top: 10%;
  left: 73%;
  z-index: 1;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  transform: translate(-50%, 0);
  margin-top: 100px;
}
.section .circle-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) blur(2px) grayscale(0.2);
  transition: filter 0.5s;
}

.section.product {
  position: relative;
  padding: 0;
  padding-left: 10vw;
  justify-content: flex-start;
}
.section.product .maroon-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 50rem;
  background-color: #91002C;
  z-index: 1;
  pointer-events: none;
  width: auto;
}
.section.product .parallax-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.section.product .maroon-bg {
  border-radius: 24px 0 0 24px;
  left: 10vw;
}
.section.product .slider-wrapper {
  position: absolute;
  top: 1rem;
  left: 54%;
  transform: translateX(-50%);
  width: 0.5px;
  height: 64px;
  background-color: #fff;
  z-index: 1000;
}
.section.product .slider-wrapper .slider-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  animation: slide-down 2s cubic-bezier(0.4, 0, 0.5, 1) infinite;
}

.section.profile {
  position: relative;
  padding: 0;
  padding-right: 10vw;
  justify-content: flex-end;
}
.section.profile::before {
  content: "";
  position: absolute;
  top: calc(-70px - var(--offset));
  right: 20%;
  width: 68px;
  height: 68px;
  background-image: url("/asset/img/home/index-anime3.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 100;
  transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.section.profile::after {
  content: "";
  position: absolute;
  bottom: calc(-120px + var(--offset));
  right: 40%;
  width: 102px;
  height: 102px;
  background-image: url("/asset/img/home/index-anime4.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 100;
  transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 768px) {
  .section.profile::after {
    right: 8%;
  }
}
.section.profile .maroon-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 50rem;
  background-color: #91002C;
  z-index: 1;
  pointer-events: none;
  width: 100%;
}
.section.profile .maroon-bg {
  border-radius: 0 24px 24px 0;
  right: 10vw;
}
.section.profile .l-inner {
  flex: none;
}
.section.profile .circle-video {
  left: 27%;
}

.section.history {
  position: relative;
  padding: 0;
  justify-content: flex-start;
  margin: 220px 0 0 0;
  padding-bottom: 228px;
}
.section.history::before {
  content: "";
  position: absolute;
  top: calc(-10px - var(--offset));
  left: 150px;
  width: 65px;
  height: 65px;
  background-image: url("/asset/img/home/index-anime5.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 100;
  transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.section.history::after {
  content: "";
  position: absolute;
  bottom: calc(230px + var(--offset));
  right: 230px;
  width: 90px;
  height: 90px;
  background-image: url("/asset/img/home/index-anime6.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 100;
  transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 768px) {
  .section.history::after {
    bottom: calc(25px + var(--offset));
    right: 140px;
  }
}
.section.history .maroon-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 530px;
  background-color: none;
  background-image: url("/asset/img/home/index-history.png");
  z-index: 1;
  pointer-events: none;
  width: 50%;
  border-radius: 24px 0 0 24px;
  background-position: top center;
  background-size: cover;
}
.section.history .l-inner {
  padding-top: 0;
  padding-left: 200px;
}
.section.history .l-inner .section__en-lead,
.section.history .l-inner .section__title {
  color: #91002C;
}
.section.history .l-inner .section__text_ja,
.section.history .l-inner .section__text_en {
  color: #333;
}
.section.history .l-inner .btn {
  background: #91002C;
  color: #fff;
  margin-top: 24px;
  border: none;
}
.section.history .l-inner .btn:hover, .section.history .l-inner .btn:focus, .section.history .l-inner .btn:active {
  background: #fff;
  color: #91002C;
  border: 1px solid #91002C;
}

@media screen and (max-width: 1200px) {
  .section.product .maroon-bg {
    left: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .section.product .l-inner {
    padding: 80px 48px;
  }
}

@media screen and (max-width: 1200px) {
  .section.profile .maroon-bg {
    right: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .section.profile .l-inner {
    flex: auto;
    max-width: 48%;
  }
}
@media screen and (max-width: 1000px) {
  .section.profile .l-inner {
    padding: 80px 0;
  }
}

@media screen and (max-width: 768px) {
  .section.product,
  .section.profile,
  .section.history {
    padding-left: 40px;
    justify-content: flex-start;
    padding-bottom: 200px;
    height: auto;
    /* 他のスタイルをリセット */
  }
}
@media screen and (max-width: 1023px) {
  .section.product .maroon-bg,
  .section.profile .maroon-bg,
  .section.history .maroon-bg {
    height: 606px;
  }
}
@media screen and (max-width: 768px) {
  .section.product .maroon-bg,
  .section.profile .maroon-bg,
  .section.history .maroon-bg {
    height: 900px;
  }
}
@media screen and (max-width: 1023px) {
  .section.product .l-inner,
  .section.profile .l-inner,
  .section.history .l-inner {
    flex: none;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .section.product .l-inner,
  .section.profile .l-inner,
  .section.history .l-inner {
    max-width: 80%;
  }
}
@media screen and (max-width: 1023px) {
  .section.product .l-inner .section__en-lead,
  .section.profile .l-inner .section__en-lead,
  .section.history .l-inner .section__en-lead {
    font-size: 36px;
  }
}
@media screen and (max-width: 1023px) {
  .section.product .l-inner .section__title,
  .section.profile .l-inner .section__title,
  .section.history .l-inner .section__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1023px) {
  .section.product .l-inner .section__text_ja,
  .section.profile .l-inner .section__text_ja,
  .section.history .l-inner .section__text_ja {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .section.product .l-inner .section__text_en,
  .section.profile .l-inner .section__text_en,
  .section.history .l-inner .section__text_en {
    font-size: 14px;
  }
}
.section.product .l-inner .btn,
.section.profile .l-inner .btn,
.section.history .l-inner .btn {
  font-size: 20px;
}
@media screen and (max-width: 1439px) {
  .section.product .circle-video,
  .section.profile .circle-video,
  .section.history .circle-video {
    width: 500px;
    height: 500px;
  }
}
@media screen and (max-width: 1279px) {
  .section.product .circle-video,
  .section.profile .circle-video,
  .section.history .circle-video {
    width: 400px;
    height: 400px;
  }
}
@media screen and (max-width: 1000px) {
  .section.product .circle-video,
  .section.profile .circle-video,
  .section.history .circle-video {
    width: 300px;
    height: 300px;
    top: 22%;
  }
}
@media screen and (max-width: 768px) {
  .section.product .circle-video,
  .section.profile .circle-video,
  .section.history .circle-video {
    width: 350px;
    height: 350px;
    top: 62%;
    left: 50%;
  }
}

@media screen and (max-width: 1023px) {
  .section.product .l-inner {
    padding: 80px 0 80px 48px;
  }
}

@media screen and (max-width: 768px) {
  .section.history {
    padding-left: 0;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1023px) {
  .section.history .maroon-bg {
    width: 50%;
    height: 640px;
  }
}
@media screen and (max-width: 1023px) {
  .section.history .l-inner {
    padding-top: 50px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .section.history::after {
    bottom: 80px;
    right: 30px;
  }
}

.under_fv {
  width: auto;
  height: 575px;
  background-image: url("/asset/img/under/under-fv.png");
  background-size: contain;
  /* 画像全体が表示されるように調整 */
  background-repeat: no-repeat;
  background-position: center;
  /* 中央に配置（横に隙間ができた場合も中央寄せになる）*/
}
@media screen and (max-width: 1440px) {
  .under_fv {
    padding-left: 20px;
    padding-right: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .under_fv {
    height: 258px;
    background-image: url("/asset/img/under/under-fv-sp.png");
  }
}
.under_fv .under_fv_text {
  position: relative;
  padding-top: 220px;
  color: #91002C;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 120px auto;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .under_fv .under_fv_text {
    padding-top: 100px;
    margin: 0 auto 120px auto;
  }
}
.under_fv .under_fv_text .under_fv_text_en {
  font-size: 88px;
  line-height: normal;
  font-weight: 700;
  font-family: "Alexandria", sans-serif;
}
@media screen and (max-width: 768px) {
  .under_fv .under_fv_text .under_fv_text_en {
    font-size: 40px;
  }
}
.under_fv .under_fv_text h1 {
  font-size: 40px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .under_fv .under_fv_text h1 {
    font-size: 26px;
  }
}

.product_fv {
  background-image: url("/asset/img/product/fv.png");
  position: relative;
  height: 628px;
}
@media screen and (max-width: 768px) {
  .product_fv {
    height: 400px;
    background-image: url("/asset/img/product/fv-sp.png");
  }
}
@keyframes fuwa-fuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
    /* 少し上に移動する距離です。お好みで調整してください */
  }
  100% {
    transform: translateY(0);
  }
}
.product_fv::after {
  z-index: 1;
  position: absolute;
  content: "";
  background-image: url("/asset/img/product/bubble.png");
  background-size: contain;
  background-repeat: no-repeat;
  right: 5%;
  bottom: 0;
  width: 30%;
  aspect-ratio: 524/500;
  animation: fuwa-fuwa 4s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .product_fv::after {
    right: 2%;
    width: 50%;
  }
}

.tab_lang {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 0 auto;
  /* タブボタンのスタイル */
}
@media screen and (max-width: 1080px) {
  .tab_lang {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.tab_lang .tabs {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  /* アクティブなタブのスタイル */
}
.tab_lang .tabs::before {
  content: "";
  position: absolute;
  height: 2px;
  width: calc(100% - 320px + 2px);
  background-color: #91002C;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 800px) {
  .tab_lang .tabs::before {
    width: calc(100% - 240px + 2px);
  }
}
.tab_lang .tabs .tab-item {
  width: 160px;
  padding: 10px 20px;
  cursor: pointer;
  color: #888888;
  text-align: center;
  border: 2px solid transparent;
  /* レイアウト崩れ防止のため透明ボーダーを全方向に設定 */
  border-bottom: 2px solid #91002C;
  /* 下ボーダーだけ色を指定 */
  font-weight: 500;
  font-family: "Alexandria", sans-serif;
}
@media screen and (max-width: 800px) {
  .tab_lang .tabs .tab-item {
    font-size: 20px;
    width: 120px;
  }
}
.tab_lang .tabs .tab-item.active {
  color: #91002C;
  border-color: #91002C;
  /* 上・左・右のボーダーに色を適用 */
  border-bottom-color: transparent;
  /* 下ボーダーを透明にする */
}
.tab_lang .tab-content {
  /* アクティブなパネルのスタイル */
}
.tab_lang .tab-content .panel {
  display: none;
  /* 最初はすべてのパネルを非表示に */
  padding-top: 48px;
  border-top: none;
}
.tab_lang .tab-content .panel.active {
  display: block;
  /* アクティブなものだけ表示 */
}

.column-menu-sp-about-jp,
.column-menu-sp-about-en,
.column-menu-sp {
  display: flex;
  margin: 0 20px 40px 20px;
  padding: 16px;
  max-width: 100%;
  text-decoration: none;
  color: #888888;
  font-weight: 500;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  gap: 24px;
  overflow-x: auto;
  /* 横スクロールを許可 */
  white-space: nowrap;
  /* 折り返さない */
  -webkit-overflow-scrolling: touch;
  /* iOSで慣性スクロール */
  position: -webkit-sticky;
  /* Safari用のおまじないです */
  position: sticky;
  /* 画面の上からどれくらいの位置で固定するか */
  top: 140px;
  /* ★固定ヘッダーがある場合は、その高さに合わせます */
  transition: color 0.3s ease;
  /* 色をふわっと変える */
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .column-menu-sp-about-jp,
  .column-menu-sp-about-en,
  .column-menu-sp {
    top: 80px;
  }
}
.column-menu-sp-about-jp::-webkit-scrollbar,
.column-menu-sp-about-en::-webkit-scrollbar,
.column-menu-sp::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}
@media screen and (min-width: 769px) {
  .column-menu-sp-about-jp,
  .column-menu-sp-about-en,
  .column-menu-sp {
    display: none;
  }
}
.column-menu-sp-about-jp .menu-item,
.column-menu-sp-about-en .menu-item,
.column-menu-sp .menu-item {
  font-size: 1rem;
  color: #888888;
  font-weight: 500;
}
.column-menu-sp-about-jp .menu-item.current,
.column-menu-sp-about-en .menu-item.current,
.column-menu-sp .menu-item.current {
  font-weight: 700;
  color: #91002C;
}

.column-menu-sp-about-jp,
.column-menu-sp-about-en {
  margin-top: 60px;
  margin-bottom: 0;
}

.tab-content.about .panel.active,
.column-2 {
  display: flex;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto 0 auto;
}
.tab-content.about .panel.active .target-section,
.column-2 .target-section {
  scroll-margin-top: 160px;
  margin-top: 120px;
}
.tab-content.about .panel.active .target-section:first-child,
.column-2 .target-section:first-child {
  margin-top: 0;
}
.tab-content.about .panel.active .column-menu,
.column-2 .column-menu {
  height: auto;
  align-self: flex-start;
  width: 240px;
  padding: 32px 24px;
  backdrop-filter: blur(20px);
  border-radius: 8px;
  position: sticky;
  /* 画面の上からどれくらいの位置で固定するか */
  top: 160px;
  transition: color 0.3s ease;
  /* 色をふわっと変える */
}
@media screen and (max-width: 768px) {
  .tab-content.about .panel.active .column-menu,
  .column-2 .column-menu {
    display: none;
  }
}
.tab-content.about .panel.active .column-menu .menu-item,
.column-2 .column-menu .menu-item {
  position: relative;
  font-size: 1rem;
  /* ●を表示するスペースを確保します */
  padding-left: 20px;
  text-decoration: none;
  display: block;
  /* クリックしやすくします */
  margin-top: 40px;
  color: #5d5d5d;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
.tab-content.about .panel.active .column-menu .menu-item.current,
.column-2 .column-menu .menu-item.current {
  font-weight: 700;
  color: #91002C;
}
.tab-content.about .panel.active .column-menu .menu-item.current::before,
.column-2 .column-menu .menu-item.current::before {
  content: "●";
  font-size: 8px;
  color: #E5C614;
  /* お好みの色に変えてください */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
  /* ふわっと表示 */
}
.tab-content.about .panel.active .column-menu .menu-item:first-child,
.column-2 .column-menu .menu-item:first-child {
  margin-top: 0;
}
.tab-content.about .panel.active .column-main,
.column-2 .column-main {
  flex: 1;
}
@media screen and (max-width: 1023px) {
  .tab-content.about .panel.active .column-main,
  .column-2 .column-main {
    padding: 0 20px;
  }
}

.column-menu-sp-about-jp,
.column-menu-sp-about-en {
  display: none;
}

@media screen and (max-width: 768px) {
  .column-menu-sp-about-jp.is-active,
  .column-menu-sp-about-en.is-active {
    display: flex;
  }
}
.fv {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  height: 970px;
}
@media screen and (max-width: 768px) {
  .fv {
    flex-direction: column-reverse;
    height: 100vh;
    min-height: 700px;
  }
}
.fv__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 70vw;
  height: 100%;
  background-image: url("/asset/img/home/fv_pc.png");
  background-size: cover;
  background-position: center top;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv__bg {
    position: static;
    width: 100%;
    height: 50%;
    margin-top: 10vw;
    background-position: center;
  }
}
.fv__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 8vw;
  color: #000;
  pointer-events: none;
  margin-top: 320px;
}
@media screen and (max-width: 768px) {
  .fv__content {
    position: static;
    margin-top: auto;
  }
}
.fv__title {
  color: #000;
  font-size: 8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 8rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .fv__title {
    margin-bottom: 3vw;
    font-size: 17vw;
    line-height: 1;
  }
}
.fv__text {
  color: #000;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3rem;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .fv__text {
    font-size: 5vw;
    line-height: 1.25;
  }
}

@keyframes fvZoomIn {
  0% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.future {
  width: 100%;
  position: relative;
  font-size: 128px;
  color: #91002C;
  padding: 400px 0 440px 0;
  min-height: 1;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .future {
    padding: 200px 0;
  }
}
.future::before {
  content: "";
  position: absolute;
  top: calc(220px - var(--offset));
  right: 150px;
  width: 157px;
  height: 157px;
  background-image: url("/asset/img/home/index-anime1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 100;
  transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 1023px) {
  .future::before {
    top: calc(58px - var(--offset));
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .future::before {
    top: calc(58px - var(--offset));
    right: 20px;
  }
}
.future::after {
  content: "";
  position: absolute;
  bottom: calc(150px + var(--offset));
  left: 2%;
  width: 366px;
  height: 366px;
  background-image: url("/asset/img/home/index-anime2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 100;
  transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 1023px) {
  .future::after {
    left: 0;
    width: 250px;
    height: 250px;
    bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .future::after {
    bottom: calc(10px + var(--offset));
    left: -139px;
    display: none;
  }
}
.future .future__video {
  width: 100vw;
  height: auto;
  margin: 0;
  display: block;
  height: 720px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .future .future__video {
    height: 360px;
  }
}
.future .future__video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.future .huture_h3_top {
  position: absolute;
  left: 0;
  top: 280px;
  z-index: 101;
}
@media screen and (max-width: 1200px) {
  .future .huture_h3_top {
    font-size: 80px;
    top: 320px;
  }
}
@media screen and (max-width: 1023px) {
  .future .huture_h3_top {
    font-size: 50px;
    top: 133px;
  }
}
@media screen and (max-width: 768px) {
  .future .huture_h3_top {
    font-size: 40px;
    top: 160px;
  }
}
.future .huture_h3_bottom {
  position: absolute;
  right: 0;
  bottom: 320px;
  z-index: 101;
}
@media screen and (max-width: 1200px) {
  .future .huture_h3_bottom {
    font-size: 80px;
    bottom: 370px;
  }
}
@media screen and (max-width: 1023px) {
  .future .huture_h3_bottom {
    font-size: 50px;
    bottom: 133px;
  }
}
@media screen and (max-width: 768px) {
  .future .huture_h3_bottom {
    font-size: 40px;
    bottom: 160px;
  }
}

.index-back {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.5s ease;
  height: 100vh;
}

/* --- タイムラインのスタイル --- */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  margin-bottom: 200px;
  /* 伸びる点線 */
  /* 年ごとのグループ全体のスタイル */
}
.timeline::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 25px;
  width: 2px;
  height: var(--line-height, 0);
  background-image: linear-gradient(to bottom, #91002C 5px, transparent 5px);
  background-size: 100% 10px;
  transition: height 0.5s ease-out;
}
@media screen and (max-width: 1080px) {
  .timeline::after {
    left: 15px;
  }
}
.timeline .timeline-group {
  position: relative;
  padding-left: 90px;
  margin-bottom: 50px;
  min-height: 52px;
  display: flex;
  align-items: flex-start;
  padding-top: 18px;
  /* ◯ マーカーのスタイル */
  /* 画像を7種類順番に指定する */
  /* 1番目、8番目、15番目... */
  /* 2番目、9番目、16番目... */
  /* 3番目、10番目、17番目... */
  /* 4番目、11番目... */
  /* 5番目、12番目... */
  /* 6番目、13番目... */
  /* 7番目、14番目... */
  /* 年セルのスタイル */
  /* 複数のイベントをまとめるコンテナ */
}
@media screen and (max-width: 800px) {
  .timeline .timeline-group {
    /* 「年」と「イベント群」を縦並びに変更 */
    flex-direction: column;
    /* マーカー用の余白をスマホ用に調整 */
    padding-left: 50px;
    padding-top: 0;
  }
}
.timeline .timeline-group::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 52px;
  height: 52px;
  z-index: 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1080px) {
  .timeline .timeline-group::before {
    width: 32px;
    height: 32px;
  }
}
.timeline .timeline-group:nth-child(7n+1)::before {
  background-image: url("/asset/img/under/history1.png");
}
.timeline .timeline-group:nth-child(7n+2)::before {
  background-image: url("/asset/img/under/history2.png");
}
.timeline .timeline-group:nth-child(7n+3)::before {
  background-image: url("/asset/img/under/history3.png");
}
.timeline .timeline-group:nth-child(7n+4)::before {
  background-image: url("/asset/img/under/history4.png");
}
.timeline .timeline-group:nth-child(7n+5)::before {
  background-image: url("/asset/img/under/history5.png");
}
.timeline .timeline-group:nth-child(7n+6)::before {
  background-image: url("/asset/img/under/history6.png");
}
.timeline .timeline-group:nth-child(7n+7)::before {
  background-image: url("/asset/img/under/history7.png");
}
.timeline .timeline-group .timeline-year {
  width: 140px;
  flex-shrink: 0;
  color: #91002C;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 800px) {
  .timeline .timeline-group .timeline-year {
    font-size: 18px;
    width: auto;
    margin-bottom: 15px;
    padding-top: 12px;
  }
}
.timeline .timeline-group .timeline-events {
  flex-grow: 1;
  padding-top: 2px;
  /* 月・内容のペア（1行分のイベント） */
}
.timeline .timeline-group .timeline-events .timeline-event {
  display: flex;
  margin-bottom: 16px;
  /* 月セルのスタイル */
  /* 内容セルのスタイル */
}
.timeline .timeline-group .timeline-events .timeline-event:last-child {
  margin-bottom: 0;
}
.timeline .timeline-group .timeline-events .timeline-event .timeline-month {
  width: 80px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: #91002C;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .timeline .timeline-group .timeline-events .timeline-event .timeline-month {
    font-size: 16px;
  }
}
.timeline .timeline-group .timeline-events .timeline-event .timeline-content {
  flex-grow: 1;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .timeline .timeline-group .timeline-events .timeline-event .timeline-content {
    font-size: 14px;
  }
}

.column-main section {
  margin-top: 120px;
}
.column-main section:first-child {
  margin-top: 0;
}

.about-h {
  align-items: center;
  /* テキストのベースラインで高さを揃えます */
  background-color: #91002C;
  border-radius: 60px;
  padding: 10px 0;
  width: 100%;
  height: auto;
  padding-left: 72px;
  display: flex;
}
@media screen and (max-width: 1023px) {
  .about-h {
    height: auto;
    padding: 10px 16px 10px 48px;
  }
}
.about-h:first-of-type {
  margin-top: 0;
}
.about-h .about-h-jp h2 {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .about-h .about-h-jp h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about-h .about-h-jp h2 {
    font-size: 18px;
  }
  .about-h .about-h-jp h2 span {
    font-size: 1rem;
  }
}
.about-h .about-h-jp h2::before {
  content: "●";
  color: #E5C614;
  font-size: 24px;
  position: absolute;
  left: -38px;
  top: 4px;
}
@media screen and (max-width: 1023px) {
  .about-h .about-h-jp h2::before {
    font-size: 16px;
    left: -29px;
  }
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 32px;
}
@media screen and (max-width: 1024px) {
  .about-item {
    display: grid;
  }
}
.about-item .about-img {
  flex-basis: 40%;
  /* 画像側の幅を40%に設定 */
  /* flex: 0 0 40%; と書くこともできます */
}
.about-item .about-text {
  flex: 1;
}
.about-item .about-text table {
  width: 100%;
}
.about-item .about-text table tr {
  margin-top: 16px;
  display: flex;
  text-align: left;
  gap: 16px;
  /* ← セル間の余白を作る */
}
.about-item .about-text table tr:first-child {
  margin-top: 0;
}
.about-item .about-text table tr td {
  line-height: 1.8;
}
.about-item .about-text table tr td:first-child {
  flex: 0 0 120px;
  font-weight: 700;
  max-width: 120px;
}
.about-item .about-text table tr td:nth-child(2) {
  flex: 1;
  font-weight: 500;
}

.about-item-map {
  display: flex;
  margin-top: 48px;
  gap: 36px;
}
@media screen and (max-width: 1024px) {
  .about-item-map {
    display: block;
  }
}
.about-item-map .map-text {
  flex-basis: 40%;
}
@media screen and (max-width: 1024px) {
  .about-item-map .map-text {
    padding-bottom: 40px;
  }
}
.about-item-map .map-text .address {
  padding-bottom: 24px;
  border-bottom: 1px solid #E5E5E5;
}
.about-item-map .map-text .address .access-h {
  font-size: 16px;
  font-weight: 700;
}
.about-item-map .map-text .address p {
  font-size: 14px;
  line-height: 1.575rem;
  font-weight: 500;
}
.about-item-map .map-text .access {
  padding-top: 24px;
}
.about-item-map .map-text .access .access-h {
  font-size: 16px;
  font-weight: 700;
}
.about-item-map .map-text .access .access-p p {
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
}
.about-item-map .map-text .access .access-button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 24px;
  gap: 16px;
}
.about-item-map .map-text .access .access-button a {
  display: flex;
  font-weight: 700;
  font-size: 14px;
  background-color: #91002C;
  height: 32px;
  padding: 0 32px;
  color: #fff;
  border-radius: 30px;
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .about-item-map .map-text .access .access-button a {
    padding: 0 16px;
    font-size: 12px;
  }
}
.about-item-map .map-gmap {
  flex-basis: 60%;
}
.about-item-map .map-gmap .map-gmap-set {
  display: flex;
}
.about-item-map .map-gmap .map-gmap-set iframe {
  flex: auto;
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 768px) {
  .about-item-map .map-gmap .map-gmap-set iframe {
    height: 200px;
  }
}
.about-item-map .map-gmap .map-gmap-set .map-right-text {
  margin-left: 14px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-item-map .map-gmap .map-gmap-set .map-right-text {
    display: none;
  }
}
.about-item-map .map-gmap .map-gmap-set .map-right-text img {
  position: absolute;
  top: 0;
  right: 6px;
  width: 12px;
  height: 12px;
}
.about-item-map .map-gmap .map-gmap-set .map-right-text p {
  flex: auto;
  color: #91002C;
  margin-top: 20px;
  writing-mode: vertical-rl;
  position: relative;
  font-family: "Alexandria", sans-serif;
}
.about-item-map .map-gmap .map-gmap-set .map-right-text p::after {
  content: "";
  position: absolute;
  bottom: -96px;
  right: 13px;
  width: 1px;
  height: 80px;
  background-color: #91002C;
}

#panel2 .column-menu a {
  font-size: 16px;
}

/* デフォルトは表示 */
.pc-only {
  display: inline;
}

/* SPでだけ非表示 */
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
#product-image-display {
  position: fixed;
  left: -20px;
  bottom: -100px;
  width: 400px;
  height: 382px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #product-image-display {
    display: none;
  }
}

#product-image-display.is-visible {
  opacity: 1;
}

#product-image-display img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

#product-image-display img.is-fading {
  opacity: 0;
}

.product-h {
  display: flex;
  align-items: center;
  /* テキストのベースラインで高さを揃えます */
  gap: 32px;
  /* 文字サイズに応じた隙間を空けます */
  color: #91002C;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .product-h {
    display: block;
  }
}
.product-h:first-of-type {
  margin-top: 0;
}
.product-h .product-h-jp h2 {
  font-size: 48px;
}
@media screen and (max-width: 1023px) {
  .product-h .product-h-jp h2 {
    font-size: 32px;
  }
}
.product-h .product-h-en {
  font-size: 20px;
  padding-left: 24px;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .product-h .product-h-en {
    font-size: 16px;
    padding-left: 16px;
  }
}
.product-h .product-h-en::before {
  position: absolute;
  left: 0;
  top: 10px;
  content: "●";
  color: #E5C614;
  font-size: 8px;
}
@media screen and (max-width: 1023px) {
  .product-h .product-h-en::before {
    top: 6px;
  }
}

.product-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 56px;
}
@media screen and (max-width: 1024px) {
  .product-item {
    display: grid;
  }
}
.product-item .product-img {
  flex-basis: 50%;
  /* 画像側の幅を40%に設定 */
  /* flex: 0 0 40%; と書くこともできます */
  z-index: -1;
}
.product-item .product-text {
  flex: 1;
}
.product-item .product-text .product-text-jp {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .product-item .product-text .product-text-jp {
    font-size: 16px;
  }
}
.product-item .product-text .product-text-en {
  font-size: 14px;
  margin-top: 8px;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .product-item .product-text .product-text-en {
    font-size: 12px;
  }
}

#blow-molding .product-item,
#mold-base .product-item,
#others .product-item {
  flex-direction: row-reverse;
}

.product-img-after-13 {
  position: relative;
  margin-bottom: 32px;
}
.product-img-after-13::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -120px;
  right: -260px;
  transform: scale(0.5);
}

.product-img-after-10 {
  margin-bottom: 60px;
  display: block;
  position: relative;
}
.product-img-after-10::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -320px;
  transform: scale(0.5);
}

.product-img-after-13::after {
  content: url("/asset/img/product/after-13.png");
  /* 2倍の画像パス */
}
@media screen and (max-width: 1023px) {
  .product-img-after-13::after {
    bottom: -120px;
    right: -140px;
  }
}

.product-img-after-10::after {
  content: url("/asset/img/product/after-10.png");
  /* 2倍の画像パス */
}
@media screen and (max-width: 1023px) {
  .product-img-after-10::after {
    bottom: -200px;
    left: -160px;
  }
}

#product-image-display {
  animation: fuwa-fuwa 4s ease-in-out infinite;
}/*# sourceMappingURL=style.css.map */