@charset "UTF-8";
/*!
Theme Name: RecoveryStory
Theme URI: https://recoverystory.com
Description: RecoveryStory リニューアルプロジェクト カスタムテーマ
Author: NoNameProject株式会社
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: recoverystory
*/
/**
 * Entry SCSS
 * 
 * SCSSファイル構成:
 * 1. Variables - 変数定義
 * 2. Mixins - mixin定義
 * 3. Base - ベーススタイル
 * 4. Components - 共通コンポーネント
 * 5. Layout - レイアウト
 * 6. Pages - ページ固有スタイル
 */
/**
 * Variables
 * 
 * 変数定義（色、フォント、スペーシング、ブレークポイント）
 * 
 * 単位の使い分け（ハイブリッド方式）:
 * - rem使用: フォントサイズ、スペーシング（マージン、パディング）
 * - px使用: ボーダー、影、ブレークポイント
 * - 基準値: html { font-size: 62.5%; } により、1rem = 10px として計算
 * - 計算方法: デザインカンプのpx値を10で割るとrem値になる（例: 24px → 2.4rem）
 */
/*!
Theme Name: RecoveryStory
Theme URI: https://recoverystory.com
Description: RecoveryStory リニューアルプロジェクト カスタムテーマ
Author: NoNameProject株式会社
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: recoverystory
*/
/**
 * Entry SCSS
 * 
 * SCSSファイル構成:
 * 1. Variables - 変数定義
 * 2. Mixins - mixin定義
 * 3. Base - ベーススタイル
 * 4. Components - 共通コンポーネント
 * 5. Layout - レイアウト
 * 6. Pages - ページ固有スタイル
 */
/**
 * Mixins
 * 
 * 共通スタイルをmixin化
 */
/**
 * 適所指定用
 */
/**
 * スマートフォン表示（768px未満）
 */
/**
 * タブレット表示（768px未満）
 */
/**
 * PC表示（1024px未満）
 */
/**
 * 大画面PC表示（1440px未満）
 */
/**
 * ボタン基本スタイル
 */
/**
 * プライマリボタン
 */
/**
 * セカンダリボタン
 */
/**
 * リンク基本スタイル
 */
/**
 * 外部リンクスタイル
 */
/**
 * タグ基本スタイル
 */
/**
 * タグフィルタースタイル（選択可能）
 */
/**
 * グラデーションテキスト
 */
/**
 * テキストの省略表示（1行）
 */
/**
 * テキストの省略表示（複数行）
 * @param {number} $lines - 表示する行数
 */
/**
 * アスペクト比の維持
 * @param {number} $width - 幅の比率
 * @param {number} $height - 高さの比率
 */
/**
 * 画像のオブジェクトフィット
 */
/**
 * 中央配置（flexbox）
 */
/**
 * 絶対配置で中央配置
 */
/*!
Theme Name: RecoveryStory
Theme URI: https://recoverystory.com
Description: RecoveryStory リニューアルプロジェクト カスタムテーマ
Author: NoNameProject株式会社
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: recoverystory
*/
/**
 * Entry SCSS
 * 
 * SCSSファイル構成:
 * 1. Variables - 変数定義
 * 2. Mixins - mixin定義
 * 3. Base - ベーススタイル
 * 4. Components - 共通コンポーネント
 * 5. Layout - レイアウト
 * 6. Pages - ページ固有スタイル
 */
/**
 * Base Styles
 * 
 * ベーススタイル（リセット、タイポグラフィ等）
 */
/**
 * rem基準値の設定
 * 1rem = 10px として計算しやすくする
 */
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * body基本スタイル
 */
body {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.87);
  animation: bg_anime 10s ease infinite;
  background: center/cover fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.lang-en {
  font-family: "Rounded Mplus 1c", sans-serif;
}
body::before, body::after {
  content: "";
  position: fixed;
  top: 0;
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
}
body::before {
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../images/common/bg-vector1-pc.svg");
}
@media (max-width: 768px) {
  body::before {
    background-image: url("../images/common/bg-vector1-sp.svg");
  }
}
body::after {
  right: 0;
  width: 100%;
  height: 50vh;
  background-image: url("../images/common/bg-vector2-pc.svg");
  background-position: right;
}
@media (max-width: 768px) {
  body::after {
    height: 30vh;
    background-image: url("../images/common/bg-vector2-sp.svg");
  }
}

