body {
  /* font-family: 'Sawarabi Gothic', Arial, Helvetica, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN",Meiryo, sans-serif; */
  font-family: 'Noto Sans', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0 !important;
  padding: 0 !important;
  background-color: var(--background-primary)!important;
  color: var( --color-text-default)!important;
}
body.active {
  height: 100%;
  overflow: hidden;
}

ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
  line-height: 1.8;
}
a {
  color: var(--color-text-default);
}
a:hover {
  color: var(--color-ui-secondary);
}
.error {
  color: var(--color-delete);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ボタンのスタイル */
.custom-button {
  padding: 10px 24px;
  background-color: var(--color-ui-secondary);
  color: var(--color-text-interactive);
  border: none;
  border-radius: 3px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}
.custom-button:hover {
  color: var(--color-text-interactive);
  background-color: color-mix(in srgb, var(--color-ui-secondary) 80%, black);
}

.custom-button:active {
  background-color: color-mix(in srgb, var(--color-ui-secondary) 70%, black);
  color: var(--color-text-interactive);
}

/* カスタムボタンデザインのリンク */
.custom-button-link {
  display: block;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  background-color: var(--color-ui-secondary);
  color: var(--color-text-interactive);
  cursor: pointer;
  text-decoration: none;
}
.custom-button-link:hover {
  color: var(--color-text-interactive);
}


.custom-button:disabled {
  background-color: var(--color-button-main-inactive);
}

/* カラーパターン4の時のdisabledボタン色 */
body[data-color-pattern="4"] .custom-button:disabled {
  background-color: #4d8580;
}

/* 戻るボタン */
.btn-secondary {
  background: #969494;
  color: var(--color-text-interactive);
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 0;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover, .btn-secondary:focus {
  background: color-mix(in srgb, #969494 90%, black) !important;
}

.btn-secondary:active {
  background: color-mix(in srgb, #969494 80%, black) !important;
}

/* フォーム */
.form-group input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid var(--color-ui-tertiary);
  border-radius: 3px;
  font-size: 16px;
  color: var(--color-text-default);
  background: var(--color-ui-primary);
}

.form-group input::placeholder {
  color: var(--color-ui-tertiary);
  opacity: 1; /* Firefox */
}

.form-group input:focus {
  background: var(--color-ui-primary);
  outline: none;
  box-shadow: 0 0 5px var(--color-ui-secondary);
  border-color: var(--color-ui-secondary);
  color: var(--color-text-default);
}

.form-group input[type="submit"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  background-color: var(--color-ui-secondary);
  color: var(--color-text-interactive);
  cursor: pointer;
}
.form-group input[type="submit"]:disabled {
  background-color: var(--color-button-main-inactive); /* 無効時の背景色 */
  color: var(--color-text-interactive);
  cursor: not-allowed; /* 無効時のカーソル */
}


/* フォーム */
.form-group textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid var(--color-ui-tertiary);
  border-radius: 3px;
  font-size: 16px;
  color: var(--color-text-default);
  background: var(--color-ui-primary);
}

.form-group textarea::placeholder {
  color: var(--color-ui-tertiaryr);
  opacity: 1; /* Firefox */
}

.form-group textarea:focus {
  background: var(--color-ui-primary);
  outline: none;
  box-shadow: 0 0 5px var(--color-ui-secondary);
  border-color: var(--color-ui-secondary);
  color: var(--color-text-default);
}

div.box .box-label-option {
  text-align: left;
  font-size: 12px;
  margin-bottom: 0
}

.form-required {
  font-size: 10px;
  color: var(--color-delete);
  margin-left: 3px;
}


.modal.fade .form-check-input {
  padding: 0;
  margin: 0;
}
.modal.fade .form-check-input[type="checkbox"]:checked {
  background-color: var(--color-ui-secondary);
  border-color: var(--color-ui-secondary);
  position: relative;
}


.back-icon {
  display: flex;
  align-items: center;
}
.back-btn::before {
  display: inline-block;
  color: #202020;
  font-family: "Material Icons";
  font-size: 26px;
  content: "\e5e0";
}
.back-icon h2 {
  position: relative;
  margin: 35px auto;
  flex-grow: 1;
  color: var(--color-text-default);
  font-family: 'BIZ UDPGothic', sans-serif;
  font-size: 20px;
  text-align: center;
}
.back-icon h2::before {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -5px;
  width: 30%;
  height: 2px;
  background-color: var(--color-ui-secondary);
  content: '';
}




.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  box-shadow: 0px 2px 5px 0px #e5e5e5;
  width: 100%;
  background: #ffffff; /* カラーパターン0-3のデフォルト背景色 */
  height: 80px;
  z-index: 1001;
}

/* カラーパターン4（ナイト）のヘッダー背景 */
body[data-color-pattern="4"] .navbar {
  background: var(--background-primary);
}

.drop-shadow-logo {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)); /* 白い縁取り（透明度50%に調整） */
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
  align-items: center;
}

.menu-items li {
  list-style: none;
  margin-left: 2.5rem;
  font-size: 1.0rem;
  align-items: center;
  text-align: center;
}

.menu-items li a.nav-link {
  position: relative;
  color: var(--color-text-default);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 5px 0;
}

.menu-items li a.nav-link:hover {
  color: var(--color-ui-secondary);
}

.menu-items li a.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-ui-secondary);
  transition: width 0.4s ease;
}

.menu-items li a.nav-link:hover:after {
  width: 100%;
}

/* ブランドロゴのスタイル */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}
  
.navbar-logo {
  max-height: 55px; /* ロゴの最大高さを指定 */
  max-width: 140px; /* ロゴの最大幅を指定して横長ロゴも対応 */
  width: auto; /* アスペクト比を維持 */
  height: auto; /* アスペクト比を維持 */
  object-fit: contain; /* ロゴを領域内に収める */
}

/* ナイトモード時のMIMICREATIONロゴ反転 */
body[data-color-pattern="4"] img[src*="mimicreation_logo.png"].navbar-logo,
body[data-color-pattern="4"] img[src*="jomon_logo.png"].navbar-logo {
  filter: invert(1);
}

.profile-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
}

.profile-modal {
  position: absolute;
  top: 60px; /* アイコン下に表示 */
  right: 20px;
  width: 250px;
  background: var(--color-ui-primary);
  border: solid 1px var(--color-ui-tertiary);
  border-radius: 8px;
  z-index: 1000;
  text-align: center;
  overflow: hidden;
}
/* 画面幅が1024px以下の場合の位置調整 */
@media (min-width: 1024px) {
  .profile-modal {
    right: calc((100vw - 1024px) / 2 + 20px);
  }
}

.profile-modal.hidden {
  display: none;
}

.profile-header {
  padding: 20px 10px 0px 10px;
}

.profile-details {
  padding: 10px;
}

.profile-name {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
}

.profile-email {
  font-size: 12px;
  margin: 0;
}


.profile-footer {
  padding: 16px;
}

.sp {
  display: none !important;
}
.px {
  display: block !important;
}


