@charset "UTF-8";

/* 基本設定 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #333333;
}

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

img {
  max-width: 100%;
}

.text-blue {
  color: #0C83AB;
  font-weight: 700;
}

.text-yellow {
  color: #FAF94A;
  font-weight: 700;
}

.text-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}

.sp-only {
  display: none;
}

.no-wrap {
  display: inline-block;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  .text-underline {
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/* ヘッダー */
.header {
  background: #ffffff;
  box-shadow: 0 0 10px 0 rgba(29, 71, 99, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.hamburger-menu {
  display: none;
}

.header-container {
  max-width: 1232px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: #1d4763;
}

.logo a:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  gap: 40px;
}

.nav-list a {
  font-size: 14px;
}

.nav-list a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #0C83AB;
  font-weight: 600;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #0C83AB, #278ada);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-list a:hover::after {
  width: 100%;
}

.header-cta-button a {
  background: linear-gradient(to right, #278ada, #00bfca);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 10px 0 rgba(29, 71, 99, 0.15);
}

.header-cta-button a:hover {
  background: linear-gradient(to right, #1f7bc8, #00a8b3);
  box-shadow: 0 0px 10px rgba(39, 138, 218, 0.3);
}

@media (max-width: 1024px) {
  .nav {
    gap: 20px;
  }

  .nav-list {
    gap: 20px;
  }

  .header-cta-button a {
    padding: 12px;
  }
}

@media (max-width: 860px) {
  .header-container {
    height: 56px;
  }

  .logo h1 {
    font-size: 18px;
  }

  /* ハンバーガーメニュー */
  .hamburger-menu {
    display: block;
    width: 26px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0C83AB;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hamburger-menu span:nth-child(1) {
    top: 0;
  }

  .hamburger-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburger-menu span:nth-child(3) {
    bottom: 0;
  }

  .hamburger-menu.active span {
    background: #ffffff;
  }

  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(-50%) ;
    top: 50%;
  }

  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(50%);
    bottom: 50%;
  }

  /* ナビゲーション（SP版ではモバイルナビゲーションとして表示） */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(115deg, #278ADA 0%, #00BFCA 100%);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    align-items: stretch;
  }

  .nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav::before {
    content: '統計コーチング';
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
  }

  .nav-list {
    flex: 1;
    padding: 104px 36px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding: 26px 10px;
    position: relative;
  }

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

  .nav-list a {
    color: #ffffff;
    font-size: 16px;
    display: block;
  }

  .nav-list a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 1px solid #ffffff;
    border-top: 1px solid #ffffff;
    left: auto;
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(45deg);
    background: none;
    transition: none;
    border-radius: 0;
  }

  .nav-list a:hover {
    color: #ffffff;
    font-weight: 400;
  }

  .nav-list a:hover::after {
    width: 8px;
  }

  .header-cta-button {
    padding: 0 24px 40px;
  }

  .header-cta-button a {
    background: #ffffff;
    color: #278ADA;
    padding: 16px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
  }

  .header-cta-button a span {
    background: linear-gradient(90deg, #278ADA 0%, #00BFCA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .header-cta-button a:hover {
    background: #f5f5f5;
  }
}
  

/* MV */
.mv {
  padding-top: 72px;
  position: relative;
  background: url(../img/mv-bg-pc.jpg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.mv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/mv-shapes.png) no-repeat center bottom;
  background-size: contain;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mv-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  max-width: 2448px;
  width: calc(1248 / 1600 * 100%);
  padding: min(calc(35vw / 16), 70px) min(calc(24vw / 16), 48px);
  overflow: hidden;
}

.mv-content {
  width: 50%;
}

.mv-catch {
  background: #0C83AB;
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  padding: min(calc(2vw / 16), 4px) min(calc(43vw / 16), 86px);
  border-radius: min(calc(23vw / 16), 46px);
  font-size: min(calc(26vw / 16), 52px);
  margin-bottom: min(calc(4vw / 16), 8px);
}

.mv-title {
  font-weight: 700;
  line-height: 1.4;
  color: #1D4763;
  font-size: min(calc(57vw / 16), 114px);
  margin-bottom: min(calc(36vw / 16), 72px);
}

.mv-title-catch {
  font-size: min(calc(38vw / 16), 76px);
}

.mv-description {
  line-height: 1.85;
  color: #1D4763;
  text-shadow: 2px 2px 10px #ffffff, -2px -2px 10px #ffffff, 2px -2px 10px #ffffff, -2px 2px 10px #ffffff;
  font-size: min(calc(16vw / 16), 32px);
  margin-bottom: min(calc(40vw / 16), 80px);
}

.mv-cta {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: min(calc(384vw / 16), 768px);
}

.mv-cta::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: #ffffff;
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}

.mv-cta-catch {
  font-weight: 700;
  color: #1D4763;
  font-size: min(calc(16vw / 16), 32px);
  margin-bottom: min(calc(8vw / 16), 16px);
}