@keyframes bg_anime {
  0% {
    background-image: url(../images/common/bg-main1-sp.png);
  }
  40% {
    background-image: url(../images/common/bg-main1-sp.png);
  }
  50% {
    background-image: url(../images/common/bg-main2-sp.png);
  }
  90% {
    background-image: url(../images/common/bg-main2-sp.png);
  }
  100% {
    background-image: url(../images/common/bg-main1-sp.png);
  }
}
@media (min-width: 960px) {
  @keyframes bg_anime {
    0% {
      background-image: url(../images/common/bg-main1-pc.png);
    }
    40% {
      background-image: url(../images/common/bg-main1-pc.png);
    }
    50% {
      background-image: url(../images/common/bg-main2-pc.png);
    }
    90% {
      background-image: url(../images/common/bg-main2-pc.png);
    }
    100% {
      background-image: url(../images/common/bg-main1-pc.png);
    }
  }
}
.pc-dn {
  display: none;
}

@media (max-width: 767px) {
  .pc-dn {
    display: block;
  }
}
.sp-dn {
  display: block;
}

@media (max-width: 767px) {
  .sp-dn {
    display: none;
  }
}
/**
 * 見出し
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.4;
}

/**
 * 段落
 */
p {
  margin: 0;
}

/**
 * リンク
 */
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  filter: brightness(1.2);
}

/**
 * リスト
 */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/**
 * 画像
 */
img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  object-fit: cover;
}

/**
 * ボタン
 */
button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

/**
 * フォーム要素
 */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/*!
Theme Name: RecoveryStory
Theme URI: https://recoverystory.com
Description: RecoveryStory リニューアルプロジェクト カスタムテーマ
Author: NoNameProject株式会社
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: recoverystory
*/
/**
 * Entry SCSS
 * 
 * SCSSファイル構成:
 * 1. Variables - 変数定義
 * 2. Mixins - mixin定義
 * 3. Base - ベーススタイル
 * 4. Components - 共通コンポーネント
 * 5. Layout - レイアウト
 * 6. Pages - ページ固有スタイル
 */
/**
 * Components
 * 
 * 共通コンポーネントのスタイル
 */
.archive-pagination {
  margin-top: 4.8rem;
}
.archive-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.archive-pagination li .archive-pagination__page,
.archive-pagination li .archive-pagination__current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  border: 1px solid #424242;
  border-radius: 0.4rem;
  background: transparent;
}
.archive-pagination li .archive-pagination__current {
  background-color: #000;
  color: #ffffff;
  border-color: #000;
}
.archive-pagination li .archive-pagination__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  border: 1px solid #424242;
  border-radius: 0.4rem;
  background: transparent;
  cursor: default;
  pointer-events: none;
}
.archive-pagination li .archive-pagination__prev,
.archive-pagination li .archive-pagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid #000000;
  border-radius: 0.4rem;
  background: transparent;
  transition: all 0.3s ease;
}
.archive-pagination li .archive-pagination__prev svg,
.archive-pagination li .archive-pagination__next svg {
  width: 0.6rem;
  height: 1.1rem;
}
.archive-pagination li .archive-pagination__prev:hover,
.archive-pagination li .archive-pagination__next:hover {
  background: #f5f5f5;
}
.archive-pagination li .archive-pagination__prev--disabled,
.archive-pagination li .archive-pagination__next--disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(0, 0, 0, 0.54);
  border-radius: 0.4rem;
  background: rgba(0, 0, 0, 0.54);
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.archive-pagination li .archive-pagination__prev--disabled svg,
.archive-pagination li .archive-pagination__next--disabled svg {
  width: 0.6rem;
  height: 1.1rem;
}

.section-title {
  margin-bottom: 4.8rem;
  font-family: "Jost", sans-serif;
  font-size: 6.4rem;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 3.2rem;
    margin-bottom: 2.4rem;
  }
}