/* メディアクエリ（画面幅が767px以下の場合） */
/* メニューが横に長いため、ヘッダーは767pxで制限 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  
  /* スマートフォン表示時はホバーエフェクトを無効化 */
  .menu-items li a.nav-link:hover {
    color: var(--color-text-default);
  }
  
  .menu-items li a.nav-link:after {
    display: none;
  }
  
  .menu-items li a.nav-link:hover:after {
    width: 0;
  }
  
  .navbar {
    opacity: 1;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1001;
  }

  .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 64px;
  }

  /* ハンバーガーメニューのチェックボックス（非表示） */
  .navbar-container input[type="checkbox"] {
    display: none;
  }

  /* ハンバーガーメニューのアイコン */
  .navbar-container .hamburger-lines {
    display: block;
    width: 30px;
    position: absolute;
    top: 14px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-text-default);
    margin: 8px 0;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
    border-radius: 30px;
  }

  /* ハンバーガーメニューのアニメーション */
  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(44deg) translate(9px, 5px);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    opacity: 0;
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-44deg) translate(9px, -5px);
  }

  /* メニューアイテムのスタイル */
  .navbar .menu-items {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: calc(100vh);
    background: var(--background-primary);
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-98%);
    visibility: hidden;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    z-index: 999;
    overflow-y: auto; /* メニュー内のスクロールを許可 */
    -webkit-overflow-scrolling: touch;
  }

  /* メニューが表示されたときのスタイル */
  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateY(0);
    visibility: visible;
  }

  .navbar .menu-items li {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 1rem 0;
  }

  /* ロゴの位置調整 */
  .navbar-logo {
    position: absolute;
    left: 15px;
    font-size: 2rem;
  }

  .profile-name {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0;
  }
  
  .profile-email {
    font-size: 16px;
    margin: 0;
  }
}



/****************************************************/
/* コンテナの上部や横幅 */
/****************************************************/

.container {
  max-width: 1024px;
  padding: 0 20px;
}

.container.top, .container.home{
  margin-top: 30px;
}
.container.auth {
  width: 700px;
  margin-top: 120px;
}

.container.coin-history {
  width: 700px;
  margin-top: 120px;
  margin-bottom: 80px;
}
.container.coin {
  width: 700px;
  margin-top: 120px;
  margin-bottom: 80px;
}
.container.card-setting {
  width: 700px;
  margin-top: 120px;
  margin-bottom: 80px;
}
.container.verify {
  margin-top: 60px;
}
.container.email-change-complete {
  width: 700px;
  margin-top: 60px;
}


/* メディアクエリ（画面幅が767px以下の場合） */
@media (max-width: 767px) {
  main {
    margin-top: 80px;
  }
  .container.auth {
    width: 100%;
    max-width: 560px;
  }
  .container.coin {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 60px;
  }
  .container.coin-history {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 60px;
  }
  .container.card-setting {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 60px;
  }
  .container.email-change-complete {
    width: 100%;
    max-width: 560px;
  }
  
}




div.box-header h2.content-title {
  font-weight: bold;
  font-size: 20px
}


div.box .icon-medium img {
  width: 70px;
  height: 70px;
  margin-bottom: 40px
}



.container.auth .box-header {
  display: flex;
  justify-content: center;
}

.container.auth .content-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}


/* ヒーローセクション */
.hero {
  background-image: url(/static/front/img/top/accelfan/image1.png);
  background-size: cover;
  background-position: center;
  height: 500px;
  border-radius: 10px;
  display: flex;
  justify-content: start;
  align-items: end;
  color: var(--color-text-interactive);
  text-align: start;
  padding: 20px;
  min-height: 250px;
}
.hero h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.home .hero-heading {
  font-weight: bold;
  margin-bottom: 30px;
}

@media (max-width: 425px) {
  .hero {
      height: auto;
      padding: 0px;
  }
  .hero h1 {
      font-size: 32px;
  }
  .hero p {
      font-size: 16px;
  }
}


.how-to-use-heading {
  margin-top: 20px;
}

/* 各機能の使い方セクション */

.how-to-use img {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}


.how-to-use p {
  font-size: 16px;
  margin-top: 10px;
  text-align: center;
}


/* ホーム */

/* 全体のフォントとマージン調整 */
body {
  font-family: Arial, sans-serif;
  /* margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333; */
}

/* 背景グラデーションセクション */
.bg-custom-gradient {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  text-align: start;
  padding: 60px 20px 20px 20px;
  border-radius: 8px;
  position: relative;
}

/* ユーザープロフィールヒーローセクション */
.user-profile-hero {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  text-align: start;
  padding: 40px 30px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

/* 丸い模様を追加 */
.user-profile-hero::before,
.user-profile-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.user-profile-hero::before {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -40px;
}

.user-profile-hero::after {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -5%;
}

/* 追加の丸い模様 */
.user-profile-hero .container {
  position: relative;
  z-index: 2;
}

.user-profile-hero .container::before,
.user-profile-hero .container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: -1;
  pointer-events: none;
}

.user-profile-hero .container::before {
  width: 350px;
  height: 350px;
  top: -70%;
  left: 10%;
}

.user-profile-hero .container::after {
  width: 100px;
  height: 100px;
  bottom: 25%;
  right: 38%;
}

.service-name-heading {
  font-size: 4.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: left;
}

.user-profile-container {
  display: flex;
  gap: 20px;
  position: relative;
}

.user-profile-image-container {
  flex-shrink: 0;
}

.user-profile-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-ui-secondary);
}

.user-profile-info {
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: calc(100% - 380px);
}

