@charset "UTF-8";
/* ======================================
   変数
   - 頻出する色・サイズのみ定義
====================================== */
:root {
  --ccmt-color-primary: #009fd9;
  --ccmt-color-primary-light: #e0f2f9;
  --ccmt-color-bg-soft: #f6fbfd;
  --ccmt-color-white: #fff;
  --ccmt-color-text: #333;
  --ccmt-radius-md: 15px;
  --ccmt-fz-content-title: 20px;
  --ccmt-fz-section-title: 32px;
}

/* ======================================
   共通レイアウト
   - 料金・プラン / 特徴・機能 の両方で使用
====================================== */
.ccmt-block {
  padding: 0;
  overflow: hidden;
}

.ccmt-contentTitle {
  font-size: var(--ccmt-fz-content-title);
  font-weight: bold;
  margin-bottom: 10px;
}

.ccmt-contentSubTitle {
  font-size: var(--ccmt-fz-section-title);
  line-height: 1.5;
  margin-bottom: 30px;
}

.sp_br {
  display: none;
}

.pc_br {
  display: block;
}

.ccmt__txtBold {
  font-size: 20px;
  color: #009cde;
  font-weight: bold;
  line-height: 1.5;
}

.ccmt__numberBold {
  font-size: 25px;
  font-weight: bold;
}

.ccmt__blueBox {
  padding: 5px;
  background: #cfedf8;
  border-radius: 15px;
  font-size: 14px;
  font-weight: bold;
}

.ccmt-small__txt {
  font-size: 14px;
}

/* ======================================
   共通：ページヘッダー
   - 料金・プラン / 特徴・機能 の両方で使用
====================================== */
.ccmt-page__header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ccmt-page__headingLabel {
  text-align: center;
  font-size: 20px;
  color: var(--ccmt-color-primary);
  font-weight: bold;
}

.ccmt-page__title {
  margin-top: 0;
}

/* ======================================
   共通：aタグ・ボタン関連
   - a要素ベースの見た目は共通扱い
====================================== */
.ccmt-mv__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 50%;
  max-width: 392px;
  min-height: 84px;
  overflow: hidden;
  background: linear-gradient(180deg, #6fc8ef 0%, #44b3e3 100%);
  border: 2px solid #009cdc;
  border-radius: var(--ccmt-radius-md);
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ccmt-mv__cta::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-top: 3px solid #2aa9e0;
  border-right: 3px solid #2aa9e0;
  transform: translateY(-50%) rotate(45deg);
}

.ccmt-mv__cta::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 25px;
  height: 25px;
  background: var(--ccmt-color-white);
  border-radius: 50%;
  transform: translateY(-50%);
}

.ccmt-mv__cta-main,
.ccmt-mv__cta-sub {
  transition: all 0.3s ease;
}

.ccmt-mv__cta-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  min-height: 84px;
  padding: 0 12px;
  padding-left: 0;
  background: var(--ccmt-color-white);
  clip-path: polygon(0 0, 78% 0, 100% 50%, 78% 100%, 0 100%);
  box-sizing: border-box;
  color: #0094df;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.ccmt-mv__cta-main {
  display: block;
  flex: 1;
  width: 70%;
  padding-right: 40px;
  box-sizing: border-box;
  color: var(--ccmt-color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}

.ccmt-mv__cta:hover {
  background: var(--ccmt-color-white);
  border: 2px solid var(--ccmt-color-primary);
  color: #009cdc;
}

.ccmt-mv__cta:hover .ccmt-mv__cta-main {
  color: #0094e5;
}