.lower-page__title {
  margin-bottom: 4.8rem;
  font-family: "Jost", sans-serif;
  font-size: 8.8rem;
}
@media (max-width: 767px) {
  .lower-page__title {
    font-size: 4rem;
    margin-bottom: 2.4rem;
  }
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.6rem;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.08rem;
}
.btn-view-more__icon {
  position: relative;
  width: 4.8rem;
  height: 4.8rem;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.87);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.btn-view-more__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 47%;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.87);
  border-right: 1px solid rgba(0, 0, 0, 0.87);
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (max-width: 767px) {
  .btn-view-more__icon {
    width: 3.2rem;
    height: 3.2rem;
  }
  .btn-view-more__icon::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.btn-view-more:hover > .btn-view-more__icon {
  transform: scale(1.1);
}

.personality-group {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 3.2rem 2.4rem;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .personality-group {
    padding: 2.4rem 1.6rem;
  }
}

.personality-group + .personality-group {
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .personality-group + .personality-group {
    margin-top: 2.4rem;
  }
}

.personality-group__title {
  font-size: 2.4rem;
  margin-bottom: 2.8rem;
}
@media (max-width: 767px) {
  .personality-group__title {
    font-size: 2rem;
  }
}

.personality-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  align-items: stretch;
}
.personality-cards > li {
  width: 28.8rem;
}
@media (max-width: 667px) {
  .personality-cards > li {
    width: 100%;
  }
}
.personality-cards > li > a {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 13px;
}

.personality-card-horizontal__image {
  flex-shrink: 0;
  width: 11.8rem;
  aspect-ratio: 1;
  border-radius: 13px;
  overflow: hidden;
}

.personality-card-horizontal__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem 1.6rem 1.6rem 1.2rem;
}

.personality-card-horizontal__position {
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.personality-card-horizontal__name {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  align-items: stretch;
}

.story-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: 22.2rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(150px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .story-card {
    width: 100%;
  }
}
.story-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.6rem;
}

@media (max-width: 767px) {
  .top-story .story-card {
    width: 22.2rem;
  }
}

.story-card__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1.3rem;
  overflow: hidden;
  margin-bottom: 0.8rem;
  background: #dedede;
}

.story-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.8rem;
}

.story-card__number {
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  line-height: 1.3;
}

.story-card__title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
}

.story-card__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.story-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.54);
  border-radius: 800px;
  font-size: 1.1rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.54);
  text-decoration: none;
  transition: all 0.3s ease;
}

.story-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.story-card__personality {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.story-card__personality-image {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f5f5f5;
}

.story-card__personality-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
}

.story-card__date {
  font-family: "Jost", sans-serif;
}

.search-form {
  position: relative;
  width: 100%;
}

.search-form__input {
  width: 100%;
  height: 2.8rem;
  padding: 0 3.2rem 0 1.2rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid white;
  border-radius: 1.6rem;
  font-size: 1.2rem;
}
.search-form__input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.search-form__input:focus {
  outline: none;
}

.search-form__button {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  padding: 0.4rem;
  cursor: pointer;
}
.search-form__button > svg {
  width: 100%;
  height: 100%;
  display: block;
}

/*!
Theme Name: RecoveryStory
Theme URI: https://recoverystory.com
Description: RecoveryStory リニューアルプロジェクト カスタムテーマ
Author: NoNameProject株式会社
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: recoverystory
*/
/**
 * Entry SCSS
 * 
 * SCSSファイル構成:
 * 1. Variables - 変数定義
 * 2. Mixins - mixin定義
 * 3. Base - ベーススタイル
 * 4. Components - 共通コンポーネント
 * 5. Layout - レイアウト
 * 6. Pages - ページ固有スタイル
 */
/**
 * Layout
 * 
 * レイアウト（ヘッダー、フッター、サイドバー等）
 */
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

.has-sidebar .site-main {
  margin-left: 25rem;
}
@media (max-width: 1024px) {
  .has-sidebar .site-main {
    margin-left: 0;
    margin-top: 6.4rem;
  }
}

.main-inner {
  width: 100%;
  max-width: 102rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .main-inner {
    max-width: none;
  }
}