.user-profile-name {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.user-profile-email {
  margin-bottom: 0;
  opacity: 0.9;
}

.user-profile-coin-container {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  border-radius: 60px;
  margin-left: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3; /* コイン表示を最前面 */
}

.user-profile-coin {
  display: flex;
  align-items: center;
  gap: 20px;
}

.coin-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.coin-info {
  display: flex;
  flex-direction: column;
}

.coin-label {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.coin-value {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}


/* 1023px以下のレスポンシブ対応 */
@media (max-width: 1023px) {
  .user-profile-hero {
    padding: 30px 25px;
  }
  
  /* 丸い模様のサイズ調整 */
  .user-profile-hero::before {
    width: 200px;
    height: 200px;
    top: -70px;
    right: -30px;
  }
  
  .user-profile-hero::after {
    width: 150px;
    height: 150px;
    bottom: -40px;
    left: -3%;
  }
  
  .user-profile-hero .container::before {
    width: 250px;
    height: 250px;
    top: -60%;
    left: 5%;
  }
  
  .user-profile-hero .container::after {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 35%;
  }
  
  .service-name-heading {
    font-size: 3.5rem;
    margin-bottom: 40px;
  }
  
  .user-profile-coin-container {
    padding: 10px 15px;
  }
  
  .coin-icon {
    width: 55px;
    height: 55px;
  }
  
  .coin-value {
    font-size: 1.8rem;
  }
}

/* 767px以下のレスポンシブ対応 */
@media (max-width: 767px) {
  .user-profile-hero {
    padding: 25px 20px;
  }
  
  /* 丸い模様のサイズ調整 */
  .user-profile-hero::before {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -25px;
  }
  
  .user-profile-hero::after {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: -2%;
  }
  
  .user-profile-hero .container::before {
    width: 180px;
    height: 180px;
    top: -35%;
    left: 3%;
  }
  
  .user-profile-hero .container::after {
    width: 60px;
    height: 60px;
    bottom: 15%;
    right: 20%;
  }
  
  .service-name-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  /* レイアウトを縦方向に変更 */
  .user-profile-container {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  
  .user-profile-image-container {
    margin-bottom: 10px;
  }
  
  .user-profile-image {
    width: 100px;
    height: 100px;
  }
  
  .user-profile-info {
    height: auto;
    align-items: center;
    margin-bottom: 10px;
    max-width: 100%;
  }
  
  .user-profile-name {
    font-size: 1.8rem;
    text-align: center;
  }

  .user-profile-email {
    font-size: 0.80rem;
    text-align: center;
  }
  
  /* コイン表示を絶対配置から通常のフローに戻す */
  .user-profile-coin-container {
    position: static;
    margin: 0 auto;
    padding: 7px 10px;
  }
  
  .user-profile-coin {
    gap: 10px;
  }
  
  .coin-icon {
    width: 35px;
    height: 35px;
  }
  
  .coin-info {
    flex-direction: row;
    align-items: center;
    gap: 0px;
  }

  .coin-label {
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
    padding-right: 12px;
  }
  
  /* 「：」を追加 */
  .coin-label::after {
    content: '：';
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .coin-value {
    font-size: 1.1rem;
  }
}

@media (max-width: 450px) {
  .service-name-heading {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  
  /* 丸い模様のサイズ調整 */
  .user-profile-hero::before {
    width: 100px;
    height: 100px;
    top: -40px;
    right: -20px;
  }
  
  .user-profile-hero::after {
    width: 100px;
    height: 100px;
    bottom: -25px;
    left: -1%;
  }
  
  .user-profile-hero .container::before {
    width: 150px;
    height: 150px;
    top: -40%;
    left: -4%;
  }
  
  .user-profile-hero .container::after {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: -1%;
  }
  
  .user-profile-image {
    width: 90px;
    height: 90px;
  }
  
  .user-profile-name {
    font-size: 1.5rem;
  }
  
  .user-profile-email {
    font-size: 0.75rem;
  }
  
  .user-profile-coin-container {
    padding: 5px 10px;
  }
  
  .coin-icon {
    width: 30px;
    height: 30px;
  }
  
  .coin-label {
    font-size: 0.85rem;
    padding-right: 10px;
  }
  
  .coin-value {
    font-size: 1rem;
  }
}

.bg-gradient h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.bg-gradient p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.home .store-badges-sp {
  margin: 32px 0px 0px 0px;
}

.store-badges-sp {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.store-badges-pc {
  display: none;
  margin: 32px 0px 0px 0px;
}
.store-badges-pc .store-badge{
  margin: 0px 16px 0px 0px;
}

/* 特徴セクション */
.features {
  margin-top: 32px;
}

.store-badge {
  display: inline-block;
  max-height: 40px; 
}


/* 426~ */
@media (min-width: 426px) {
  .features {
    margin-top: 48px;
  }
  .store-badges-sp {
    display: none;
  }
  .store-badges-pc {
    display: flex;
    justify-content: flex-start;
  }
  .store-badge {
    max-height: 45px; 
  }
}

/* カードセクション */
.card-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.custom-card {
  background: var(--color-ui-primary);
  text-align: center;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  width: 33%;
  flex: 1 1 calc(33.333% - 40px);
  border: solid 1px var(--color-ui-quaternary);
  transition: filter 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-card:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.custom-card img {
  max-height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
  width: auto;
}

.custom-card h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.custom-card p {
  font-size: 0.9rem;
}

.card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* カラーパターン4（ナイト）の時の画像反転 */
body[data-color-pattern="4"] img.card-image {
  filter: invert(1) hue-rotate(180deg);
}

/* タブレットサイズ（768px〜1023px）でのカードレイアウト */
@media (max-width: 1023px) and (min-width: 768px) {
  .card-section {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .custom-card img {
    margin-bottom: 10px;
  }

  .custom-card h5 {
    margin-bottom: 5px;
  }

  .custom-card p {
    font-size: 0.8rem;
    margin-bottom: 0;
  }
}

/* 767px以下のタブレット・スマホサイズでのカードレイアウト */
@media (max-width: 767px) {
  .card-section {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 15px;
  }
  
  .custom-card {
    padding: 16px;
    flex-direction: row;
    position: relative;
    width: 100%;
  }
  
  .custom-card img {
    max-height: 60px;
    margin-bottom: 0;
    margin-right: 20px;
  }
  
  .card-text {
    align-items: flex-start;
    padding-right: 30px;
  }
  
  .custom-card h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .custom-card p {
    margin-bottom: 0;
  }
  
  .custom-card::after {
    content: "\e5cc";
    font-family: "Material Icons";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--color-ui-tertiary);
    flex-shrink: 0;
  }
}

@media (max-width: 450px) {
  .card-section {
    gap: 10px;
  }
  
  .custom-card {
    padding: 15px;
    flex-direction: row;
  }
  
  .custom-card img {
    max-height: 50px;
    margin-right: 15px;
  }
  
  .custom-card h5 {
    font-size: 1rem;
    margin-bottom: 3px;
  }
  
  .custom-card p {
    font-size: 0.8rem;
  }
  
  .custom-card::after {
    font-size: 24px;
  }
}


/* コイン履歴 */

.coin-history-list {
  display: flex;
  flex-direction: column;
  gap: 20px; /* 項目間のスペース */
}

.coin-history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid #5e5e5e;
}

.coin-history-item div:first-child {
  text-align: left;
}

.coin-history-item span {
  font-size: 90%;
  color: #5e5e5e;
}

/* コイン履歴がない場合の表示 */
.no-history-message {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--color-ui-quaternary);
  border-radius: 8px;
  margin: 20px 0;
}

.no-history-title {
  font-size: 18px;
  margin: 0 0 15px 0;
  color: var(--color-text-default);
}

.no-history-message p {
  font-size: 14px;
  color: var(--color-text-default);
  margin: 0;
}

.pagination {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.pagination .step-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination .step-links a {
  display: inline-block;
  margin: 0 5px;
  text-decoration: none;
  color: var(--color-text-default);
  padding: 8px 12px;
  border: 1px solid var(--color-ui-tertiary);
  border-radius: 4px;
  min-width: 40px;
  text-align: center;
}

.pagination .step-links a:hover {
  background-color: var(--color-ui-quaternary);
}

.pagination .pagination-current {
  display: inline-block;
  margin: 0 5px;
  font-weight: bold;
  background-color: var(--color-ui-secondary);
  color: var(--color-text-interactive);
  padding: 8px 12px;
  border-radius: 4px;
  min-width: 40px;
  text-align: center;
}

.pagination .pagination-ellipsis {
  margin: 0 5px;
  color: var(--color-text-default);
  min-width: 40px;
  display: inline-block;
}

/* ページネーションの表示制御 */
.pagination-mobile {
  display: none;
}

.pagination-desktop {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* 無効化されたナビゲーションボタン */
.pagination-nav.pagination-disabled {
  opacity: 0.4;
  cursor: default;
  border: 1px solid var(--color-ui-tertiary);
  border-radius: 4px;
  padding: 8px 12px;
  min-width: 40px;
  display: inline-block;
  margin: 0 5px;
  text-align: center;
  color: var(--color-text-default);
}

/* モバイル向けのページネーションスタイル調整 */
@media (max-width: 767px) {
  .pagination .step-links a {
    padding: 6px 10px;
    margin: 0 3px;
    min-width: 36px;
  }
  
  .pagination .pagination-current {
    padding: 6px 10px;
    margin: 0 3px;
    min-width: 36px;
  }
  
  .pagination .pagination-ellipsis {
    margin: 0 3px;
  }
  
  .pagination-nav.pagination-disabled {
    padding: 6px 10px;
    margin: 0 3px;
    min-width: 36px;
  }
}

/* 450px以下のスマホ表示向けのページネーション */
@media (max-width: 450px) {
  .pagination-desktop {
    display: none;
  }
  
  .pagination-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* スマホサイズ用にページネーションを少し大きく */
  .pagination .step-links a,
  .pagination .pagination-current,
  .pagination-nav.pagination-disabled {
    padding: 9px 13px;
    min-width: 40px;
    font-size: 16px;
  }
}


/* コイン購入 */

.attention-area {
  background-color: var(--color-ui-quaternary);
  border-radius: 12px;
  padding: 20px;
}

.attention-area h1 {
  font-size: 3rem;
}

.attention-area h5 {
  font-size: 1.2rem;
}


.coin-item img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.coin-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
}
.coin-item .custom-button {
  width: 120px;
}
.coin-item .coin-item-txt {
  font-size: 18px;
  font-weight: bold;
}


@media (max-width: 450px) {
  .attention-area h1 {
    font-size: 2.5rem;
  }

  .attention-area {
    font-size: 0.9rem;
  }
}


/* カード設定 */

.card-area {
  background-color: var(--color-ui-primary);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0 auto 20px;
  text-align: left;
  min-height: 255px;
  color: var(--color-text-default);
}

.card-area.registered {
  padding: 50px 30px;
  min-height: auto;
}
.card-area .no-card {
  max-width: 160px;
  margin-bottom: 20px;
}

body[data-color-pattern="4"] img.no-card{
  filter: invert(1) hue-rotate(180deg);
}

.card-brand {
  width: 50px;
  height: auto;
  margin-bottom: 15px;
}

.card-area h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.card-area p {
  margin: 0;
}


.mt-4 {
  margin-top: 20px;
}

.mt-2 {
  margin-top: 10px;
}

.registered-card-title {
  font-size: 18px;
}

.registered-card-description {
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--color-text-default) 60%, transparent);
}


/* 決済モーダル */
/* モーダルを画面中央に表示 */

.modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
  margin: 0.5rem auto;
  max-width: 500px;
  width: 90%;
}

.modal-content {
  width: 100%;
}

.modal.fade .modal-content {
  background-color: var(--color-modal-bg);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.modal.fade .modal-header {
  border-bottom: 1px solid color-mix(in srgb, var(--color-ui-tertiary) 30%, transparent);
  padding: 20px;
}
.modal.fade .modal-body {
  padding: 15px 20px 10px;
}
.modal.fade .modal-footer {
  border-top: 1px solid color-mix(in srgb, var(--color-ui-tertiary) 30%, transparent);
  padding: 15px 17px;
}

.modal.fade .btn-close:focus {
  box-shadow: none;
}

/* --color-ui-quaternary */


#card-number, #card-expiry, #card-cvc {
  padding: 16px;
  border: solid 1px color-mix(in srgb, var(--color-ui-tertiary) 30%, transparent);
  border-radius: 6px;
  background-color: var(--color-ui-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.card-label {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
  display: block;
  color: var(--color-text-default);
}

.StripeElement {
  color: var(--color-text-default);
}
.__PrivateStripeElement {
  color: var(--color-text-default);
}

/* カード登録モーダルのボタン */
#cardRegisterModal .modal-footer,
#purchaseModal .modal-footer {
  justify-content: space-between;
}

#cardRegisterModal .custom-button,
#purchaseModal .custom-button {
  min-width: 160px;
}

#cardRegisterModal .custom-button[data-bs-dismiss="modal"],
#purchaseModal .custom-button[data-bs-dismiss="modal"] {
  background-color: var(--color-ui-tertiary);
}

#cardRegisterModal .custom-button[data-bs-dismiss="modal"]:hover,
#purchaseModal .custom-button[data-bs-dismiss="modal"]:hover {
  background-color: color-mix(in srgb, var(--color-ui-tertiary) 90%, black);
}

#cardRegisterModal .custom-button[data-bs-dismiss="modal"]:active,
#purchaseModal .custom-button[data-bs-dismiss="modal"]:active {
  background-color: color-mix(in srgb, var(--color-ui-tertiary) 80%, black);
}

