@charset "UTF-8";
:root {
  /*カラー*/
  --white: #ffffff;
  --gray-10:#eeeeee;
  --gra-25:#aaaaaa;
  --gray-50:#707070;
  --gray-75:#444444;
  --black:#222222;
  --accent:#0d87e0;
  /*タイポグラフィ*/
  --body:clamp(1rem, 0.95rem + 0.2vw, 1.125rem); /*16-18px*/
  --display:clamp(4.5rem, 1.83rem + 11.34vw, 10rem); /*72-160*/
  --heading1:clamp(2rem, 1.3rem + 3vw, 4rem);
  --heading2:calc(var(--body) * 1.5); /*24-27px*/
  --heading3:calc(var(--body)) *1.2; /*19.2-21.6px*/
  --small-heading2:clamp(0.875rem, 4vw - 1rem, 1.6875rem);
  --small-heading3:calc(var(--small-heading2) * 0.86);
  /*スペース・余白*/
  --space-xs:clamp(1.25rem, 1rem + 0.98vw);
  --space-ms:calc(var(--space-xs) * 1.5);
  --space-md:calc(var(--space-xs) * 2);
  --space-lg:calc(var(--space-xs) * 3);
  --space-xl:calc(var(--space-xs) * 4);
  --space-jump:clamp(1.25rem, 0.35 + 3.8vw, 3.75rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
}

ul,
ol {
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}

p {
  margin: 0 0 16px 0;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

.sp-br{
	display:none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color color border-color;
  cursor: pointer;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background-color: #007bff;
  color: #ffffff;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #0062cc;
}

.btn-secondary {
  background-color: #6c757d;
  color: #ffffff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #565e64;
}

.btn-success {
  background-color: #28a745;
  color: #ffffff;
}
.btn-success:hover, .btn-success:focus {
  background-color: #208637;
}

.btn-danger {
  background-color: #dc3545;
  color: #ffffff;
}
.btn-danger:hover, .btn-danger:focus {
  background-color: #b02a37;
}

.btn-sm {
  padding: 4px 8px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 24px;
  font-size: 1.125rem;
}

/* ========================================
   ヘッダーお問い合わせボタン
======================================== */
.menu-item-contact-btn {
  margin-left: 20px;
}

.header-contact-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
  color: #ffffff !important;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  white-space: nowrap;
}

.header-contact-link:hover {
  background: linear-gradient(135deg, #ff5252 0%, #ff4444 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  color: #ffffff !important;
}

.header-contact-link svg {
  flex-shrink: 0;
}

/* タブレット対応 */
@media (max-width: 1200px) and (min-width: 960px) {
  .menu-item-contact-btn {
    margin-left: 10px;
  }
  .header-contact-link {
    padding: 8px 16px;
    font-size: 13px;
  }
}
/* スマホ対応 */
@media (max-width: 959px) {
  .menu-item-contact-btn {
    margin-left: 0;
    margin-top: 15px;
    padding: 0 20px;
  }
  .header-contact-link {
    display: flex !important;
    justify-content: center;
    width: 100%;
  }
}
.card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.card-header {
  padding: 24px;
  border-bottom: 1px solid #e9ecef;
  background-color: #f8f9fa;
}

.card-body {
  padding: 24px;
}

.card-footer {
  padding: 24px;
  border-top: 1px solid #e9ecef;
  background-color: #f8f9fa;
}

.card-title {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.card-text {
  margin: 0;
  color: #6c757d;
}

.header {
  background-color: #ffffff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
}

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

.l-header-inner {
  height: 60px;
}

.header-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  transition: all 0.3s ease;
}
.header-logo:hover, .header-logo:focus {
  color: #007bff;
}

.header-nav {
  display: flex;
  gap: 24px;
}
@media (min-width: 768px) {
  .header-nav {
    display: none;
  }
}

.header-nav-link {
  color: #212529;
  font-weight: 500;
  transition: all 0.3s ease;
}
.header-nav-link:hover, .header-nav-link:focus {
  color: #007bff;
}

.footer {
  background-color: #212529;
  color: #ffffff;
  padding: 48px 16px;
  margin-top: 48px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: #007bff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.sidebar {
  flex: 0 0 300px;
}
@media (min-width: 768px) {
  .sidebar {
    flex: 0 0 250px;
  }
}
@media (min-width: 576px) {
  .sidebar {
    flex: 0 0 100%;
  }
}

.sidebar-widget {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.sidebar-widget-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #007bff;
}

.sidebar-widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-widget-list li {
  margin-bottom: 8px;
}
.sidebar-widget-list li:last-child {
  margin-bottom: 0;
}
.sidebar-widget-list a {
  color: #212529;
  transition: all 0.3s ease;
}
.sidebar-widget-list a:hover, .sidebar-widget-list a:focus {
  color: #007bff;
  padding-left: 8px;
}

.p-mainVisual__textLayer {
  margin-left: 5%;
}

.p-mainVisual__slideTitle {
  font-size: calc(var(--display) * 0.4);
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
}

.p-mainVisual__slideText {
  font-size: calc(var(--body) * 1.2);
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
}

.c-mvBtn__btn {
  font-size: calc(var(--body) * 1.2);
  font-weight: 700;
}

.p-mainVisual__img {
  -o-object-position: right;
     object-position: right;
}

.l-container {
  padding: 0;
}

.container-full {
  width: 100vw;
}

.txt_orange {
  color: #FFB866;
}

.marker-orange {
  background: linear-gradient(transparent 40%, orange 90%);
}

.marker-blue {
  background: linear-gradient(transparent 40%, #66ADFF 90%) !important;
}

.nayami-img {
  padding: 10px 80px;
}

.nayami-inner {
  background-color: rgb(255, 255, 255);
  width: 900px;
  margin: 0 auto;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  border-radius: 15px;
}

.nayami-columns {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 15px;
  padding-top: 0px;
  border-radius: 15px;
}

.nayami-columns p {
  font-size: calc(var(--body) * 1.5);
}

.nayami-columns-right p {
  margin-left: 50px;
}

.container-full h2 {
  font-size: calc(var(--heading1));
  font-family: "Zen Kurenaido", sans-serif;
  margin-bottom: 80px;
  padding-top: 80px;
}

.nayami-columns .wp-block-image {
  align-items: center;
}

.nayami-columns .wp-block-column {
  font-size: calc(var(--body) * 1.2);
}

.nayami-caret {
  font-size: calc(var(--display));
  color: #FFB866;
  margin: 20px 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution_box {
  width: 1080px;
  margin: 0 auto;
  border: 5px solid #FF9933;
  border-radius: 15px;
  font-size: 32px;
  padding: 20px;
  background-color: #fff;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.txt_l {
  font-size: 2.5rem;
  border-bottom: 3px solid #FF9933;
}

.solution_box p {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.solution_box p::before {
  content: "";
  background-image: url(/wp-content/uploads/2025/11/すらっしゅのコピー.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 10rem;
  flex-shrink: 0;
  display: block;
}

.solution_box p::after {
  content: "";
  background-image: url(/wp-content/uploads/2025/11/すらっしゅ.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 10rem;
  flex-shrink: 0;
  display: block;
}

/*     講師紹介     */
.profile-columns {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
}

/*          CTA           */
.cta-box {
  width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 50px;
  padding-right: 50px;
  font-weight: 700;
}

.cta-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 10px !important;
  gap: 1rem; /* 文字との間隔 */
}

.cta-title__inline {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.cta-title__inline::before,
.cta-title__inline::after {
  content: "";
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  display: block;
}

.cta-title__inline::before {
  content: "";
  background-image: url(/wp-content/uploads/2025/11/スラッシュ記号のコピー.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  flex-shrink: 0;
  display: block;
  order: -1;
}

.cta-title__inline::after {
  content: "";
  background-image: url(/wp-content/uploads/2025/11/スラッシュ記号.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  flex-shrink: 0;
  display: block;
  order: 1;
}

.cta img {
  z-index: 5;
}

/*     reason       */
.reasons-sec {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 35%, #f7f7f7 35%, #f7f7f7 65%, #ffffff 65%, #ffffff 100%);
}

/* 内側のコンテンツを前面に */
.reasons,
.steps {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
}

.reasons .container {
  padding-top: 80px;
}

.reason-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 80px !important;
}

.reason-item {
  width: 300px;
  text-align: left;
}

.reason-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.reason-text {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-top: -30px;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.reason-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.reason-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .reason-list {
    flex-direction: column;
    align-items: center;
  }
  .reason-item {
    width: 90%;
  }
  .section-title {
    font-size: 1.5rem;
  }
}
.steps {
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.step-list {
  display: flex !important;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 20px;
  perspective: 1000px;
  margin-top: 130px;
}

/* 3Dブロック（右奥に伸びる箱） */
.step-box {
  --front: #cfe2ff; /* 正面 */
  --top: #e8f1ff; /* 上面：少し明るい */
  --side: #a8c4f0; /* 右側面：少し暗い */
  --depth: 22px; /* 奥行き（右方向の厚み） */
  --thick: 14px; /* 上面の厚み */
  position: relative;
  width: 260px; /* 必要に応じて調整 */
  background: var(--front); /* ★指定色を維持 */
  border-radius: 6px;
  height: 220px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  z-index: 1; /* 面より前に */
  margin-left: 30px;
  margin-top: 60px;
}

/* ▶ 右側面（clip-path で面を描く／わずかに重ねて隙間防止） */
.step-box::before {
  content: "";
  position: absolute;
  top: -15px; /* ほんの少し重ねる */
  right: calc(-1 * var(--depth));
  width: calc(var(--depth) + 1px); /* 0.5px だけオーバーラップ */
  height: calc(100% + 15px);
  background: linear-gradient(180deg, var(--side), #94b6ee);
  /* 斜めの上辺：上面の厚み分だけ下がった点から始める */
  -webkit-clip-path: polygon(0 var(--thick), 100% 0, 100% 90%, 0 100%);
          clip-path: polygon(0 var(--thick), 100% 0, 100% 90%, 0 100%);
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  z-index: -1;
}

/* ▲ 上面（右に奥行きを持つ台形／こちらも少し重ねる） */
.step-box::after {
  content: "";
  position: absolute;
  top: calc(-1 * var(--thick) - 0.5px); /* ほんの少し重ねる */
  left: -0.5px;
  width: calc(100% + var(--depth) + 1px); /* 右側面と重ねて隙間防止 */
  height: calc(var(--thick) + 5px);
  background: linear-gradient(180deg, var(--top), #d8e7ff);
  /* 左厚み → 右端へ向けて奥に伸びる台形 */
  -webkit-clip-path: polygon(0 100%, var(--thick) 0, 100% 0, calc(100% - var(--depth)) 100%);
          clip-path: polygon(0 100%, var(--thick) 0, 100% 0, calc(100% - var(--depth)) 100%);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  z-index: -1;
}

/* ── 既存の階段調整はそのまま ── */
.step1 {
  height: 160px;
  margin-top: 80px;
}

.step2 {
  height: 200px;
  margin-top: 40px;
}

.step3 {
  height: 240px;
  margin-top: 0;
}

/* 中身（傾けずOK） */
.step-text {
  padding: 28px 20px;
}

.step-text h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.step-text p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #333;
}

.step-box img {
  width: 80px;
  position: absolute;
  top: calc(-1 * var(--thick) - 60px);
  left: 50%;
  transform: translateX(-50%);
}

/* 高さの階段構造 */
.step1 {
  height: 160px;
  margin-top: 80px;
}

.step2 {
  height: 200px;
  margin-top: 40px;
}

.step3 {
  height: 240px;
  margin-top: 0;
}

.step-box img {
  width: 80px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.step-text h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.step-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .step-list {
    flex-direction: column;
    align-items: center;
  }
  .step-box {
    width: 80%;
    max-width: none;
    margin-top: 0 !important;
  }
  .step-box + .step-box {
    margin-top: 40px !important;
  }
}
.voice-columns {
  background-color: #fff;
  padding: 40px;
  border-radius: 25px;
}

.voice-1 {
  margin-top: 80px;
}

/*      プライシング         */
body {
  font-family: "Noto Sans JP", sans-serif;
  background: #ffffff;
  margin: 0;
  padding: 0;
  color: #222;
}

.pricing {
  padding: 100px 20px;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.plan-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 80px;
}

.plan-card {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 40px 30px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #333;
}

.plan-price span {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0d87e0;
}

.plan-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* おすすめプラン強調 */
.featured {
  background: linear-gradient(180deg, #e8f3ff 0%, #f3f8ff 100%);
  border: 1px solid #b7d7ff;
  box-shadow: 0 8px 20px rgba(13, 135, 224, 0.15);
  position: relative;
}

.featured::before {
  content: "おすすめ";
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0d87e0;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .plan-card {
    width: 90%;
  }
}
/*       ステップflow       */
.zoom-steps {
  padding: 80px 20px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  max-width: 330px;
  flex: 1 1 300px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-card img {
  width: 100%;
  height: auto;
  display: block;
}

.step-content {
  padding: 24px 20px 30px;
  text-align: left;
}

.step-number {
  color: #fff;
  background: #FF9933;
  display: inline-block;
  font-weight: bold;
  border-radius: 9999px;
  padding: 6px 16px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.step-number span {
  font-size: 1.2rem;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
}



.join-step-sec {
  padding: 120px 0;
  background: linear-gradient(to top right, #ffffff 0%, #ffffff 35%, #f7f7f7 35%, #f7f7f7 65%, #ffffff 65%, #ffffff 100%);
}

.step-frow {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

/*------- faq ------*/
.faq {
  width: 900px;
  margin: 0 auto;
  padding-top: 80px;
}

.faq .swell-block-accordion__body {
  background-color: #fff;
}

.section-title span {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
}

/* =================-ContactForm7カスタマイズ========================- */


.CF7_table {
  table-layout: fixed;
	width:80%;
}

table.CF7_table {
  width: 80%;
  margin: 0 auto;
  border: 3px solid #e5e5e5;
}



table.CF7_table tr {
  border-top: 1px solid #e5e5e5;

}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table {
  display: table;
}

/*入力欄*/
.CF7_table input, .CF7_table textarea {
  border: 1px solid #d8d8d8;
	width:100%;
}

.CF7_table ::-moz-placeholder {
  color: #797979;
}

.CF7_table ::placeholder {
  color: #797979;
}

/*「必須」文字*/
.CF7_req {
  font-size: 0.9em;
  padding: 5px;
  background: #f79034; /*オレンジ*/
  color: #fff;
  border-radius: 3px;
  margin-right: 1em;
}

/*「任意」文字*/
.CF7_unreq {
  font-size: 0.9em;
  padding: 5px;
  background: #bdbdbd; /*グレー*/
  color: #fff;
  border-radius: 3px;
  margin-right: 1em;
}

/* タイトル列 */
@media screen and (min-width: 768px) {
  .CF7_table th {
    width: 30%; /*横幅*/
    background-color: #ebedf5; /*ブルーグレー*/
  }
}


/* レスポンシブ */
@media screen and (max-width: 768px) {
  table.CF7_table {
    width: 95%;
  }
  .CF7_table tr, .CF7_table td, .CF7_table th {
    display: block;
    width: 100%;
    line-height: 2.5em;
  }
  .CF7_table th {
    background-color: #ebedf5;
  }
}


/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
  background-color: #f79034; /* オレンジ*/
  border: 0;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 auto;
}

.CF7_btn {
  text-align: center;
  margin-top: 20px;
}

.wpcf7-spinner {
  width: 0;
  margin: 0;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 8px !important;
}

.m-2 {
  margin: 16px !important;
}

.m-3 {
  margin: 24px !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 8px !important;
}

.p-2 {
  padding: 16px !important;
}

.p-3 {
  padding: 24px !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-primary {
  color: #007bff !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-white {
  color: #ffffff !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.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;
}

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

.justify-center {
  justify-content: center !important;
}

.align-center {
  align-items: center !important;
}

.gap-1 {
  gap: 8px !important;
}

.gap-2 {
  gap: 16px !important;
}

.gap-3 {
  gap: 24px !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-default {
  cursor: default !important;
}



/* ==--------------------------------------------------------------
 * 
 * 
 * 　　　　　　　　　タブレット
 * 
 * 
 * ========------------------------------------------------------*/

@media (max-width: 768px) {
  .sp-br {
    display: block;
  }
  .p-mainVisual__img {
    -o-object-position: 70% center;
       object-position: 70% center;
  }
  .p-mainVisual__slideTitle {
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9);
  }
  .p-mainVisual__slideText {
    font-size: calc(var(--body) );
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9);
  }
  .nayami-inner {
    background-color: rgb(255, 255, 255);
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
  }
	
	.nayami-img{
		width:100%;
		padding:10px;
	}
	
	
  .nayami-columns {
    width: 92%;
    margin: 0 auto;
    background-color: #fff;
    padding: 0px;
    padding-top: 0px;
    border-radius: 15px;
  }
	
	
  .nayami-columns p {
    font-size: calc(var(--body) * 1.3);
  }
  .nayami-columns-right p {
    margin-left: 10px;
  }
  .container-full {
    padding-top: 0px;
  }
  .container-full h2 {
    font-size: calc(var(--heading1));
    font-family: "Zen Kurenaido", sans-serif;
    margin-bottom: 50px;
  }
  .nayami-columns .wp-block-image {
    align-items: center;
  }
  .nayami-columns .wp-block-column {
    font-size: calc(var(--body) * 1.2);
  }
  .nayami-caret {
    font-size: calc(var(--display));
    color: #FFB866;
    margin: 20px 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .solution_box {
    width: 90%;
    margin: 0 auto;
    border: 5px solid #FF9933;
    border-radius: 15px;
    font-size: 1rem;
    padding: 5px;
    background-color: #fff;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .txt_l {
    font-size: 1.2rem;
    border-bottom: 3px solid #FF9933;
  }
  .solution_box p::before {
    content: "";
    background-image: url(/wp-content/uploads/2025/11/すらっしゅのコピー.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 10rem;
    flex-shrink: 0;
    display: block;
  }
  .solution_box p::after {
    content: "";
    background-image: url(/wp-content/uploads/2025/11/すらっしゅ.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 10rem;
    flex-shrink: 0;
    display: block;
  }
  /*     講師紹介     */
  .profile-columns {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
  }
  /*          CTA           */
  .cta-box {
    width: 92%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 700;
  }
  .post_content > .cta-box {
    margin-top: 50px;
  }
  .cta-box p {
    text-align: left;
  }
  .cta-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    gap: 1rem; /* 文字との間隔 */
  }
	
	.cta-img{
		width:50% !important;
		margin:0 auto;
	}
  .cta img {
    z-index: 5;
    width: 150px;
  }
  /*     reason       */
  .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
  }
  .reasons .container {
    padding-top: 80px;
  }
  .reason-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 80px !important;
  }
  .reason-item {
    width: 92%;
    text-align: left;
  }
  .reason-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
  }
  .reason-text {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-top: -30px;
    padding: 20px;
    position: relative;
    z-index: 2;
  }
  .reason-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .reason-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
  }
  .steps {
    padding: 80px 20px;
    text-align: center;
  }
  .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  .step-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 20px;
    perspective: 1000px;
    margin-top: 130px;
  }
  /* 3Dブロック（右奥に伸びる箱） */
  .step-box {
    --front: #cfe2ff; /* 正面 */
    --top: #e8f1ff; /* 上面：少し明るい */
    --side: #a8c4f0; /* 右側面：少し暗い */
    --depth: 22px; /* 奥行き（右方向の厚み） */
    --thick: 14px; /* 上面の厚み */
    position: relative;
    width: 260px; /* 必要に応じて調整 */
    background: var(--front); /* ★指定色を維持 */
    border-radius: 6px;
    height: 220px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
    z-index: 1; /* 面より前に */
    margin-left: 30px;
    margin-top: 60px;
  }
  /* ▶ 右側面（clip-path で面を描く／わずかに重ねて隙間防止） */
  .step-box::before {
    content: "";
    position: absolute;
    top: -15px; /* ほんの少し重ねる */
    right: calc(-1 * var(--depth));
    width: calc(var(--depth) + 1px); /* 0.5px だけオーバーラップ */
    height: calc(100% + 15px);
    background: linear-gradient(180deg, var(--side), #94b6ee);
    /* 斜めの上辺：上面の厚み分だけ下がった点から始める */
    -webkit-clip-path: polygon(0 var(--thick), 100% 0, 100% 90%, 0 100%);
            clip-path: polygon(0 var(--thick), 100% 0, 100% 90%, 0 100%);
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    z-index: -1;
  }
  /* ▲ 上面（右に奥行きを持つ台形／こちらも少し重ねる） */
  .step-box::after {
    content: "";
    position: absolute;
    top: calc(-1 * var(--thick) - 0.5px); /* ほんの少し重ねる */
    left: -0.5px;
    width: calc(100% + var(--depth) + 1px); /* 右側面と重ねて隙間防止 */
    height: calc(var(--thick) + 5px);
    background: linear-gradient(180deg, var(--top), #d8e7ff);
    /* 左厚み → 右端へ向けて奥に伸びる台形 */
    -webkit-clip-path: polygon(0 100%, var(--thick) 0, 100% 0, calc(100% - var(--depth)) 100%);
            clip-path: polygon(0 100%, var(--thick) 0, 100% 0, calc(100% - var(--depth)) 100%);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    z-index: -1;
  }
  /* ── 既存の階段調整はそのまま ── */
  .step1 {
    height: 160px;
    margin-top: 80px;
  }
  .step2 {
    height: 200px;
    margin-top: 40px;
  }
  .step3 {
    height: 240px;
    margin-top: 0;
  }
  /* 中身（傾けずOK） */
  .step-text {
    padding: 28px 20px;
  }
  .step-text h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  .step-text p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #333;
  }
  .step-box img {
    width: 80px;
    position: absolute;
    top: calc(-1 * var(--thick) - 60px);
    left: 50%;
    transform: translateX(-50%);
  }
  /* 高さの階段構造 */
  .step1 {
    height: 160px;
    margin-top: 80px;
  }
  .step2 {
    height: 200px;
    margin-top: 40px;
  }
  .step3 {
    height: 240px;
    margin-top: 0;
  }
  .step-box img {
    width: 80px;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
  }
  .step-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  .step-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
  }
  /* スマホ対応 */
  /*      プライシング         */
  /* おすすめプラン強調 */
  /*       ステップflow       */
  /*------- faq ------*/
}
@media (max-width: 768px) and (max-width: 768px) {
  .step-list {
    flex-direction: column;
    align-items: center;
  }
  .step-box {
    width: 80%;
    max-width: none;
    margin-top: 0 !important;
  }
  .step-box + .step-box {
    margin-top: 40px !important;
  }
}
@media (max-width: 768px) {
  .voice-columns {
    background-color: #fff;
    padding: 40px;
    border-radius: 25px;
  }
  .voice-1 {
    margin-top: 80px;
  }
  body {
    font-family: "Noto Sans JP", sans-serif;
    background: #ffffff;
    margin: 0;
    padding: 0;
    color: #222;
  }
  .pricing {
    padding: 20px, 20px, 40px, 20px;
    text-align: center;
  }
  .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  .plan-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 80px;
  }
  .plan-card {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 40px 30px;
    width: 100%;
    margin-bottom: 30px;
  }
  .plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .plan-price {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #333;
  }
  .plan-price span {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0d87e0;
  }
  .plan-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }
  .featured {
    background: linear-gradient(180deg, #e8f3ff 0%, #f3f8ff 100%);
    border: 1px solid #b7d7ff;
    box-shadow: 0 8px 20px rgba(13, 135, 224, 0.15);
    position: relative;
  }
  .featured::before {
    content: "おすすめ";
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0d87e0;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
  }
  .plan-list {
    display: block !important;
    flex-direction: column;
    gap: 1.5rem;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .plan-card {
    width: 100%;
    display: block;
  }
  .join-step-sec {
    padding-bottom: 0px;
  }
  .zoom-steps {
    padding: 80px 20px;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
  }
  .container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .steps {
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
  }
  .step-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    max-width: 100%;
    transition: all 0.3s ease;
    display: flex;
    height: auto;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  .step-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  .step-content {
    padding: 24px 20px 30px;
    text-align: left;
    height: auto;
  }
  .step-number {
    color: #fff;
    background: #FF9933;
    display: inline-block;
    font-weight: bold;
    border-radius: 9999px;
    padding: 6px 16px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
  }
  .step-number span {
    font-size: 1.2rem;
  }
  .step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }
  .step-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
  }
  .step-frow {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .faq {
    width: 92%;
    margin: 0 auto;
    padding-top: 80px;
  }
  .faq .swell-block-accordion__body {
    background-color: #fff;
  }
  .section-title span {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
  }
}/*# sourceMappingURL=style.css.map */


















/* ==--------------------------------------------------------------
 * 
 * 
 * 　　　　　　　　　スマホサイズ
 * 
 * 
 * ========------------------------------------------------------*/

@media (max-width: 450px) {
  .sp-br {
    display: block;
  }
	

  .p-mainVisual__img {
    -o-object-position: 70% center;
       object-position: 70% center;
  }
 
  .p-mainVisual__slideText {
    font-size: 1rem;
	  margin-bottom:15px;
  }
  .nayami-inner {
    background-color: rgb(255, 255, 255);
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
  }
	
	.nayami-img{
		width:100%;
		padding:10px;
	}
	
	
  .nayami-columns {
    width: 92%;
 
  }
	
	
  .nayami-columns p {
    font-size: calc(var(--body) * 1.3);
  }
  .nayami-columns-right p {
    margin-left: 10px;
  }
  .container-full {
    padding-top: 0px;
  }
  .container-full h2 {
    font-size: calc(var(--heading1));
    font-family: "Zen Kurenaido", sans-serif;
    margin-bottom: 50px;
  }
  .nayami-columns .wp-block-image {
    align-items: center;
  }
  .nayami-columns .wp-block-column {
    font-size: calc(var(--body) * 1.2);
  }
  .nayami-caret {
    font-size: calc(var(--display));
    color: #FFB866;
    margin: 20px 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
	
	
  .solution_box {
    width: 92%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .txt_l {
    font-size: 1.2rem;
  }
  .solution_box p::before {
 
    width: 25px;

  }
  .solution_box p::after {

    width: 25px;
    height: 10rem;

  }
  /*     講師紹介     */
  .profile-columns {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
  }
  /*          CTA           */
  .cta-box {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 700;
  }
  .post_content > .cta-box {
    margin-top: 50px;
  }
  .cta-box p {
    text-align: left;
	  margin-left:10px;
  }
  .cta-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    gap: 1rem; /* 文字との間隔 */
  }
  .cta img {
    z-index: 5;
    width: 150px;
  }
  /*     reason       */
  .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
  }
  .reasons .container {
    padding-top: 80px;
  }
  .reason-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 80px !important;
  }
  .reason-item {
    width: 92%;
    text-align: left;
  }
  .reason-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
  }
  .reason-text {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-top: -30px;
    padding: 20px;
    position: relative;
    z-index: 2;
  }
  .reason-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .reason-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
  }
  .steps {
    padding: 80px 20px;
    text-align: center;
  }
  .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  .step-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 20px;
    perspective: 1000px;
    margin-top: 130px;
  }
  /* 3Dブロック（右奥に伸びる箱） */
  .step-box {
    --front: #cfe2ff; /* 正面 */
    --top: #e8f1ff; /* 上面：少し明るい */
    --side: #a8c4f0; /* 右側面：少し暗い */
    --depth: 22px; /* 奥行き（右方向の厚み） */
    --thick: 14px; /* 上面の厚み */
    position: relative;
    width: 260px; /* 必要に応じて調整 */
    background: var(--front); /* ★指定色を維持 */
    border-radius: 6px;
    height: 220px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
    z-index: 1; /* 面より前に */
    margin-left: 0px;
    margin-top: 60px;
  }
  /* ▶ 右側面（clip-path で面を描く／わずかに重ねて隙間防止） */
  .step-box::before {
    content: "";
    position: absolute;
    top: -15px; /* ほんの少し重ねる */
    right: calc(-1 * var(--depth));
    width: calc(var(--depth) + 1px); /* 0.5px だけオーバーラップ */
    height: calc(100% + 15px);
    background: linear-gradient(180deg, var(--side), #94b6ee);
    /* 斜めの上辺：上面の厚み分だけ下がった点から始める */
    -webkit-clip-path: polygon(0 var(--thick), 100% 0, 100% 90%, 0 100%);
            clip-path: polygon(0 var(--thick), 100% 0, 100% 90%, 0 100%);
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    z-index: -1;
  }
  /* ▲ 上面（右に奥行きを持つ台形／こちらも少し重ねる） */
  .step-box::after {
    content: "";
    position: absolute;
    top: calc(-1 * var(--thick) - 0.5px); /* ほんの少し重ねる */
    left: -0.5px;
    width: calc(100% + var(--depth) + 1px); /* 右側面と重ねて隙間防止 */
    height: calc(var(--thick) + 5px);
    background: linear-gradient(180deg, var(--top), #d8e7ff);
    /* 左厚み → 右端へ向けて奥に伸びる台形 */
    -webkit-clip-path: polygon(0 100%, var(--thick) 0, 100% 0, calc(100% - var(--depth)) 100%);
            clip-path: polygon(0 100%, var(--thick) 0, 100% 0, calc(100% - var(--depth)) 100%);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    z-index: -1;
  }
  /* ── 既存の階段調整はそのまま ── */
  .step1 {
    height: 160px;
    margin-top: 80px;
  }
  .step2 {
    height: 200px;
    margin-top: 40px;
  }
  .step3 {
    height: 240px;
    margin-top: 0;
  }
  /* 中身（傾けずOK） */
  .step-text {
    padding: 28px 20px;
  }
  .step-text h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  .step-text p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #333;
  }
  .step-box img {
    width: 80px;
    position: absolute;
    top: calc(-1 * var(--thick) - 60px);
    left: 50%;
    transform: translateX(-50%);
  }
  /* 高さの階段構造 */
  .step1 {
    height: 160px;
    margin-top: 80px;
  }
  .step2 {
    height: 200px;
    margin-top: 40px;
  }
  .step3 {
    height: 240px;
    margin-top: 0;
  }
  .step-box img {
    width: 80px;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
  }
  .step-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  .step-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
  }
  /* スマホ対応 */
  /*      プライシング         */
  /* おすすめプラン強調 */
  /*       ステップflow       */
  /*------- faq ------*/
}
@media (max-width: 768px) and (max-width: 768px) {
  .step-list {
    flex-direction: column;
    align-items: center;
  }
  .step-box {
    width: 80%;
    max-width: none;
    margin-top: 0 !important;
  }
  .step-box + .step-box {
    margin-top: 40px !important;
  }
}
@media (max-width: 768px) {
  .voice-columns {
    background-color: #fff;
    padding: 40px;
    border-radius: 25px;
  }
  .voice-1 {
    margin-top: 80px;
  }
  body {
    font-family: "Noto Sans JP", sans-serif;
    background: #ffffff;
    margin: 0;
    padding: 0;
    color: #222;
  }
  .pricing {
    padding: 20px, 20px, 40px, 20px;
    text-align: center;
  }
  .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  .plan-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 80px;
  }
  .plan-card {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 40px 30px;
    width: 100%;
    margin-bottom: 30px;
  }
  .plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .plan-price {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #333;
  }
  .plan-price span {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0d87e0;
  }
  .plan-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }
  .featured {
    background: linear-gradient(180deg, #e8f3ff 0%, #f3f8ff 100%);
    border: 1px solid #b7d7ff;
    box-shadow: 0 8px 20px rgba(13, 135, 224, 0.15);
    position: relative;
  }
  .featured::before {
    content: "おすすめ";
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0d87e0;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
  }
  .plan-list {
    display: block !important;
    flex-direction: column;
    gap: 1.5rem;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .plan-card {
    width: 100%;
    display: block;
  }
  .join-step-sec {
    padding-bottom: 0px;
	  padding-top:0px;
  }
  .zoom-steps {
    padding: 40px 20px;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
  }
  .container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .steps {
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
  }
  .step-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    max-width: 100%;
    transition: all 0.3s ease;
    display: flex;
    height: auto;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  .step-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  .step-content {
    padding: 24px 20px 30px;
    text-align: left;
    height: auto;
  }
  .step-number {
    color: #fff;
    background: #FF9933;
    display: inline-block;
    font-weight: bold;
    border-radius: 9999px;
    padding: 6px 16px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
  }
  .step-number span {
    font-size: 1.2rem;
  }
  .step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }
  .step-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
  }
  .step-frow {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .faq {
    width: 92%;
    margin: 0 auto;
    padding-top: 80px;
  }
  .faq .swell-block-accordion__body {
    background-color: #fff;
  }
  .section-title span {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
  }
}/*# sourceMappingURL=style.css.map */