.lower-page .main-inner {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .lower-page .main-inner {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}

.container {
  padding-left: 3rem;
  padding-right: 3rem;
}

.site-header {
  padding: 1.6rem 0;
  background: #ffffff;
}
@media (max-width: 767px) {
  .site-header {
    padding: 0.8rem 0;
  }
}

.site-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .site-header__inner {
    padding: 0 1.6rem;
  }
}

.site-header__logo {
  font-size: 2.4rem;
  font-weight: 700;
}
.site-header__logo a {
  display: block;
}

.sp-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6.4rem;
  background-color: #f5f5f5;
  z-index: calc(2000 + 1);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(-100%);
  opacity: 0;
}
@media (max-width: 1024px) {
  .sp-header {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }
}
.home .sp-header {
  transform: translateY(-100%);
  opacity: 0;
}
.home .sp-header.is-visible {
  transform: translateY(0);
  opacity: 1;
}
body:not(.home) .sp-header {
  transform: translateY(0);
  opacity: 1;
}

.sp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.5rem;
}

.sp-header__logo img {
  height: 2.7rem;
  width: auto;
}

.sp-header__controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.sp-header__lang {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sp-header__lang-item {
  padding: 0 1.2rem;
}

.sp-header__lang-text {
  font-size: 1.4rem;
  line-height: 1;
}
.sp-header__lang-text.is-active {
  position: relative;
}
.sp-header__lang-text.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.2rem;
  transform: translateX(-50%);
  width: 1.6rem;
  height: 0.1rem;
  background: rgba(0, 0, 0, 0.87);
}

.sp-header__lang-divider {
  width: 0.1rem;
  height: 1.6rem;
  background: rgba(0, 0, 0, 0.87);
  transform: rotate(90deg);
}

.sp-header__menu-toggle {
  width: 1.6rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}
.sp-header__menu-toggle .hamburger-line {
  display: block;
  width: 100%;
  height: 0.1rem;
  background: rgba(0, 0, 0, 0.87);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.sp-header__menu-toggle.is-open .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.sp-header__menu-toggle.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.sp-header__menu-toggle.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.sp-menu__bg {
  position: absolute;
  inset: 0;
  background: url("../images/common/sp-menu-bg.jpg") center/cover no-repeat;
  z-index: -1;
}

.sp-menu__container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
  animation: bg_anime 10s ease infinite;
}
.sp-menu.is-open .sp-menu__container {
  transform: translateY(0);
}

.sp-menu__nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 12rem 3rem 4rem;
  min-height: calc(100vh - 6.4rem);
}

.sp-menu__main-nav {
  display: flex;
  flex-direction: column;
}
.sp-menu__main-nav a {
  display: block;
  padding: 1.6rem 0;
  font-family: "Jost", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.sp-menu__footer {
  display: flex;
  flex-direction: column;
}

.sp-menu__sns {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.sp-menu__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  padding: 1.2rem;
}

.sp-menu__footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.6rem;
}
.sp-menu__footer-nav > a {
  display: block;
  width: 100%;
  padding: 0.8rem 0;
  font-size: 1.1rem;
}

.sp-menu__search {
  margin-bottom: 3.2rem;
}

.sp-menu__copyright {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  text-align: center;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}
.has-sidebar .site-footer {
  margin-left: 25rem;
}
@media (max-width: 1024px) {
  .has-sidebar .site-footer {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.8rem;
}
@media (max-width: 767px) {
  .site-footer__inner {
    gap: 2.4rem;
  }
}

.site-footer__logo {
  max-width: 28.2rem;
}
@media (max-width: 767px) {
  .site-footer__logo {
    width: 14.2rem;
  }
}

.site-footer__copyright {
  font-size: 1.1rem;
  text-align: center;
}

.g-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 25rem;
  height: 100vh;
  display: flex;
}
@media (max-width: 1024px) {
  .g-nav {
    display: none;
  }
}

.g-nav__left {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 7.2rem 1rem 4.2rem;
}