#cardRegisterModal #submit-button:hover,
#purchaseModal #submit-button:hover {
  opacity: 0.9;
}

#cardRegisterModal #submit-button:disabled,
#purchaseModal #submit-button:disabled {
  cursor: not-allowed;
}

#cardRegisterModal #card-errors,
#purchaseModal #card-errors {
  font-size: 14px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

@media (max-width: 450px) {
  .modal.fade .modal-body {
    padding: 10px 15px;
  }
  .modal.fade .modal-footer {
    padding: 13px 12px;
    flex-direction: column-reverse;
  }
  #cardRegisterModal .modal-footer,
  #purchaseModal .modal-footer {
    justify-content: center;
  }
  #cardRegisterModal .custom-button,
  #purchaseModal .custom-button {
    min-width: 100%;
    width: 100%;
    margin: 5px 0;
  }
  #cardRegisterModal #submit-button,
  #purchaseModal #submit-button {
    margin-bottom: 8px;
  }
}


/* ヘルプ */

/**
 help.html
*/


div.help {
  /* margin: 22px 0; */
}


div.help h3 {
  font-size: 18px;
  margin: 20px 0px 10px;
}
@media only screen and (min-width: 768px) {
  div.help h3 {
    font-size: 22px;
  }
}
div.help .help-box {
  width: auto;
  font-size: 0px;
}
div.help .top {
  border-top: solid 2px var(--color-ui-secondary);
}
div.help .help-box {
  width: auto;
  font-size: 0px;
  border-bottom: solid 2px var(--color-ui-secondary);
}
div.help .help-box label {
  width: auto;
  text-align: left;
  position: relative;
  display: block;
  padding: 9px 32px 9px 0px;
  cursor: pointer;
  background-color: var(--background-primary);
}
div.help .help-box label:after {
  font-family: "Material Icons";
  font-size: 26px;
  content: "\e145";
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  color: var(--color-ui-secondary);
}
div.help .help-box input {
  display: none;
}
div.help .help-box input:checked ~ label::after {
  font-family: "Material Icons";
  content: "\e15b";
}
div.help .help-box div {
  height: 0px;
  overflow: hidden;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
}
div.help .help-box input:checked ~ div.help-box-answer {
  height: auto;
  padding: 5px 0px;
}
div.help .question {
  padding: 4px 6px;
  border: 1px solid var(--color-ui-secondary);
  background-color: #ffffff;
  color: var(--color-ui-secondary);
  font-size: 17px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
div.help .question-title {
  font-size: 15px;
  margin: 0px 10px;
  display: inline-block;
  width: calc(100% - 50px);
  vertical-align: middle;
}
div.help .answer {
  padding: 4px 6.35px;
  border: 1px solid var(--color-ui-secondary);
  background-color: var(--color-ui-secondary);
  color: #ffffff;
  font-size: 16px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
div.help .answer-text {
  font-size: 14px;
  margin: 0px 10px;
  line-height: 1.5;
  display: inline-block;
  width: calc(100% - 50px);
  vertical-align: top;
}

div.help .custom-button {
  padding: 10px 10px;
}

@media only screen and (min-width: 768px) {
  div.help .help-box label:after {
    font-size: 28px;
  }
  div.help .question {
    font-size: 20px;
  }
  div.help .question-title {
    font-size: 18px;
    width: calc(100% - 60px);
  }
  div.help .answer {
    font-size: 20px;
  }
  div.help .answer-text {
    font-size: 14px;
    width: calc(100% - 60px);
  }
  div.help .custom-button {
    padding: 10px 100px;
  }
}


/**
 privacy
*/
div.inline-content {
  height: 47vh;
  overflow-y: scroll;
  background-color: var(--color-ui-primary);
  border: 1px solid var(--color-ui-quaternary);
  padding: 20px 15px;
  margin-bottom: 10px;
  color: var(--color-text-default);
}
div.inline-content.app {
  height: 100vh;
}
div.inline-content h3 {
  font-size: 18px;
  margin: 1rem 0;
}
div.inline-content h4 {
  font-size: 16px;
  margin: 1.3rem 0 0.5rem;
  font-weight: 600;
}
div.inline-content p {
  font-size: 12px;
  margin-bottom: 0;
}
div.inline-content li {
  font-size: 12px;
}
div.inline-content ol.parentheses {
  padding: 0 0 0 2.5em;
  margin: 0;
}
div.inline-content ol.parentheses li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
}
div.inline-content ol.parentheses li::before {
  margin-left: -1.3rem;
  content: "(" counter(cnt) ")";
}
div.inline-content ol.parentheses-accelfan {
  padding: 0 0 0 2.5em;
  margin: 0;
}
div.inline-content ol.parentheses-accelfan li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
}
div.inline-content ol.parentheses-accelfan li::before {
  margin-left: -1.3rem;
  content: "(" counter(cnt, lower-accelfan) ")";
}