.ccmt-mv__cta:hover .ccmt-mv__cta-sub {
  background: linear-gradient(180deg, #6fc8ef 0%, #44b3e3 100%);
  color: var(--ccmt-color-white);
}

.ccmt-mv__cta:hover::before {
  border-color: var(--ccmt-color-white);
}

.ccmt-mv__cta:hover::after {
  background: #2aa9e0;
}

.ccmt-mv__cta.ccmt-mv__cta--trial {
  background: var(--ccmt-color-white);
  border-color: #c0167b;
}

.ccmt-mv__cta.ccmt-mv__cta--trial .ccmt-mv__cta-sub {
  background: #c0167b;
  color: var(--ccmt-color-white);
}

.ccmt-mv__cta.ccmt-mv__cta--trial .ccmt-mv__cta-main {
  color: #c0167b;
}

.ccmt-mv__cta.ccmt-mv__cta--trial::before {
  border-color: #ffffff;
}

.ccmt-mv__cta.ccmt-mv__cta--trial::after {
  background-color: #c0167b;
}

.ccmt-mv__cta.ccmt-mv__cta--trial:hover {
  background: #c0167b;
  color: var(--ccmt-color-white);
}

.ccmt-mv__cta.ccmt-mv__cta--trial:hover .ccmt-mv__cta-main {
  color: var(--ccmt-color-white);
}

.ccmt-mv__cta.ccmt-mv__cta--trial:hover .ccmt-mv__cta-sub {
  background: var(--ccmt-color-white);
  color: #c0167b;
}

.ccmt-mv__cta.ccmt-mv__cta--trial:hover::before {
  border-color: #c0167b;
}

.ccmt-mv__cta.ccmt-mv__cta--trial:hover::after {
  background: var(--ccmt-color-white);
}

.ccmt-button.-internal {
  position: relative;
  background: radial-gradient(circle at center, #009fd9 0%, #74d3f6 100%);
  color: var(--ccmt-color-white);
  font-size: 16px;
}

.ccmt-button.-internal::after {
  content: ">";
  position: absolute;
  right: 5%;
}

.ccmt-button.-internal:hover {
  background: var(--ccmt-color-white);
  border: 1px solid var(--ccmt-color-primary);
  color: var(--ccmt-color-primary);
}

.ccmt-torisetsuPack__ctaButton {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  padding: 20px;
  padding-right: 30px;
  background: linear-gradient(to bottom, #5cc3ff 0%, #00668b 100%);
  border-radius: var(--ccmt-radius-md);
  color: var(--ccmt-color-white);
  font-size: 20px;
  text-decoration: none;
}

.ccmt-torisetsuPack__ctaButton::before {
  content: ">";
  position: absolute;
  top: 37%;
  right: 18px;
  z-index: 3;
  width: 20px;
  height: 20px;
  color: #009cdc;
  font-size: 20px;
  transform: translateY(-50%);
  font-weight: bold;
}

.ccmt-torisetsuPack__ctaButton::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  z-index: 1;
  width: 20px;
  height: 20px;
  background: var(--ccmt-color-white);
  border-radius: 40px;
  transform: translateY(-50%);
}
.ccmt-torisetsuPack__ctaButton:hover {
    background: #fff;
    border: 2px solid #5cc3ff;
}

.ccmt-torisetsuPack__ctaButton:hover::before {
    color: #fff;
}

.ccmt-torisetsuPack__ctaButton:hover::after {
    background-color: #009cdc;
}
/* ======================================
   共通：Comparison 比較表
   - 料金・プラン / 特徴・機能 の両方で使用
====================================== */
.ccmt-comparison {
  overflow: visible;
}

.ccmt-comparison__inner {
  padding: 20px 16px 0;
}

.ccmt-comparison__row {
  display: grid;
  grid-template-columns: 18% 41% 41%;
  align-items: stretch;
  column-gap: 12px;
}

.ccmt-comparison__row--head {
  align-items: end;
}

.ccmt-comparison__row--head .ccmt-comparison__cell {
  overflow: visible;
}

.ccmt-comparison__row--head .ccmt-comparison__cell--label {
  background: transparent;
  border-bottom: none;
}

.ccmt-comparison__row--head .ccmt-comparison__cell--toolHead,
.ccmt-comparison__cell--mainHead {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}

.ccmt-comparison__cell {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  border-bottom: 1px dotted #8d8d8d;
  text-align: center;
}

.ccmt-comparison__cellInner {
  width: 100%;
}

.ccmt-comparison__cellInner p {
  margin: 0;
}

.ccmt-comparison__cellInner p + p {
  margin-top: 1em;
}

.ccmt-comparison__cell--label {
  background: #d8dcdf;
  font-weight: bold;
  line-height: 1.5;
}

.ccmt-comparison__cell--toolHead,
.ccmt-comparison__cell--tool {
  background: #efefef;
  font-size: 16px;
  line-height: 1.7;
}

.ccmt-comparison__cell--main {
  z-index: 2;
  border-left: 3px solid var(--ccmt-color-primary);
  border-right: 3px solid var(--ccmt-color-primary);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.ccmt-comparison__cell--mainHead {
  background: var(--ccmt-color-primary);
  border-top: 3px solid var(--ccmt-color-primary);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 24px 20px;
}

.ccmt-comparison__cell--mainHeadRaised {
  margin-top: -20px;
  padding-top: 36px;
  z-index: 3;
}

.ccmt-comparison__cell--mainBody {
  background: #dff1f9;
  font-size: 16px;
  line-height: 1.7;
}

.ccmt-comparison__cell--mainLast {
  border-bottom: 3px solid var(--ccmt-color-primary);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.ccmt-comparison__row.ccmt-comparison__cost .ccmt-comparison__cell {
    background: #fffbd1;
    border-bottom: none;
}

.ccmt-comparison__row.ccmt-comparison__cost .ccmt-comparison__cell--mainLast {
    background: #fff47d;
    border-bottom: 3px solid var(--ccmt-color-primary);
}
.ccmt-comparison__logo {
  display: block;
  width: min(40vw, 175px);
  max-width: 175px;
  margin: 0 auto;
}

.ccmt-comparison__recommend {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 10.625vw;
  max-width: 115px;
  z-index: 3;
}

.ccmt-comparison__icon {
  display: block;
  width: min(5vw, 32px);
  max-width: 32px;
  margin: 0 auto 14px;
}

.ccmt-comparison__strong {
  font-weight: bold;
}

/* ======================================
   共通：FAQ
   - 料金・プラン / 特徴・機能 の両方で使用
====================================== */
.ccmt-faq {
  margin: 0;
  margin-bottom: 0;
  padding: 74px 0;
  background: #c1e5f4;
}

.ccmt-faq__list {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.ccmt-faq__item {
  margin-bottom: 15px;
  padding: 10px 20px 10px;
  background: var(--ccmt-color-white);
  border-radius: 10px;
}

.ccmt-faq__question {
  display: flex;
  align-items: center;
  color: var(--ccmt-color-primary);
  font-size: 18px;
  font-weight: bold;
  list-style: none;
  cursor: pointer;
}

.ccmt-faq__question::-webkit-details-marker {
  display: none;
}

.ccmt-faq__question-mark,
.ccmt-faq__answer-mark {
  margin-right: 20px;
  font-size: 24px;
}

.ccmt-faq__question-icon {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: auto;
}

.ccmt-faq__question-icon::before,
.ccmt-faq__question-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.ccmt-faq__question-icon::before {
  transform: translate(-50%, -50%);
}

.ccmt-faq__question-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ccmt-faq__item[open] .ccmt-faq__question-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.ccmt-faq__answer {
  display: flex;
  align-items: unset;
  padding: 10px 20px;
  margin-bottom: 20px;
  background: #e3f7ff;
  font-size: 16px;
  text-align: left;
}

.ccmt-faq__answer-mark {
  font-weight: bold;
}

.ccmt-footerContact__thumb {
    display: none !important;
}

/* ======================================
   特徴・機能 専用：Feature 見出し
====================================== */
.ccmt-feature .ccmt-contentSubTitle {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #009fda;
}

.ccmt-feature .ccmt-contentSubTitle span {
  position: relative;
  display: inline-block;
  padding: 0 1.2em;
}

.ccmt-feature .ccmt-contentSubTitle span::before,
.ccmt-feature .ccmt-contentSubTitle span::after {
  content: "";
  position: absolute;
  top: 0.2em;
  width: 0.5em;
  height: 1.2em;
  box-sizing: border-box;
}

.ccmt-feature .ccmt-contentSubTitle span::before {
  left: 0;
  border-left: 2px solid currentColor;
  transform: rotate(335deg);
  transform-origin: top left;
}

.ccmt-feature .ccmt-contentSubTitle span::after {
  right: 0;
  border-right: 2px solid currentColor;
  transform: rotate(25deg);
  transform-origin: top right;
}

/* ======================================
   特徴・機能 専用：Feature 冒頭リード・ポイント見出し
====================================== */
.ccmt-feature__pointTitle {
  font-size: 32px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 50px;
}

.ccmt-blue {
  color: var(--ccmt-color-primary);
}

.ccmt-large {
  font-size: 42px;
}

.ccmt-large__number {
  font-size: 52px;
}

/* ======================================
   特徴・機能 専用：Feature 3つのポイントカード
====================================== */
.ccmt-feature__pointList {
  display: flex;
  margin-bottom: 80px;
  justify-content: space-evenly;
}

.ccmt-feature__pointItem {
  background: var(--ccmt-color-primary-light);
  box-sizing: border-box;
  width: 30%;
  position: relative;
  z-index: 1;
}

.ccmt-feature__pointItem::before {
  content: "";
  width: 100px;
  height: 100px;
  top: -50px;
  background: var(--ccmt-color-primary-light);
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
}

.ccmt-feature__pointItem a {
  text-decoration: none;
  padding: 20px 30px 50px;
  display: block;
  position: relative;
  box-sizing: border-box;
}

.ccmt-feature__pointItem a::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(/wp-content/uploads/2026/04/allow.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.ccmt-feature__pointImage {
  margin-top: -45px;
  margin-bottom: 15px;
}

.ccmt-feature__pointHeading {
  font-size: 24px;
  line-height: 1.5;
}

.ccmt-feature__pointText {
  font-size: 18px;
  line-height: 1.7;
}

/* ======================================
   特徴・機能 専用：Feature 詳細セクション共通
====================================== */
.ccmt-feature__detail {
  position: relative;
  z-index: 1;
}

.ccmt-feature__detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100vw - 1200px) / -2);
  width: clamp(70px, 9.166vw, 110px);
  height: clamp(393px, 51.5vw, 618px);
  background: url("/wp-content/uploads/2026/04/bg_bk.png") no-repeat left center / contain;
  z-index: -1;
  pointer-events: none;
}

#feature-knowledge::before {
  top: auto;
  bottom: 0;
  right: calc((100vw - 1200px) / -2);
  left: auto;
  transform: rotate(180deg);
}

.ccmt-future__intr {
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}

.ccmt-future__intr::before {
  content: "";
  width: 16px;
  background: var(--ccmt-color-primary);
  top: 0;
  left: 10px;
  position: absolute;
  transform: rotate(8deg);
  bottom: 0;
  height: 14vw;
  max-height: 100%;
}

.ccmt-feature__detailTitle {
  text-align: left;
  font-size: 32px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.ccmt-feature__detailTitle::before {
  content: "01";
  font-style: italic;
  font-size: 70px;
  padding-right: 10px;
  color: var(--ccmt-color-primary);
  font-weight: normal;
}

.ccmt-feature__detailItem .ccmt-feature__movie {width: 100%;}

#feature-standardization .ccmt-feature__detailTitle::before {
  content: "01";
}

#feature-knowledge .ccmt-feature__detailTitle::before {
  content: "02";
}

#feature-search .ccmt-feature__detailTitle::before {
  content: "03";
}