.g-nav__lang {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.g-nav__lang-item {
  position: relative;
}
.g-nav__lang-item > a {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.g-nav__lang-item > a:hover {
  opacity: 0.5;
}
.g-nav__lang-item > a.is-active {
  font-weight: 500;
}
.g-nav__lang-item > a:not(.is-active)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.6rem;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
}

.g-nav__lang-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
}

.g-nav__sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
}

.g-nav__sns-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.g-nav__sns-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
}
.g-nav__sns-list > li > a:hover {
  opacity: 0.5;
}

.g-nav__right {
  width: 20.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7.2rem 1.6rem 4.2rem;
}

.g-nav__logo {
  width: 100%;
  padding: 0 1.6rem;
}
.g-nav__logo > a {
  display: block;
}

.g-nav__main-list {
  display: flex;
  flex-direction: column;
}
.g-nav__main-list > li > a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.6rem;
  font-family: "Jost", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.024rem;
}
.g-nav__main-list > li > a:hover {
  opacity: 0.5;
}

.g-nav__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
}

.g-nav__footer-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.g-nav__footer-list > li > a {
  display: block;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  line-height: 1;
}
.g-nav__footer-list > li > a:hover {
  opacity: 0.5;
}

.g-nav__search {
  display: flex;
  align-items: center;
  position: relative;
}

.g-nav__search-input {
  flex: 1;
  height: 2.8rem;
  padding: 0 4rem 0 1.6rem;
  border: 1px solid #ffffff;
  border-radius: 1.6rem;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
}
.g-nav__search-input:focus {
  outline: none;
  border-color: #ffffff;
}
.g-nav__search-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.g-nav__search-input::-webkit-search-cancel-button {
  display: none;
}

.g-nav__search-button {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
}
.g-nav__search-button > svg {
  width: 100%;
}

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

.g-nav__lang-text.no-translation,
.sp-header__lang-text.no-translation {
  opacity: 0.3;
  cursor: not-allowed;
}
.g-nav__lang-text.no-translation:hover,
.sp-header__lang-text.no-translation:hover {
  filter: none;
}

/*!
Theme Name: RecoveryStory
Theme URI: https://recoverystory.com
Description: RecoveryStory リニューアルプロジェクト カスタムテーマ
Author: NoNameProject株式会社
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: recoverystory
*/
/**
 * Entry SCSS
 * 
 * SCSSファイル構成:
 * 1. Variables - 変数定義
 * 2. Mixins - mixin定義
 * 3. Base - ベーススタイル
 * 4. Components - 共通コンポーネント
 * 5. Layout - レイアウト
 * 6. Pages - ページ固有スタイル
 */
/**
 * Pages
 * 
 * ページ固有のスタイル
 */
.top-kv {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.top-kv__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 81.5rem;
}

.top-kv__logo {
  width: 28.2rem;
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .top-kv__logo {
    width: 18.8rem;
  }
}
.top-kv__logo > img {
  display: block;
}