/* 更新する利用規約・ポリシー用 */
div.inline-content ol.decimal-list {
  padding: 0 0 0 2.5em;
  margin: 0;
  counter-reset: decimal-cnt;
}
div.inline-content ol.decimal-list > li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: decimal-cnt;
}
div.inline-content ol.decimal-list > li::before {
  margin-left: -1.3rem;
  content: counter(decimal-cnt) ". ";
}
div.inline-content ol.decimal-list ol {
  padding: 0 0 0 2.5em;
  margin: 0;
  counter-reset: nested-cnt;
}
div.inline-content ol.decimal-list ol > li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: nested-cnt;
}
div.inline-content ol.decimal-list ol > li::before {
  margin-left: -1.3rem;
  content: "(" counter(nested-cnt) ")";
}

.wv-height {
  height: 100vh !important;
}

@media only screen and (min-width: 768px) {
  div.inline-content {
    height: calc( 100vh - 450px);
    padding: 40px 30px;
    margin-bottom: 30px;
  }
  div.inline-content h3 {
    font-size: 20px;
  }
  div.inline-content h4 {
    font-size: 16px;
  }
}
div.inline-content.terms {
  box-sizing: content-box;
}
@media only screen and (min-width: 768px) {
  div.inline-content.terms {
    height: calc(100vh - 350px);
    box-sizing: border-box;
  }
}

/* 特定商取引法ページ用スタイル */
div.commerce .inline-content {
  height: auto;
  max-height: 70vh;
}

div.commerce .content-type {
  position: relative;
  padding-left: 1.2em;
}

div.commerce .content-type::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--color-text-default);
}

div.commerce .add-space-below {
  margin-bottom: 0.7em;
}

@media only screen and (min-width: 768px) {
  div.commerce .inline-content {
    max-height: calc(100vh - 350px);
  }
}


/* コンタクト */
.contact_form-title {
  font-weight: bold;
}
.box-option {
  font-size: 14px;
}

/* ========================================
   ログイン画面スタイル
   ======================================== */

/* Chrome等でオートコンプリートされた際の色付きを上書き */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* ログイン画面の基本スタイル */
.login-page {
  background: linear-gradient(to bottom, #F5CB5C, #8A1C1F);
  position: relative;
}

.login-page::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.login-page header {
  display: none;
}

.login-page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.login-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.login-card {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 900px;
  display: flex;
  overflow: hidden;
}

.login-header {
  margin-bottom: 24px;
}

.login-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-text-default);
}

.login-form {
  padding: 60px 40px;
  width: 50%;
  position: relative;
  z-index: 1;
}

.form-field {
  margin-bottom: 20px;
}

.form-field input {
  width: 100%;
  padding: 12px;
  color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  font-size: 16px;
  background-color: transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-field input:focus {
  border: 1.5px solid rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
  outline: none;
}

.form-field input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}

.form-actions {
  margin-top: 30px;
}

.login-button {
  width: 100%;
  padding: 12px;
  background: var(--color-ui-secondary);
  color: var(--color-text-interactive);
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s;
  font-weight: bold;
}

.login-button:hover {
  opacity: 0.8;
}

.forgot-password {
  margin-top: 16px;
  text-align: center;
}

.forgot-password a {
  color: var(--color-text-default);
  text-decoration: underline;
  font-size: 14px;
  transition: color 0.3s, text-decoration 0.3s;
}

.forgot-password a:hover {
  text-decoration: none;
  color: var(--color-ui-secondary);
}

.registration-note {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}

.login-logo {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  position: relative;
}

.login-logo img {
  max-width: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(3px 5px 4px rgba(0, 0, 0, 0.3));
  object-fit: contain;
}

