@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Carrois Gothic', sans-serif;
  color: #4C4949;
  padding-top: 100px; /* ヘッダーの高さに合わせる */
  overflow-x: hidden;
}
html {
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
}
a {
  color: #4C4949;
}
.en {
  font-family: 'Julius Sans One', sans-serif;
}
.small-text {
  font-size: 0.8rem;
}
/* ナビ */
/* メニュー全体 */
.oc-menu {
  position: fixed;
  top: 0;
  right: 0; /* ← 右基準にする */
  left: auto !important; /* ← 左指定を強制リセット */
  width: 80%;
  height: 100vh;
  background: #fff;
  padding: 100px 30px;
  transform: translateX(100%); /* ← 右に隠す */
  transition: 0.4s;
  z-index: 999;
  overflow-y: auto;
  box-sizing: border-box; /* ← これが超重要 */
  -webkit-overflow-scrolling: touch;
}
.oc-menu.active {
  transform: translateX(0); /* ← 表示 */
}
/* リスト */
.oc-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.oc-menu-list li {
  margin-bottom: 24px;
}
.oc-menu-list a {
  text-decoration: none;
  color: #4C4949;
}
.oc-menu-list a {
  position: relative;
  display: inline-block;
}
.oc-menu-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #4C4949;
  transition: 0.3s;
}
.oc-menu-list a:hover::after {
  width: 100%;
}
.oc-menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  z-index: 1000;
  cursor: pointer;
}
/* ×に変形 */
.oc-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.oc-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.oc-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}
.oc-menu-cta {
  margin-top: 40px;
}
.oc-nav-btn {
  display: block;
  background: #4C4949;
  color: #fff;
  padding: 12px;
  text-align: center;
  margin-bottom: 12px;
  text-decoration: none;
}
.oc-nav-tel {
  display: block;
  text-align: center;
  color: #4C4949;
  font-size: 14px;
}
.oc-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.oc-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.oc-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}
@media (min-width: 769px) {
  .oc-menu {
    width: 40%;
  }
}
/* 英語 */
.nav-en {
  display: block;
  font-size: 18px;
  letter-spacing: 2px;
}
/* 日本語 */
.nav-ja {
  display: block;
  font-size: 12px;
}
/* 全体 */
.oc-page .oc-header {
  background-color: #ffffff;
  border-bottom: 1px solid #4C4949;
}
.oc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* 前面に出す */
  background-color: #ffffff; /* 透け防止 */
}
.oc-header-inner {
  width: 95%;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* ロゴ */
.oc-logo img {
  height: 70px;
}
/* 右側 */
.oc-header-right {
  display: flex;
  /*align-items: center;*/
  gap: 60px;
}
/* 電話 */
.oc-tel {
  text-align: right;
  color: #4C4949;
}
.oc-tel-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.oc-tel-icon {
  width: 30px;
  height: 30px;
}
.oc-page .oc-tel-number {
  font-family: 'Julius Sans One', sans-serif;
}
.oc-tel-number {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 1.5rem;
  color: #4C4949;
  text-decoration: none;
}
.oc-tel-time {
  font-size: 0.7rem;
  line-height: 1.4;
}
/* ハンバーガー */
.oc-menu-btn {
  width: 24px;
  height: 18px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}
.oc-menu-btn span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #4C4949;
  left: 0;
}
.oc-menu-btn span:nth-child(1) {
  top: 0;
}
.oc-menu-btn span:nth-child(2) {
  top: 8px;
}
.oc-menu-btn span:nth-child(3) {
  bottom: 0;
}
/* HERO全体 */
.oc-page .oc-hero {
  background-color: #FEF8FA;
  padding: 80px 60px 80px 0px;
}
.oc-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center; /* ←これ重要 */
  gap: 20px; /* ←今より狭く（20〜40pxが◎） */
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}
/* 左：画像 */
.oc-hero-left {
  flex: 1;
}
.oc-hero-right {
  flex: 1;
}
/* スライダー枠 */
.oc-hero-slider {
  position: relative;
  width: 360px;
  height: 360px;
  overflow: hidden;
  margin: 0 auto; /* ← これ追加！！ */
  display: block;
}
.oc-hero-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.6s;
}
.oc-hero-slider img.active {
  opacity: 1;
}
/* 右：テキスト */
.oc-hero-right {
  flex: 1;
  text-align: center;
}
.oc-hero-right {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s ease forwards;
  animation-delay: 0.5s;
}
@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.oc-hero-en {
  font-family: "Julius Sans One", sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.oc-hero-icon {
  width: 40px;
  margin-bottom: 20px;
}
.oc-hero-title {
  font-family: 'Carrois Gothic', sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 40px;
}
/* ポイント */
.oc-hero-points {
  display: flex;
  justify-content: center;
  gap: 40px;
}
/* 円バッジ */
.oc-point {
  width: 120px;
  height: 120px;
  border: 1px solid #4C4949;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
/* 日本語 */
.oc-point-ja {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
/* 下線 */
.oc-point-line {
  display: block;
  width: 30px;
  height: 1px;
  background: #4C4949;
  margin: 0 auto 6px;
}
/* 英語 */
.oc-point-en {
  font-family: "Julius Sans One", sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .oc-hero-points {
    gap: 16px;
  }
  .oc-point {
    width: 90px;
    height: 90px;
  }
  .oc-point-ja {
    font-size: 1rem;
  }
  .oc-point-en {
    font-size: 0.7rem;
  }
}
/*スライダー*/
.oc-slider-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border: 1px solid #4C4949;
  border-radius: 50%;
  background: transparent;
  transition: 0.3s;
}
/* アクティブ */
.dot.active {
  background: #4C4949;
}
/* アニメーション */
@keyframes ocFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* ずらし（重要） */
.oc-hero-slider img:nth-child(1) {
  animation-delay: 0s;
}
.oc-hero-slider img:nth-child(2) {
  animation-delay: 3s;
}
.oc-hero-slider img:nth-child(3) {
  animation-delay: 6s;
}
/* ABOUT全体 */
.oc-about {
  padding: 100px 20px;
  background: #ffffff;
}
.oc-about-inner {
  width: 80%;
  margin: 0 auto;
}
/* タイトル */
.oc-about-head {
  text-align: left;
  margin-bottom: 60px;
}
.oc-about-en {
  font-family: "Julius Sans One", sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.oc-about-line {
  display: block;
  width: 40px;
  height: 1px;
  background: #4C4949;
  margin: 0 0 16px; /* ← 中央寄せ解除 */
}
.oc-about-ja {
  font-size: 20px;
  font-weight: normal;
}
/* コンテンツ */
.oc-about-content {
  display: flex;
  align-items: left;
  gap: 60px;
}
/* 画像 */
.oc-about-img {
  flex: 1;
}
.oc-about-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
/* テキスト */
.oc-about-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.9;
}
/* 強み */
.oc-feature {
  padding: 100px 20px;
  background: #FFFFFF;
}
.oc-feature-inner {
  width: 60%;
  margin: 0 auto;
}
/* 見出し */
.oc-feature-head {
  font-size: 32px;
  letter-spacing: 4px;
  margin-bottom: 60px;
}
/* 各行 */
.oc-feature-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
/* 左 */
.oc-feature-left {
  width: 120px;
  text-align: center;
}
.oc-feature-left p {
  letter-spacing: 2px;
}
.oc-feature-line {
  display: block;
  width: 40px;
  height: 1px;
  background: #4C4949;
  margin: 8px auto;
}
.oc-feature-num {
  font-size: 28px;
}
/* 右 */
.oc-feature-right {
  flex: 1;
}
.oc-feature-title {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.6;
  border-left: 3px solid #FF9FBF; /* ← ピンクライン */
  padding-left: 12px; /* ← 文字との余白 */
}
.oc-feature-text {
  font-size: 14px;
  line-height: 1.9;
}
/*エフェクト*/
/* 初期状態（隠れてる） */
.slide-right {
  opacity: 0;
  transform: translateX(60px); /* ← 右から */
  transition: all 0.8s ease;
}
/* 表示時 */
.slide-right.active {
  opacity: 1;
  transform: translateX(0);
}
/* 悩み */
.oc-concerns {
  padding: 100px 20px;
  background: #FAFAFA; /* ← ほんのり変える */
  position: relative;
}
.oc-concerns-inner {
  width: 80%;
  margin: 0 auto;
}
/* タイトル */
.oc-center {
  text-align: center;
}
.oc-center .oc-about-line {
  margin: 0 auto;
}
/* 丸レイアウト */
/* 丸を並べる親 */
.oc-concerns-list {
  display: flex;
  flex-wrap: wrap; /* 折り返して下段に回す */
  justify-content: center; /* 全体中央揃え */
  gap: 16px 24px; /* 上下・左右の間隔 */
}
/* 下段だけ中央寄せしたい場合は、HTMLで行を分ける */
.oc-concern-row {
  display: flex;
  justify-content: center; /* 中央寄せ */
  gap: 24px;
  width: 100%;
  margin-top: 16px; /* 上下間隔 */
}
.oc-dots {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8em;
  opacity: 0.6;
  letter-spacing: 0.4em;
}
/* 丸 */
.oc-concern {
  width: 200px;
  height: 200px;
  background: #D9D9D9;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
/* アイコン */
.oc-concern img {
  width: 35px;
  margin-bottom: 10px;
}
/* テキスト */
.oc-concern p {
  font-size: 15px;
  line-height: 1.6;
}
/* 丸 */
.oc-concern {
  width: 180px;
  height: 180px;
  background: #D9D9D9;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
/* アイコン */
.oc-concern img {
  width: 70px;
  margin-bottom: 10px;
}
/* ピンク背景セクション */
.oc-skinconcerns {
  background-color: #FEF8FA; /* ピンク背景 */
  text-align: center; /* 中央揃え */
  padding: 80px 20px 20px; /* 上に余白、下は背景をぴったり */
  position: relative;
}
/* 英字サブタイトル */
.oc-skinconcerns-en {
  font-family: "Julius Sans One", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #4C4949;
}
/* 日本語メインタイトル */
.oc-skinconcerns-ja {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #4C4949;
}
/* 画像 */
.oc-skinconcerns-img {
  display: inline-block;
  max-width: 200px; /* 小さめに調整 */
  width: 100%;
  height: auto;
}
/* エフェクト */
.oc-skinconcerns-ja, .oc-skinconcerns-en {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.oc-skinconcerns-ja.is-show, .oc-skinconcerns-en.is-show {
  opacity: 1;
  transform: translateY(0);
}
/* タイトル */
.oc-skinconcerns-ja, .oc-skinconcerns-en {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.oc-skinconcerns.active .oc-skinconcerns-ja {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}
.oc-skinconcerns.active .oc-skinconcerns-en {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}
/* 画像ふわっと */
.oc-skinconcerns-img {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease;
}
.oc-skinconcerns.active .oc-skinconcerns-img {
  transition-delay: 0.6s;
  opacity: 1;
  transform: scale(1);
}
/* ホバーでほんのり浮く */
.oc-skinconcerns-img:hover {
  transform: scale(1.05);
}
/* HOW TO APPLYセクション */
.oc-howto {
  background-color: #ffffff;
  padding: 100px 20px;
}
.oc-howto-inner {
  width: 80%;
  margin: 0 auto;
  text-align: left;
}
/* タイトル */
.oc-howto-head {
  margin-bottom: 60px;
}
/* 4ステップ */
.oc-howto-steps {
  display: flex;
  justify-content: left;
  gap: 24px;
  margin-bottom: 10px;
}
.oc-howto-step {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 1.8rem;
  border-bottom: 3px solid #FF9FBF; /* ピンクボーダー */
  padding-bottom: 8px;
}
/* 各ステップ詳細 */
.oc-howto-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
  border-top: 1px solid #D9D9D9;
  padding-top: 40px;
}
/* 左画像 */
.oc-howto-img {
  flex: 1;
}
.oc-howto-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
/* 右テキスト */
.oc-howto-text {
  flex: 2;
}
.oc-howto-text-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
  border-left: 3px solid #FF9FBF; /* ピンクライン */
  padding-left: 12px;
}
.oc-howto-text-content {
  font-size: 14px;
  line-height: 1.8;
}
.oc-apply-btn {
  display: inline-block; /* サイズに合わせて中央寄せ */
  background-color: #ffffff; /* 白背景 */
  border: 1px solid #4C4949; /* ボーダー */
  border-radius: 45px; /* 角丸 */
  padding: 12px 32px; /* 上下・左右の余白 */
  font-size: 16px;
  color: #4C4949; /* テキスト */
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none; /* リンクの場合 */
}
.oc-apply-btn:hover {
  background-color: #FEF8FA; /* ホバーで薄ピンク */
  border-color: #4C4949;
}
/*FAQ*/
.oc-faq-category-title {
  margin: 30px 0 20px 0;
}
.oc-concerns-head {
  text-align: left;
  margin-bottom: 60px;
}
.oc-faq-inner {
  max-width: 70%;
  margin: 0 auto;
  padding: 100px 20px;
}
/* セクションタイトル */
.oc-faq {
  background-color: #F5F5F5;
}
.oc-faq-head {
  font-size: 32px;
  letter-spacing: 4px;
  text-align: left;
  margin-bottom: 40px;
}
/* アコーディオン項目 */
.oc-faq-item {
  border: 1px solid #4C4949;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}
/* 質問部分 */
.oc-faq-question {
  background-color: #ffffff;
  padding: 16px 20px;
  font-size: 16px;
  /*  font-weight: bold;*/
  cursor: pointer;
  position: relative;
}
/* プラス/マイナスアイコン */
.oc-faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 18px;
  transition: transform 0.3s;
}
/* 開いたとき */
.oc-faq-item.active .oc-faq-question::after {
  content: "−";
}
/* 回答部分 */
.oc-faq-answer {
  display: none;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.8;
  background-color: #ffffff;
  border-top: 1px solid #4C4949;
}
/* 開いたとき表示 */
.oc-faq-item.active .oc-faq-answer {
  display: block;
}
/* VIEW MORE ボタン */
.oc-faq-view {
  display: flex; /* フレックスボックスを有効に */
  justify-content: center; /* 横方向中央揃え */
  margin-top: 24px; /* 上の余白 */
}
.oc-faq-btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: #ffffff;
  border: 1px solid #4C4949;
  border-radius: 45px;
  font-size: 1rem;
  color: #4C4949;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}
.oc-faq-btn:hover {
  background-color: #FEF8FA;
  color: #FF4081;
}
/*別ページFAQ*/
.oc-faq-btn {
  display: inline-block;
  padding: 10px 24px;
  margin-top: 8px;
  background-color: #ffffff;
  border: 1px solid #4C4949;
  border-radius: 45px;
  font-size: 1rem;
  color: #4C4949;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}
.oc-faq-btn:hover {
  background-color: #FEF8FA;
  color: #FF4081;
}
/*お声*/
.oc-voice {
  background-color: #ffffff;
  padding: 100px 20px;
}
.oc-voice-inner {
  width: 80%;
  margin: 0 auto;
}
/* セクションタイトル */
.oc-voice-head {
  font-size: 32px;
  letter-spacing: 4px;
  text-align: left;
  margin-bottom: 60px;
}
/* お客様の声項目 */
.oc-voice-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}
/* 交互に左右反転 */
.oc-voice-item.reverse {
  flex-direction: row-reverse;
}
/* アイコン */
.oc-voice-icon {
  flex: 0 0 120px;
}
.oc-voice-icon img {
  width: 100%;
  border-radius: 50%;
}
/* テキスト部分 */
.oc-voice-text {
  flex: 1;
}
.oc-voice-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  display: inline-block;
  border-bottom: 3px solid #FF9FBF; /* ピンクの下線 */
  padding-bottom: 4px; /* 下線と文字の間隔 */
}
.oc-voice-body {
  font-size: 16px;
  line-height: 1.9;
  color: #4C4949;
}
/*注意事項*/
.oc-notice {
  background-color: #F5F5F5;
  padding: 80px 20px;
}
.oc-notice-inner {
  width: 60%;
  margin: 0 auto;
}
/* タイトル */
.oc-notice-title {
  font-size: 24px;
  font-weight: bold;
  color: #4C4949;
  margin-bottom: 16px;
  border-bottom: 1px solid #4C4949;
  padding-bottom: 8px;
  display: inline-block; /* 下線幅を文字に合わせる */
}
/* 注意事項ボックス */
.oc-notice-box {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  padding: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: #4C4949;
  max-height: 150px; /* 高さ制限 */
  overflow-y: auto; /* スクロール */
  border-radius: 8px;
}
.oc-notice-box ol {
  padding-left: 20px;
}
.oc-notice-box ul {
  padding-left: 20px;
  list-style-type: disc;
}
/*応募ボタン*/
.oc-consent {
  background-color: #ffffff;
  padding: 60px 20px;
}
.oc-consent-inner {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
/* 注意文 */
.oc-consent-text {
  font-size: 16px;
  color: #4C4949;
  margin-bottom: 32px;
}
/* ボタンのラップ */
.oc-consent-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch; /* ← 高さ完全一致 */
}
/* ボタン */
.oc-consent-btn {
  display: flex; /* ← ここが超重要 */
  flex-direction: column; /* ← 縦並び */
  justify-content: center; /* ← 縦中央 */
  align-items: center; /* ← 横中央 */
  background-color: #ffffff;
  border: 1px solid #4C4949;
  border-radius: 90px;
  padding: 16px 24px;
  font-size: 1.3rem;
  color: #4C4949;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  max-width: 350px;
  min-height: 100px;
  width: 100%; /* ← これも追加すると安定 */
}
.oc-consent-btn:hover {
  background-color: #FEF8FA; /* ちょっとピンクでホバー */
  color: #FF4081;
}
.oc-consent-sub {
  font-family: 'Julius Sans One', sans-serif;
  display: block;
  font-size: 12px;
  color: #4C4949;
  margin-top: 8px;
  line-height: 1.4;
}
/*footer*/
.oc-footer {
  background-color: #FEF8FA;
  padding: 60px 20px;
  color: #4C4949;
}
.oc-footer-inner {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* ← 縦も中央に */
  justify-content: center; /* ← 全体中央寄せ */
  gap: 60px; /* ← 余白しっかり */
}
/* 左：写真 */
.oc-footer-left {
  flex: 1;
  display: flex;
  justify-content: center; /* ← 画像自体も中央に */
}
.oc-footer-left img {
  width: 300px; /* お好みで調整 */
  height: auto;
  border-radius: 8px;
}
/* 右：テキスト */
.oc-footer-right {
  flex: 1;
  min-width: 280px;
}
.oc-footer-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}
.oc-footer-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
/* お問い合わせボタン */
.oc-consent {
  background-color: #ffffff;
  padding: 60px 0px;
}
.oc-footer-btn {
  display: inline-block; /* サイズに合わせて中央寄せ */
  background-color: #ffffff; /* 白背景 */
  border: 1px solid #4C4949; /* ボーダー */
  border-radius: 45px; /* 角丸 */
  padding: 12px 32px; /* 上下・左右の余白 */
  font-size: 15px;
  color: #4C4949; /* テキスト */
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none; /* リンクの場合 */
  margin: 30px 0 20px 0;
}
.oc-footer-btn:hover {
  background-color: #FFFFFF;
}
/* 会社情報 */
.oc-footer-info p {
  font-family: 'Julius Sans One', sans-serif;
  margin: 4px 0;
  color: #4C4949;
}
/* 上2つ（同じ大きさ） */
.oc-footer-info p:nth-child(1), .oc-footer-info p:nth-child(2) {
  font-size: 1.5rem;
}
/* 下（少し小さめ） */
.oc-footer-info p:nth-child(3) {
  font-size: 12px;
}
/* コピーライト */
.oc-footer-copy {
  font-size: 12px;
  margin-top: 24px;
}
/*エフェクト*/
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}
.oc-about-img img, .oc-howto-img img, .oc-voice-icon img {
  transition: transform 0.5s ease;
}
.oc-about-img:hover img, .oc-howto-img:hover img, .oc-voice-icon:hover img {
  transform: scale(1.05);
}
.oc-apply-btn, .oc-consent-btn, .oc-footer-btn {
  transition: all 0.3s ease;
}
.oc-apply-btn:hover, .oc-consent-btn:hover, .oc-footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
/* =======================
   SP対応（768px以下）
======================= */
@media (max-width: 768px) {
  body {
    padding-top: 0px;
  }
  /* ヘッダー */
  .oc-logo img {
    height: 50px;
  }
  .oc-header-right {
    gap: 50px;
  }
  .oc-tel {
    display: none;
  }
  .oc-header-inner {
    width: 95%;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  /* =======================
     HERO
  ======================= */
  .oc-hero-inner {
    max-width: 100%;
    padding: 0 16px;
    flex-direction: column;
    gap: 30px;
  }
  .oc-hero-slider {
    width: 260px;
    height: 260px;
  }
  .oc-hero-en {
    font-size: 2rem;
  }
  .oc-hero-title {
    font-size: 1.2rem;
  }
  .oc-page .oc-hero {
    background-color: #FEF8FA;
    padding: 20px 0px 50px 0px;
  }
  /* =======================
     ABOUT
  ======================= */
  .oc-about-inner {
    width: 100%;
  }
  .oc-about-content {
    flex-direction: column;
    gap: 30px;
  }
  /* テキスト */
  .oc-about-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.9;
  }
  /* =======================
     FEATURE
  ======================= */
  .oc-feature-inner {
    width: 100%;
  }
  .oc-feature-item {
    flex-direction: column;
    gap: 20px;
  }
  .oc-feature-left {
    width: auto;
  }
  .oc-feature-text {
    font-size: 16px;
    line-height: 1.9;
  }
  /* =======================
     CONCERNS（丸）
  ======================= */
  /* 悩み */
  .oc-concerns {
    padding: 100px 10px;
    background: #FAFAFA; /* ← ほんのり変える */
    position: relative;
  }
  .oc-concerns-inner {
    width: 90%;
    margin: 0 auto;
  }
  .oc-concern {
    width: 170px;
    height: 170px;
    padding: 12px;
  }
  .oc-concern p {
    font-size: 15px;
  }
  /* 日本語メインタイトル */
  .oc-skinconcerns-ja {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
  }
  .oc-concern-row {
    flex-direction: column;
    align-items: center; /* ← 中央寄せ（お好みで） */
  }
  /* =======================
     HOWTO
  ======================= */
  .oc-howto-inner {
    width: 100%;
  }
  .oc-howto-item {
    flex-direction: column;
    gap: 20px;
  }
  .oc-howto-steps {
    flex-wrap: wrap;
    gap: 12px;
  }
  .oc-howto-step {
    font-size: 1.5rem;
  }
  .oc-howto-text-content {
    font-size: 16px;
    line-height: 1.8;
  }
  /* =======================
     FAQ
  ======================= */
  .oc-faq-inner {
    max-width: 100%;
  }
  /* =======================
     VOICE
  ======================= */
  .oc-voice-inner {
    width: 100%;
  }
  .oc-voice-item, .oc-voice-item.reverse {
    flex-direction: column;
  }
  .oc-voice-icon {
    flex: none;
    width: 180px;
    margin: 0 auto;
  }
  /* =======================
     NOTICE
  ======================= */
  .oc-notice-inner {
    width: 100%;
  }
  /* タイトル */
  .oc-notice-title {
    font-size: 18px;
    text-align: center;
    width: 100%;
  }
  /* =======================
     FOOTER
  ======================= */
  .oc-footer-inner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .oc-footer-left img {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .oc-about, .oc-feature, .oc-concerns, .oc-howto, .oc-voice {
    padding: 80px 20px 40px 20px; /* SPでは上下を縮小 */
  }
}
/*右下固定アイコン*/
.oc-fixed-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}
.oc-fixed-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
}
.oc-fixed-cta.show {
  opacity: 1;
  transform: translateY(0);
}
/* CTAボタン本体 */
.oc-fixed-cta a {
  align-items: center;
  gap: 8px;
  display: inline-block; /* サイズに合わせて中央寄せ */
  background-color: #FFEEF4; /* 薄ピンク */
  border: 1px solid #4C4949; /* ボーダー */
  border-radius: 90px; /* 角丸 */
  padding: 32px 32px; /* 上下・左右の余白 */
  color: #4C4949; /* テキスト */
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.oc-fixed-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .oc-fixed-cta {
    right: 10px;
    bottom: 10px;
  }
  .oc-fixed-cta a {
    padding: 16px 16px; /* 上下・左右の余白 */
    font-size: 15px;
  }
}
/*CTA非表示*/
.oc-page.is-open .oc-fixed-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
/* SPのみ適用 header */
@media (max-width: 768px) {
  .oc-hero {
    min-height: auto;
  }
  .oc-header {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 0;
    width: 100%;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }
  .oc-header.show {
    transform: translateY(0);
  }
}
/*予約ページ*/
.oc-reserve {
  max-width: 70%;
  margin: 0 auto;
  padding: 100px 20px;
}
.oc-step {
  padding: 20px 0 60px 0;
  background: #fff;
}
.oc-step-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0 16px;
  margin: 0;
}
.oc-step-list li a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 10px 16px;
}
.oc-step-list li {
  text-align: center;
  flex: 1;
  position: relative;
  font-size: 15px;
  color: #aaa;
}
.oc-step-list li::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #ddd;
  z-index: -1;
}
.oc-step-list li:last-child::after {
  display: none;
}
.oc-step-num {
  display: block;
  font-weight: bold;
  font-size: 16px;
}
.oc-step-label {
  display: block;
  margin-top: 4px;
}
.oc-step-list li.is-active {
  color: #4C4949;
}
.oc-step-list li.is-active .oc-step-num {
  color: #fff;
  background: #FF9FBF;
  padding: 4px 6px;
  border-radius: 20px;
  display: inline-block;
}
.oc-reserve-calendar iframe {
  width: 100%;
  /*height: 500px;*/
}
@media (max-width: 768px) {
  .oc-reserve-calendar iframe {
    height: 400px;
  }
}
/*step01*/
.oc-next-step {
  text-align: center;
  margin-top: 40px;
}
/* 注釈 */
.oc-next-note {
  font-size: 15px;
  color: #888;
  margin-bottom: 16px;
}
/* ボタン */
.oc-next-btn {
  display: inline-block;
  padding: 16px 32px;
  background-color: #4C4949;
  color: #fff;
  text-decoration: none;
  border-radius: 999px; /* しっかり丸く */
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
/* ホバー */
.oc-next-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}
/* 押した感 */
.oc-next-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
/*step02*/
.oc-step2 {
  padding: 100px 20px;
  background: #FAFAFA;
}
.oc-step2-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
/* ボックス */
.oc-step2-box {
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  padding: 40px 24px;
  margin-top: 40px;
}
/* リード */
.oc-step2-lead {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}
/* 本文 */
.oc-step2-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}
/* 連絡先 */
.oc-step2-contact {
  margin-top: 24px;
}
.oc-step2-contact a {
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #4C4949;
}
/* SP */
@media (max-width: 768px) {
  .oc-step2 {
    padding: 60px 16px;
  }
  .oc-step2-box {
    padding: 24px 16px;
  }
  .oc-step2-lead {
    font-size: 16px;
  }
  .oc-step2-text {
    font-size: 14px;
  }
}
/*事前CSシート*/
.oc-sheet {
  padding: 100px 20px;
  background: #FAFAFA;
}
.oc-sheet-inner {
  max-width: 700px;
  margin: 0 auto;
}
.oc-sheet-lead {
  text-align: center;
  margin-bottom: 40px;
  font-size: 14px;
}
/* フォーム */
.oc-form-group {
  margin-bottom: 24px;
}
.oc-form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}
/* 入力 */
input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  font-size: 14px;
}
/* ===== チェックボックス全体 ===== */
.oc-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
/* ===== 各項目（□＋テキスト） ===== */
.oc-checkbox label {
  display: flex;
  align-items: center; /* ← 縦中央揃えの本体 */
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}
/* ===== チェックボックス本体 ===== */
.oc-checkbox input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
}
/* 送信ボタン */
.oc-form-submit {
  text-align: center;
  margin-top: 40px;
}
.oc-form-submit button {
  background: #4C4949;
  color: #fff;
  padding: 14px 40px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.oc-form-submit button:hover {
  transform: translateY(-2px);
}
/* チェックボックスは幅リセット */
.oc-checkbox input[type="checkbox"] {
  width: auto;
}
.required {
  color: #e60023;
  font-size: 12px;
  margin-left: 6px;
}
/*STEP04*/
.oc-thanks {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 500;
}
/* =======================
   SP最適化（予約ページ）
======================= */
@media (max-width: 768px) {
  /* 全体幅 */
  .oc-reserve {
    max-width: 100%;
    padding: 60px 16px;
  }
  /* =======================
     ステップ
  ======================= */
  .oc-step-list {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    padding: 0 8px;
  }
  .oc-step-list li {
    flex: 1;
    min-width: 0; /* ←これ重要（はみ出し防止） */
    font-size: 11px;
  }
  /* 線は短く調整 */
  .oc-step-list li::after {
    right: -50%;
    height: 1px;
  }
  /* 番号をコンパクトに */
  .oc-step-num {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .oc-step-label {
    font-size: 10px;
    line-height: 1.2;
  }
  /* =======================
     カレンダー
  ======================= */
  .oc-reserve-calendar iframe {
    height: 1300px;
  }
  /* =======================
     ボタン
  ======================= */
  .oc-next-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }
  /* =======================
     STEP2
  ======================= */
  .oc-step2-inner {
    max-width: 100%;
    padding: 0 8px;
  }
  .oc-step2-box {
    padding: 20px 16px;
  }
  /* =======================
     フォーム
  ======================= */
  .oc-sheet {
    padding: 60px 16px;
  }
  .oc-sheet-inner {
    max-width: 100%;
  }
  /* チェックボックス */
  /* 送信ボタン */
  .oc-form-submit button {
    width: 100%;
    padding: 14px;
  }
  /* =======================
     テキスト微調整
  ======================= */
  .oc-next-note {
    font-size: 13px;
  }
  .oc-step2-lead {
    font-size: 15px;
  }
  .oc-step2-contact a {
    font-size: 16px;
  }
}
/*送信中ローディング画面*/
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}
.loading-overlay.active {
  display: flex;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}