.ccmt-feature__detailLead {
  text-align: left;
  margin-top: -30px;
}

.ccmt-feature__detailItem {
  display: flex;
  margin-bottom: 60px;
}

.ccmt-feature__detailMedia {
  overflow: hidden;
  width: 48%;
  z-index: 1;
}

.ccmt-feature__detailContent {
  width: 60%;
  margin-top: 40px;
  margin-left: -60px;
  padding: 30px 20px;
  padding-left: 120px;
  box-sizing: border-box;
  background: var(--ccmt-color-bg-soft);
  text-align: left;
  z-index: 0;
}

.ccmt-feature__detailHeading {
  color: var(--ccmt-color-primary);
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.ccmt-feature__detailText {
  font-size: 16px;
}

/* ======================================
   特徴・機能 専用：Feature スライダー
====================================== */
.ccmt-feature__slider {
  position: relative;
}

.ccmt-feature__slide img {
  display: block;
  width: auto;
  height: auto;
}

.ccmt-feature__slider .slick-prev,
.ccmt-feature__slider .slick-next {
  z-index: 2;
  width: 40px;
  height: 40px;
}

.ccmt-feature__slider .slick-prev {
  left: 12px;
}

.ccmt-feature__slider .slick-next {
  right: 12px;
}

.ccmt-feature__slider .slick-prev::before,
.ccmt-feature__slider .slick-next::before {
  font-size: 40px;
  opacity: 1;
  color: var(--ccmt-color-text);
}

.ccmt-feature__slider .slick-dots {
  bottom: -32px;
  margin-top: -10px;
}

.ccmt-feature__slider .slick-dots li {
  margin: 0 4px;
}

.ccmt-feature__slider .slick-dots li button::before {
  font-size: 20px;
  color: #bdbdbd;
  opacity: 1;
}

.ccmt-feature__slider .slick-dots li.slick-active button::before {
  color: var(--ccmt-color-text);
}

/* ======================================
   特徴・機能 専用：Customer Support
====================================== */
.ccmt-support {
  padding-block: 60px;
  background: linear-gradient(90deg, #c0e7f6 0%, #feffff 50%, #c0e7f6 100%);
  position: relative;
}

.ccmt-support::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(11.71875vw, 150px);
  height: min(48.671875vw, 623px);
  background: url("/wp-content/uploads/2026/04/bk_line_l.png") no-repeat left top / contain;
  pointer-events: none;
}

.ccmt-support::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(12.71875vw, 129px);
  height: min(49.671875vw, 502px);
  background: url("/wp-content/uploads/2026/04/bk_line_r.png") no-repeat left top / contain;
  pointer-events: none;
}

.ccmt-support__list {
  display: flex;
  justify-content: space-between;
}