.login-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-store-badges {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.login-store-badge {
  height: 55px;
  width: auto;
}

.login-page main {
  margin-top: 0;
}

/* ========================================
   カラーパターン別スタイル
   ======================================== */

/* パターン0: サンド */
body.login-page[data-color-pattern="0"] {
  background: linear-gradient(to bottom, #F5CB5C, #A1824A);
}

/* パターン1: サンセット */
body.login-page[data-color-pattern="1"] {
  background: linear-gradient(to bottom, #FFB067, #D15402);
}

/* パターン2: オーシャン */
body.login-page[data-color-pattern="2"] {
  background: linear-gradient(to bottom, #7D9FD8, #263B58);
}

/* パターン3: フォレスト */
body.login-page[data-color-pattern="3"] {
  background: linear-gradient(to bottom, #66C294, #1D5E3A);
}

/* パターン4: ナイト */
body.login-page[data-color-pattern="4"] {
  background: linear-gradient(to bottom, #08ECE0, #0E8C81);
}

/* ナイトモード（カラーパターン4）のスタイル */
/* オートコンプリートのテキストカラー */
body.login-page[data-color-pattern="4"] input:-webkit-autofill,
body.login-page[data-color-pattern="4"] input:-webkit-autofill:hover,
body.login-page[data-color-pattern="4"] input:-webkit-autofill:focus,
body.login-page[data-color-pattern="4"] input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff !important;
}

/* login-cardの背景色 */
body.login-page[data-color-pattern="4"] .login-card {
  background-color: rgba(30, 30, 30, 0.7);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* フォームの色 */
body.login-page[data-color-pattern="4"] .form-field input {
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* フォームのフォーカス時の色 */
body.login-page[data-color-pattern="4"] .form-field input:focus {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* フォームのプレースホルダーの色 */
body.login-page[data-color-pattern="4"] .form-field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}


/* ロゴのドロップシャドウ */
body.login-page[data-color-pattern="4"] .login-logo img {
  filter: drop-shadow(3px 5px 4px rgba(0, 0, 0, 0.7));
}

/* カラーパターン4（ナイト）の時の暗いロゴ用のシャドウ */
body[data-color-pattern="4"] .login-logo img[src*="mimicreation_logo.png"],
body[data-color-pattern="4"] .login-logo img[src*="jomon_logo.png"] {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

body.login-page[data-color-pattern="4"] .registration-note {
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   レスポンシブデザイン
   ======================================== */

/* タブレットサイズ対応 (768px - 960px) */
@media (min-width: 768px) and (max-width: 960px) {
  .login-card {
    max-width: 90%;
    flex-direction: column-reverse;
  }
  
  .login-form, .login-logo {
    width: 100%;
    padding: 30px;
  }
  
  .login-logo {
    padding-bottom: 0;
    justify-content: center;
    height: 120px;
  }
  
  .login-logo img {
    max-width: 30%;
    max-height: 100%;
  }
  
  .login-form {
    padding-top: 20px;
  }
  
  .login-store-badges {
    justify-content: center;
    gap: 20px;
  }
}

/* スマホサイズ対応 (767px以下) */
@media (max-width: 767px) {
  .login-page main {
    margin-top: 80px;
  }

  .login-container {
    align-items: flex-start;
  }

  /* 背景色の変更 */
  .login-page {
    background: #FFFFFF;
  }
  
  .login-page::after {
    background-color: #ffffff;
  }
  
  /* カラーパターン4でもスマホ表示時は通常の色に戻す */
  body.login-page[data-color-pattern="4"] {
    background: #FFFFFF;
  }
  body.login-page[data-color-pattern="4"] .login-card {
    background-color: #FFFFFF;
    box-shadow: none;
  }
  body.login-page[data-color-pattern="4"] .login-title {
    color: rgba(0, 0, 0, 0.9);
  }
  body.login-page[data-color-pattern="4"] .form-field input {
    color: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #F8F8F8;
  }
  body.login-page[data-color-pattern="4"] .form-field input:focus {
    border: 1.5px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
  }
  body.login-page[data-color-pattern="4"] .form-field input::placeholder {
    color: rgba(0, 0, 0, 0.5);
  }
  body.login-page[data-color-pattern="4"] .forgot-password a {
    color: rgba(0, 0, 0, 0.8);
  }
  body.login-page[data-color-pattern="4"] .registration-note {
    color: rgba(0, 0, 0, 0.6);
  }
  body.login-page[data-color-pattern="4"] .login-logo img {
    filter: drop-shadow(3px 5px 4px rgba(0, 0, 0, 0.3));
  }
  
  body.login-page[data-color-pattern="4"] input:-webkit-autofill,
  body.login-page[data-color-pattern="4"] input:-webkit-autofill:hover,
  body.login-page[data-color-pattern="4"] input:-webkit-autofill:focus,
  body.login-page[data-color-pattern="4"] input:-webkit-autofill:active {
    -webkit-text-fill-color: #000 !important;
  }
  
  /* カードデザインの変更 */
  .login-card {
    flex-direction: column;
    background-color: #FFFFFF;
    box-shadow: none;
    max-width: 100%;
    border-radius: 0;
  }
  
  .login-form, .login-logo {
    width: 100%;
    padding: 20px;
  }
  
  .login-logo {
    order: -1;
    padding: 30px 20px 10px;
    height: 120px;
  }
  
  .login-logo img {
    max-width: 25%;
    max-height: 100%;
  }
  
  .login-form {
    padding: 20px 40px 40px 40px;
  }
  
  .login-title {
    font-size: 20px;
  }
  
  .form-field input {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #F8F8F8;
  }
  
  .login-button {
    padding: 14px;
  }

  .login-store-badges {
    justify-content: center;
    gap: 20px;
  }
}


@media (max-width: 450px) {
  .login-store-badge {
    height: 50px;
  }
  .login-logo {
    height: 110px;
  }
  .login-logo img {
    max-width: 37%;
    max-height: 100%;
  }
}

@media (max-width: 400px) {
  .login-store-badge {
    height: 45px;
  }
}

@media (max-width: 380px) {
  .login-store-badge {
    height: 40px;
  }
}

@media (max-width: 350px) {
  .login-form {
    padding: 10px 30px 30px 30px;
  }
}

/* 縦幅が狭い端末向けの調整 */
@media (max-height: 700px) {
  .login-form {
    padding: 30px 40px;
  }
  
  .login-logo {
    padding: 30px 40px;
    height: auto;
  }
  
  .form-field {
    margin-bottom: 15px;
  }
  
  .login-header {
    margin-bottom: 15px;
  }
}

/* さらに縦幅が狭い端末向けの調整 */
@media (max-height: 600px) {
  .login-logo {
    padding: 20px 40px;
  }
}



/* ヒーローセクション */
.hero-section {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
}

.hero-download .app-buttons {
  justify-content: flex-start;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 300px;
}

.phone-mockup-container {
  position: relative;
  perspective: 1000px;
  margin-top: 20px;
}

.phone-mockup {
  width: 240px;
  height: 480px;
  background-color: #333;
  border-radius: 34px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  border: 12px solid #444;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: all 0.5s ease;
  overflow: hidden;
}

.phone-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.phone-mockup-secondary {
  width: 200px;
  height: 400px;
  background-color: #333;
  border-radius: 34px;
  position: absolute;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 12px solid #444;
  top: 60px;
  left: -80px;
  z-index: -1;
  transform: rotateY(-15deg) rotateX(10deg);
  opacity: 0.8;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  max-width: 100%;
  max-height: 480px;
}

.phone-mockup-secondary .mockup-image {
  max-height: 400px;
}

.feature-indicator {
  position: absolute;
  z-index: 5;
}

.feature-text {
  background-color: color-mix(in srgb, var(--color-ui-quaternary) 95%, transparent);
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-default);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  /* animation: bobbing 3s ease-in-out infinite; */
}

.feature-1 {
  top: 30px;
  right: -100px;
  animation-delay: 0s;
}

.feature-2 {
  bottom: 150px;
  right: -70px;
  animation-delay: 1.5s;
}

.feature-3 {
  top: 140px;
  left: -110px;
  animation-delay: 0.8s;
}

@keyframes bobbing {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(1deg);
  }
  75% {
    transform: translateY(5px) rotate(-1deg);
  }
}


/* ヒーローセクションのPC/SP表示切り替え */
.pc-download {
  display: block;
}

.sp-download {
  display: none;
  margin-top: 30px;
  width: 100%;
  text-align: center;
}


/* aboutページ */
.features-section {
  background-color: var(--background-primary);
}

.about-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--color-text-default);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  text-align: left;
  display: inline-block;
}

.about-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-ui-secondary);
}

/* メインタイトルのスタイル */
.main-title {
  font-size: 55px;
  margin-bottom: 20px;
}

.main-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-ui-secondary);
}

.main-about-section {
  max-width: 800px;
  margin: 0px auto 10px;
}

.sub-lead {
  font-size: 18px;
  opacity: 0.95;
}

.main-lead {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-text-default);
}