.top-kv__title {
  margin-bottom: 1.2rem;
  text-align: center;
  background: linear-gradient(90deg, #feac5e 0%, #c779d0 50%, #4bc0c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2rem, 2.777777vw, 4rem);
  line-height: 1.3;
}

.top-kv__description {
  text-align: center;
  font-size: 1.4rem;
  line-height: 2;
  color: rgba(0, 0, 0, 0.54);
}

.top-kv__scroll-btn {
  display: block;
  position: absolute;
  right: 3.2rem;
  bottom: 3.2rem;
  width: 12rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .top-kv__scroll-btn {
    right: 1.6rem;
    bottom: 1.6rem;
  }
}
.top-kv__scroll-btn:hover {
  transform: translateY(4px);
}
.top-kv__scroll-btn:focus {
  outline: 2px solid #c779d0;
  outline-offset: 2px;
}

.top-big-carousel {
  position: relative;
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .top-big-carousel {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}

.top-big-carousel__content {
  display: flex;
  justify-content: space-between;
  position: relative;
  border-radius: 16px;
  border: 1px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .top-big-carousel__content {
    flex-direction: column-reverse;
  }
}

.top-big-carousel__text-area {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10.7rem 2.4rem 3.2rem;
}
@media (max-width: 768px) {
  .top-big-carousel__text-area {
    padding: 2.4rem 1.6rem;
    width: 100%;
  }
}

.top-big-carousel__text-list {
  flex: 1;
}
.top-big-carousel__text-list > li {
  display: none;
  height: 100%;
}
.top-big-carousel__text-list > li.is-active {
  display: flex;
  flex-direction: column;
}

.big-carousel-item__position {
  min-height: 1.7rem;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .big-carousel-item__position {
    margin-bottom: 0.4rem;
  }
}

.big-carousel-item__name {
  min-height: 15.4rem;
  margin-bottom: 1.6rem;
  font-size: 5.6rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .big-carousel-item__name {
    min-height: auto;
    font-size: 3.2rem;
  }
}
.big-carousel-item__name > a {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}
.big-carousel-item__name > a:hover {
  opacity: 0.5;
}

.big-carousel-item__quote {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  min-height: 6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.4rem;
  line-height: 1.4;
}
.big-carousel-item__quote > a {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}
.big-carousel-item__quote > a:hover {
  opacity: 0.5;
}

.top-big-carousel__controls {
  display: flex;
  gap: 1.2rem;
  margin-top: auto;
}
@media (max-width: 767px) {
  .top-big-carousel__controls {
    justify-content: space-between;
    gap: unset;
  }
}

.carousel-btn {
  position: relative;
  width: 4.8rem;
  height: 4.8rem;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.87);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.carousel-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.87);
  border-right: 1px solid rgba(0, 0, 0, 0.87);
}
.carousel-btn.carousel-btn--prev::before {
  left: 53%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.carousel-btn.carousel-btn--next::before {
  left: 47%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.carousel-btn:hover {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .carousel-btn {
    width: 5rem;
    height: 5rem;
  }
}

.top-big-carousel__image-list {
  width: 48.75%;
  aspect-ratio: calc(468 / 586);
}
@supports not (aspect-ratio: 1/1) {
  .top-big-carousel__image-list::before {
    content: "";
    display: block;
    padding-top: calc(586 / 468 * 100%);
  }
}
.top-big-carousel__image-list {
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
  overflow: hidden;
  position: relative;
  border-radius: 26px;
}
@media (max-width: 768px) {
  .top-big-carousel__image-list {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}

.top-big-carousel__image-list > li {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 16px;
  pointer-events: none;
}
.top-big-carousel__image-list > li.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.top-big-carousel__image-list > li > a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.top-big-carousel__image-list > li > a:hover {
  filter: brightness(1.1);
}

.top-personality {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .top-personality {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}

.top-personality__more {
  margin-top: 4.8rem;
  text-align: right;
}

.top-story {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .top-story {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}
@media (max-width: 1270px) {
  .top-story.container {
    padding-right: 0;
  }
}
.top-story .story-grid {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  padding: 0.4rem 0;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.top-story .story-grid::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1270px) {
  .top-story .story-grid {
    padding-right: 3rem;
  }
}
.top-story .story-card {
  scroll-snap-align: start;
}

.top-story__more {
  margin-top: 4.8rem;
  text-align: right;
}
@media (max-width: 1270px) {
  .top-story__more {
    margin-right: 3rem;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.54);
  border-radius: 800px;
  font-size: 1.1rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.54);
  text-decoration: none;
  transition: all 0.3s ease;
}

.archive-personality__hero,
.archive-story__hero {
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .archive-personality__hero,
  .archive-story__hero {
    margin-bottom: 2.4rem;
  }
}
.archive-personality__filter,
.archive-story__filter {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  max-height: 3.2rem;
}
.archive-personality__filter.is-expanded,
.archive-story__filter.is-expanded {
  max-height: none;
}
.archive-personality__no-results,
.archive-story__no-results {
  text-align: center;
  padding: 12rem 0;
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.54);
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2.4rem;
  border: 1px solid rgba(0, 0, 0, 0.87);
  border-radius: 800px;
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter-btn:hover {
  background: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.87);
}
.filter-btn.is-active {
  background: rgba(0, 0, 0, 0.87);
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.87);
}

.archive-filter__view-more {
  display: none;
  margin-top: 1.6rem;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.87);
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
}
.archive-filter__view-more:hover {
  opacity: 0.5;
}

.personality-hero {
  margin-bottom: 1.6rem;
}
.personality-hero__card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 2.4rem 4.8rem 2.4rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .personality-hero__card {
    flex-direction: column;
    gap: 1.6rem;
    padding: 1.6rem 1.6rem 2.4rem;
  }
}
.personality-hero__image {
  width: 30.7rem;
}
@media (max-width: 767px) {
  .personality-hero__image {
    width: 100%;
  }
}
.personality-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  min-height: 100%;
}
@media (max-width: 767px) {
  .personality-hero__content {
    width: 100%;
    min-height: auto;
    gap: 2.4rem;
  }
}
.personality-hero__name-play {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: auto;
  margin-bottom: auto;
}
.personality-hero__name-play-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.personality-hero__position {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .personality-hero__position {
    margin-bottom: 0.4rem;
  }
}
.personality-hero__name {
  font-size: 5.6rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .personality-hero__name {
    font-size: 2.8rem;
  }
}
.personality-hero__play-btn {
  width: 6.4rem;
  height: 6.4rem;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.personality-hero__play-btn:hover {
  transform: scale(1.05);
}
.personality-hero__play-btn > svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .personality-hero__play-btn {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.personality-hero__distributor-links {
  display: flex;
  gap: 2rem;
}
.personality-hero__distributor-links .distributor-link {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.personality-bio {
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .personality-bio {
    margin-bottom: 2.4rem;
  }
}
.personality-bio__content {
  font-size: 1.4rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.personality-bio__content.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}
.personality-bio__content a {
  color: #0073e6;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.personality-bio__content a:hover {
  opacity: 0.8;
}
.personality-bio__read-more {
  display: none;
  margin-top: 0.4rem;
  margin-left: auto;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: right;
  cursor: pointer;
  font-family: "Jost", sans-serif;
}
.personality-bio__read-more.is-visible {
  display: block;
}
.personality-bio__read-more:hover {
  opacity: 0.7;
}

.personality-episodes__no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 0;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.54);
}

.story-header {
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .story-header {
    margin-bottom: 2.4rem;
  }
}
.story-header__title {
  margin-bottom: 4.8rem;
  font-size: 4rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .story-header__title {
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
  }
}
.story-header__meta {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .story-header__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.story-header__personality {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.story-header__personality-image {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #f5f5f5;
}
.story-header__personality-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1.1rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.54);
}
.story-header__date {
  font-family: "Jost", sans-serif;
}
.story-header__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.story-header__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2.4rem;
  border: 1px solid rgba(0, 0, 0, 0.87);
  border-radius: 800px;
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.story-header__tag:hover {
  background: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.87);
}
.story-header__tag.is-active {
  background: rgba(0, 0, 0, 0.87);
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.87);
}
.story-header__distributors {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.story-header__distributors .distributor-link {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.story-header__distributors .distributor-link:hover {
  opacity: 0.7;
}

.story-player {
  margin-bottom: 1.6rem;
}
.story-player__wrapper {
  padding: 1.6rem;
  background-color: rgb(28, 28, 30);
  border-radius: 16px;
}
.story-player__wrapper iframe {
  display: block;
  width: 59.4rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .story-player__wrapper iframe {
    width: 100%;
  }
}

.story-description {
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .story-description {
    margin-bottom: 2.4rem;
  }
}
.story-description__content {
  font-size: 1.4rem;
  line-height: 1.6;
}
.story-description__content a {
  color: #0073e6;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.story-description__content a:hover {
  opacity: 0.8;
}

.story-chapters__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid #ffffff;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.story-chapters__title:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.story-chapters__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
}
.story-chapters__toggle svg {
  transition: transform 0.3s ease;
}
.story-chapters__content {
  display: none;
  overflow: hidden;
  margin-top: 1.6rem;
  padding: 3rem 4rem;
  border: 1px solid #ffffff;
  border-radius: 4px;
  font-size: 1.4rem;
  background-color: rgba(255, 255, 255, 0.5);
}
.story-chapters__content.is-expanded {
  display: block;
}
@media (max-width: 767px) {
  .story-chapters__content {
    padding: 1.2rem 2rem;
  }
}

.story-related {
  margin-top: 12rem;
}
@media (max-width: 767px) {
  .story-related {
    margin-top: 4.8rem;
  }
}

.legal-page {
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .legal-page {
    padding: 8rem 0;
  }
}
.legal-page__inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 767px) {
  .legal-page__inner {
    padding: 0 1.6rem;
  }
}
.legal-page__title {
  margin-bottom: 8rem;
  text-align: center;
  font-size: 4rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .legal-page__title {
    margin-bottom: 4rem;
    font-size: 2.4rem;
  }
}
.legal-page__intro {
  margin-bottom: 8rem;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .legal-page__intro {
    margin-bottom: 4rem;
  }
}