.ccmt-support__item {
  background: var(--ccmt-color-white);
  width: 48%;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.ccmt-support__title {
  font-size: 24px;
  color: var(--ccmt-color-primary);
  line-height: 1.5;
  margin-bottom: 19px;
}

.ccmt-support__tagList {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ccmt-support__tagItem {
  padding: 5px;
  background: var(--ccmt-color-primary-light);
  font-weight: bold;
}

.ccmt-support__text {
  text-align: left;
  margin-bottom: 10px;
}

.ccmt-support__media img {
  width: 100%;
}

/* ======================================
   特徴・機能 専用：More Features タブ
====================================== */
.ccmt-moreFeatures__tabButtons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.ccmt-moreFeatures__tabButton {
  width: 165px;
  background: var(--ccmt-color-primary-light);
  border: none;
  padding: 10px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
 transition: opacity 0.7s ease, visibility 0.7s ease;
}

.ccmt-moreFeatures__tabButton.is-active {
  background: #93d4ee;
  color: var(--ccmt-color-white);
}

.ccmt-moreFeatures__tabContents {
  position: relative;
  transition: height 0.7s ease;
}

.ccmt-moreFeatures__tabContents::before,
.ccmt-moreFeatures__tabContents::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
}

.ccmt-moreFeatures__tabContents::before {
  top: 0;
  border-top: 1px solid #ccc;
}

.ccmt-moreFeatures__tabContents::after {
  bottom: 0;
  border-bottom: 1px solid #ccc;
}

.ccmt-moreFeatures__tabContent {
  position: absolute;
  inset: 0;
  width: 100%;
  padding-block: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ccmt-moreFeatures__tabContent.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ccmt-moreFeatures__title {
  position: relative;
  left: calc((100vw - 1200px) / -2);
  width: 400px;
  margin-bottom: 30px;
  padding: 5px;
  background: var(--ccmt-color-primary);
  color: var(--ccmt-color-white);
  font-size: 20px;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
}

.ccmt-moreFeatures__list {
  display: flex;
  justify-content: space-between;
}

.ccmt-moreFeatures__item {
  width: 30%;
}

.ccmt-moreFeatures__itemTitle {
  text-align: left;
  font-size: 20px;
  color: var(--ccmt-color-primary);
}

.ccmt-moreFeatures__itemText {
  text-align: left;
}

/* ======================================
   特徴・機能 専用：Case Study
====================================== */
.ccmt-pickup {
  background: var(--ccmt-color-primary-light);
  padding: 80px 0;
  margin: 0;
}

.ccmt-pickup-list-area {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.ccmt-pickup-list-cont {
  width: 32%;
  background: var(--ccmt-color-white);
  border: 2px solid #6fb7ff;
}

.ccmt-pickup-list-cont a {
  text-decoration: unset;
}

.ccmt-pickup-list-cont a:hover {
  opacity: 0.3;
}

.ccmt-pickup-list-cont img {
  border: none;
  border-radius: initial;
}

.ccmt-pickup-txtarea {
  padding: 20px 10px;
  text-align: left;
}

.ccmt-pickup-list-cont__company {
  color: #009fd9;
  font-size: 20px;
  font-weight: bold;
}

.ccmt-pickup-list-cont__title {
  font-size: 16px;
  font-weight: bold;
}

.ccmt-pickup-list-cont__more {
  text-align: right;
  color: #009cdc;
  font-weight: bold;
  text-decoration: underline;
}

.ccmt-products__more {
  margin-top: 40px;
}

/* ======================================
   料金・プラン 専用：Fee Structure
====================================== */
.ccmt-feeStructure__lead {
  margin-bottom: 30px;
  font-size: 18px;
}

.ccmt-feeStructure__text {
  font-size: 16px;
  text-align: left;
}

.ccmt-feeStructure__price {
  text-align: right;
}

.ccmt-feeStructure__title {
  margin-block: 10px 5px;
  font-size: 20px;
  font-weight: bold;
}

.ccmt-feeStructure__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.ccmt-feeStructure__item {
  position: relative;
  z-index: 1;
  display: block;
  width: 30%;
  padding: 20px 30px 50px;
  background: var(--ccmt-color-primary-light);
  box-sizing: border-box;
  text-decoration: none;
}

.ccmt-feeStructure__item:nth-child(1)::after,
.ccmt-feeStructure__item:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}

.ccmt-feeStructure__item:nth-child(1)::after {
  right: -42px;
  background: url("/wp-content/uploads/2026/04/fee_plus.png") no-repeat center center / contain;
}

.ccmt-feeStructure__item:nth-child(2)::after {
  right: -50px;
  background: url("/wp-content/uploads/2026/04/fee_arrow.png") no-repeat center center / contain;
  width: 38px;
  height: 31px;
}

.ccmt-price__cta {
  width: 80%;
  max-width: 430px;
  margin: 30px auto;
  border: solid 2px #e559ac;
}

/* ======================================
   料金・プラン 専用：Plan List
====================================== */
.ccmt-planList .ccmt-block__inner {
  position: relative;
  z-index: 2;
  padding-block: 60px;
  background: var(--ccmt-color-white);
  border-radius: var(--ccmt-radius-md);
}

.ccmt-planList__lead {
  margin-bottom: 30px;
  font-size: 16px;
}

.ccmt-planList__list {
  display: flex;
  max-width: 1000px;
  gap: 15px;
  margin: 0 auto 30px;
}

.ccmt-planList__item {
  width: 33%;
  padding-inline: 15px;
  border: 2px solid #93d4ee;
  border-radius: var(--ccmt-radius-md);
  box-sizing: border-box;
}

.ccmt-planList__item.ccmt-planList__standard {
  position: relative;
  border: 3px solid var(--ccmt-color-primary);
}

.ccmt-planList__item.ccmt-planList__standard::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 40px;
  z-index: 1;
  width: min(106px, 20vw);
  aspect-ratio: 1 / 1;
  background: url("/wp-content/uploads/2026/04/plan.png") no-repeat center center / contain;
  transform: translateX(-50%);
}

.ccmt-planList__head {
  margin-inline: -15px;
  padding: 20px 10px;
  background: var(--ccmt-color-primary-light);
  border-radius: 15px 15px 0 0;
  line-height: 1.5;
}

.ccmt-planList__item.ccmt-planList__standard .ccmt-planList__head {
  background: var(--ccmt-color-primary);
  color: var(--ccmt-color-white);
  border-radius: 10px 10px 0 0;
}

.ccmt-planList__item.ccmt-planList__standard .ccmt-planList__subTitle {
  border-color: var(--ccmt-color-white);
}

.ccmt-planList__title {
  font-size: 24px;
  font-weight: bold;
}

.ccmt-planList__subTitle {
  display: inline;
  font-size: 16px;
  border-bottom: 1px solid var(--ccmt-color-text);
}

.ccmt-planList__price {
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
}

.ccmt-planList__item.ccmt-planList__standard .ccmt-planList__price {
  color: var(--ccmt-color-primary);
  font-weight: bold;
}

.ccmt-planList__item.ccmt-planList__standard .ccmt-price__number .ccmt-price__unit {
  color: #000;
}

.ccmt-price__number {
  position: relative;
  font-size: 38px;
}

.ccmt-price__unit {
  position: absolute;
  right: 0;
  display: block;
  margin-top: -19px;
  font-size: 14px;
  text-align: right;
}

.ccmt-planList__recommendTitle {
  margin-bottom: 10px;
  background: var(--ccmt-color-primary-light);
  font-size: 14px;
  font-weight: bold;
}

.ccmt-planList__item.ccmt-planList__standard .ccmt-planList__recommendTitle {
  background: var(--ccmt-color-primary);
  color: var(--ccmt-color-white);
}

.ccmt-planList__recommendList {
  min-height: 150px;
  margin-bottom: 20px;
  text-align: left;
}

.ccmt-planList__recommendList li {
  position: relative;
  padding-left: 20px;
}

.ccmt-planList__recommendList li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
  width: 16px;
  height: 13px;
  background: url("/wp-content/uploads/2026/04/check.png");
}

.ccmt-planList__specAccordion {
  margin-top: 20px;
}

.ccmt-planList__specAccordionButton {
  display: none;
}

.ccmt-planList__specAccordionButton::-webkit-details-marker {
  display: none;
}