/* カード要素 */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 60px;
}

/* 共通カードスタイル */
.feature-card {
  background-color: var(--color-ui-primary);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--color-ui-quaternary);
}

/* サイドナンバーカードスタイル */
.side-number-card {
  display: flex;
}

.side-number {
  min-width: 60px;
  background: var(--color-ui-secondary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

.side-content {
  padding: 25px;
  flex: 1;
}

.side-content h3 {
  font-size: 18px;
  font-weight: bold;
  color: color-mix(in srgb, var(--color-text-default) 90%, transparent);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
  display: inline-block;
}

.side-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-ui-secondary);
}

.side-content p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--color-text-default) 70%, transparent);
  margin-bottom: 0;
}

/* 大きな特徴セクション */
.feature-large {
  margin-bottom: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 60px;
}

.feature-large:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature-large-image {
  margin-bottom: 30px;
  margin-top: 20px;
}

.feature-large-image img {
  width: 70%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.feature-large-content h3 {
  font-size: 24px;
  font-weight: bold;
  color: color-mix(in srgb, var(--color-text-default) 95%, transparent);
  margin-bottom: 15px;
  text-align: left;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}

.feature-large-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-ui-secondary);
}

.feature-large-content p {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--color-text-default) 90%, transparent);
  margin-bottom: 12px;
}

.feature-large-content p:last-child {
  margin-bottom: 0;
}

/* テキストハイライト用のスタイル */
.highlight-text {
  background: linear-gradient(transparent 60%, rgba(161, 130, 74, 0.3) 40%);
  font-weight: bolder;
}

/* カラーパターン別のハイライトスタイル */
/* パターン1: サンセット */
body[data-color-pattern="1"] .highlight-text {
  background: linear-gradient(transparent 60%, rgba(249, 115, 22, 0.3) 40%);
}

/* パターン2: オーシャン */
body[data-color-pattern="2"] .highlight-text {
  background: linear-gradient(transparent 60%, rgba(74, 111, 165, 0.3) 40%);
}

/* パターン3: フォレスト */
body[data-color-pattern="3"] .highlight-text {
  background: linear-gradient(transparent 60%, rgba(46, 139, 87, 0.3) 40%);
}

/* パターン4: ナイト */
body[data-color-pattern="4"] .highlight-text {
  background: linear-gradient(transparent 60%, rgba(18, 191, 175, 0.3) 40%);
}

.about-content strong,
.feature-large-content strong,
.feature-card strong {
  color: var(--color-ui-secondary);
}


@media (max-width: 1024px) {
  .main-lead {
    font-size: 17px;
  }

  .sub-lead {
    font-size: 16px;
  }

  .about-title {
    font-size: 24px;
  }

  .main-title {
    font-size: 45px;
  }

  .side-content h3 {
    font-size: 16px;
  }

  .side-content p {
    font-size: 13px;
  }
}


@media (max-width: 991px) and (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  
  .phone-mockup {
    width: 200px;
    height: 400px;
    border-radius: 34px;
  }
  
  .phone-mockup-secondary {
    width: 160px;
    height: 320px;
    left: -30px;
    border-radius: 34px;
  }
  
  .feature-text {
    font-size: 12px;
    padding: 8px 12px;
  }
  
  .feature-1 {
    right: -90px;
  }
  .feature-3 {
    left: -80px;
  }
}


@media (max-width: 860px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero-section {
    margin-bottom: 40px;
  }
  .hero-content {
    flex-direction: column;
    gap: 0;
  }
  
  .hero-text {
    order: 1;
    text-align: center;
  }
  
  .hero-text .about-title, 
  .hero-text .main-lead,
  .hero-text .sub-lead {
    text-align: center;
  }
  
  .hero-text .about-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .pc-download {
    display: none;
  }
  
  .sp-download {
    display: block;
  }
  
  .hero-download .app-buttons {
    justify-content: center;
  }
  
  .hero-image {
    order: 2;
    margin-bottom: 0;
  }
  
  .phone-mockup {
    width: 200px;
    height: 400px;
    border-radius: 34px;
  }
  
  .phone-mockup-secondary {
    width: 160px;
    height: 320px;
    left: -30px;
    border-radius: 34px;
  }
  
  .feature-text {
    font-size: 12px;
    padding: 8px 12px;
  }

  .about-section {
    flex-direction: column;
  }

  .about-title {
    font-size: 24px;
  }
  
  .main-title {
    font-size: 35px;
    margin-bottom: 30px;
  }
  
  .feature-large-content h3 {
    font-size: 20px;
  }
  
  .feature-large-content p {
    font-size: 15px;
  }
  
  .about-title:after {
    height: 2px;
  }
  
  .main-title:after {
    height: 3px;
  }
  
  .main-about-section {
    margin-bottom: 40px;
  }
  
  .feature-cards {
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .feature-large {
    margin-bottom: 50px;
    padding-bottom: 40px;
  }
  
  .feature-large-image {
    margin-bottom: 20px;
  }

  .side-content {
    padding: 20px 15px;
  }
}


@media (max-width: 450px) {
  .phone-mockup {
    width: 180px;
    height: 360px;
  }
  
  .phone-mockup-secondary {
    width: 140px;
    height: 280px;
    left: -40px;
  }

  .feature-1 {
    right: -90px;
  }

  .feature-2 {
    right: -65px;
  }

  .feature-3 {
    left: -95px;
  }
  
  .feature-text {
    font-size: 10px;
    padding: 6px 10px;
  }

  .feature-large {
    padding-bottom: 30px;
    margin-bottom: 50px;
  }

  .feature-large-image img {
    width: 100%;
  }

  .main-lead {
    font-size: 16px;
  }

  .sub-lead {
    font-size: 14px;
  }

  .about-section {
    margin-bottom: 10px;
  }

  .about-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .main-title {
    font-size: 35px;
  }

  .side-content {
    padding: 15px 10px;
  }

  .feature-card h3 {
    font-size: 14px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .feature-large-content h3 {
    font-size: 18px;
  }

  .feature-large-content p {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .feature-large-image {
    margin-top: 10px;
  }
}

@media (max-width: 400px) {
  .feature-3 {
    left: -45px;
    top: 170px;
  }

  .feature-2 {
    bottom: 120px;
  }
  
  .feature-1 {
    right: -55px;
  }
}

/* Topページのアプリダウンロードセクション */
.app-download-container {
  margin: 30px 0 0 0;
  max-width: 600px;
}

.app-download-container .download-text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--color-text-default);
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.app-btn {
  display: inline-block;
  margin: 0 5px;
}

.app-store-badge, .google-play-badge {
  max-height: 50px;
  width: auto;
}

@media (max-width: 767px) {
  .app-download-container {
    margin: 70px auto 40px;
  }
  
  .app-download-container .download-text {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .app-buttons {
    gap: 15px;
  }
  
  .app-store-badge, .google-play-badge {
    max-height: 45px;
  }
}

@media (max-width: 450px) {  
  .app-download-container .download-text {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .app-store-badge, .google-play-badge {
    max-height: 40px;
  }
}



/* コミュニケーションアプリセクションのスタイル */
.communication-app-section {
  margin-bottom: 180px;
}

.section-heading-container {
  text-align: center;
}

.section-heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
  color: var(--color-text-default);
}

.section-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-ui-secondary);
}

.communication-app-lead {
  margin-bottom: 60px;
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--color-text-default) 75%, transparent);
}

