:root {
  --color-primary: #5e81ac;
  --color-primary-light: #a4c5ec;
  --color-dark: #1c2533;
  --color-accent: #a5885e;
  --color-cream: #fffef7;
  --color-white: #fff;
}

/* reset */
.post_content ol,
.post_content ul,
ol,
ul {
  padding-left: 0;
}
ul li::marker {
  content: none;
  background-color: var(--color-primary);
  color: var(--color-primary);
}
ol li::marker {
  background-color: var(--color-primary);
  color: var(--color-primary);
  font-family: "Times New Roman", Georgia, serif;
  font-weight: bold;
}
.wp-block-list {
  padding-left: 20px!important;
}
.wp-block-list li {
  position: relative;
}
ul.wp-block-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background-color: var(--color-primary);
  position: absolute;
  left: -16px;
  top: 8px;
  color: var(--color-primary);
}
/* スクロールアニメーション */
.anime {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}
.anime.is-animated {
  opacity: 1;
  transform: translateY(0);
}
.anime-delay-1 {
  transition-delay: 0.12s;
}
.anime-delay-2 {
  transition-delay: 0.24s;
}
.anime-delay-3 {
  transition-delay: 0.36s;
}
.anime-fast {
  transition-duration: 0.5s;
}
.anime-slow {
  transition-duration: 1.1s;
}
@media (prefers-reduced-motion: reduce) {
  .anime {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 共通パーツ */
.l-content {
  margin-bottom: 0;
}
.forPC {
  display: inline-block;
}
.forSP {
  display: none;
}
.font-min {
  font-family: "Noto Serif JP", serif;
}
.font-en {
  font-family: "La Belle Aurore", cursive;
  font-weight: 400;
  font-style: normal;
}
.font-times {
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 400;
}
.post_content iframe {
  aspect-ratio: 16 / 9;
  max-width: 560px;
  height: auto;
  width: 100%;
}
.cta {
  background-image: url("../../swell/assets/img/common/cta-bg.jpg");
  background-position: center;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  text-align: center;
  height: 420px;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cta-container .swl-fz {
  color: var(--color-cream);
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.cta_button {
  border-radius: 10px;
  color: var(--color-white);
  width: 426px;
  max-width: 100%;
  font-size: 20px;
  box-shadow: 0 4px 4px rgba(80, 112, 119, 0.5);
  font-weight: bold;
  height: 74px;
  position: relative;
  cursor: pointer;
}
.cta_button a {
  display: block;
  width: 100%;
  height: 100%;
}
.cta_button span {
  color: var(--color-accent);
  font-size: 14px;
  text-align: center;
  display: block;
  margin-top: 16px;
  position: relative;
  top: -12px;
  margin-right: auto;
  margin-left: auto;
  max-width: 248px;
  border: 1px solid var(--color-accent);
  border-radius: 5px;
  padding: 4px 12px;
  background-color: var(--color-white);
  line-height: 1;
}
.cta_button p {
  color: var(--color-white);
}
.cta_button::after {
  content: "";
  display: block;
  background-image: url("../../swell/assets/img/common/arrow-g-r.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.cta_button_01,
.cta_line_button {
  background: linear-gradient(90deg, #28a745, #3dc95d);
}
.cta_button_01::after {
  background-image: url("../../swell/assets/img/common/arrow-g-r.svg");
}
.cta_button_02 {
  background: linear-gradient(90deg, var(--color-accent), #f5e6ca);
}
.cta_button_02::after {
  background-image: url("../../swell/assets/img/common/arrow-gl-r.svg");
}
.btn {
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.btn a {
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.btn_sm {
  width: 188px;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 8px;
  font-size: clamp(12px, 3.2vw, 14px);
  line-height: 1.4;
}
.btn_gold {
  background-color: #c9a84c;
  color: var(--color-white);
}
.btn_blue {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn_border {
  border: 1px solid var(--color-primary);
  background-color: var(--color-cream);
  color: var(--color-primary);
}
.btn_border a {
  color: var(--color-primary);
}
.btn_bg {
  width: 317px;
  max-width: 100%;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta_line_button {
  max-width: 240px;
  height: 56px;
}
.cmn__flex {
  display: flex;
}
.cmn__border {
  border-bottom: 1px dashed var(--color-accent);
  display: block;
}
/* 吹き出し */
.balloon {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 0.5em 0 0.5em 20px;
  padding: 1em 1.25em;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary-light);
  border-radius: 12px;
  line-height: 1.8;
}
.balloon::before,
.balloon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
}
.balloon::before {
  left: -11px;
  border-width: 9px 11px 9px 0;
  border-color: transparent var(--color-primary-light) transparent transparent;
}
.balloon::after {
  left: -9px;
  border-width: 8px 10px 8px 0;
  border-color: transparent var(--color-white) transparent transparent;
}
.balloon--right {
  margin-left: 0;
  margin-right: 20px;
}
.balloon--right::before,
.balloon--right::after {
  left: auto;
}
.balloon--right::before {
  right: -11px;
  border-width: 9px 0 9px 11px;
  border-color: transparent transparent transparent var(--color-primary-light);
}
.balloon--right::after {
  right: -9px;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent var(--color-white);
}
.balloon-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 1em 0;
}
.balloon-row--right {
  flex-direction: row-reverse;
}
.balloon-row .balloon {
  margin: 0;
}
.balloon-row__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.c-pageTitle {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.c-pageTitle__subTitle {
  font-family: "Aboreto", system-ui;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.05em;
}
:is(.post_content, .l-mainContent__inner) h2:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)) {
  background: none;
  color: var(--color-primary);
  padding: 0;
  font-size: 32px;
  margin-bottom: 0.5em;
  margin-top: 1em;
  font-family: "Times New Roman", Georgia, serif;
}
:is(.post_content, .l-mainContent__inner)
  h2:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title))::before {
  content: none;
  border: none;
}
.post_content h3 {
  margin-top: 1em;
}
/* SUBエリア */
.subvoices {
  background-color: #f7f4ef;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding-top: 4em;
  padding-bottom: 3em;
}
.subvoices .voices-list {
  padding: 3em 0;
}
.subvoices__head {
  text-align: center;
}
h2.subvoices__title {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--color-primary);
  font-size: 32px;
  font-family: "Times New Roman", Georgia, serif;
}
.subvoices__label,
.subfaq__subttl {
  text-align: center;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 100px;
  margin-right: auto;
  margin-left: auto;
  display: table;
  font-weight: bold;
  padding: 2px 12px;
}
.subfaq {
  margin-top: 4em;
  padding-bottom: 4em;
}
.subfaq__ttle,
.subfaq__subttl {
  text-align: center;
}
h2.subfaq__ttle {
  margin-bottom: 0;
}
.subfaq .pagefaq__list {
  margin-top: 2em;
}
/* header */
.-series .l-header__logo {
  padding: 0;
}
.l-header__spNav {
  display: none;
}
.c-catchphrase {
  display: none;
}
.-series .c-headLogo {
  height: 80px;
}
.c-gnav {
  align-items: center;
}
.c-gnav > li:last-of-type {
  background-color: #00b900;
  height: 48px;
  color: var(--color-white);
  border-radius: 4px;
  margin-left: 12px;
}
.c-gnav > li:last-of-type > a {
  padding: 4px 12px;
}
.c-gnav > .menu-item > a {
  font-family: "Times New Roman", Georgia, serif;
}
.l-fixHeader__logo {
  padding: 0;
}
a:hover,
.cta_button:hover,
.btn:hover {
  opacity: 0.6;
  transition: all ease 0.2s;
}

/* footer */
footer#footer {
  background-color: var(--color-primary);
}

/* TOPPAGE */
.top #content {
  margin-bottom: 0;
}
.p-mainVisual__slideTitle::after {
  content: "This is where your story changes.";
  font-family: "Times New Roman", Georgia, serif;
  color: var(--color-accent);
  font-style: italic;
  position: absolute;
  top: -52px;
  left: 0;
  font-size: 32px;
}
.p-mainVisual__slideTitle {
  font-size: 72px;
  font-family: "Noto Serif JP", serif;
  text-shadow: none;
  letter-spacing: 0.01em;
  color: var(--color-dark);
  position: relative;
}
.p-mainVisual__slideText {
  font-size: 19px;
  letter-spacing: 0.02em;
  text-shadow: none;
  color: var(--color-dark);
}
.topabout {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #f6e8cf;
  padding-top: 3rem;
}
.topabout .sign {
  text-align: right;
}
.topabout .name {
  font-size: 24px;
}
.topabout .btn {
  margin-right: auto;
  margin-left: auto;
}
.topabout_catch {
  color: var(--color-primary);
  font-size: 28px;
}
.topinner {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
.top #content {
  padding-top: 0;
}
.page-top {
  margin-bottom: 0;
}
.page-top h2 {
  background: none;
  color: var(--color-primary);
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 400;
  font-size: 45px;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 0;
  font-style: italic;
}
.page-top h2::before {
  content: none;
}
.page-top h3 {
  margin-top: 0;
  font-size: 17px;
}
.page-top h3::before {
  content: none;
}
.page-top section {
  padding-bottom: 120px;
}

.topplan {
  background-color: var(--color-cream);
  width: 100vw;
  padding-top: 3rem;
  margin: 0 calc(50% - 50vw);
}
.topplan h4 {
  border-left: none;
  padding-left: 0;
  color: var(--color-primary);
  font-size: 28px;
  margin-bottom: 28px;
  margin-top: 0;
  font-family: "Noto Serif JP", serif;
}
.topplan .wp-block-columns {
  background-color: var(--color-white);
  padding: 3rem 4rem;
  border-radius: 10px;
  border: 1px solid var(--color-primary-light);
  margin-top: 3rem;
}
.topplan .wp-block-columns:not(.wp-block-columns ~ .wp-block-columns) {
  border: 5px solid var(--color-primary-light);
  margin-top: 0;
}
.topplan .btn_blue {
  margin-right: auto;
  margin-left: auto;
}
.topplan .btn_gold {
  margin-right: auto;
  margin-left: auto;
}
.topplan .btn_sm {
  margin-right: auto;
  margin-left: auto;
}
.topwhy {
  background-color: var(--color-primary-light);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding-top: 3rem;
}
.topwhy h4 {
  border-left: none;
  font-size: 28px;
  color: var(--color-primary);
  padding-left: 0;
  font-family: "Noto Serif JP", serif;
}
.topwhy .wp-block-columns {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  margin-bottom: 3em;
}
.topwhy .wp-block-columns:last-of-type {
  background-color: var(--color-primary);
  align-items: center !important;
}
.topwhy__support {
  color: var(--color-white);
}
.topwhy__support .wp-block-columns {
  gap: 3rem !important;
}
.topwhy__support .ttl {
  color: #fffde4;
  font-family: "Aboreto", system-ui;
  font-style: italic;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: -0.1em;
}
.topwhy__support .subttl {
  font-size: 18px;
}
.topwhy__support .ttl {
  font-size: 24px;
}
.topwhy__support ul {
  padding-left: 0;
}
.topwhy__support ul li {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-weight: bold;
}
.topwhy__support ul li::first-line {
}
.topwhy__support ul li + li {
  margin-top: 1rem;
}
.topwhy__support ul p {
  font-weight: initial;
}
.topwhy__support ul li::before {
  content: "";
  display: block;
  background-image: url(../../swell/assets/img/common/ico-check.svg);
  width: 18px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: cover;
}
.topvoices {
  background-color: var(--color-cream);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding-top: 4rem;
}
.topvoices .voices-list,
.subvoices .voices-list {
  display: flex;
  padding-left: 0;
  gap: 16px;
}
.topvoices .voices-list li,
.subvoices .voices-list li {
  width: 50%;
  list-style: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
.topvoices .voices-list li img,
.subvoices .voices-list li img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.topvoices .voice-content,
.subvoices .voice-content {
  background-color: var(--color-white);
  padding: 2rem 1rem;
  margin-top: -0.5em;
  border-radius: 0 10px 10px 0;
}
.topvoices .voice-title,
.subvoices .voice-title {
  font-weight: bold;
  font-size: 18px;
  color: var(--color-dark);
  height: 56px;
}
.topvoices .voice-more,
.subvoices .voice-more {
  font-weight: bold;
  margin-top: 2rem;
  display: block;
  text-align: right;
  font-family: "Aboreto", system-ui;

}
.topvoices .btn {
  margin-right: auto;
  margin-left: auto;
  margin-top: 2rem;
}

/* VOICE */
.page-voice h1 {
  font-size: 1.5em;
}
.page-voice h3 {
  margin-top: 0;
  max-width: 900px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.1em;
}
.voice-sectionTitle {
  background: none;
  border-left: none;
  color: var(--color-primary);
  font-family: "Times New Roman", serif;
  font-size: 36px;
  margin: 0 0 24px;
  padding: 0;
  text-align: center;
}
.voice-sectionTitle::before {
  content: none;
}
.voice-featuredList,
.voice-testimonialList {
  display: grid;
  gap: 80px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.voice-featuredItem,
.voice-testimonialItem {
  background: var(--color-white);
  border: 1px solid var(--color-primary-light);
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.voice-testimonialItem {
  overflow: initial;
  border: none;
  position: relative;
}
.voice-featuredItem a {
  color: inherit;
  display: block;
  height: 100%;
  text-decoration: none;
}
.voice-testimonialItem {
}
.voice-featuredThumb {
  aspect-ratio: 16 / 10;
  background: #f6f6f6;
  overflow: hidden;
}
.voice-featuredThumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.voice-testimonials {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: var(--color-cream);
  padding: 2em 2em 4em 2em;
  margin-top: 2em;
}
.voice-testimonials h3 {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.voice-featuredBody,
.voice-testimonialBody {
  padding: 24px;
}
.voice-featuredTitle,
h4.voice-testimonialName {
  color: var(--color-dark);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 12px;
}
.voice-featuredTitle::before,
.voice-testimonialName::before {
  content: none;
}
.voice-featuredExcerpt,
.voice-testimonialText {
  line-height: 1.9;
  margin: 0;
}
.voice-featuredMore {
  color: var(--color-accent);
  font-family: "Aboreto", system-ui;
  font-weight: bold;
  margin-top: 20px;
  text-align: right;
  display: block;
}
.voice-testimonialList {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4em;
  max-width: 1100px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.voice-testimonialList--scrollable {
  display: flex;
  gap: 20px;
  max-width: 1000px;
  width: calc(100% - 4em);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 2em 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-top: 40px;
}
.voice-testimonialList--scrollable .voice-testimonialItem {
  flex: 0 0 min(320px, 70vw);
  scroll-snap-align: start;
}
.voice-testimonialItem {
  padding: 80px 24px 24px;
}
.voice-testimonialImg {
  border-radius: 50%;
  flex: 0 0 96px;
  height: 96px;
  object-fit: cover;
  width: 96px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
}
.voice-testimonialItemTtl {
  text-align: center;
}
.voice-testimonialText {
  margin-top: 1rem;
}
.voice-testimonialText a {
  display: block;
  text-align: right;
  font-size: 14px;
  margin-top: 1em;
}
.voice-testimonialBody {
  padding: 0;
}
.voice-link {
  display: block;
  margin-right: 1em;
  text-align: right;
}
.voice-casestudies {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.voice-casestudyList {
  list-style: none;
  margin: 0;
  padding: 0;
}
.voice-casestudySlider {
  margin-top: 4em;
  overflow: hidden;
  padding: 0 64px 48px;
}
.voice-casestudyItem {
  background: var(--color-white);
  border: 1px solid var(--color-primary-light);
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  height: auto;
  overflow: hidden;
}
.voice-casestudySlider .swiper-slide {
  display: flex;
  flex-direction: column;
}
.voice-casestudyImg {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
}
.voice-casestudyBody {
  padding: 24px;
}
.voice-casestudyName {
  border-left: none;
  color: var(--color-dark);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 16px;
  padding: 0;
}
.voice-casestudyName::before {
  content: none;
}
.voice-casestudyCompare {
  display: grid;
  gap: 12px;
}
.voice-casestudyText {
  background: var(--color-cream);
  border-radius: 6px;
  padding: 14px;
}
.voice-casestudyText p {
  line-height: 1.8;
  margin: 6px 0 0;
}
.voice-casestudyLabel {
  color: var(--color-accent);
  display: inline-block;
  font-size: 22px;
  font-family: "Aboreto", system-ui;
  font-style: italic;
}
.voice-casestudyLabel-before {
  position: relative;
}
.voice-casestudyLabel-before::before {
  content: "";
  display: block;
  background-image: url(../../swell/assets/img/common/arrow-bl-d.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -28px;
}
.voice-casestudyLabel-after {
  border: 2px solid #5e81ac;
}
.voice-casestudyImglines {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6em;
  margin-top: 1em;
}
.voice-casestudyButton {
  background: var(--color-white);
  border: 1px solid var(--color-primary-light);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  color: var(--color-accent);
  height: 44px;
  width: 44px;
  top: 30%;
}
.voice-casestudyButton::after {
  font-size: 18px;
  font-weight: bold;
}
.voice-casestudySlider .swiper-pagination-bullet {
  background: var(--color-primary-light);
  opacity: 1;
}
.voice-casestudySlider .swiper-pagination-bullet-active {
  background: var(--color-accent);
}

.topflow {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-color: #faf8cc;
  padding-top: 3rem;
}
.topflow .topinner {
  max-width: 1200px;
}
.topflow .wp-block-columns {
  justify-content: center;
  gap: 4.5em !important;
}
.topflow .wp-block-column {
  border-radius: 100%;
  background-color: var(--color-white);
  height: 300px;
  max-width: 300px;
  width: 100%;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.topflow .wp-block-column::before {
  content: "STEP01";
  font-family: "Aboreto", system-ui;
  color: var(--color-primary);
  font-size: 22px;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: -0.1em;
  font-style: italic;
}
.topflow .wp-block-column:nth-of-type(2):before {
  content: "STEP02";
}
.topflow .wp-block-column:last-of-type:before {
  content: "STEP03";
}
.topflow .wp-block-column:not(.wp-block-column:last-of-type)::after {
  content: "";
  display: block;
  background-image: url(../../swell/assets/img/common/arrow-bl-r.svg);
  width: 16px;
  height: 41px;
  background-repeat: no-repeat;
  background-size: cover;
  right: -44px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.topflow .wp-block-column:first-of-type {
  border: 2px solid #00b900;
}
.topflow .wp-block-column:first-of-type .cta_line_button {
  margin-right: auto;
  margin-left: auto;
  max-width: 200px;
  width: 100%;
  border-radius: 100px;
}
.topflow .btn_gold {
  margin-right: auto;
  margin-left: auto;
  margin-top: 2rem;
}
.topflow .flow_ttl strong {
  display: block;
  margin-top: 16px!important;
}
.topfaq .pagefaq {
  margin-top: 0;
  padding-bottom: 0;
}
.topfaq .btn {
  margin-right: auto;
  margin-left: auto;
  margin-top: 2rem;
}
.topfaq {
  padding-top: 3rem;
}
.topblogs {
  padding-top: 3rem;
}
.topvideo {
  background-image: url(../../swell/assets/img/top/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding-top: 100px;
}

/* 下層ページ .pageplans */
.pageplans h2 {
  font-family: "Noto Serif JP", serif;
}

.pageplans .plan__btns {
  justify-content: space-between;
  margin-top: 1.4rem;
}
.pageplans .plan__btns a {
  width: 49%;
}
.pageplans .plan__btns div {
  width: 100%;
}

/* beYOUプラン */

.pagebeyou .c-pageTitle__inner {
  font-size: 24px;
  
}
.pagebeyou .wp-block-table table {
  max-width: 1100px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.pagebeyou .wp-block-table table tr:first-of-type td {
  text-align: center;
}
.pagebeyou .wp-block-table td,
.pagebeyou .wp-block-table th {
  padding: 1.5em;
}
.pagebeyou .diff__area {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 2em;
}
.pagebeyou .diff__list {
  display: flex;
  max-width: 900px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.planincluded {
  background-color: var(--color-primary-light);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: calc(4em + 32px) 4em 4em;
  counter-reset: planincluded-counter;
  position: relative;
}
.planincluded::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 32px 36px 0;
  border-color: #fff transparent transparent;
}
.planincluded h4 {
  border-left: none;
  position: relative;
  font-size: 16px;
  padding-left: 0;
  margin-bottom: 1em;
  line-height: 1.2;
  height: 58px;
}
.planincluded h4::before {
  counter-increment: planincluded-counter;
  content: counter(planincluded-counter, decimal-leading-zero);
  font-family: "Aboreto", system-ui;
  font-size: 28px;
  font-style: italic;
  margin-right: 10px;
  color: var(--color-primary);
  display: inline-block;
  margin-right: 6px;
}
.planincluded p {
  text-align: justify;
  font-size: 15px;
}


.pagebeyou .p-blogParts.post_content {
  margin-bottom: 0;
}
.planinner {
  max-width: 1100px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 3em 4em;
}
.plancatch {
  padding: 0 1em;
}
.planpartners {
  background-color: var(--color-cream);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 2em 2em 4em;
}
.planpartners h3,
.planpartners h4 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
.planpartners h4 {
  max-width: 1100px;
}
.pagebeyou h3 {
  margin-top: 0;
}
.beyouincluded__list {
}
.beyouincluded__list > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
}
.beyouincluded__list h3 {
  padding: 0 0 0.5em;
  font-size: 18px;
}
.beyouincluded .planinner {
  background-color: #fff;
  border-radius: 8px;
}
.pagebeyou .topflow {
  padding-bottom: 4em;
}
.schools__inner {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  overflow-x: scroll;
}
.schools__list {
  display: flex;
  min-width: 1600px;
  gap: 1em;
  padding-bottom: 10px;
}
.schools__list_last {
  min-width: initial;
  justify-content: center;
}
.schools__list li {
  list-style: none;
  background-color: #fff;
  min-width: 320px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding-bottom: 32px;
  max-width: 320px;
}
.schools__list li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.schools__list li img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.schools__list li p {
  display: block;
  margin-top: 1em;
  color: #000;
  font-weight: bold;
}
.schools__item-detail {
  padding: 1em;
}
.schools__list li span {
  white-space: wrap;
  display: block;
  margin-top: 0.2em;
  font-size: 14px;
}

/* コーチングプラン */
.plancasestudy__slider {
  overflow: hidden;
  padding-bottom: 44px;
}
.plancasestudy__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.plancasestudy__item {
  list-style: none;
}
.plancasestudy__slider .swiper-pagination-bullet {
  background: var(--color-primary-light);
  opacity: 1;
}
.plancasestudy__slider .swiper-pagination-bullet-active {
  background: var(--color-accent);
}
.plancasestudy__heading {
  align-items: center;
  font-weight: bold;
  gap: 1.5em;
  margin-bottom: 1.5em;
}
.plancasestudy__img {
  width: 100px;
  height: 100px;
  padding: 10px;
  border-radius: 100px;
  border: 1px solid var(--color-primary);
  object-fit: cover;
}
.plancasestudy__before,
.plancasestudy__after {
  background-color: var(--color-cream);
  padding: 1em;
  position: relative;
}
.plancasestudy__before::before {
  content: "";
  display: block;
  background-image: url(../../swell/assets/img/common/arrow-bl-d.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -28px;
  z-index: 2;
}
.plancasestudy__label {
  color: var(--color-accent);
  display: inline-block;
  font-family: "Aboreto", system-ui;
  font-weight: bold;
  font-size: 24px;
  font-style: italic;
}
.plancasestudy__after {
  margin-top: 1em;
}
/* 下層ページ .pagefaq */
.pagefaq .l-mainContent__inner {
  margin-bottom: 8em;
}
.pagefaq__nav {
  margin-bottom: 3rem;
}
.pagefaq__navList {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding-left: 0;
  margin: 0;
}
.pagefaq__navItem {
  list-style: none;
}
.pagefaq__navItem a {
  display: block;
  font-size: 15px;
  min-width: 140px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.4;
  font-family: "Aboreto", system-ui;
  font-weight: 400;
  font-style: normal;
}
.pagefaq__section + .pagefaq__section {
  margin-top: 3rem;
}
.pagefaq__section {
  scroll-margin-top: 120px;
}
.pagefaq__category {
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.pagefaq__section h2 {
  font-size: 20px;
  background: linear-gradient(transparent 60%, #faf8cc 60%);
  display: table;
  font-family: initial;
}
.pagefaq__item {
  border-bottom: 1px solid var(--color-primary-light);
  position: relative;
}
.pagefaq__question {
  position: relative;
  padding: 1rem 2rem 1rem 0;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
}
.pagefaq__question::-webkit-details-marker {
  display: none;
}
.pagefaq__question::before {
  content: "Q.";
  margin-right: 0.5rem;
  color: var(--color-primary);
  font-family: "Times New Roman", Georgia, serif;
}
.pagefaq__answer::before {
  content: "A.";
  margin-right: 0.5rem;
  color: var(--color-primary);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.pagefaq__question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1;
}
.pagefaq__item[open] .pagefaq__question::after {
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  background: var(--color-primary);
}
.pagefaq__answer {
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 0 1.25rem 0;
  transition: height 0.3s ease;
  padding-left: 32px;
}
.pagefaq--inline {
}

/* 下層ページ .pageflow */
.page-flow {
  margin-bottom: 6em;
}
.page-flow h1 {
  font-size: 1.5em;
}
.pageflow__lead {
  margin-bottom: 1.5rem;
  text-align: center;
}
.pageflow__nav {
  margin-bottom: 3rem;
}
.pageflow__navList {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  padding-left: 0;
  margin: 0;
}
.pageflow__navItem {
  list-style: none;
}
.pageflow__navItem a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.5rem 1rem 0.5rem 1.4rem;
  background-color: #faf8cc;
  color: var(--color-dark);
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: bold;
  line-height: 1.2;
  text-decoration: underline;
  font-family: "Aboreto", system-ui;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
  transition:
    opacity 0.2s ease,
    background-color 0.2s ease;
}
.pageflow__navItem:first-child a {
  padding-left: 1rem;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}
.pageflow__navItem:last-child a {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%);
}
.pageflow__navItem a:hover {
}
.pageflow__navItem:nth-child(4) a {
  background-color: var(--color-accent);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  position: relative;
}
.pageflow__navItem:nth-child(4)::before {
  content: "Special!";
  font-family: "La Belle Aurore", cursive;
  transform: rotate(-15deg);
  position: absolute;
  top: -20px;
  left: -20px;
  color: var(--color-primary);
}
.pageflow__navItem:nth-child(4) a:hover {
  background-color: #8a6d47;
}
.pageflow__content {
  scroll-margin-top: 120px;
}
.pageflow__flow h2 {
  position: relative;
  margin-top: 2em;
  font-size: 28px;
  font-style: italic;
  font-family: "Aboreto", system-ui;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.1em;
}
.page-flow .pageflow__flow h2:first-of-type {
  line-height: 1;
}
.page-flow .pageflow__flow h2::before {
  content: "";
  display: block;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  border-radius: 100%;
  position: absolute;
  top: 0.3em;
  left: clamp(-42px, calc(-26px - 2vw), -34px);
}
.pageflow__flow h3 {
  font-size: 17px;
  padding: 0;
  border-bottom: none;
  margin-bottom: 1em;
}
.pageflow__flow h3::before {
  content: none;
}
.page-flow .pageflow__flow h2:first-of-type:before {
  top: 0;
}
.pageflow__flow {
  padding-left: 2em;
  position: relative;
  border-left: 1px solid var(--color-primary);
}
.pageflow__flow h2#step08::after {
  content: "";
  display: block;
  width: 20px;
  height: 340px;
  background-color: #fff;
  position: absolute;
  left: -39px;
  top: 30px;
}
/* flowページ アフターサポートセクション */
.pageflow__aftersupport {
  box-sizing: border-box;
  padding: 3rem 2.5rem;
  background-color: #f7f4ef;
  border-radius: 12px;
  text-align: center;
  width: 100vw;
  max-width: 100vw;
  margin-top: 4rem;
  margin-right: calc(50% - 50vw);
  margin-bottom: 1em;
  margin-left: calc(50% - 50vw);
  position: relative;
  z-index: 2;
}
.pageflow__aftersupport__imgwrap {
  margin-top: 1em;
}
.pageflow__aftersupport__imgwrap img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.pageflow__aftersupport__label {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2em 1em;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 100px;
  font-family: "Aboreto", system-ui;
}
h2.pageflow__aftersupport__title {
  margin: 0 0 0;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--color-primary);
  margin-top: 1em;
  line-height: 1;
  text-align: center;
  font-family: sans-serif;
}
.pageflow__aftersupport__lead {
  margin-bottom: 2rem;
  color: #555;
  font-size: 14px;
  margin-top: 0.6em !important;
}
.pageflow__aftersupport__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
  max-width: 1100px;
  width: 100%;
  margin: 2em auto 0;
}
.pageflow__aftersupport__card {
  padding: 1.5rem 1.25rem;
  background-color: #fff;
  border: 1px solid var(--color-primary-light);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.pageflow__aftersupport__card .link {
  margin-top: auto;
}
.pageflow__aftersupport__icon {
  display: block;
  font-size: 28px;
  line-height: 1;
}
h3.pageflow__aftersupport__cardtitle {
  margin: 0 0 0.5rem;
  font-size: 15px;
  font-weight: bold;
  color: var(--color-dark);
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 1em;
  height: 50px;
}
.pageflow__aftersupport__carddesc {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.pageflow__aftersupport__carddesc a,
.pageflow__aftersupport__card .link {
  text-align: right;
  display: block;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}
.pageflow__aftersupport__card:last-of-type img {
  object-fit: contain;
}

/* 下層 pageabout */
.l-article:has(.pageabout) {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.pageabout {
  max-width: 1100px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.pageabout .wp-block-list {
  padding-left: 20px;
}
.pageabout .about_history_ttl {
  color: var(--color-primary);
  font-size: 24px;
  display: inline-block;
  margin: 0;
  font-style: italic;
  letter-spacing: -0.04em;
  font-family: "Aboreto", system-ui;
}
.pageabout .about-history-img img {
  object-fit: cover;
}
.pageabout .about-head {
  font-size: 28px;
  font-style: italic;
}
.pageabout__story {
  box-sizing: border-box;
  background-color: var(--color-primary-light);
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  position: relative;
  right: 50%;
  width: 100vw;
  padding: 4em 2em 6em;
}
.pageabout__story > .wp-block-group__inner-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  width: min(100% - 36px, 1100px);
}
.pageabout__story__inner {
  max-width: 1100px;
  background: #fff;
  margin: 0 auto;
  width: 100%;
  padding: 3em;
  border-radius: 8px;
}
.pageabout__story h2 {
  text-align: center;
  margin-bottom: 1em;
  font-family: "Aboreto", system-ui;
  font-style: italic;
}
.pageabout__story .num {
  font-family: "Aboreto", system-ui;
  font-size: 24px;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.pageabout__coaching {
  padding-top: 2em;
}
.pageabout__coaching h3,
.pageabout__video h3,
.page-why-malta h3,
.topflow h3 {
  margin-top: 0;
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.post_content:has(.pageabout) ~ .subfaq {
  /* pageabout があるページの subfaq */
  /* ここにCSS */
  max-width: 900px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 6em;
}
/* 下層ページ .page-contact */
.page-contact {
  margin-bottom: 100px;
}
.page-contact-inner {
  max-width: 760px;
  margin: 0 auto ;
  box-sizing: border-box;
  width: 100%;
  padding: 2.5rem;
  border: 1px solid var(--color-primary-light);
  border-radius: 8px;
  background-color: var(--color-cream);
}
.page-contact .wpcf7-form p {
  margin: 0 0 1.5rem;
}
.page-contact label {
  display: block;
  color: var(--color-dark);
  font-weight: bold;
  line-height: 1.6;
}
.page-contact .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.5rem;
}
.page-contact input[type="text"],
.page-contact input[type="email"],
.page-contact input[type="tel"],
.page-contact input[type="url"],
.page-contact select,
.page-contact textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-primary-light);
  border-radius: 4px;
  background-color: var(--color-white);
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.6;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.page-contact textarea {
  min-height: 180px;
  resize: vertical;
}
.page-contact input[type="text"]:focus,
.page-contact input[type="email"]:focus,
.page-contact input[type="tel"]:focus,
.page-contact input[type="url"]:focus,
.page-contact select:focus,
.page-contact textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(94, 129, 172, 0.18);
  outline: none;
}
.page-contact input[type="submit"] {
  display: block;
  width: 240px;
  max-width: 100%;
  min-height: 56px;
  margin: 2rem auto 0;
  border: none;
  border-radius: 4px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.page-contact input[type="submit"]:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}
.page-contact .wpcf7-not-valid-tip {
  margin-top: 0.35rem;
  color: #b3261e;
  font-size: 14px;
  font-weight: normal;
}
.page-contact .wpcf7-response-output {
  margin: 2rem 0 0;
  padding: 1rem;
  border-radius: 4px;
  line-height: 1.6;
}

/* singlevoice  */

.singlevoice .p-articleThumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  object-position: center;
}
.singlevoice-article h2 {
  margin-top: 2em;
  font-size: 1.4rem;
  margin-left: 0;
  margin-right: 0;
  background: linear-gradient(transparent 68%, #faf8cc 68%);
  display: table;
}
.singlevoice h2 {
  padding-bottom: 0!important;
}
.singlevoice h2 + * {
  margin-top: 2em;
}
.singlevoice h3 {
  margin-top: 2em;
}
.singlevoice-article h3 {
  font-size: 1.2em;
}
.singlevoice-article .wp-block-list {
  padding-left: 20px;
}
/* wy malta? */
.page-why-malta .num {
  margin-bottom: 0;
  font-family: "Aboreto", system-ui;
  font-style: italic;
}
.page-why-malta .malta {
  margin-top: 0 !important;
  font-size: 28px;
  position: relative;
}
.page-why-malta .num::after {
  content: '';
  display: block;
  width: 32px;
  position: relative;
  left: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
  height: 1px;
  background-color: #1c2533;
}
.subblog {
  width: 100vw;
    margin: 0 calc(50% - 50vw);
    background-color: #faf8cc;
    padding: 2em 1em;
}
.subblog__inner {
  max-width: 900px;
    width: 100%;
    margin: 0 auto;
}
/* single　ブログ記事 */
.single h2 {
  font-size: 28px;
  padding: 0 .5em .5em;
}
.single h3 {
  margin-top: 0;
}


@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .l-header__spNav {
    margin-right: 4px;
  }
  .l-header {
    display: flex;
    align-items: center;
    padding: 0.7em 0.2em;
  }
  .l-header__customBtn.sp_ {
    display: none;
  }
  .l-header__logo {
    position: absolute;
    left: 50%;
  }
  .l-header__spNav {
    display: inline-block;
  }
  .l-header__spNav li a {
    text-align: center;
    display: block;
    line-height: 1;
    width: 82px;
    background-color: #00b900;
    color: #fff;
    border-radius: 8px;
    padding: 1em 0.8em;
    font-size: 12px;
    border-bottom: 3px solid #0c7f0c
  }
  /* TOP */
  .topinner {
    max-width: calc(100% - 36px);
  }
  .p-mainVisual__slideTitle::after {
    font-size: 22px;
    content: "This is where your story changes.";
     

  }
  
  .p-mainVisual__inner {
    background-image: url("../../swell/assets/img/common/fv-sp.jpg");
    height: 70vh;
    background-position: right bottom !important;
        background-size: cover;
        background-repeat: no-repeat;
  }
  .p-mainVisual__inner picture {
    display: none;
  }
  .p-mainVisual__textLayer {
    margin-top: -20px;
  }
  .p-mainVisual__slideTitle {
    font-size: 30px;
  }
  .p-mainVisual__slideText {
    font-size: 16px;
  }
  .page-top .wp-block-columns {
    font-size: 14px;
  }
  .page-top h2 {
    font-size: 28px;
  }
  .topwhy .wp-block-columns {
    padding: 3em 1.5em;
  }
  .topwhy h4 {
    font-size: 19px;
  }
  .topwhy .wp-block-group__inner-container > .wp-block-columns:first-of-type,
.wp-block-group__inner-container > .wp-block-columns:has(+ .topwhy__support) {
    flex-direction: column-reverse;
  }
  .topvoices .voices-list,
  .subvoices .voices-list {
    flex-direction: column;
    padding-right: 0;
  }
  .topvoices .voices-list li,
  .subvoices .voices-list li {
    width: 100%;
  }
  .topvoices .voice-title,
  .subvoices .voice-title {
    font-size: clamp(14px, 3.2vw, 16px);
  }
  .topplan h4 {
    font-size: 24px;
  }
  .topplan .wp-block-columns {
    padding: 3em 2em;
  }
  .topflow .wp-block-column {
    min-height: 300px;
    width: 300px;
    max-width: 100%;
  }
  .topabout_catch {
    font-size: 24px;
  }
  .topvideo iframe {
    width: calc(100% - 40px);
    height: auto;
  }
  /* page-voice */
  .voice-sectionTitle {
    font-size: 30px;
  }
  .voice-featuredList,
  .voice-testimonialList {
    grid-template-columns: 1fr;
  }
  .voice-casestudySlider {
    margin-top: 3em;
    padding: 0 0 44px;
  }
  .voice-casestudyButton {
    /* display: none; */
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, -16px);
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -16px);
  }
  .voice-featuredBody,
  .voice-testimonialBody {
    padding: 18px 10px 10px;
    margin-top: 8px;
  }
  .voice-casestudyBody {
    padding: 16px 16px 24px;
  }

  .voice-testimonialItem {
    gap: 16px;
    padding: 18px;
  }
  .voice-testimonialImg {
    flex-basis: 72px;
    height: 72px;
    width: 72px;
  }
  .voice-featuredTitle,
  h4.voice-testimonialName,
  .voice-casestudyName {
    font-size: 15px;
  }
  .voice-casestudies-inner {
    padding: 0 2em;
  }
  .voice-casestudyLabel {
    font-size: 22px;
  }
  .voice-testimonialList--scrollable {
    width: 100%;
  }
  .topflow .wp-block-columns {
    flex-direction: column;
    align-items: center !important;
  }
  .topflow .wp-block-column:not(.wp-block-column:last-of-type)::after {
    top: initial;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    bottom: -60px;
  }
  /* ページ共通 */
  .post_content h1 {
    font-size: 1.6em;
  }
  .forPC {
    display: none;
  }
  .forSP {
    display: inline-block;
  }
  .btn_bg {
    height: 52px;
  }
  .btn_sm {
    font-size: clamp(13px, 3.2vw, 15px);
    height: 52px;
  }
  .pagefaq__navList {
    gap: 8px;
  }
  .pagefaq__navItem {
    width: calc(50% - 4px);
  }
  .pagefaq__navItem a {
    min-width: 0;
    padding: 0.65rem 0.5rem;
    height: 60px;
  }
  .pagefaq__section h2 {
    font-size: 20px;
  }
  .pageflow__nav {
    overflow-x: auto;
    padding-top: 24px;
    padding-bottom: 0.5rem;
  }
  .pageflow__navList {
    grid-template-columns: repeat(8, 120px);
    gap: 6px;
    min-width: max-content;
  }
  .pageflow__navItem a {
    min-height: 48px;
    font-size: 11px;
  }
  .page-flow h3 {
  }
  .page-flow .wp-block-paragraph {
    /* strongを中に持たないpだけ */
    font-size: 14px;
  }
  .pageflow__flow {
    padding-left: 1.6em;
  }
  .page-contact {
    padding: 0;
  }
  .page-contact-inner {
    padding: 1.5rem;
  }
  .page-contact input[type="submit"] {
    width: 100%;
  }
  .pageflow__flow h2#step08::after {
    height: 700px;
  }
  .pageflow__aftersupport {
    padding: 2rem 1.25rem;
  }
  .pageflow__aftersupport__cards {
    grid-template-columns: 1fr;
  }
  .pageflow__aftersupport__carddesc a,
  .pageflow__aftersupport__card .link {
    font-size: 12px;
  }
  /* CTA */
  .cta {
    background-image: url("../../swell/assets/img/common/cta-bg-sp-01.jpg");
  }
  .cta-container .swl-fz {
    font-size: clamp(18px, 3.2vw, 20px) !important;
    line-height: 1;
  }
  .cta_button {
    width: calc(100vw - 36px);
    height: 64px;
    font-size: clamp(14px, 3.2vw, 16px) !important;
  }
  .cta_button::after {
    right: 10px;
    top: 56%;
  }

  /* aboutページ */
  .pageabout .about-head {
    font-size: 20px;
    text-align: center;
  }
  .pageabout .about_history_ttl {
    font-size: 28px;
  }
  .pageabout__story h2 {
    font-size: 28px;
  }
  .pageabout__story {
    padding: 3.5em 1em;
  }
  .pageabout__story__inner {
    padding: 3em 1em;
    font-size: 14px;
  }
  .pageabout__story__inner .wp-block-image .alignleft {
    margin: 0 auto;
  }
  .pageabout__coaching p {
    font-size: 14px;
    text-align: left !important;
  }
  .pageabout__story .num {
    font-size: 20px;
  }
  /* .voiceページ */
  .voice-testimonialText {
    font-size: 14px;
  }
  /* プランページ */
  .planinner {
    padding: 3em 1em;
  }
  .schools__list li {
    min-width: 280px;
  }
  .planincluded {
    padding: 4em 1.5em;
  }
  .beyouincluded__list > .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: 1fr;
  }
  .pagebeyou .diff__list {
    justify-content: center;
    gap: 0.8em 0.4em;
  }
  .pagebeyou .diff__list img {
    height: 30px!important;
    width: auto!important;
  }
  .pagebeyou .wp-block-table {
    width: calc(100vw - 10px);
    margin-left: auto;
  }
  .pagebeyou .wp-block-table table{
  }
  .pagebeyou .wp-block-table table th,.pagebeyou .wp-block-table table td{
    padding: 1em;
    font-size: 12px;
  }
  .pagebeyou .wp-block-table {
  }
  .pagebeyou .beyoutable th {
  padding: 12px 8px!important;
  width: 10%;
}
  .pagebeyou .beyoutable td {
  padding-right: 20px!important;
  padding-left: 6px!important;

}
  .schools__list_last {
    justify-content: initial;
  }
  .planincluded p {
    font-size: 14px;
  }
  .planincluded h4::before {
    margin-right: 8px;
    font-size: 24px;
  }
  /* FAQ */
  .pagefaq__item {
    font-size: 14px;
  }
  .plancasestudy__before,
  .plancasestudy__after {
    font-size: 14px;
  }
  .plancasestudy__img {
    width: 80px;
    height: 80px;
  }
  #main_content .post_content {
    font-size: 14px;
  }
  .singlevoice-article h2 {
    font-size: 1.2em;
    /* 下線なら折り返した各行に表示され、マーカーも太くなりすぎない。 */
    display: block;
    background: none;
    text-decoration-line: underline;
    text-decoration-color: #faf8cc;
    text-decoration-thickness: 0.35em;
    text-decoration-skip-ink: none;
    text-underline-offset: -0.2em;
  }
  .singlevoice-article h3 {
    font-size: 1.1em;
  }
  .page-why-malta .malta {
    font-size: 22px;
  }
  /* single ブログ投稿 */
  .single h2 {
  font-size: 22px;

}
}
