@charset "UTF-8";

/* ==========================================================================
   ミニメイド・サービス LP専用スタイルシート（フルイド・マルチデバイス対応版）
   - プレフィックス: mm-lp-
   - 1080px〜768px: clamp() による可変（Fluid）
   - 767px以下: スマホ最適化
   ========================================================================== */

/* 1. 変数定義とベース設定
   ========================================================================== */
.mm-lp-wrapper {
  /* カラー定義 */
  --mm-lp-main: #E57645;
  --mm-lp-accent: #9C2066;
  --mm-lp-white: #ffffff;
  --mm-lp-black: #333333;
  --mm-lp-bg-pale: #FFFDE6;
  --mm-lp-cta-yellow: #FFF262;

  /* フォント定義 */
  --mm-lp-font-base: "Noto Sans JP", sans-serif;
  --mm-lp-font-serif: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;

  font-family: var(--mm-lp-font-base);
  color: var(--mm-lp-black);
  background-color: var(--mm-lp-white);
  line-height: 1.8;
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
}

/* 2. 基礎要素のスタイル
   ========================================================================== */
.mm-lp-wrapper p {
  margin: 0 0 1.5em;
  font-size: inherit;
}

.mm-lp-wrapper p:last-child {
  margin-bottom: 0;
}

.mm-lp-wrapper ul,
.mm-lp-wrapper ol {
  margin: 0 0 1.5em;
  padding: 0;
  list-style: none;
}

.mm-lp-wrapper img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.mm-lp-wrapper a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.mm-lp-wrapper a:hover {
  opacity: 0.8;
}

/* 3. 共通レイアウト
   ========================================================================== */
.mm-lp-section {
  padding: 80px 0;
}

.mm-lp-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.mm-lp-fv img {
  width: 100%;
  display: block;
}

img.sp-mv {
  display: none;
}

/* 4. 見出しユニット
   ========================================================================== */
.mm-lp-heading {
  text-align: center;
  margin-bottom: 40px;
}

.mm-lp-wrapper .mm-lp-heading__label {
  display: block;
  font-family: var(--mm-lp-font-serif);
  color: var(--mm-lp-main);
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 28px;
}

.mm-lp-wrapper .mm-lp-heading__sub {
  display: block;
  max-width: 440px;
  margin: 0 auto 30px;
  padding: 10px;
  background: var(--mm-lp-main);
  color: var(--mm-lp-white);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border-radius: 40px;
  position: relative;
  box-sizing: border-box;
}

.mm-lp-wrapper .mm-lp-heading__sub::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: var(--mm-lp-main);
  transform: translateX(-50%);
}

.mm-lp-heading__text {
  margin: 0;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.5;
}

.mm-lp-content-title {
  display: inline-block;
  color: var(--mm-lp-black);
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}

/* 5. CTAブロック
   ========================================================================== */
.mm-lp-section-cta {
  padding: 40px 0;
  background: #FFFDE6;
}

.mm-lp-section-cta .mm-lp-heading__text {
  font-size: 32px;
}

.mm-lp-cta-box {
  padding-block: 20px;
  color: var(--mm-lp-white);
  text-align: center;
  border-radius: 10px;
}

.mm-lp-cta-tag {
  display: inline-block;
  position: absolute;
  top: -25px;
  left: 50%; /* 中央配置を安定させる */
  transform: translateX(-50%);
  z-index: 1;
  padding: 5px 60px;
  background-color: var(--mm-lp-cta-yellow);
  color: var(--mm-lp-black);
  font-size: 24px;
  font-weight: bold;
  border-radius: 50px;
  white-space: nowrap;
}

.mm-lp-btn-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 640px;
  height: 128px;
  margin: 0 auto;
  background: url(/img/pages/special/cta-bg.png) center / contain no-repeat;
  border-radius: 10px;
  transition: transform 0.2s;
}

.mm-lp-btn-anchor:hover {
  transform: scale(1.03);
}

.mm-lp-btn-text {
  display: block;
  color: var(--mm-lp-white);
  font-size: 32px;
  font-weight: bold;
  padding-right: 20px;
}

.mm-lp-cta-intro {
  text-align: center;
  font-weight: bold;
}

/* 6. コンテンツパーツ (フレックス)
   ========================================================================== */
.mm-lp-flex-item {
  display: flex;
  align-items: unset;
  gap: 30px;
}