.legal-section {
  font-size: 1.4rem;
}
.legal-section + .legal-section {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .legal-section + .legal-section {
    margin-top: 4rem;
  }
}
.legal-section__title {
  font-size: 2rem;
  margin-bottom: 2.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.87);
}
.legal-section p {
  margin-bottom: 1.6rem;
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-section a {
  color: #0073e6;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.legal-section a:hover {
  opacity: 0.8;
}
.legal-section a::after {
  content: "↗";
  margin-left: 0.4rem;
  font-size: 0.8rem;
}
.legal-section__subtitle {
  margin: 4rem 0 2.4rem 0;
}
@media (max-width: 767px) {
  .legal-section__subtitle {
    margin: 2.4rem 0 1.6rem 0;
  }
}
.legal-section__list {
  list-style-type: decimal;
  padding-left: 2rem;
}
.legal-section__list > li {
  margin-bottom: 1.6rem;
  counter-increment: legal-counter;
}
.legal-section__list > li:last-child {
  margin-bottom: 0;
}
.legal-section__list--inner-list {
  margin-top: 0.8rem;
  padding-left: 2rem;
  text-indent: -2rem;
  counter-reset: cnt 0;
  list-style-type: none;
}
@media (max-width: 767px) {
  .legal-section__list--inner-list {
    padding-left: 1.6rem;
    text-indent: -1.6rem;
  }
}
.legal-section__list--inner-list > li {
  margin-bottom: 0.8rem;
}
.legal-section__list--inner-list > li::before {
  content: "(" counter(cnt) ") ";
  counter-increment: cnt 1;
}
.legal-section__list ol {
  margin-top: 0.8rem;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .legal-section__list ol {
    padding-left: 1.6rem;
  }
}
.legal-section__list ol li {
  margin-bottom: 0.8rem;
}
.legal-section__list--abc {
  margin-top: 0.8rem;
  list-style-type: lower-alpha;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .legal-section__list--abc {
    padding-left: 1.6rem;
  }
}
.legal-section__list--abc li {
  margin-bottom: 0.8rem;
}
.legal-section__list--abc li:last-child {
  margin-bottom: 0;
}
.legal-section__table-wrap {
  margin: 2.4rem 0;
}
@media (max-width: 767px) {
  .legal-section__table-wrap {
    margin: 1.6rem 0;
    overflow-x: auto;
  }
}
.legal-section__table-name {
  margin: 0 0 1.6rem 0;
}
.legal-section__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 2.4rem 0;
}
@media (max-width: 767px) {
  .legal-section__table {
    margin-bottom: 1.6rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.legal-section__table th,
.legal-section__table td {
  padding: 0.8rem 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  vertical-align: top;
}
.legal-section__table th {
  background: #f5f5f5;
  font-weight: 500;
}
.legal-section__footer-text {
  text-align: right;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .legal-section__footer-text {
    margin-top: 2.4rem;
  }
}

.legal-contact {
  background: #f5f5f5;
  border-radius: 13px;
  padding: 2.4rem;
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .legal-contact {
    padding: 1.6rem;
  }
}
.legal-contact__company {
  margin: 0 0 0.8rem 0;
}
.legal-contact__item {
  margin: 0;
}

/*# sourceMappingURL=style.css.map */
