@charset "UTF-8";

/*
Theme Name: れいじみわ
Author: Your Name
Description: あなたのテーマの説明
Version: 1.0
*/
.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.courgette-regular {
  font-family: "Courgette", cursive;
  font-weight: 400;
  font-style: normal;
}

.josefin-sans {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.libre-caslon-display-regular {
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-style: normal;
}

.habibi-regular {
  font-family: "Habibi", serif;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Oswald", sans-serif;
  color: #fff;
  width: 100%;
}

body.is-fixed {
  overflow: hidden;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ===== ローディング画面 ===== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: transparent;
}

.loading-screen--active {
  opacity: 1;
  pointer-events: all;
}

.loading-screen__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.loading-screen--fade-out {
  opacity: 0;
}

/* ===== 右上回転ロゴ ===== */
.reiji-logo {
  position: fixed;
  top: 74px;
  right: 16px;
  width: 114px;
  height: 134px;
  object-fit: contain;
  z-index: 10001;
  pointer-events: none;
  will-change: transform, top, right, width, height;
}

/* ローディング中: 画面中央に大きく表示（サイズ2倍） */
.reiji-logo--loading {
  top: 50vh;
  right: 50vw;
  width: 228px;
  height: 268px;
  margin-top: -134px;
  margin-right: -114px;
}


/* ===== スクロール進行メーター（ブロック型） ===== */
.scroll-meter {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.scroll-meter.is-visible {
  opacity: 1;
}

.scroll-meter__track {
  width: 10px;
  border: 1px solid #000;
  display: flex;
  flex-direction: column-reverse;
  gap: 2px;
  padding: 2px;
  background: #fff;
}

.scroll-meter__seg {
  width: 100%;
  height: 6px;
  background: #fff;
  border: 1px solid #ccc;
  transition: background 0.1s ease, border-color 0.1s ease;
}

.scroll-meter__seg.is-active {
  background: #000;
  border-color: #000;
}



.drawer-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 150px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 101;
  background-color: transparent;
  border: none;
}

.drawer-icon__bar {
  display: none;
}

.drawer-icon.is-open .drawer-icon__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.drawer-icon.is-open .drawer-icon__bar:nth-child(2) {
  opacity: 0;
}

.drawer-icon.is-open .drawer-icon__bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.drawer-icon__img {
  z-index: 102;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: -20%;
  width: 20%;
  height: 100%;
  background: url(../img/drawer.webp) center center no-repeat;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  transition: right 0.3s ease, clip-path 0.6s ease;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drawer-menu.is-open {
  right: 0;
  transition: right 0.5s ease;
}

.drawer-menu.is-closing {
  right: -100vw;
  transition: right 2.5s ease;
}

.drawer-nav__list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.drawer-nav__list li {
  margin: 20px 0;
}

.drawer-nav__list li a {
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.drawer-nav__list li a:hover {
  opacity: 0.7;
}

.drawer-icon__img {
  animation: rotateY 5s linear infinite;
  transform-style: preserve-3d;
}

@keyframes rotateY {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

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

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
}

.button {
  align-items: center;
  display: flex;
  padding: 6px 10px 6px 30px;
  width: 160px;
  margin: 0 auto;
}

.button__bg {
  background-color: #fff;
}

.button__bg .button__text {
  color: #030a5b;
}

.button__border {
  border: 1px solid #fff;
}

.button__border .button__text {
  color: #fff;
}

.button__icon {
  width: 24px;
  display: flex;
  align-items: center;
}

.button__icon_path {
  fill: #fff;
}

.button__icon_path__contact {
  fill: #030a5b;
}

.button__text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}

.fv {
  margin: 450px 450px 550px 450px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.fv__inner {
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
  min-width: fit-content;
  max-width: 100%;
}

.fv__inner:hover .fv__title,
.fv__inner:hover .fv__title__sub {
  color: rgba(255, 255, 255, 0.5);
}

.fv__title,
.fv__title__sub {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease-out forwards;
  word-break: break-word;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

.fv__title {
  font-size: 35px;
  animation-delay: 2.5s;
  font-family: "Habibi", serif;
}

@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 30px;
  }
}

.fv__title__sub {
  font-size: 15px;
  animation-delay: 3s;
  font-family: "Libre Caslon Display", serif;
}

@media screen and (min-width: 768px) {
  .fv__title__sub {
    font-size: 12px;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.works__item+.works__item {
  margin-top: 40px;
}

.works__item_img {
  margin-bottom: 12px;
}

.works__item_img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.works__item_name {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 6px;
  margin-top: 7px;
  font-weight: 200;
}

.works__item_link {
  text-decoration: underline;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.works__item_link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.scrollarea {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.scrollarea__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scrollarea__text {
  display: inline-block;
  white-space: nowrap;
  font-size: 100px;
  letter-spacing: 0.3em;
  animation: scroll-left 12s linear infinite;
  font-family: "Anton", sans-serif;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.about__img {
  margin-bottom: 32px;
}

.about__img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  width: 600px;
}

.about__text {
  font-size: 16px;
  line-height: 1.6;
}

.about__text+.about__text {
  margin-top: 1em;
}

.message__img {
  margin-bottom: 36px;
}

.message__img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.message__text {
  font-size: 16px;
  line-height: 1.6;
}

.page__bottom {
  color: #fff;
}

.page__bottom__item {
  padding: 40px;
}

.footer {
  text-align: center;
  padding: 10px;
}

.footer__copy {
  font-size: 11px;
  font-family: sans-serif;
}

/*----------------------------- pc ----------------------*/
@media screen and (min-width: 768px) {
  .wrapper {
    display: flex;
  }

  .main {
    flex-basis: 79.2%;
  }

  .header {
    position: relative;
    flex-basis: 20.8%;
  }

  .header__menu_button {
    display: none;
  }

  .header__contents {
    display: block;
    border: none;
  }

  .header__logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }

  .header__container {
    width: 160px;
    margin: 0 auto;
    position: sticky;
    top: 50px;
  }

  .button {
    transition: background 0.3s, color 0.3s, opacity 0.3s;
    opacity: 0.3s;
  }

  .button:hover {
    background-color: #fff;
  }

  .button:hover .button__text {
    color: #030a5b;
  }

  .button__bg {
    color: #030a5b;
  }

  .button__bg:hover {
    opacity: 0.7;
  }

  .fv__contents {
    background: url(../img/bg_fv.png) center center no-repeat;
    background-size: 100% auto;
    bottom: 100px;
    left: 0;
    max-width: 627px;
    height: 174px;
    padding-top: 24px;
    padding-left: 96px;
  }

  .works__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
    justify-content: center;
    align-items: center;
    align-items: stretch;
  }

  .works__item {
    justify-content: flex-end;
    flex: 1;
  }

  .works__item+.works__item {
    margin-top: 0;
  }

  .works__item_img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    margin-bottom: auto;
  }

  .works__item_img img {
    object-fit: contain;
    max-width: 300px;
  }

  .works__item_img .about__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }

  .works__item_img .message__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }

  .works__item_img .page__bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .works__item_img .page__bottom__item {
    padding: 54px 10px;
  }

  /*----------------------------- tbb ----------------------*/
}

@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .section__head_main {
    font-size: 54px;
  }

  .fv__contents {
    bottom: 50%;
    transform: translateY(50%);
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.wrapper {
  display: flex;
  flex-direction: column;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
}

.button {
  align-items: center;
  display: flex;
  padding: 6px 10px 6px 30px;
  width: 160px;
  margin: 0 auto;
}

.button__bg {
  background-color: #fff;
}

.button__bg .button__text {
  color: #030a5b;
}

.button__border {
  border: 1px solid #fff;
}

.button__border .button__text {
  color: #fff;
}

.button__icon {
  width: 24px;
  display: flex;
  align-items: center;
}

.button__icon_path {
  fill: #fff;
}

.button__icon_path__contact {
  fill: #030a5b;
}

.button__text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}

.section {
  padding: 48px 0;
  margin-top: 150px;
}

.section__inner {
  padding: 0 32px;
  text-align: center;
}

.section__head {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.section__head__center {
  text-align: center;
}

.section__head_main {
  font-size: 40px;
  letter-spacing: 0.1em;
  font-family: "Habibi", serif;
}

.section__head_sub {
  font-size: 11px;
}

.section__lead_text {
  font-size: 16px;
  line-height: 1.6;
}

.section__contents {
  margin-top: 40px;
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.inner {
  padding-left: 200px;
  padding-right: 200px;
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service__item ::marker {
  display: none;
}

.service__item+.service__item {
  margin-top: 40px;
}

.service__item_img {
  text-align: center;
  margin-bottom: 14px;
}

.service__item_name {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.service__item_text {
  font-size: 14px;
  line-height: 1.6;
}

.service__list {
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .service__list {
    gap: 8%;
    display: flex;
    flex-direction: row;
    margin-top: 90px;
    align-items: stretch;
    text-align: center;
    justify-content: center;
  }

  .service__item+.service__item {
    margin-top: 0;
    max-height: 0;
  }

  .service .service__item:nth-child(2) .service__item_img {
    margin-bottom: 23px;
  }

  .service .service__item:nth-child(3) .service__item_img {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 767px) {
  .service__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .service__item {
    width: 90%;
    max-width: 320px;
    margin-bottom: 32px;
  }

  .service__item ::marker {
    display: none;
  }
}

.scrollarea {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.scrollarea__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scrollarea__text {
  display: inline-block;
  white-space: nowrap;
  font-size: 100px;
  letter-spacing: 0.3em;
  animation: scroll-left 12s linear infinite;
  font-family: "Anton", sans-serif;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.flow__list {
  margin-top: 64px;
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .flow__list {
    flex-direction: row;
  }
}

@media screen and (max-width: 767px) {
  .flow__list {
    flex-direction: column;
  }
}

.flow__item {
  position: relative;
  border: 1px solid #5c4ca3;
  padding: 46px 16px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(70, 241, 190);
  border-image: initial;
  max-width: 220px;
  width: 100%;
  text-align: inherit;
  flex-shrink: 0;
  min-height: 380px;
  padding-left: auto;
  padding-right: auto;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.flow__item+.flow__item {
  margin-top: 46px;
}

.flow__item_num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translatex(-50%);
  font-size: 24px;
  background-color: rgb(5, 169, 120);
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow__item_img {
  margin-bottom: 24px;
  text-align: center;
}

.flow__item_name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.flow__item_text {
  font-size: 14px;
  line-height: 1.6;
}

.flow__item {
  opacity: 0;
}

.flow__item.fade-in-top,
.flow__item.fade-in-bottom {
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.flow__item.fade-in-top {
  animation-name: slideFromCenterTop;
}

.flow__item.fade-in-bottom {
  animation-name: slideFromCenterBottom;
}

.flow__item.delay-0 {
  animation-delay: 0s;
}

.flow__item.delay-1 {
  animation-delay: 0.3s;
}

.flow__item.delay-2 {
  animation-delay: 0.6s;
}

.flow__item.delay-3 {
  animation-delay: 0.9s;
}

@keyframes slideFromCenterTop {
  from {
    opacity: 0;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(-40px);
  }
}

@keyframes slideFromCenterBottom {
  from {
    opacity: 0;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(40px);
  }
}

@media screen and (max-width: 767px) {

  .flow__item.fade-in-top,
  .flow__item.fade-in-bottom {
    animation-name: slideFromBottom;
  }

  @keyframes slideFromBottom {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.about__img {
  margin-bottom: 32px;
}

.about__img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  width: 600px;
}

.about__text {
  font-size: 16px;
  line-height: 1.6;
}

.about__text+.about__text {
  margin-top: 1em;
}

.message {
  text-align: center;
}

.message__img {
  margin-bottom: 36px;
}

.message__img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.message__text {
  font-size: 16px;
  line-height: 1.6;
}

.message__body {
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-left: 120px;
  margin-right: 120px;
  margin-top: 40px;
}

.message__form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}

.message__form_group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .message__form_group {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.message__name {
  width: 170px;
  text-align: left;
  align-items: flex-start;
}

.message__name:hover {
  background-color: #cfcfcf;
  color: #000;
}

.message__name::placeholder {
  padding: 6px;
}

.message__email {
  width: 100%;
}

.message__email:hover {
  background-color: #cfcfcf;
  color: #000;
}

.message__email::placeholder {
  padding: 6px;
}

.message__tel {
  width: 100%;
}

.message__tel:hover {
  background-color: #cfcfcf;
  color: #000;
}

.message__tel::placeholder {
  padding: 6px;
}

.message__button {
  text-align: center;
  align-items: center;
  border: 8px;
  border-color: #000;
  margin-top: 20px;
}

.message__button__text {
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: 500;
}

.message__button__text:hover {
  background-color: #cfcfcf;
  color: #000;
}

.message__label {
  width: 100%;
  text-align-last: left;
  font-size: 20px;
  max-width: 274px;
}

@media screen and (max-width: 767px) {
  .message__label {
    text-align: left;
  }
}

.input {
  border-radius: 5px;
  border: none;
  height: 30px;
}

@media screen and (max-width: 767px) {
  .input {
    align-items: left;
  }
}

.message_area {
  width: 100%;
  height: 100px;
  /*----------------------------- pc ----------------------*/
  /*----------------------------- tb ----------------------*/
}

.message_area:hover {
  background-color: #cfcfcf;
  color: #000;
}

.message_area::placeholder {
  padding: 6px;
}

.message_area .footer {
  text-align: center;
  padding: 10px;
  margin-top: 225px;
  margin-bottom: 40px;
}

.message_area .footer__copy {
  font-size: 11px;
  font-family: sans-serif;
}

.message_area .fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
  /* 任意で遅延させたいとき */
}

@media screen and (min-width: 768px) {
  .message_area .wrapper {
    display: flex;
  }

  .message_area .main {
    flex-basis: 79.2%;
  }

  .message_area .header {
    position: relative;
    flex-basis: 20.8%;
  }

  .message_area .header__menu_button {
    display: none;
  }

  .message_area .header__contents {
    display: block;
    border: none;
  }

  .message_area .header__logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }

  .message_area .header__container {
    width: 160px;
    margin: 0 auto;
    position: sticky;
    top: 50px;
  }

  .message_area .button {
    transition: background 0.3s, color 0.3s, opacity 0.3s;
    opacity: 0.3s;
  }

  .message_area .button:hover {
    background-color: #fff;
  }

  .message_area .button:hover .button__text {
    color: #030a5b;
  }

  .message_area .button__bg {
    color: #030a5b;
  }

  .message_area .button__bg:hover {
    opacity: 0.7;
  }

  .message_area .section {
    margin-top: 210px;
  }

  .message_area .section__inner {
    margin: 0 auto;
  }

  .message_area .section__head {
    margin-bottom: 24px;
  }

  .message_area .section__head_main {
    font-size: 60px;
  }

  .message_area .fv__contents {
    background: url(../img/bg_fv.png) center center no-repeat;
    background-size: 100% auto;
    bottom: 100px;
    left: 0;
    max-width: 627px;
    height: 174px;
    padding-top: 24px;
    padding-left: 96px;
  }

  .message_area r .works__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }

  .message_area r .works__item+.message_area r .works__item {
    margin-top: 0;
  }

  .message_area .about__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }

  .message_area .flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }

  .message_area .flow__item+.message_area .flow__item {
    margin-top: 0;
  }

  .message_area .message__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .message_area .page__bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .message_area .page__bottom__item {
    padding: 54px 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .message_area .section__head_main {
    font-size: 54px;
  }

  .message_area .fv__contents {
    bottom: 50%;
    transform: translateY(50%);
  }

  .message_area .flow__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
    flex-shrink: 0;
  }
}

/* ===== スクロール促進インジケーター ===== */
.scroll-hint {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.scroll-hint.is-hidden {
  opacity: 0;
}

.scroll-hint__text {
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-hint__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

.scroll-hint__arrow span {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

.scroll-hint__arrow span:nth-child(2) {
  margin-top: -8px;
  opacity: 0.3;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* ===== インフォグラフィック風パネル ===== */
.info-panel {
  position: fixed;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.8s;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.info-panel.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* パネルコンテンツ */
.info-panel__content {
  max-width: 360px;
  padding: 24px 28px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
}

/* 右パネルはborderを右側に */
.info-panel--right .info-panel__content,
.info-panel--right-bottom .info-panel__content {
  border-left: none;
  border-right: 2px solid rgba(255, 255, 255, 0.15);
}

/* ヘッダー（番号 + タイトル） */
.info-panel__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}

.info-panel__number {
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

.info-panel__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.info-panel__subtitle {
  font-family: "Kiwi Maru", serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* セクション（ラベル + テキスト） */
.info-panel__section {
  margin-bottom: 14px;
}

.info-panel__label {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.info-panel__text {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Kiwi Maru", serif;
  margin: 0;
}

.info-panel__text--dim {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.info-panel__em {
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.05em;
}

/* スキルタグ */
.info-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.info-panel__tag {
  display: inline-block;
  padding: 3px 12px;
  font-size: 10px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.3s, color 0.3s;
}

.info-panel__tag:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 1);
}

/* ラベルライン（地球方向へ伸びる線 + ドット） */
.info-panel__line {
  position: relative;
  flex-shrink: 0;
}

/* 左パネル → 右に伸びるライン */
.info-panel--left .info-panel__line,
.info-panel--left-top .info-panel__line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%);
  margin-left: 20px;
}

.info-panel--left .info-panel__line::after,
.info-panel--left-top .info-panel__line::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

/* 右パネル → 左に伸びるライン */
.info-panel--right .info-panel__line,
.info-panel--right-bottom .info-panel__line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.4) 100%);
  margin-right: 20px;
}

.info-panel--right .info-panel__line::after,
.info-panel--right-bottom .info-panel__line::after {
  content: '';
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

/* パネル位置（四隅に分散） */
.info-panel--left {
  left: 3%;
  bottom: 8%;
  flex-direction: row;
}

.info-panel--right {
  right: 3%;
  top: 8%;
  flex-direction: row-reverse;
}

.info-panel--left-top {
  left: 3%;
  top: 8%;
  flex-direction: row;
}

.info-panel--right-bottom {
  right: 3%;
  bottom: 8%;
  flex-direction: row-reverse;
}

/* 実績リスト */
.info-panel__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 14px;
}

.info-panel__list li {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Kiwi Maru", serif;
}

.info-panel__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
}

.info-panel__list-more {
  color: rgba(255, 255, 255, 0.3) !important;
  font-style: italic;
}

/* CTAボタン */
.info-panel__cta {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 0;
  font-size: 10px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.3s, border-color 0.3s;
}

.info-panel__cta:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

/* フローステップ */
.info-panel__steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 16px;
}

.info-panel__step {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.info-panel__step-num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  min-width: 28px;
  letter-spacing: 0.05em;
}

.info-panel__step-text {
  font-size: 13px;
  font-family: "Kiwi Maru", serif;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

/* メールリンク */
.info-panel__mail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: opacity 0.3s;
}

.info-panel__mail:hover {
  opacity: 0.8;
}

.info-panel__mail-label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
}

.info-panel__mail-addr {
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}

/* is-visible アニメーション */
.info-panel--left,
.info-panel--left-top {
  transform: translateX(-20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.8s;
}

.info-panel--right,
.info-panel--right-bottom {
  transform: translateX(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.8s;
}

.info-panel.is-visible {
  transform: translateX(0);
}

/* ===== ABOUT 散らばりレイアウト ===== */
.about-spread {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.8s;
}

.about-spread.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 左上: タイトル + PROFILE */
.about-spread__title {
  position: absolute;
  left: 4%;
  top: 60px;
  padding: 20px 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  max-width: 380px;
  transform: translateX(-15px);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-spread.is-visible .about-spread__title {
  transform: translateX(0);
}

/* 左中段: BRAND / CERTIFICATION / HOBBIES */
.about-spread__details {
  position: absolute;
  left: 4%;
  top: 420px;
  padding: 16px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 300px;
  transform: translateX(-15px);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.about-spread.is-visible .about-spread__details {
  transform: translateX(0);
}

/* スキルタグのエリア */
.about-spread__skills {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* SKILLSヘッダーラベル（飛行機の左上） */
.skill-annotation__header {
  position: absolute;
  top: 22%;
  left: 30%;
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
  opacity: 0;
}

.about-spread.is-visible .skill-annotation__header {
  transform: translateY(0);
  opacity: 1;
}

/* 個別スキル注釈 */
.skill-annotation {
  position: absolute;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about-spread.is-visible .skill-annotation {
  opacity: 1;
}

/* ラベル: 太字イタリック（Apollo風） */
.skill-annotation__label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  text-transform: uppercase;
}

/* 直線 */
.skill-annotation__line {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

/* 左側: ラベル→線（右に伸びる） */
.skill-annotation--left .skill-annotation__line {
  margin-left: 12px;
}

/* 右側: 線→ラベル（左に伸びる） */
.skill-annotation--right .skill-annotation__line {
  margin-right: 12px;
}

/* ===== 各スキルの位置 ===== */

/* 左側ラベル */
.skill-annotation--1 {
  top: 15%;
  left: 35%;
  transition-delay: 0.1s;
}

.skill-annotation--1 .skill-annotation__line {
  width: 35px;
}

.skill-annotation--2 {
  top: 32%;
  left: 33%;
  transition-delay: 0.15s;
}

.skill-annotation--2 .skill-annotation__line {
  width: 45px;
}

.skill-annotation--3 {
  top: 58%;
  left: 33%;
  transition-delay: 0.2s;
}

.skill-annotation--3 .skill-annotation__line {
  width: 30px;
}

/* --4 WORDPRESS → 右側 */
.skill-annotation--4 {
  top: 78%;
  right: 27%;
  transition-delay: 0.25s;
}

.skill-annotation--4 .skill-annotation__line {
  width: 35px;
}

/* 右側ラベル */
.skill-annotation--5 {
  top: 22%;
  right: 28%;
  transition-delay: 0.3s;
}

.skill-annotation--5 .skill-annotation__line {
  width: 40px;
}

.skill-annotation--6 {
  top: 45%;
  right: 30%;
  transition-delay: 0.35s;
}

.skill-annotation--6 .skill-annotation__line {
  width: 30px;
}

.skill-annotation--7 {
  top: 68%;
  right: 27%;
  transition-delay: 0.4s;
}

.skill-annotation--7 .skill-annotation__line {
  width: 45px;
}

/* ===== WORKS 散らばりレイアウト ===== */
.works-spread {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.8s;
}

.works-spread.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 左上: タイトル */
.works-spread__title {
  position: absolute;
  left: 4%;
  top: 60px;
  padding: 20px 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  max-width: 280px;
  transform: translateX(-15px);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.works-spread.is-visible .works-spread__title {
  transform: translateX(0);
}

/* 飛行機の左上: PROJECTS（飛行機と被らないよう左寄り） */
.works-spread__projects {
  position: absolute;
  left: 4%;
  top: 200px;
  padding: 16px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 300px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.works-spread.is-visible .works-spread__projects {
  opacity: 1;
  transform: translateY(0);
}

/* 折れ線 + CTA */
.works-spread__cta-wrap {
  position: absolute;
  right: 22%;
  bottom: 28%;
  display: flex;
  align-items: flex-end;
  gap: 0;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.works-spread.is-visible .works-spread__cta-wrap {
  opacity: 1;
}

/* 折れ線（L字型） */
.works-spread__bent-line {
  width: 60px;
  height: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  position: relative;
  margin-right: 12px;
}

.works-spread__bent-line::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.works-spread__cta {
  display: inline-block;
  padding: 14px 0;
  font-size: 36px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
  transition: color 0.3s, border-color 0.3s, letter-spacing 0.3s;
  white-space: nowrap;
  pointer-events: auto;
  position: relative;
  z-index: 60;
  cursor: pointer;
}

.works-spread__cta:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.3em;
}

/* ===== FLOW 左側全体縦展開（背景なし） ===== */
.flow-spread {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.8s;
}

.flow-spread.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 上部ヘッダー */
.flow-spread__header {
  position: absolute;
  left: 4%;
  top: 60px;
  transform: translateX(-15px);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-spread.is-visible .flow-spread__header {
  transform: translateX(0);
}

/* ステップ群を左側に縦展開 */
.flow-spread__steps {
  position: absolute;
  left: 4%;
  top: 160px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 各ステップ */
.flow-spread__step {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.flow-spread.is-visible .flow-spread__step {
  opacity: 1;
  transform: translateX(0);
}

.flow-spread.is-visible .flow-spread__step:nth-child(1) {
  transition-delay: 0.1s;
}

.flow-spread.is-visible .flow-spread__step:nth-child(2) {
  transition-delay: 0.2s;
}

.flow-spread.is-visible .flow-spread__step:nth-child(3) {
  transition-delay: 0.3s;
}

.flow-spread.is-visible .flow-spread__step:nth-child(4) {
  transition-delay: 0.4s;
}

.flow-spread.is-visible .flow-spread__step:nth-child(5) {
  transition-delay: 0.5s;
}

.flow-spread__step-num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 36px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.2);
  min-width: 50px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.flow-spread__step-text {
  font-size: 15px;
  font-family: "Kiwi Maru", serif;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
}

/* ステップ間の縦線 */
.flow-spread__step-line {
  display: block;
  position: absolute;
  left: 22px;
  bottom: -100%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.flow-spread__step {
  position: relative;
}

/* 下の注釈 */
.flow-spread__note {
  position: absolute;
  left: 4%;
  bottom: 50px;
  font-size: 11px;
  font-family: "Kiwi Maru", serif;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  line-height: 1.8;
  opacity: 0;
  transition: opacity 0.6s ease 0.6s;
}

.flow-spread.is-visible .flow-spread__note {
  opacity: 1;
}

/* ===== MESSAGE 散らばりレイアウト ===== */
.msg-spread {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.8s;
}

.msg-spread.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 左上: タイトル */
.msg-spread__title {
  position: absolute;
  left: 4%;
  top: 60px;
  padding: 20px 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  max-width: 320px;
  transform: translateX(-15px);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.msg-spread.is-visible .msg-spread__title {
  transform: translateX(0);
}

/* 左側: SERVICE / APPROACH */
.msg-spread__info {
  position: absolute;
  left: 4%;
  top: 220px;
  padding: 16px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 340px;
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.msg-spread.is-visible .msg-spread__info {
  opacity: 1;
  transform: translateX(0);
}

/* 右下: CONTACT（大きく） */
.msg-spread__contact {
  position: absolute;
  right: 5%;
  bottom: 10%;
  text-decoration: none;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.msg-spread.is-visible .msg-spread__contact {
  opacity: 1;
  transform: translateY(0);
}

.msg-spread__contact:hover {
  opacity: 0.8;
}

.msg-spread__contact-label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.msg-spread__contact-addr {
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 4px;
  transition: color 0.4s, letter-spacing 0.4s, border-color 0.4s, text-shadow 0.4s;
}

.msg-spread__contact:hover .msg-spread__contact-addr {
  color: #fff;
  letter-spacing: 0.14em;
  border-color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* レスポンシブ：全画面幅でデスクトップレイアウトを維持 */
@media screen and (max-width: 767px) {
  /* info-panel: デスクトップ値を維持 */
  .info-panel__content {
    max-width: 320px;
  }
  .info-panel--left,
  .info-panel--left-top {
    left: 6%;
  }
  .info-panel--right,
  .info-panel--right-bottom {
    right: 6%;
  }
  .info-panel--left {
    bottom: 20%;
  }
  .info-panel--right {
    top: 16%;
  }
  .info-panel--left-top {
    top: 12%;
  }
  .info-panel--right-bottom {
    bottom: 12%;
  }
  .info-panel__title {
    font-size: 28px;
  }
  .info-panel__line {
    width: inherit;
  }
  .info-panel__text {
    font-size: 13px;
  }
  .info-panel__list {
    columns: 2;
  }

  /* ABOUT: デスクトップ値を維持 */
  .about-spread__title {
    top: 60px;
    max-width: 380px;
    padding: 20px 24px;
  }
  .about-spread__details {
    top: 420px;
    max-width: 300px;
    padding: 16px 24px;
  }
  .skill-annotation {
    display: flex;
  }
  .skill-annotation__header {
    display: block;
  }

  /* WORKS: デスクトップ値を維持 */
  .works-spread__title {
    top: 60px;
    max-width: 280px;
    padding: 20px 24px;
  }
  .works-spread__projects {
    left: 4%;
    top: 200px;
    max-width: 300px;
  }
  .works-spread__cta-wrap {
    right: 22%;
    bottom: 28%;
  }

  /* FLOW: デスクトップ値を維持 */
  .flow-spread__steps {
    top: 160px;
    bottom: 100px;
  }
  .flow-spread__step-num {
    font-size: 36px;
    min-width: 50px;
  }
  .flow-spread__step-text {
    font-size: 15px;
  }

  /* MESSAGE: デスクトップ値を維持 */
  .msg-spread__title {
    top: 60px;
    max-width: 320px;
    padding: 20px 24px;
  }
  .msg-spread__info {
    top: 220px;
    max-width: 340px;
  }
  .msg-spread__contact-addr {
    font-size: 28px;
  }
}

/* ===== preview.html 用スタイル ===== */

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

/* ===== ナビバー（header_bg.png使用） ===== */
/* .navbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 48px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__bg {
  position: absolute;
  inset: 0;
  background: url('img/header_bg.png') center/contain no-repeat;
  transform: rotate(-90deg) scaleX(-1);
  transform-origin: center center;
  width: 100%;
  height: 48px;
}

.navbar__list {
  position: relative;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 90%;
  height: 100%;
  align-items: center;
  justify-content: space-evenly;
  z-index: 1;
}

.navbar__list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__list li .nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(80, 80, 80, 0.4);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.navbar__list li:hover .nav-dot,
.navbar__list li.is-active .nav-dot {
  background: rgba(50, 50, 50, 0.9);
}

.navbar__list li a {
  display: block;
  font-size: 10px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(80, 80, 80, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 48px;
}

.navbar__list li a:hover,
.navbar__list li.is-active a {
  color: rgba(30, 30, 30, 0.95);
} */