.app-feature-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.app-feature-item {
  width: 30%;
  text-align: center;
}

.feature-image-container {
  margin-bottom: 32px;
  justify-content: center;
  display: flex;
}

.feature-image {
  width: 55%;
}

.feature-title {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 16px;
}

.feature-description {
  font-size: 14px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--color-text-default) 75%, transparent);
}

/* 新しいスマートフォンモックアップのスタイル - コミュニケーションアプリセクション用 */
.phone-mockup-container-small {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.phone-mockup-small {
  width: 150px;
  height: 250px;
  background-color: #333;
  border-radius: 30px 30px 0 0;
  border: 8px solid #444;
  border-bottom: none;
  overflow: hidden;
}

.mockup-image-small {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .section-heading {
      font-size: 35px;
  }

  .communication-app-lead {
      font-size: 17px;
  }
}

/* レスポンシブ対応 */
@media (max-width: 810px) {
  .app-feature-row {
      flex-direction: column;
  }
  
  .app-feature-item {
      width: 100%;
      margin-bottom: 60px;
  }

  .feature-image {
      width: 45%;
  }
  
  .phone-mockup-small {
      width: 300px;
      height: 500px;
      border: 12px solid #222;
      border-bottom: none;
      border-radius: 46px 46px 0 0;
  }


}

@media (max-width: 767px) {
  .section-heading {
      font-size: 30px;
  }
}

@media (max-width: 450px) {
  .phone-mockup-small {
      width: 165px;
      height: 240px;
      border-radius: 26px 26px 0 0;
      border: 10px solid #222;
      border-bottom: none;
  }
}




/* サブスクリプションセクションのスタイル */
.subscription-section {
  margin-bottom: 180px;
}

.subscription-lead {
  margin-bottom: 60px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-default);
}

.subscription-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* カードスタイル設定 - no-card クラスを追加するとカードを非表示にする */
.subscription-card-container {
  display: flex;
  background: var(--color-ui-primary);
  border-radius: 16px;
  align-items: stretch;
}

/* PC表示・モバイル表示の切り替え */
.mobile-title-section {
  display: none;
}

.phone-mockup-container-subscription {
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: center;
}

.phone-mockup-subscription {
  width: 240px;
  height: 500px;
  background-color: #333;
  border-radius: 33px;
  border: 10px solid #444;
}

.phone-screen-subscription {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.mockup-image-subscription {
  width: 100%;
}

.phone-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  display: block;
}

.subscription-features {
  flex: 0 0 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.desktop-subscription-title, .subscription-title {
  font-size: 46px;
  font-weight: bold;
  color: var(--color-ui-secondary);
  margin-bottom: 5%;
  text-align: center;
}

.desktop-subscription-desc, .subscription-desc {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--color-text-default) 85%, transparent);
  margin-bottom: 5%;
  text-align: center;
  font-weight: bold;
}

.price-label {
  background-color: var(--color-ui-secondary);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  border-radius: 4px 4px 0 0;
}

.price-amount {
  background-color: color-mix(in srgb, var(--color-ui-quaternary) 45%, transparent);
  text-align: center;
  padding: 20px;
  font-size: 40px;
  font-weight: bold;
  color: var(--color-ui-secondary);
  border-radius: 0 0 4px 4px;
}

.price-unit {
  font-size: 18px;
  margin-left: 5px;
}

.feature-list {
  margin-bottom: 5%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 3%;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  width: 30px;
  height: 30px;
  background-color: color-mix(in srgb, var(--color-ui-secondary) 85%, transparent);
  border-radius: 4px;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon:after {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 2px;
}

.feature-list-text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
}

/* カードスタイル解除用のクラス */
.subscription-card-container.no-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

/* レスポンシブ対応 */
@media (max-width: 810px) {
  .communication-app-section {
      margin-bottom: 80px;
  }

  .subscription-section {
      margin-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .subscription-card-container {
      flex-direction: column;
  }
  
  .mobile-title-section {
      display: block;
      padding: 25px 20px 0;
  }
  
  .desktop-subscription-title,
  .desktop-subscription-desc {
      display: none;
  }
  
  .phone-mockup-container-subscription {
      padding: 15px;
  }
  
  /* モバイル表示では上半分だけ表示 */
  .phone-mockup-subscription {
      width: 200px;
      height: 250px; 
      border-radius: 34px 34px 0 0;
      border-bottom: none;
  }
  
  .phone-screen-subscription {
      border-radius: 24px 24px 0 0;
  }
  
  .subscription-features {
      padding: 0 20px 30px 20px;
      flex: none;
  }
  
  .feature-list {
      padding-top: 30px;
  }
  
  .feature-list-text {
      font-size: 16px;
  }
  
  .price-amount {
      font-size: 32px;
  }
}

@media (max-width: 450px) {
  .phone-mockup-subscription {
      width: 180px;
      height: 280px;
  }

  .communication-app-lead {
      font-size: 16px;
  }
}





/* フッターアプリダウンロードセクション */
.footer-app-download-section {
  background-color: var(--color-ui-primary);
  padding: 80px 0;
  margin-top: 60px;
}

.footer-app-download-section .container {
  text-align: center;
}

.footer-download {
  margin: 0 auto;
}

.footer-download-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--color-text-default);
}

.footer-download .download-text {
  font-size: 22px;
  margin-bottom: 30px;
}

/* レスポンシブ調整 */
@media (max-width: 767px) {
  .footer-app-download-section {
      padding: 60px 0;
  }
  
  .footer-download-title {
      font-size: 28px;
  }
  
  .footer-download .download-text {
      font-size: 18px;
  }
}

@media (max-width: 450px) {
  .footer-app-download-section {
      padding: 40px 0;
  }
  
  .footer-download-title {
      font-size: 22px;
  }
  
  .footer-download .download-text {
      font-size: 15px;
  }
}

@media (max-width: 350px) {
  .footer-download-title {
      font-size: 20px;
  }

  .footer-download .download-text {
      font-size: 14px;
  }
}