.ccmt-planList__specAccordionButtonTextClose {
  display: none;
}

.ccmt-planList__specItem {
  margin-inline: -15px;
  padding: 10px 20px;
  background: var(--ccmt-color-primary-light);
  border-block: dotted 1px #ddd;
}
.ccmt-planList__specItem:last-of-type {
  border-radius:0 0 10px 10px;
}
.ccmt-planList__specItem:nth-child(even) {
  background: var(--ccmt-color-white);
}

.ccmt-planList__specItem dt {
  margin-bottom: 10px;
  background: #b7e2f3;
  font-size: 14px;
  font-weight: bold;
}

.ccmt-planList__specItem dd {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-size: 24px;
}

.ccmt-planList__item.ccmt-planList__standard dd {
  font-weight: bold;
}

.ccmt-planList__specItem dd sub {
  font-size: 14px;
}

.ccmt-planList__option {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 20px;
  border-block: 1px solid #b2c8d1;
}

.ccmt-planList__optionHeading {
  width: 30%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}

.ccmt-planList__optionContent {
  width: 70%;
}

.ccmt-planList__optionList {
  display: flex;
  align-items: center;
  padding-block: 15px;
  padding-left: 40px;
  background: #fcfcfc;
  font-size: 18px;
}

.ccmt-planList__optionList:last-of-type {
  background: var(--ccmt-color-primary-light);
}

.ccmt-planList__optionList dt,
.ccmt-planList__optionList dd {
  display: block;
  margin: 0;
}

.ccmt-planList__optionList dt {
  width: 30%;
  text-align: left;
}

.ccmt-planList__optionList dd {
  width: 70%;
  line-height: 1.5;
}

.ccmt-planList__notes {
  max-width: 1000px;
  margin: 0 auto 40px;
  text-align: left;
}

.ccmt-planList__package {
  max-width: 1000px;
  margin: 30px auto 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* ======================================
   料金・プラン 専用：トリセツパック
====================================== */
.ccmt-torisetsuPack__layout {
  padding-block: 60px;
  border: 2px solid #ddd;
  border-radius: var(--ccmt-radius-md);
}

.ccmt-torisetuPack__flexBox {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.ccmt-torisetsuPack__left {
  width: 50%;
}

.ccmt-torisetsuPack__right {
  width: 45%;
}

.ccmt-torisetsuPack__priceList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #93d4ee;
}

.ccmt-torisetsuPack__priceItem.ccmt-priceList_lf {
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
}

.ccmt-priceList_lf .ccmt-torisetsuPack__priceValue {
  font-size: 54px;
  font-weight: bold;
}

.ccmt-torisetsuPack__priceItem.ccmt-priceList_lf .ccmt-small__txt {
  font-size: 30px;
}

.ccmt-torisetsuPack__priceItem.ccmt-priceList_rt {
  padding: 10px;
  background: var(--ccmt-color-primary-light);
  font-size: 20px;
  line-height: 1.5;
}

.ccmt-torisetsuPack__priceValue {
  font-size: 25px;
  font-weight: bold;
}

.ccmt-torisetsuPack__featureList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ccmt-torisetsuPack__featureItem {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.ccmt-torisetsuPack__featureText {
  text-align: left;
}

.ccmt-torisetsuPack__spec {
  border: 2px solid var(--ccmt-color-primary-light);
  border-radius: var(--ccmt-radius-md);
}

.ccmt-torisetsuPack__specTitle {
  margin-bottom: 20px;
  padding: 10px;
  background: #cfedf8;
  border-radius: 10px 10px 0 0;
  font-size: 20px;
  font-weight: bold;
}

.ccmt-torisetsuPack__specList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 5px;
  padding-inline: 20px;
}

.ccmt-torisetsuPack__specList dt,
.ccmt-torisetsuPack__specList dd {
  margin: 0;
  font-size: 18px;
  text-align: right;
}

.ccmt-torisetsuPack__specList dt {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  text-align: left;
}

.ccmt-torisetsuPack__specList dt::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 10px;
  display: block;
  width: 18px;
  height: 13px;
  background: url("/wp-content/uploads/2026/04/check.png");
  background-repeat: none;
}

.ccmt-torisetsuPack__lead {
  margin-bottom: 30px;
}