.mm-lp-flex-item--reverse {
  flex-direction: row-reverse;
}

.mm-lp-flex-item__body {
  flex: 1.2;
}

.mm-lp-flex-item__image {
  flex: 1;
}

/* Point Section */
.mm-lp-points {
  position: relative;
  padding-top: 60px;
  background-color: var(--mm-lp-white);
}

.mm-lp-points .mm-lp-heading__sub {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 76px;
  margin: 0;
  padding-bottom: 20px;
  background: url(/img/pages/special/ribbon-bg.png) no-repeat center;
  background-size: contain;
  color: var(--mm-lp-white);
  font-size: 40px;
  max-width: unset;
  border-radius: unset;
}

.mm-lp-points .mm-lp-heading__sub::after {
  content: none;
}

.mm-lp-points h2.mm-lp-heading__text {
  font-size: 48px;
}

.mm-lp-points h2.mm-lp-heading__text span {
  color: var(--mm-lp-main);
  font-size: 60px;
}

.mm-lp-points .mm-lp-points-label {
  display: block;
  margin: 0;
  color: var(--mm-lp-main);
  font-family: var(--mm-lp-font-serif);
  font-size: 40px;
  font-weight: bold;
}

.mm-lp-points .mm-lp-points-label span {
  font-size: 56px;
}

.mm-lp-points__container .mm-lp-flex-item {
  margin-bottom: 40px;
  padding: 30px;
  border: 6px solid;
  border-image: linear-gradient(to bottom, #E57645, #FFC082) 1;
}

.mm-lp-points__container p {
  font-size: 18px;
}

/* 7. 進行プロセス
   ========================================================================== */
section.mm-lp-section.mm-lp-process {
  background-image: linear-gradient(180deg, #FFF5EE, #ffebdb);
}

section.mm-lp-section.mm-lp-process .mm-lp-heading__label {
  margin: 0;
}

.mm-lp-process__intro {
  text-align: center;
  font-weight: bold;
}

.mm-lp-process__inner {
  display: flex;
  width: 100%;
  max-width: 810px;
  margin: 0 auto;
  gap: 30px;
}

.mm-lp-process__list {
  position: relative;
}

.mm-lp-process__item {
  position: relative;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--mm-lp-white);
  justify-content: center;
  border-radius: 15px;
  box-shadow: 0px 0 5px 5px #c1c1c178;
}

.mm-lp-process__header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.mm-lp-process__step {
  display: block;
  margin-right: 20px;
  color: var(--mm-lp-main);
  font-family: var(--mm-lp-font-serif);
  font-size: 28px;
  font-weight: bold;
}
.mm-lp-process__heading {
    display: flex;
}
.mm-lp-process__heading .mm-lp-content-title {
  color: var(--mm-lp-main);
}

.mm-lp-process__icon {
  width: 100px;
  flex-shrink: 0;
}

.mm-lp-process__icon.sp_icon {
  display: none;
}

.mm-lp-process__body {
  width: 100%;
}

.mm-lp-process__list .mm-lp-process__item:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 42px;
  height: 30px;
  background: var(--mm-lp-main);
}

.mm-lp-process__list .mm-lp-process__item:last-of-type:after {
  content: none;
}

/* 8. プラン紹介カード
   ========================================================================== */