.mv-cta-button {
  background: linear-gradient(to right, #278ada, #00bfca);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 0 10px 0 rgba(29, 71, 99, 0.15);
  transition: all 0.3s ease;
  display: block;
  padding: min(calc(18vw / 16), 36px) min(calc(40vw / 16), 80px);
  border-radius: min(calc(5vw / 16), 10px);
  font-size: min(calc(21vw / 16), 42px);
  margin-bottom: min(calc(8vw / 16), 16px);
}

.mv-cta-button:hover {
  background: linear-gradient(to right, #1f7bc8, #00a8b3);
  box-shadow: 0 0px 10px rgba(39, 138, 218, 0.3);
}

.mv-cta-notice {
  font-size: min(calc(12vw / 16), 24px);
  color: #999999;
  text-align: center;
  line-height: 1.6;
}

.mv-image {
  width: calc(708 / 1200 * 100%);
  margin-right: calc(-98 / 1200 * 100%);
}

@media (max-width: 1200px) {
  .mv-container {
    width: 100%;
    padding: calc(35vw / 12) calc(24vw / 12);
  }

  .mv-catch {
    padding: calc(2vw / 12) calc(43vw / 12);
    border-radius: calc(23vw / 12);
    font-size: calc(26vw / 12);
    margin-bottom: calc(4vw / 12);
  }
  
  .mv-title {
    font-size: calc(57vw / 12);
    margin-bottom: calc(36vw / 12);
  }
  
  .mv-title-catch {
    font-size: calc(37vw / 12);
  }
  
  .mv-description {
    font-size: max(calc(16vw / 12), 12px);
    margin-bottom: calc(40vw / 12);
  }

  .mv-cta {
    max-width: max(calc(384vw / 12), 260px);
    margin-top: calc(74vw / 12);
  }

  .mv-cta-catch {
    font-size: max(calc(16vw / 12), 12px);
    margin-bottom: calc(8vw / 12);
  }

  .mv-cta-button {
    padding: calc(18vw / 12) calc(40vw / 12);
    border-radius: calc(5vw / 12);
    font-size: max(calc(21vw / 12), 14px);
    margin-bottom: calc(8vw / 12);
  }
  
  .mv-cta-notice {
    font-size: max(calc(12vw / 12), 9px);
  }
}

@media (max-width: 768px) {
  /* 追従ボタン */
  .floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .floating-cta a {
    display: block;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 0 10px 0 rgba(29, 71, 99, 0.15);
    background: linear-gradient(to right, #84beec, #44dbe4);
  }

  .floating-cta.show {
    transform: translateY(0);
  }
}

@media (max-width: 601px) {
  .mv {
    padding-top: 56px;
    background: url(../img/mv-bg-sp.jpg) no-repeat center bottom;
    background-size: contain;
  }

  .mv::before {
    background: url(../img/mv-shapes-sp.png) no-repeat center bottom;
    background-size: contain;
  }

  .mv-container {
    padding: 40px 24px 54px;
    flex-direction: column;
  }

  .mv-content {
    width: 100%;
  }

  .mv-catch {
    width: 100%;
    text-align: center;
    padding: calc(2vw / 3.75) calc(10vw / 3.75);
    font-size: calc(15vw / 3.75);
    margin-bottom: calc(3vw / 3.75);
    border-radius: calc(14vw / 3.75);
  }

  .mv-title {
    font-size: calc(32vw / 3.75);
    margin-bottom: calc(30vw / 3.75);
  }

  .mv-title-catch {
    font-size: calc(21vw / 3.75);
  }

  .mv-description {
    font-size: calc(13vw / 3.75);
    margin-bottom: calc(40vw / 3.75);
  }

  .mv-cta {
    text-align: center;
    margin-bottom: calc(48vw / 3.75);
    max-width: 100%;
  }

  .mv-cta::before {
    display: none;
  }

  .mv-cta-catch {
    font-size: calc(14vw / 3.75);
    margin-bottom: calc(10vw / 3.75);
  }

  .mv-cta-button {
    padding: calc(16vw / 3.75) calc(20vw / 3.75);
    font-size: calc(18vw / 3.75);
    margin-bottom: calc(2vw / 3.75);
  }

  .mv-cta-notice {
    font-size: calc(12vw / 3.75);
  }

  .mv-image {
    width: calc(256 / 327 * 100%);
    margin-left: auto;
    margin-right: 0;
  }
}

/* セクション共通 */
.section {
  padding: 100px 0;
}

.section-container {
  max-width: 1032px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title-en {
  position: relative;
}

.section-title-en-text {
  font-family: 'Akshar', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #0C83AB;
  position: relative;
  z-index: 1;
}

.section-title-en svg {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title {
  font-size: 44px;
  font-weight: 700;
  color: #1D4763;
}

@media (max-width: 1024px) {
  .section-header {
    margin-bottom: 24px;
  }

  .section-title-en-text {
    font-size: 20px;
  }

  .section-title-en svg {
    width: 60px;
    height: 54px;
  }
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 76px 0 60px;
  }

  .section-title-en {
    margin-bottom: 5px;
  }

  .section-title-en-text {
    font-size: 18px;
  }

  .section-title-en svg {
    width: 60px;
    height: 54px;
  }

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

/* お悩み */
.concerns {
  background: url(../img/concerns-bg-pc.jpg) no-repeat center center;
  background-size: cover;
  padding: 60px 0 80px;
}

.concerns-wrapper {
  background: #ffffff;
  max-width: 760px;
  margin: 0 auto 64px;
  border-radius: 5px;
  padding: 60px 80px;
  filter: drop-shadow(0 0 10px rgba(29, 71, 99, 0.15));
  position: relative;
}

.concerns-wrapper:after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 28px solid #fff;
}

.concerns-title {
  font-size: 36px;
  font-weight: 700;
  color: #0C83AB;
  margin-bottom: 36px;
  text-align: center;
}

.concerns-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 20px;
}

.concerns-list li:last-child {
  margin-bottom: 0;
}

.concerns-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icon-check.svg) no-repeat center center;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.concerns-image {
  max-width: 168px;
  position: absolute;
  bottom: -39px;
  right: 25px;
}

.concerns-message {
  text-align: center;
  font-size: 18px;
  line-height: 1.85;
}

@media (max-width: 768px) {
  .concerns {
    background: url(../img/concerns-bg-sp.jpg) no-repeat center center;
    background-size: cover;
    padding: 60px 0;
  }

  .concerns-wrapper {
    padding: 36px 16px 40px;
    margin-bottom: 40px;
  }

  .concerns-wrapper::after {
    bottom: -16px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #ffffff;
  }

  .concerns-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .concerns-list li {
    padding-left: 28px;
    margin-bottom: 16px;
  }

  .concerns-list li::before {
    top: 0;
    transform: none;
    width: 22px;
    height: 22px;
  }

  .concerns-image {
    bottom: -32px;
    right: 4px;
    max-width: 89px;
  }

  .concerns-message {
    font-size: 14px;
    text-align: left;
  }
}

/* 統計学習の課題 */
.challenges {
  padding: 80px 060px;
}

.challenge-top {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}

.challenge-text {
  flex: 1;
}

.challenge-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 28px;
}

.challenge-description {
  line-height: 1.85;
}

.challenge-image {
  width: 30%;
}

/* つまづきに気づけません */
.challenge-bottom .challenge-title {
  margin-bottom: 4px;
}

.issues-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 40px;
}