.ccmt-torisetsuPack__cta {
  max-width: 440px;
  margin: 0 auto;
}
/* ======================================
   タブレット
   - max-width: 1024px
====================================== */
@media only screen and (max-width: 1024px) {
  /* ======================================
     共通
  ====================================== */
  .ccmt-block__inner {
    padding-inline: 30px;
  }

  .ccmt-contentSubTitle {
    font-size: 28px;
  }

  .pc_br {
    display: block;
  }

  .ccmt-comparison__inner {
    padding: 20px 0 0;
  }

  .ccmt-comparison__row {
    grid-template-columns: 20% 40% 40%;
    column-gap: 8px;
  }

  .ccmt-comparison__cell {
    padding: 18px 14px;
  }

  .ccmt-comparison__row--head .ccmt-comparison__cell--toolHead,
  .ccmt-comparison__cell--mainHead {
    font-size: 20px;
  }

  .ccmt-comparison__cell--toolHead,
  .ccmt-comparison__cell--tool,
  .ccmt-comparison__cell--mainBody {
    font-size: 14px;
  }

  .ccmt-button.-internal::after {
    right: 6%;
  }

  .ccmt-faq__question-text {
    line-height: 1.6;
  }

  /* ======================================
     特徴・機能 専用
  ====================================== */
  .ccmt-feature__pointTitle {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .ccmt-large {
    font-size: 36px;
  }

  .ccmt-large__number {
    font-size: 44px;
  }

  .ccmt-feature__pointList {
    gap: 20px;
  }

  .ccmt-feature__pointItem {
    width: calc((100% - 40px) / 3);
  }

  .ccmt-feature__pointItem a {
    padding: 20px 20px 45px;
  }

  .ccmt-feature__pointHeading {
    font-size: 22px;
  }

  .ccmt-feature__pointText {
    font-size: 16px;
  }

  .ccmt-feature__detail::before {
    left: -30px;
  }

  #feature-knowledge::before {
    right: -30px;
  }

  .ccmt-future__intr {
    padding-left: 40px;
  }

  .ccmt-feature__detailTitle {
    font-size: 28px;
  }

  .ccmt-feature__detailTitle::before {
    font-size: 56px;
  }

  .ccmt-feature__detailItem {
    align-items: center;
    gap: 20px;
  }

  .ccmt-feature__detailMedia {
    width: 46%;
  }

  .ccmt-feature__detailContent {
    width: 54%;
    margin-top: 0;
    margin-left: 0;
    padding: 30px 24px;
  }

  .ccmt-feature__detailHeading {
    font-size: 22px;
  }

  .ccmt-support__list {
    gap: 20px;
  }

  .ccmt-support__item {
    width: calc((100% - 20px) / 2);
    padding: 24px;
  }

  .ccmt-support__title {
    font-size: 22px;
  }

  .ccmt-moreFeatures__tabButtons {
    flex-wrap: wrap;
  }

  .ccmt-moreFeatures__tabButton {
    width: 220px;
  }

  .ccmt-moreFeatures__title {
    left: -30px;
    width: 320px;
  }

  .ccmt-moreFeatures__list {
    gap: 20px;
  }

  .ccmt-moreFeatures__item {
    width: calc((100% - 40px) / 3);
  }

  .ccmt-pickup-list-area {
    gap: 20px;
  }

  .ccmt-pickup-list-cont {
    width: calc((100% - 40px) / 3);
  }

  .ccmt-pickup-list-cont__company {
    font-size: 18px;
  }

  /* ======================================
     料金・プラン 専用
  ====================================== */
  .ccmt-feeStructure__list {
    gap: 40px;
  }

  .ccmt-feeStructure__item {
    width: 30%;
    padding: 20px 20px 40px;
  }

  .ccmt-feeStructure__item:nth-child(1)::after,
  .ccmt-feeStructure__item:nth-child(2)::after {
    right: -32px;
    width: 22px;
    height: 22px;
  }

  .ccmt-mv__cta {
    width: 50%;
    max-width: 392px;
  }

  .ccmt-mv__cta-sub {
    width: 30%;
    font-size: 13px;
  }

  .ccmt-mv__cta-main {
    width: 70%;
    padding-right: 36px;
    font-size: 17px;
  }

  .ccmt-planList__list {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .ccmt-planList__item {
    width: 33.333%;
    padding-inline: 12px;
  }

  .ccmt-planList__item.ccmt-planList__standard {
    width: 33.333%;
  }

  .ccmt-planList__item.ccmt-planList__standard::before {
    top: -24px;
    left: 40px;
    width: 100px;
    transform: translateX(-50%);
  }

  .ccmt-planList__head {
    margin-inline: -12px;
    padding: 18px 10px;
  }

  .ccmt-planList__title {
    font-size: 22px;
  }

  .ccmt-planList__subTitle {
    font-size: 15px;
  }

  .ccmt-planList__price {
    font-size: 18px;
  }

  .ccmt-price__number {
    font-size: 32px;
  }

  .ccmt-price__unit {
    font-size: 13px;
  }

  .ccmt-planList__recommendList {
    min-height: 170px;
  }

  .ccmt-planList__specItem {
    margin-inline: -12px;
    padding: 10px 14px;
  }

  .ccmt-planList__specItem dt {
    font-size: 13px;
  }

  .ccmt-planList__specItem dd {
    font-size: 20px;
  }

  .ccmt-planList__optionHeading {
    font-size: 16px;
  }

  .ccmt-planList__optionList {
    padding-left: 24px;
    font-size: 16px;
  }

  .ccmt-torisetuPack__flexBox {
    flex-direction: row;
    gap: 24px;
  }

  .ccmt-torisetsuPack__left {
    width: 50%;
  }

  .ccmt-torisetsuPack__right {
    width: 45%;
  }

  .ccmt-torisetsuPack__priceList {
    gap: 14px;
    padding: 16px;
  }

  .ccmt-priceList_lf .ccmt-torisetsuPack__priceValue {
    font-size: 42px;
  }

  .ccmt-torisetsuPack__priceItem.ccmt-priceList_lf .ccmt-small__txt {
    font-size: 24px;
  }

  .ccmt-torisetsuPack__priceItem.ccmt-priceList_rt {
    font-size: 18px;
  }

  .ccmt-torisetsuPack__priceValue {
    font-size: 22px;
  }

  .ccmt-torisetsuPack__featureList {
    grid-template-columns: repeat(2, 1fr);
  }

  .ccmt-torisetsuPack__specList dt,
  .ccmt-torisetsuPack__specList dd {
    font-size: 16px;
  }

  .ccmt-torisetsuPack__ctaButton {
    font-size: 18px;
  }
}
/* ======================================
   SP
   - max-width: 720px
====================================== */
@media only screen and (max-width: 720px) {
  /* ======================================
     共通
  ====================================== */
  .ccmt-block__inner {
    padding-inline: 20px;
  }
section.ccmt-block.ccmt-comparison .ccmt-block__inner {
    padding-right: 0;
}
  .ccmt-contentTitle {
    font-size: 16px;
  }

  .ccmt-contentSubTitle {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.5;
  }

  .pc_br {
    display: none;
  }

  .sp_br {
    display: block;
  }

  .ccmt__txtBold {
    font-size: 20px;
  }

  .ccmt__numberBold {
    font-size: 22px;
  }

  .ccmt__blueBox,
  .ccmt-small__txt {
    font-size: 12px;
  }

  .ccmt-page__header {
    height: auto;
    display: block;
    padding: 40px 20px;
  }

  .ccmt-comparison {
    overflow-x: auto;
    overflow-y: visible;
  }

  .ccmt-comparison__inner {
    padding: 0;
    min-width: 700px;
  }

  .ccmt-comparison__row {
    column-gap: 8px;
  }

  .ccmt-comparison__cell {
    padding: 15px 10px;
  }

  .ccmt-comparison__cell--toolHead,
  .ccmt-comparison__cell--tool,
  .ccmt-comparison__cell--mainBody {
    font-size: 13px;
  }

  .ccmt-comparison__row--head .ccmt-comparison__cell--toolHead,
  .ccmt-comparison__cell--mainHead {
    font-size: 18px;
  }

  .ccmt-comparison__recommend {
    top: -8px;
    left: -8px;
    width: 19.625vw;
    max-width: 80px;
  }

  .ccmt-comparison__icon {
    margin-bottom: 10px;
  }

  .ccmt-button.-internal::after {
    right: 6%;
  }

  .ccmt-faq__item {
    padding: 20px 15px;
    line-height: 1.5;
    text-align: left;
  }

  .ccmt-faq__question-mark,
  .ccmt-faq__answer-mark {
    margin-right: 12px;
    font-size: 20px;
  }

  .ccmt-faq__question-text {
    margin-right: 20px;
    font-size: 14px;
    line-height: 1.6;
  }

  .ccmt-faq__answer {
    margin-top: 10px;
    margin-bottom: 0;
    padding: 15px;
    font-size: 14px;
    line-height: 1.8;
  }

  /* ======================================
     特徴・機能 専用
  ====================================== */
  .ccmt-feature .ccmt-contentSubTitle {
    font-size: 2.8rem;
  }

  .ccmt-feature .ccmt-contentSubTitle span {
    font-size: 22px;
  }

  .ccmt-feature .ccmt-contentSubTitle span::before,
  .ccmt-feature .ccmt-contentSubTitle span::after {
    top: 10px;
    height: 2.2em;
  }

  .ccmt-feature .ccmt-contentSubTitle span::before {
    left: -8px;
  }

  .ccmt-feature .ccmt-contentSubTitle span::after {
    right: -8px;
  }

  .ccmt-feature__lead {
    text-align: left;
  }

  .ccmt-feature__pointTitle {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 1.5;
  }

  .ccmt-large {
    font-size: 28px;
  }

  .ccmt-large__number {
    font-size: 34px;
  }

  .ccmt-feature__pointList {
    display: block;
    margin-top: 70px;
    margin-bottom: 50px;
  }

  .ccmt-feature__pointItem {
    width: 100%;
    margin-bottom: 80px;
  }

  .ccmt-feature__pointItem:last-child {
    margin-bottom: 0;
  }

  .ccmt-feature__pointItem a {
    padding: 20px 20px 45px;
  }

  .ccmt-feature__pointImage {
    margin-bottom: 10px;
  }

  .ccmt-feature__pointHeading {
    font-size: 22px;
    line-height: 1.4;
  }

  .ccmt-feature__pointText {
    font-size: 16px;
    line-height: 1.6;
  }

  .ccmt-feature__detail {
    margin-bottom: 50px;
  }

  .ccmt-feature__detail::before {
    display: none;
  }

  .ccmt-future__intr {
    padding-left: 24px;
    margin-bottom: 24px;
  }

  .ccmt-future__intr::before {
    left: 0;
    width: 10px;
    height: 50%;
    transform: rotate(8deg);
  }

  .ccmt-feature__detailTitle {
    font-size: 24px;
    line-height: 1.4;
  }

  .ccmt-feature__detailTitle::before {
    font-size: 40px;
    padding-right: 8px;
  }

  .ccmt-feature__detailLead {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.8;
  }

  .ccmt-feature__detailItem {
    display: block;
    margin-bottom: 40px;
    background: var(--ccmt-color-bg-soft);
  }

  .ccmt-feature__detailMedia {
    width: 100%;
    margin-bottom: 20px;
  }

  .ccmt-feature__slide img,
  .ccmt-feature__thumbnail img,
  .ccmt-moreFeatures__itemImage img {
    width: 100%;
    height: auto;
  }

  .ccmt-feature__detailContent {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding: 20px;
  }

  .ccmt-feature__detailHeading {
    font-size: 18px;
    line-height: 1.5;
  }

  .ccmt-feature__detailText {
    font-size: 14px;
    line-height: 1.8;
  }

  .ccmt-support {
    padding: 50px 0;
    padding-inline: 0;
    border-radius: 0;
  }

  .ccmt-support::before,
  .ccmt-support::after {
    content: none;
  }

  .ccmt-support__list {
    display: block;
  }

  .ccmt-support__item {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
  }

  .ccmt-support__item:last-child {
    margin-bottom: 0;
  }

  .ccmt-support__title {
    font-size: 20px;
    line-height: 1.5;
  }

  .ccmt-support__tagList {
    justify-content: center;
    flex-wrap: wrap;
  }

  .ccmt-support__tagItem {
    font-size: 13px;
  }

  .ccmt-support__text {
    font-size: 14px;
    line-height: 1.8;
  }

  .ccmt-moreFeatures__tabButtons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .ccmt-moreFeatures__tabButton {
    width: 100%;
    padding: 12px 10px;
    font-size: 16px;
  }

  .ccmt-moreFeatures__tabContent.is-active {
    padding-block: 30px;
  }

  .ccmt-moreFeatures__title {
    left: -20px;
    width: 60%;
    margin-bottom: 20px;
    box-sizing: border-box;
    font-size: 18px;
  }

  .ccmt-moreFeatures__list {
    display: block;
  }

  .ccmt-moreFeatures__item {
    width: 100%;
    margin-bottom: 30px;
  }

  .ccmt-moreFeatures__item:last-child {
    margin-bottom: 0;
  }

  .ccmt-moreFeatures__itemTitle {
    font-size: 18px;
    line-height: 1.5;
  }

  .ccmt-moreFeatures__itemText {
    font-size: 14px;
    line-height: 1.8;
  }

  .ccmt-feature__slider .slick-next {
    right: 0;
  }

  .ccmt-pickup {
    padding: 50px 0;
  }

  .ccmt-pickup-list-area {
    display: block;
  }

  .ccmt-pickup-list-cont {
    width: 100%;
    margin-bottom: 20px;
  }

  .ccmt-pickup-list-cont:last-child {
    margin-bottom: 0;
  }

  .ccmt-pickup-txtarea {
    padding: 18px 14px;
  }

  .ccmt-pickup-list-cont__company {
    font-size: 18px;
  }

  .ccmt-pickup-list-cont__title {
    font-size: 16px;
    line-height: 1.6;
  }

  .ccmt-pickup-list-cont__text,
  .ccmt-pickup-list-cont__more {
    font-size: 14px;
    line-height: 1.8;
  }

  .ccmt-products__more {
    margin-top: 30px;
  }

  /* ======================================
     料金・プラン 専用
  ====================================== */
  .ccmt-feeStructure__lead {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .ccmt-feeStructure__text {
    font-size: 14px;
  }

  .ccmt-feeStructure__title {
    font-size: 18px;
  }

  .ccmt-feeStructure__list {
    flex-direction: column;
    gap: 50px;
    margin-bottom: 30px;
  }

  .ccmt-feeStructure__item {
    width: 100%;
    padding: 20px 15px 30px;
  }

  .ccmt-feeStructure__item:nth-child(1)::after,
  .ccmt-feeStructure__item:nth-child(2)::after {
    top: auto;
    right: 50%;
    bottom: -33px;
    width: 20px;
    height: 20px;
    transform: translateX(50%) rotate(90deg);
  }

  .ccmt-feeStructure__item:nth-child(2)::after {
    background: url(/wp-content/uploads/2026/04/fee_arrow_sp.png) no-repeat center center / contain;
    transform: translateX(50%) rotate(0deg);
    width: 40px;
    height: 40px;
    bottom: -45px;
  }

  .ccmt-mv__cta {
    width: 100%;
    min-height: 72px;
    gap: 10px;
    margin: 0 auto 10px;
  }

  .ccmt-mv__cta-sub {
    width: 34%;
    min-height: 72px;
    font-size: 12px;
    line-height: 1.3;
  }

  .ccmt-mv__cta-main {
    width: 66%;
    padding-right: 34px;
    padding-left: 4px;
    font-size: 14px;
    line-height: 1.4;
  }

  .ccmt-mv__cta::before {
    right: 13px;
    width: 7px;
    height: 7px;
  }

  .ccmt-mv__cta::after {
    right: 5px;
    width: 22px;
    height: 22px;
  }

  .ccmt-price__cta {
    width: 100%;
    margin: 20px auto;
  }

  .ccmt-planList .ccmt-block__inner {
    padding: 40px 15px;
  }

  .ccmt-planList__lead {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .ccmt-planList__list {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .ccmt-planList__item,
  .ccmt-planList__item.ccmt-planList__standard {
    width: 100%;
    max-width: 100%;
    padding-inline: 20px;
  }

  .ccmt-planList__item.ccmt-planList__standard {
    order: -1;
  }

  .ccmt-planList__item.ccmt-planList__standard::before {
    top: -24px;
    left: 41px;
    transform: translateX(-50%);
    width: min(106px, 30vw);
  }

  .ccmt-planList__head {
    margin-inline: -20px;
    padding: 16px 10px;
  }

  .ccmt-planList__title {
    font-size: 24px;
  }

  .ccmt-planList__subTitle {
    font-size: 16px;
  }

  .ccmt-planList__price {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .ccmt-price__number {
    font-size: 46px;
  }

  .ccmt-price__unit {
    margin-top: -14px;
    font-size: 12px;
  }

  .ccmt-planList__recommendList {
    min-height: auto;
    margin-bottom: 16px;
  }

  .ccmt-planList__recommendList li {
    font-size: 14px;
  }

  .ccmt-planList__specItem {
    margin-inline: -20px;
    padding: 10px 12px;
  }

  .ccmt-planList__specItem:last-of-type {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
  }

  .ccmt-planList__specItem dt {
    font-size: 13px;
  }

  .ccmt-planList__specItem dd {
    min-height: 40px;
    font-size: 20px;
  }

  .ccmt-planList__specItem dd sub {
    font-size: 12px;
  }

  .ccmt-planList__specAccordion {
    margin-top: 16px;
  }

  .ccmt-planList__specAccordionButton {
    position: relative;
    display: block;
    padding: 16px 40px 16px 16px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
  }

  .ccmt-planList__specAccordionButton::before,
  .ccmt-planList__specAccordionButton::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 14px;
    height: 2px;
    background: var(--ccmt-color-text);
    transform: translateY(-50%);
    transition: 0.3s ease;
  }

  .ccmt-planList__specAccordionButton::after {
    transform: translateY(-50%) rotate(90deg);
  }

  .ccmt-planList__specAccordion[open] .ccmt-planList__specAccordionButton::after {
    transform: translateY(-50%) rotate(0deg);
  }

  .ccmt-planList__specAccordion[open] .ccmt-planList__specAccordionButtonTextOpen {
    display: none;
  }

  .ccmt-planList__specAccordion[open] .ccmt-planList__specAccordionButtonTextClose {
    display: inline;
  }

  .ccmt-planList__specAccordion:not([open]) .ccmt-planList__specAccordionButtonTextOpen {
    display: inline;
  }

  .ccmt-planList__specAccordion:not([open]) .ccmt-planList__specAccordionButtonTextClose {
    display: none;
  }

  .ccmt-planList__option {
    margin-bottom: 16px;
    display: block;
    border: none;
  }

  .ccmt-planList__optionHeading {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-block: 1px solid #b2c8d1;
  }

  .ccmt-planList__optionContent {
    width: 100%;
  }

  .ccmt-planList__optionList {
    gap: 6px;
    padding: 10px;
    font-size: 14px;
  }

  .ccmt-planList__optionList dt,
  .ccmt-planList__optionList dd {
    width: 100%;
  }

  .ccmt-planList__notes {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .ccmt-planList__package {
    font-size: 16px;
  }

  .ccmt-torisetsuPack__layout {
    padding-block: 0 30px;
    border: none;
  }

  .ccmt-torisetuPack__flexBox {
    gap: 24px;
    margin-bottom: 30px;
    flex-direction: column;
  }

  .ccmt-torisetsuPack__left,
  .ccmt-torisetsuPack__right {
    width: 100%;
  }

  .ccmt-torisetsuPack__priceList {
    gap: 12px;
    padding: 10px;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }

  .ccmt-torisetsuPack__priceItem.ccmt-priceList_lf {
    padding-left: 0;
    font-size: 14px;
    text-align: center;
  }

  .ccmt-priceList_lf .ccmt-torisetsuPack__priceValue {
    font-size: 36px;
  }

  .ccmt-torisetsuPack__priceItem.ccmt-priceList_lf .ccmt-small__txt {
    font-size: 22px;
  }

  .ccmt-torisetsuPack__priceItem.ccmt-priceList_rt {
    font-size: 16px;
  }

  .ccmt-torisetsuPack__priceValue {
    font-size: 22px;
  }

  .ccmt-torisetsuPack__featureList {
    display: block;
  }

  .ccmt-torisetsuPack__featureItem {
    grid-template-columns: 0.3fr 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px dotted #ddd;
    padding-bottom: 10px;
  }

  .ccmt-torisetsuPack__featureText {
    font-size: 12px;
  }

  .ccmt-torisetsuPack__specTitle {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .ccmt-torisetsuPack__specList {
    margin-bottom: 12px;
    padding-inline: 15px;
    grid-template-columns: 2fr 1fr;
  }

  .ccmt-torisetsuPack__specList dt,
  .ccmt-torisetsuPack__specList dd {
    font-size: 16px;
    text-align: left;
  }

  .ccmt-torisetsuPack__specList dt {
    padding-left: 24px;
  }

  .ccmt-torisetsuPack__specList dt::before {
    top: 8px;
    left: 0;
  }
.ccmt-torisetsuPack__specList dd{
  text-align:right
}
  .ccmt-torisetsuPack__lead {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .ccmt-torisetsuPack__cta {
    max-width: 100%;
  }

  .ccmt-torisetsuPack__ctaButton {
    width: 100%;
    height: auto;
    min-height: 64px;
    padding: 18px 40px 18px 18px;
    font-size: 16px;
    line-height: 1.4;
  }

  .ccmt-torisetsuPack__ctaButton::before {
    right: 10px;
    font-size: 18px;
    top: 42%;
  }

  .ccmt-torisetsuPack__ctaButton::after {
    right: 10px;
    top: 48%;
  }
}