section.mm-lp-section.mm-lp-plans.mm-lp-bg-pale {
  background-image: linear-gradient(180deg, #FFF5EE, #FFE9F5);
}

.mm-lp-plans.mm-lp-bg-pale .mm-lp-heading__label {
  color: #9C2066;
}

.mm-lp-plan-intro {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.mm-lp-plan-intro span {
  font-size: 20px;
  font-weight: normal;
}

.mm-lp-plans__grid {
  display: block;
  margin-top: 40px;
}

.mm-lp-plan-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  padding: 40px;
  background-color: var(--mm-lp-white);
  border: 6px solid;
  border-image: linear-gradient(to bottom, #9C2066, #F390C8) 1;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.mm-lp-plan-card__header {
  margin-bottom: 30px;
  text-align: center;
}

.mm-lp-plan-card__label {
  display: block;
  margin-bottom: 5px;
  color: #9C2066;
  font-family: var(--mm-lp-font-serif);
  font-size: 20px;
  font-weight: bold;
}

.mm-lp-plan-card__header .mm-lp-content-title {
  color: #9C2066;
  font-size: 22px;
}

.mm-lp-plan-card__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mm-lp-plan-card__body p {
  width: 48%;
  margin: 0;
  padding: 0;
  font-size: 18px;
}

.mm-lp-plan-card__body ul {
  width: 48%;
  margin: 0;
  padding: 20px;
  background: #FFF3EA;
  border: none;
}

.mm-lp-plan-card__spec {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.mm-lp-plan-card__spec li {
  margin-bottom: 8px;
  list-style: none;
}

/* 9. FAQ (アコーディオン)
   ========================================================================== */
.mm-lp-faq {
  background: #F4F6F9;
}

.mm-lp-faq-item {
  margin-bottom: 15px;
  padding: 20px;
  background-color: var(--mm-lp-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}

.mm-lp-faq-summary::-webkit-details-marker {
  display: none;
}

.mm-lp-faq-summary {
  position: relative;
  margin-bottom: 10px;
  color: var(--mm-lp-main);
  font-size: 22px;
  font-weight: bold;
  list-style: none;
  cursor: pointer;
}

.mm-lp-faq-summary:before {
  content: "Q";
  margin-right: 15px;
}

.mm-lp-faq-summary::after {
  content: "＋";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #9C2066;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
}

.mm-lp-faq-item[open] > .mm-lp-faq-summary::after {
  content: "−";
}

.mm-lp-faq-content {
  display: flex;
  position: relative;
  padding: 10px 20px;
  background: #F5F6F6;
}

.mm-lp-faq-content:before {
  content: "A";
  font-weight: bold;
}

.mm-lp-wrapper .mm-lp-faq-content p {
  padding: 0 0 0 10px;
}

/* 10. 会社情報
   ========================================================================== */
.mm-lp-company-info {
  padding: 40px;
  background: #F4F6F9;
}

.mm-lp-wrapper .mm-lp-company-name {
  margin-bottom: 10px;
  color: #9C2066;
  font-size: 24px;
  font-weight: bold;
}

.mm-lp-company-date {
  font-weight: bold;
}

/* 11. 特化セクション (Commitment / Worries / Achievement / Voice)
   ========================================================================== */

/* Commitment */
.mm-lp-commitment {
  display: flex;
  align-items: center;
  background: url(/img/pages/special/commitment-bg.jpg) no-repeat center / cover;
  height: 675px;
}
.mm-lp-commitment .mm-lp-heading__text {
    font-size: 60px;
}
.mm-lp-commitment__content {
  text-align: center;
  font-weight: bold;
}

.mm-lp-commitment__content p {
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: bold;
}

.orange {
  color: var(--mm-lp-main);
  -webkit-text-stroke: 4px #ffffff;
  paint-order: stroke;
}

/* Worries */
section.mm-lp-section.mm-lp-worries {
  background: #F4F6F9;
}

.mm-lp-wrapper .mm-lp-worries__content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  font-weight: bold;
}

.mm-lp-wrapper .mm-lp-worries__content ul li {
  display: flex;
  justify-content: center;
  width: 24%;
  min-height: 130px;
  padding: 10px;
  background: url(/img/pages/special/worries-bg.png) no-repeat;
  background-size: contain;
  font-size: 20px;
  line-height: 1.5;
  box-sizing: border-box;
}

.mm-lp-wrapper .mm-lp-worries__content ul li:nth-child(-n + 2) {
  padding-top: 24px;
}

/* Achievement */
.mm-lp-achievement {
  
  
/* 画像をグラデーションより上に配置 */
  background: url(/img/pages/special/achievement-bg.png) no-repeat center top / contain,             linear-gradient(180deg, #FFFFFF 50%, #FFE9F5 100%);
}

.mm-lp-achievement__list .mm-lp-flex-item {
  margin-bottom: 40px;
  padding: 30px;
  background: var(--mm-lp-white);
  border-radius: 15px;
  box-shadow: 1px 1px 8px 4px #cfcfcfb8;
}

.mm-lp-achievement__list .mm-lp-content-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 480px;
  height: 98px;
  margin: 0 auto 20px;
  padding-top: 20px;
  background: url(/img/pages/special/achievement-decoration.png) no-repeat center / contain;
  color: #A37E1B;
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
}

.mm-lp-achievement__list .mm-lp-flex-item:last-of-type .mm-lp-content-title {
  padding-top: 46px;
}

.mm-lp-achievement__list p {
  font-size: 20px;
  font-weight: bold;
}

/* Voice */
.mm-lp-voice-item {
  position: relative;
  margin-bottom: 40px;
  padding: 20px;
  background: var(--mm-lp-white);
  justify-content: center;
  border-radius: 15px;
  box-shadow: 0px 0 5px 5px #c1c1c178;
}

.mm-lp-voice__inner {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  align-items: center;
  gap: 30px;
}

.mm-lp-voice-item__image {
  width: 156px;
}

.mm-lp-voice-item__body {
  width: 100%;
}

.mm-lp-voice-item .mm-lp-content-title {
  color: var(--mm-lp-main);
}
.sp_br{
  display: none;
}

footer {
    padding-top: 50px;
}


/* ==========================================================================
   メディアクエリ: 1080px以下（Fluid調整）
   ========================================================================== */
@media screen and (max-width: 1080px) {
  .mm-lp-wrapper {
    font-size: clamp(16px, 1.85vw, 20px);
  }

  .mm-lp-inner {
    width: 92%;
  }

  .mm-lp-section {
    padding: clamp(40px, 7.4vw, 80px) 0;
  }

  .mm-lp-heading {
    margin-bottom: clamp(20px, 2vw, 40px);
  }

  .mm-lp-wrapper .mm-lp-heading__label {
    font-size: clamp(20px, 2.6vw, 28px);
  }

  .mm-lp-wrapper .mm-lp-heading__sub {
    width: 90%;
    margin-bottom: clamp(20px, 3vw, 30px);
    font-size: clamp(18px, 2.2vw, 24px);
  }
.mm-lp-commitment{
  height: auto;
}
  .mm-lp-points h2.mm-lp-heading__text {
    font-size: clamp(32px, 4.4vw, 48px);
  }

  .mm-lp-content-title {
    font-size: clamp(24px, 2.4vw, 32px);
  }

  .mm-lp-btn-anchor {
    width: clamp(320px, 60vw, 640px);
    height: clamp(80px, 12vw, 128px);
  }

  .mm-lp-btn-text {
    font-size: clamp(20px, 3vw, 32px);
  }

  .mm-lp-cta-tag {
    padding: 5px clamp(30px, 5.5vw, 60px);
    font-size: clamp(18px, 2.2vw, 24px);
  }

  .mm-lp-points p.mm-lp-heading__sub {
    font-size: clamp(28px, 3.7vw, 40px);
  }
.mm-lp-commitment .mm-lp-heading__text {
    font-size: clamp(34px, 5.4vw, 60px);
}
  .mm-lp-points__container .mm-lp-flex-item {
    padding: clamp(20px, 2vw, 30px);
  }

  .mm-lp-points .mm-lp-points-label {
    font-size: clamp(30px, 3.7vw, 40px);
  }

  .mm-lp-points .mm-lp-points-label span {
    font-size: clamp(40px, 5vw, 56px);
  }

  .mm-lp-wrapper .mm-lp-worries__content ul li {
    width: 48%;
    min-height: 130px;
    margin: 0 auto 10px;
    background-position-x: center;
    font-size: 20px;
  }

  .mm-lp-wrapper .mm-lp-worries__content ul li:nth-child(-n + 2) {
    padding-top: 24px;
  }

  .mm-lp-achievement__list .mm-lp-content-title {
    width: clamp(300px, 45vw, 480px);
    height: clamp(60px, 9vw, 98px);
    font-size: clamp(18px, 2.6vw, 28px);
  }

  .mm-lp-plan-card {
    padding: clamp(20px, 4vw, 40px);
  }

  .mm-lp-wrapper .mm-lp-plan-intro {
    font-size: clamp(18px, 2.2vw, 24px);
  }

  .mm-lp-voice-item__image {
    width: clamp(80px, 14vw, 156px);
  }

  .mm-lp-faq-summary {
    padding-right: 60px;
    font-size: clamp(18px, 2vw, 22px);
  }

  .mm-lp-points h2.mm-lp-heading__text span {
    font-size: clamp(42px, 5.5vw, 60px);
  }

  .mm-lp-section-cta .mm-lp-heading__text {
    font-size: clamp(24px, 2.4vw, 32px);
  }

  .mm-lp-process__step {
    font-size: clamp(20px, 2.6vw, 28px);
  }

  .mm-lp-heading__text {
    font-size: clamp(34px, 4.4vw, 48px);
  }
}

/* ==========================================================================
   メディアクエリ: 768px以下（スマホ最適化）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .sp_br{
    display: block;
  }
  img.pc-mv {
    display: none;
  }

  img.sp-mv {
    display: block;
  }

  section.mm-lp-section.mm-lp-commitment {
    background: url(/img/pages/special/commitment-bg-sp.jpg) no-repeat center / cover;
  }

  .mm-lp-section {
    padding-block: 40px;
  }

  .mm-lp-heading__text {
    font-size: 28px;
  }

  .mm-lp-commitment__content {
    display: block;
    padding: 20px;
    background: #FFF3EA;
    border-radius: 15px;
  }

  .mm-lp-wrapper {
    font-size: 16px;
  }

  .mm-lp-wrapper .mm-lp-commitment__content p {
    padding: 0;
    font-size: 16px;
  }

  .mm-lp-wrapper .mm-lp-heading__sub {
    width: 100%;
    font-size: 20px;
  }
  .mm-lp-wrapper .mm-lp-worries__content ul {
    max-width: 345px;
    margin: 0 auto 1.5rem;
  }
  .mm-lp-wrapper .mm-lp-worries__content ul li {
    width: 48%; /* 上記1080pxの48%継承でもOK */
    min-height: auto;
    height: 100%;
    background-size: contain;
    font-size: clamp(14px, 0.28vw + 13.8px, 16px);
    padding: 6px 0 16px !important;
    display: block;
    background-size: 100% auto;
    background-position: bottom center;
    border-radius: 5px 5px 0 0;
    line-height: 1.4;
  }

  .mm-lp-points p.mm-lp-heading__sub {
    position: relative; /* absoluteから解除 */
    top: -28px;
    width: 90%;
    height: auto;
    padding: 0 10px 10px;
    background-image: url(/img/pages/special/ribbon-bg-sp.png);
    background-position-x: center;
    font-size: 24px;
    margin-bottom: 0;
    display: block;
  }

.mm-lp-points {
    padding-top: 0;
}

.mm-lp-points h2.mm-lp-heading__text {
    margin-top: -20px;
}
  .mm-lp-points__container .mm-lp-flex-item {
    display: block;
  }

  .mm-lp-process__icon.pc-icon {
    display: none;
  }

  .mm-lp-process__heading {
    display: block;
  }

  .mm-lp-process__inner {
    display: block;
    max-width: unset;
  }

  .mm-lp-process__icon.sp_icon {
    display: block;
    width: 80px;
  }

  .mm-lp-process__step {
    margin: 0;
  }

  .mm-lp-process__header {
    gap: 20px;
  }

  .mm-lp-flex-item {
    display: block;
  }

  .mm-lp-achievement__list p {
    font-size: 16px;
  }

  .mm-lp-achievement__list .mm-lp-flex-item {
    margin-bottom: 20px;
    padding: 20px;
  }

  .mm-lp-voice__inner {
    display: block;
    padding: 0;
  }

  .mm-lp-voice-item__image {
    display: block;
    margin: 0 auto 20px;
  }

  .mm-lp-voice-item .mm-lp-content-title {
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .mm-lp-plan-intro span {
    font-size: 16px;
  }

  .mm-lp-plan-card {
    display: block;
  }

  .mm-lp-plan-card__body {
    display: block;
  }

  .mm-lp-plan-card__body p,
  .mm-lp-plan-card__body ul {
    width: 100%;
  }

  .mm-lp-plan-card__label {
    margin-bottom: 20px;
  }

  .mm-lp-plan-card__header {
    margin: 15px;
  }

  .mm-lp-company-info {
    padding: 20px 10px;
  }

  .mm-lp-wrapper .mm-lp-company-name {
    font-size: 20px;
  }
.mm-lp-achievement__list .mm-lp-content-title {
    padding-top: 46px;
}

.mm-lp-flex-item__image img {
    display: block;
    margin: 0 auto;
}
.mm-lp-process__heading .mm-lp-content-title {
    font-size: 20px;
}
.mm-lp-achievement {
    background: url(/img/pages/special/achievement-bg.png) no-repeat center top / contain, linear-gradient(180deg, #FFFFFF 50%, #FFE9F5 100%);
    background-size: auto;
}
}