.issues-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.issue-item {
  border-radius: 5px;
  padding: 20px;
  font-weight: 600;
  color: #0C83AB;
  text-align: center;
  position: relative;
  box-shadow: 0 0 10px 0 rgba(29, 71, 99, 0.15);
}

.issue-item::before,
.issue-item::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 12px;
}

.issue-item::before {
  background: url(../img/challenges-quote-left.svg) no-repeat center center;
  top: 12px;
  left: 12px;
}

.issue-item::after {
  background: url(../img/challenges-quote-right.svg) no-repeat center center;
  bottom: 12px;
  right: 12px;
}

.challenge-message {
  line-height: 1.85;
}

@media (max-width: 1024px) {
  .challenge-title {
    font-size: 24px;
  }

  .issue-item {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .challenges {
    padding: 66px 0 60px;
  }

  .challenge-top {
    flex-direction: column;
    gap: 28px;
  }

  .challenge-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .challenge-image {
    width: 100%;
    text-align: center;
  }

  .challenge-image img {
    max-width: 200px;
  }

  .challenge-bottom .challenge-title {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .issues-wrapper {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
    align-items: stretch;
  }

  .issues-grid {
    gap: 13px;
    margin-top: 0;
  }

  .issue-item {
    padding: 14px;
    font-size: 12px;
  }

  .issue-item::before {
    top: 4px;
    left: 8px;
  }

  .issue-item::after {
    bottom: 4px;
    right: 8px;
  }
}

/* コーチングの特徴 */
.coaching-features {
  background: linear-gradient(115deg, #00BFCA 0.6%, #278ADA 100%);
  padding: 180px 0 80px;
  position: relative;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.coaching-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 100px solid #ffffff;
}

.coaching-features .section-container {
  position: relative;
}

.coaching-features .section-container:before {
  content: '';
  position: absolute;
  bottom: 126px;
  left: -220px;
  width: 142px;
  height: 198px;
  background: url(../img/features-shapes-left.svg) no-repeat center center;
  background-size: contain;
}

.coaching-features .section-container:after {
  content: '';
  position: absolute;
  top: 18px;
  right: -124px;
  width: 145px;
  height: 249px;
  background: url(../img/features-shapes-right.svg) no-repeat center center;
  background-size: contain;
}

.features-top {
  margin-bottom: 100px;
}

.features-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.features-list {
  display: flex;
  max-width: 760px;
  margin: 0 auto 40px;
  gap: 50px;
}

.feature-item {
  flex: 1;
  filter: drop-shadow(0 0 10px rgba(29, 71, 99, 0.15));
}

.feature-item-content {
  clip-path: polygon(25px 0, 100% 0, 100% 100%, 0 100%, 0 25px);
  background: #ffffff;
  padding: 20px;
}

.feature-item-icon {
  width: 90px;
  margin: 0 auto 4px;
}

.feature-item-text {
  color: #333333;
}

.features-message {
  font-size: 20px;
  line-height: 1.85;
  color: #ffffff;
}

.features-bottom .features-title {
  margin-bottom: 24px;
}

.features-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.features-image {
  width: 30%;
}

.features-description {
  flex: 1;
  text-align: left;
  line-height: 1.85;
}

@media (max-width: 1280px) {
  .coaching-features .section-container:before,
  .coaching-features .section-container:after {
    display: none;
  }
}

@media (max-width: 1024px) {
  .features-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .coaching-features {
    padding: 90px 0 60px;
  }

  .coaching-features::before {
    border-top: 40px solid #ffffff;
  }

  .features-top {
    margin-bottom: 60px;
  }

  .features-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .features-list {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .feature-item-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 4px 32px;
    clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
  }

  .feature-item-icon {
    width: 60px;
    margin: 0;
  }

  .feature-item-icon img {
    vertical-align: middle;
  }

  .feature-item-text {
    text-align: left;
  }

  .features-message {
    font-size: 14px;
    text-align: left;
  }

  .features-content {
    flex-direction: column;
    gap: 28px;
  }

  .features-bottom .features-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .features-image {
    width: 100%;
    text-align: center;
  }

 .features-image img {
    max-width: 200px;
  }
}

/* 統計コーチングが選ばれる理由 */
.reasons .section-header {
  margin-bottom: 80px;
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

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

.reason-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.reason-content {
  flex: 1;
}

.reason-top {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 16px;
}

.reason-number {
  text-align: center;
  position: relative;
  color: #0C83AB;
  font-family: 'Akshar', sans-serif;
  font-weight: 600;
}

.reason-number::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  background: #0C83AB;
}

.reason-label {
  display: block;
  font-size: 20px;
}

.reason-number-text {
  display: block;
  font-size: 72px;
  line-height: 1;
  margin-top: -4px;
  letter-spacing: -0.02em;
}

.reason-subtitle {
  flex: 1;
  font-size: 28px;
  font-weight: 700;
  color: #0C83AB;
}

.reason-description {
  line-height: 1.85;
}

.reason-illustration {
  width: 30%;
}

.reason-illustration img {
  vertical-align: middle;
}

@media (max-width: 1024px) {
  .reason-label {
    font-size: 16px;
  }

  .reason-number-text {
    font-size: 60px;
  }

  .reason-subtitle {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .reasons .section-header {
    margin-bottom: 48px;
  }

  .reason-item {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
  }

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

  .reason-item:nth-child(odd) {
    flex-direction: column;
  }

  .reason-top {
    gap: 24px;
    margin-bottom: 20px;
  }

  .reason-number::after {
    right: -14px;
    height: 100%;
  }

  .reason-label {
    font-size: 12px;
    font-weight: 400;
  }

  .reason-number-text {
    font-size: 32px;
  }

  .reason-subtitle {
    font-size: 20px;
    line-height: 1.4;
  }

  .reason-description {
    font-size: 14px;
  }

  .reason-illustration {
    width: 100%;
    text-align: center;
  }

  .reason-illustration img {
    max-width: 200px;
  }
}

/* CTA */
.cta {
  background: url(../img/cta-bg-pc.jpg) no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 38px;
}

.cta-catch {
  margin-bottom: 4px;
}

.cta-button-wrapper {
  margin-bottom: 4px;
}

.cta-button {
  display: inline-block;
  background: #FAF94A;
  color: #1D4763;
  padding: 20px 40px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 0 16px 0 rgba(29, 71, 99, 0.40);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #dedd29;
}

.cta-notice {
  font-size: 12px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cta {
    background: url(../img/cta-bg-sp.jpg) no-repeat center center;
    background-size: cover;
    padding: 50px 0 40px;
  }

  .cta-title {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .cta-catch {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .cta-button-wrapper {
    margin-bottom: 12px;
  }

  .cta-button {
    width: 100%;
    max-width: 303px;
    padding: 16px 20px;
    font-size: 18px;
  }
}

/* 他の学習法との比較 */
.comparison {
  overflow-x: hidden;
}

.comparison .section-container {
  position: relative;
}

.comparison .section-container::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -166px;
  width: 117px;
  height: 200px;
  background: url(../img/comparison-shapes-right.svg) no-repeat center center;
  background-size: contain;
}

.comparison .section-container::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -200px;
  width: 121px;
  height: 168px;
  background: url(../img/comparison-shapes-left.svg) no-repeat center center;
  background-size: contain;
}

.comparison-intro {
  text-align: center;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 60px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.comparison-table th {
  background: #767676;
  color: #ffffff;
  padding: 11px 20px;
  font-weight: 700;
  width: 25%;
}

.comparison-table th:first-child {
  background: #ffffff;
}

.comparison-table th:nth-child(2) {
  background: linear-gradient(90deg, #00BFCA 0%, #278ADA 100%);
  border-left: 5px solid #00BFCA;
  border-right: 5px solid #278ADA;
}

.comparison-table th:nth-child(4) {
  border-left: 1px solid #A2A2A2;
  border-right: 1px solid #767676;
}

.comparison-table td {
  padding: 18px 20px 12px 20px;
  vertical-align: middle;
  border: 1px solid #A2A2A2;
}

.comparison-table td:first-child {
  background: #ECF1F6;
  font-weight: 700;
  color: #0C83AB;
}

.comparison-table td:nth-child(2) {
  background: linear-gradient(90deg, rgba(39, 138, 218, 0.05) 0%, rgba(0, 191, 202, 0.05) 100%);
  border-left: 5px solid #00BFCA;
  border-right: 5px solid #278ADA;
  font-weight: 700;
  color: #0C83AB;
}

.comparison-table tbody tr:last-child td:nth-child(2) {
  position: relative;
  border-bottom: none;
}

.comparison-table tbody tr:last-child td:nth-child(2)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #00BFCA 0%, #278ADA 100%);
  border-image-slice: 1;
}

.comparison-icon {
  margin-bottom: 4px;
}

.comparison-icon img {
  width: 44px;
  height: 44px;
  vertical-align: middle;
}

.comparison-table span {
  font-size: 14px;
}

@media (max-width: 768px) {
  .comparison {
    padding: 76px 0 44px;
  }

  .comparison .section-container::before,
  .comparison .section-container::after {
    display: none;
  }

  .comparison-intro {
    font-size: 14px;
    margin-bottom: 40px;
    text-align: left;
  }

  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px 16px;
  }

  .comparison-table {
    min-width: 642px;
  }

  .comparison-table th {
    padding: 8px 12px;
    font-size: 14px;
  }

  .comparison-table th:first-child {
    width: 130px;
  }

  .comparison-table th:not(:first-child) {
    width: 170px;
  }

  .comparison-table th:nth-child(2) {
    border-left: 3px solid #00BFCA;
    border-right: 3px solid #278ADA;
  }

  .comparison-table td {
    padding: 10px 2px 6px;
    font-size: 12px;
  }

  .comparison-table td:first-child {
    font-size: 14px;
  }

  .comparison-table td:nth-child(2) {
    border-left: 3px solid #00BFCA;
    border-right: 3px solid #278ADA;
  }

  .comparison-table tbody tr:last-child td:nth-child(2)::after {
    bottom: -1px;
    height: 3px;
  }

  .comparison-icon {
    margin-bottom: 2px;
  }

  .comparison-icon img {
    width: 40px;
    height: 40px;
  }

  .comparison-table span {
    font-size: 12px;
  }
}

/* 料金 */
.pricing {
  background: #F0F6FB;
}

.pricing-intro {
  text-align: center;
  line-height: 1.85;
  margin-bottom: 80px;
}

.pricing-courses {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.pricing-course {
  flex: 1;
  background: #ffffff;
  border-radius: 5px;
  padding: 58px 50px 50px;
  box-shadow: 0 0 10px 0 rgba(29, 71, 99, 0.10);
  position: relative;
}

.pricing-course-label {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 24px;
  font-size: 20px;
  font-weight: 700;
  width: 366px;
  text-align: center;
}

.pricing-course-3rd .pricing-course-label {
  background: linear-gradient(90deg, #278ADA 0%, #00BFCA 100%);
}

.pricing-course-2nd .pricing-course-label {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #278ADA 0%, #00BFCA 100%) border-box;
  padding: 6px 24px;
}

.pricing-course-2nd .pricing-course-label span {
  background: linear-gradient(90deg, #278ADA 0%, #00BFCA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.pricing-course-title {
  font-size: 26px;
  font-weight: 700;
  color: #1D4763;
  margin-bottom: 28px;
  text-align: center;
}

.pricing-course-price {
  text-align: center;
  color: #1D4763;
  line-height: 1;
  padding-top: 32px;
  position: relative;
  margin-bottom: 18px;
}

.pricing-course-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 128px;
  height: 1px;
  background: #9A9A9A;
}

.pricing-course-price-number {
  font-size: 60px;
  font-weight: 500;
  font-family: 'Akshar', sans-serif;
  letter-spacing: -0.03em;
  margin-right: 5px;
}

.pricing-course-tax {
  font-size: 14px;
}

.pricing-course-period {
  text-align: center;
  color: #1D4763;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-course-period-label {
  font-size: 14px;
  border: 1px solid #1D4763;
  padding: 0 6px;
  margin-right: 8px;
}

.pricing-course-period-number {
  font-size: 24px;
}

.pricing-course-features li {
  font-size: 14px;
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}

.pricing-course-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icon-check.svg) no-repeat center center;
  background-size: contain;
  width: 21px;
  height: 21px;
}

.pricing-course-features li:last-child {
  margin-bottom: 0;
}

.pricing-notices {
  margin-bottom: 74px;
}

.pricing-notice {
  font-size: 14px;
  color: #666666;
  margin-bottom: 10px;
  line-height: 1.85;
  text-indent: -1em;
  padding-left: 1em;
}

/* 料金に含まれる内容 */
.pricing-includes {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(29, 71, 99, 0.10);
  padding: 60px 50px 40px;
  max-width: 600px;
  margin: 0 auto 100px;
  position: relative;
}

.pricing-includes-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  background: #0C83AB;
  padding: 4px 30px;
  border-radius: 5px;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pricing-includes-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10px;
  row-gap: 32px;
}

.pricing-includes-item {
  text-align: center;
}

.pricing-includes-icon {
  width: 92px;
  height: 92px;
  background: #F0F6FB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}

.pricing-includes-icon img {
  width: 70px;
  height: 70px;
}

.pricing-includes-text {
  font-size: 14px;
  line-height: 1.4;
}

.pricing-discount a {
  transition: all 0.3s ease;
}

.pricing-discount a:hover {
  opacity: 0.7;
}

.pricing-discount img {
  vertical-align: middle;
}

@media (max-width: 768px) {
  .pricing-intro {
    margin-bottom: 56px;
    text-align: left;
  }

  .pricing-courses {
    flex-direction: column;
    margin-bottom: 20px;
    gap: 57px;
  }

  .pricing-course {
    padding: 44px 20px 32px;
  }

  .pricing-course-label {
    top: -17px;
    font-size: 16px;
    padding: 6px 20px;
    width: 260px;
  }

  .pricing-course-2nd .pricing-course-label {
    border: 1px solid transparent;
    padding: 4px 18px;
  }

  .pricing-course-title {
    font-size: 20px;
    margin-bottom: 26px;
  }

  .pricing-course-price {
    padding-top: 34px;
    margin-bottom: 16px;
  }

  .pricing-course-price::before {
    width: 128px;
  }

  .pricing-course-price-number {
    font-size: 48px;
  }

  .pricing-course-tax {
    font-size: 12px;
  }

  .pricing-course-period {
    margin-bottom: 24px;
  }

  .pricing-course-period-label {
    font-size: 14px;
    padding: 0 6px;
  }

  .pricing-course-period-number {
    font-size: 24px;
  }

  .pricing-course-features li {
    font-size: 14px;
    padding-left: 28px;
    margin-bottom: 10px;
  }

  .pricing-course-features li::before {
    top: 3px;
    transform: none;
    width: 18px;
    height: 18px;
  }

  .pricing-notices {
    margin-bottom: 52px;
  }

  .pricing-notice {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .pricing-includes {
    padding: 42px 20px 26px;
    margin-bottom: 64px;
  }

  .pricing-includes-title {
    font-size: 16px;
    padding: 4px 30px;
    top: -17px;
  }

  .pricing-includes-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 6px;
  }

  .pricing-includes-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .pricing-includes-icon {
    width: 50px;
    height: 50px;
  }

  .pricing-includes-icon img {
    width: 36px;
    height: 36px;
  }

  .pricing-includes-text {
    flex: 1;
    text-align: left;
  }

  .pricing-discount {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* 受講の流れ */
.flow-steps {
  display: flex;
  gap: 67px;
}

.flow-step {
  flex: 1;
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -37px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 10px solid #5FC1C7;
  z-index: 10;
}

.flow-step-icon {
  width: 120px;
  height: 120px;
  background: #F0F6FB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.flow-step-icon img {
  width: 90px;
  height: 90px;
}

.flow-step-title {
  color: #0C83AB;
  margin-bottom: 8px;
  text-align: center;
}

.flow-step-description {
  font-size: 15px;
  line-height: 1.85;
}

@media (max-width: 768px) {
  .flow .section-header {
    margin-bottom: 48px;
  }

  .flow-steps {
    flex-direction: column;
    gap: 56px;
  }

  .flow-step {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .flow-step:not(:last-child)::after {
    top: auto;
    bottom: -46px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 10px solid #5FC1C7;
  }

  .flow-step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
  }

  .flow-step-icon img {
    width: 60px;
    height: 60px;
  }

  .flow-step-content {
    flex: 1;
  }

  .flow-step-title {
    font-size: 16px;
    margin-bottom: 6px;
    text-align: left;
  }

  .flow-step-description {
    font-size: 14px;
  }
}

/* 受講者の声 */
.voice {
  background: #F0F6FB;;
}

.voice .section-header {
  margin-bottom: 60px;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.voice-card {
  background: #ffffff;
  padding: 50px 40px 40px;
  box-shadow: 0 0 10px 0 rgba(29, 71, 99, 0.10);
  position: relative;
}

.voice-label {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  padding: 2px 43px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.voice-label-2nd {
  background: #0C83AB;
}

.voice-label-3rd {
  background: #5FC1C7;
}

.voice-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.voice-avatar {
  width: 90px;
  height: 90px;
}

.voice-title {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: #0C83AB;
  line-height: 1.4;
}

.voice-text {
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 4px;
}

.voice-details {
  font-size: 14px;
}

@media (max-width: 768px) {
  .voice .section-header {
    margin-bottom: 34px;
  }

  .voice-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .voice-card {
    padding: 46px 20px 32px;
  }

  .voice-header {
    gap: 20px;
    margin-bottom: 12px;
  }

  .voice-avatar {
    width: 60px;
    height: 60px;
  }

  .voice-title {
    font-size: 16px;
  }
}

/* よくある質問 */
.faq .section-header {
  margin-bottom: 60px;
}

.faq-item:not(:last-child) {
  margin-bottom: 40px;
}

.faq-item {
  border-radius: 5px;
  background: #F0F6FB;
  line-height: 1.85;
}

.faq-question {
  padding: 26px 78px 26px 82px;
  color: #0C83AB;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::after {
  content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-right: 2px solid #0C83AB;
  border-bottom: 2px solid #0C83AB;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: translateY(-50%) rotate(-135deg);
}

.faq-question:hover,
.faq-question:hover::before {
  color: #3fb7e0;
}

.faq-question::before,
.faq-answer::before {
  content: 'Q';
  font-family: 'Akshar', sans-serif;
  position: absolute;
  left: 40px;
  top: 16px;
  color: #0C83AB;
  font-weight: 700;
  font-size: 28px;
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 78px 0 82px;
  position: relative;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  padding-bottom: 26px;
  max-height: none;
  opacity: 1;
}

.faq-answer::before {
  content: 'A';
  top: -10px;
}

.faq-notice {
  color: #999999;
  font-size: 12px;
}

.faq-notice li {
  margin-bottom: 6px;
  text-indent: -1em;
  padding-left: 1em;
}

.faq-notice li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq .section-header {
    margin-bottom: 48px;
  }

  .faq-item:not(:last-child) {
    margin-bottom: 24px;
  }

  .faq-question {
    padding: 20px 35px 20px 50px;
  }

  .faq-question::after {
    right: 16px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #0C83AB;
    border-bottom: 2px solid #0C83AB;
  }

  .faq-question::before,
  .faq-answer::before {
    left: 16px;
    font-size: 28px;
  }

  .faq-question::before {
    top: 50%;
    transform: translateY(-50%);
  }

  .faq-answer::before {
    top: 2px;
  }

  .faq-answer {
    padding: 0 20px 0 50px;
  }

  .faq-answer.active {
    padding-bottom: 20px;
  }
}

/* YouTube出演割引キャンペーン */
.campaign {
  background: url(../img/campaign-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  text-align: center;
  color: #ffffff;
}

.campaign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1370px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background: url(../img/campaign-bg-shapes.png) no-repeat center 170px;
  background-size: contain;
  pointer-events: none;
}

.campaign-title {
  font-size: 40px;
  font-weight: 700;
  color: #FAF94A;
  margin-bottom: 36px;
}

.campaign-intro {
  line-height: 1.85;
  color: #ffffff;
  margin-bottom: 40px;
}

.campaign-courses {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.campaign-course-card {
  background: #ffffff;
  border-radius: 5px;
  padding: 28px 52px 20px;
  box-shadow: 0 0 10px 0 rgba(29, 71, 99, 0.10);
  width: 288px;
}

.campaign-course-card-inner {
  width: 175px;
  margin: 0 auto;
}

.campaign-course-badge {
  background: #0C83AB;
  font-size: 16px;
  font-weight: 700;
  padding: 1px 24px;
  border-radius: 14px;
  margin-bottom: 18px;
}

.campaign-course-discount {
  font-size: 54px;
  font-family: 'Akshar', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #0C83AB;
  line-height: 1;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
}

.campaign-course-discount-yen {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0;
}

.campaign-course-discount-off {
  font-size: 20px;
}

.campaign-lists {
  border: 1px solid #ffffff;
  padding: 24px 36px 24px 28px;
  margin: 0 auto 60px;
  max-width: 830px;
  text-align: left;
  display: inline-block;
}

.campaign-list {
  margin-bottom: 10px;
  padding-left: 32px;
  position: relative;
}

.campaign-list:last-child {
  margin-bottom: 0;
}

.campaign-list::before {
  content: '';
  background: url(../img/icon-check-yellow.svg) no-repeat center center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  width: 20px;
  height: 20px;
  background-size: contain;
}

.campaign-message {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 60px;
  position: relative;
}

.campaign-message:after {
  content: '';
  background: #ffffff;
  width: 232px;
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.campaign-cta {
  padding-top: 80px;
}

@media (max-width: 1024px) {
  .campaign::before {
    display: none;
  }

  .campaign-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .campaign {
    background: url(../img/campaign-bg-sp.jpg) no-repeat center center;
    background-size: cover;
  }

  .campaign-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .campaign-intro {
    margin-bottom: 40px;
    text-align: left;
  }

  .campaign-courses {
    gap: 13px;
    margin-bottom: 40px;
  }

  .campaign-course-card {
    padding: 12px 22px 6px;
    width: calc(50% - 6.5px);
  }

  .campaign-course-card-inner {
    width: auto;
  }

  .campaign-course-badge {
    font-size: 13px;
    padding: 0px 20px;
    margin-bottom: 10px;
  }

  .campaign-course-discount {
    font-size: 38px;
    gap: 2px;
  }

  .campaign-course-discount-yen {
    font-size: 12px;
  }

  .campaign-course-discount-off {
    font-size: 16px;
  }

  .campaign-lists {
    padding: 24px 20px 24px 16px;
    margin-bottom: 64px;
  }

  .campaign-list {
    margin-bottom: 8px;
    padding-left: 32px;
  }

  .campaign-list::before {
    width: 20px;
    height: 20px;
    top: 3px;
    transform: none;
  }

  .campaign-message {
    font-size: 16px;
    padding-bottom: 50px;
    line-height: 1.85;
  }

  .campaign-message:after {
    width: 232px;
  }

  .campaign-cta {
    padding-top: 60px;
  }
}

/* フッター */
.footer {
  border-top: 1px solid #E5E5E5;
  padding: 36px 0;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-size: 20px;
  font-weight: 700;
}

.footer-links-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-link {
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0C83AB;
}

.footer-copyright {
  font-size: 12px;
  color: #7d7d7d;
  margin: 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 32px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
  }

  .footer-brand {
    font-size: 18px;
  }

  .footer-links-container {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    gap: 20px;
  }

  .footer-link {
    font-size: 12px;
  }
}

/* 特定商取引法ページ */
.legal {
  padding: 170px 0 100px;
}

.legal-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1D4763;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-item {
  display: flex;
  border-bottom: 1px solid #E5E5E5;
  padding: 36px 0;
}

.legal-item:last-child {
  border-bottom: none;
}

.legal-label {
  font-weight: 600;
  color: #1D4763;
  width: 240px;
  flex-shrink: 0;
}

.legal-value {
  flex: 1;
}

.legal-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

.legal-list li::before {
  content: '・';
  position: absolute;
  left: 0;
}

.legal-link {
  color: #0C83AB;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #1D4763;
}

@media (max-width: 768px) {
  .legal {
    padding: 120px 0 60px;
  }

  .legal-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .legal-item {
    flex-direction: column;
    padding: 20px 0;
  }

  .legal-label {
    width: 100%;
    margin-bottom: 8px;
  }

  .legal-list li {
    padding-left: 16px;
    margin-bottom: 6px;
  }
}

/* プライバシーポリシーページ */
.privacy {
  padding: 170px 0 100px;
}

.privacy-container {
  max-width: 832px;
  margin: 0 auto;
  padding: 0 16px;
}

.privacy-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1D4763;
}

.privacy-intro {
  line-height: 1.85;
  margin-bottom: 40px;
}

.privacy-section {
  margin-bottom: 80px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.privacy-subsection {
  margin: 40px 0;
}

.privacy-subsection-title {
  font-weight: 600;
  counter-increment: subsection;
  padding-left: 3em;
  text-indent: -3em;
}

.privacy-subsection-title::before {
  content: "（" counter(subsection) "）";
  margin-right: 0.5em;
}

.privacy-section {
  counter-reset: subsection;
}

.privacy-text {
  line-height: 1.85;
  margin-bottom: 8px;
}

.privacy-text:last-child {
  margin-bottom: 0;
}

.privacy-list {
  margin: 8px 0;
}

.privacy-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.privacy-list li:last-child {
  margin-bottom: 0;
}

.privacy-list li::before {
  content: '・';
  position: absolute;
  left: 0;
}

.privacy-subsection .privacy-text {
  padding-left: 3em;
}

.privacy-subsection .privacy-list {
  padding-left: 3em;
}

.privacy-contact {
  background: #f8f9fa;
  padding: 20px 30px;
  border-radius: 5px;
  margin: 20px 0;
}

.privacy-date {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #E5E5E5;
}

.privacy-date p {
  font-size: 14px;
}

@media (max-width: 768px) {
  .privacy {
    padding: 120px 0 60px;
  }

  .privacy-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .privacy-intro {
    margin-bottom: 32px;
  }

  .privacy-section {
    margin-bottom: 40px;
  }

  .privacy-section-title {
    font-size: 16px;
  }

  .privacy-subsection {
    margin: 20px 0;
  }

  .privacy-list li {
    padding-left: 16px;
  }

  .privacy-contact {
    padding: 16px;
    margin: 16px 0;
  }

  .privacy-date {
    margin-top: 40px;
    padding-top: 30px;
  }

  .privacy-date p {
    font-size: 13px;
  }
}