:root {
    --red-color: #FA6049;
    --orange-color: #FFAF4E;
}

* {
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
}

/* 基本設定 */
body.my-custom-lp {
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #634D3E;
    background-color: #fff; /* 全体の背景色 */
    font-size: 16px;
    box-sizing: border-box;
    letter-spacing: 1px;
    overflow-x: hidden;
    font-weight: 500;
}

.my-custom-lp p {
    font-family: 'Zen Maru Gothic',sans-serif;
}

.my-custom-lp h2 {
    font-family: 'Zen Old Mincho',serif;
}
.my-custom-lp a:hover {
    color: #fff!important;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom; /* 画像下の余白を消す */
}

.mincho {
    font-family: 'Zen Old Mincho',serif;
}
.maru {
    font-family: 'Zen Maru Gothic',sans-serif;
}

.pc-only {
    display: none;
}

.column {
    display: flex;
    flex-direction: column;
}
.scrolled .page_top_btn {
    display: none!important;
}

/* ヒーロー */
.hero {
    padding: 0;
    line-height: 0;
    background-color: #f7f3f1;
}

.hero picture,
.hero img {
    width: 100%;
    height: auto;
    /* imgをブロック要素にして余白をなくす */
    display: block; 
}

/* --- 疑問提起セクション --- */
.question {
    background-color: #f7f3f1;
    padding: 0 0 40px 0;
    text-align: center;
}

.question .icon {
    width: 36px;
    margin: 0 auto 20px;
    top: 0;
}

.question h2 {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}
.question h2 span:nth-of-type(1) {
    font-weight: bold;
    font-size: 1.3em;
}
.question h2 span:nth-of-type(2) {
    font-size: .85em;
}

.dialog-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* --- 落とし穴セクション --- */
.pitfall {
    position: relative;
    padding: 40px 20px;
    text-align: center;
    background-color: #f7f3f1;
        font-family: 'Zen Maru Gothic', sans-serif;
}

.pitfall h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 10px 0;
    line-height: 1.5;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.pitfall .pitfall-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--red-color);
    margin: 0;
}

.pitfall .pitfall-title .desu {
    font-size: 1.2rem;
    color: #634D3E;
    font-weight: 500;
}

.pitfall .movement-image {
    margin-top: 30px;
}
.pitfall .movement-image img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 208px;
    opacity: .8;
}

/* --- 結論セクション --- */
.answer {
  /* ★波線と背景の両方の指定をここにまとめる */
  position: relative;
  text-align: center;
  background-color: #fff; /* 背景画像が読み込めない時のための予備色 */
  background-image: url(images/answer_bg.png);
  background-repeat: no-repeat;
  background-size: 95%;
  background-position: center 3%;
}
.icon-wrapper {
    text-align: center;
}
.icon {
    position: relative;
    top: -45px;
}

.icon.watch_illust {
    width: 55px;
}

.answer .answer-text {
    font-size: 1.4rem;
    line-height: 1.7;
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
}

.answer .highlight {
    font-size: 1.25em;
    font-weight: bold;
    color: var(--red-color)
}
/* --- 漫画セクション --- */
.manga {
    /* padding: 40px 20px;
    background-color: #fcf3ed;
    border-radius: 30px; */
    margin: 50px 0;
}
.manga-sp {
    display: block;
}
.manga-pc {
    display: none;
}

/* --- 注意点セクション --- */
.caution-points {
    background-color: #FCF3ED;
    border-radius: 20px 20px 0 0;
    padding: 30px 5px; 
    text-align: center;
    margin: 0 10px;
}

.caution-intro p {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
    margin: 0 0 30px 0;
}

.caution-intro .highlight-title {
    font-size: 1.6em;
    letter-spacing: 2px;
    font-weight: bold;
    color: var(--red-color); /* オレンジ色 */
}

.points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 15px;
    margin-bottom: 30px;
}

.point-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.point-icon-wrapper {
    width: 117px;
    height: 117px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.point-icon-wrapper img {
    width: 60px;
    height: 60px;
}

.point-item p {
    margin: 0;
    font-weight: 500;
    font-size: 0.9em;
    line-height: 1.4;
    position: absolute;
    bottom: -3px;
    z-index: 1;
    width: 173px;
    height: 2rem;
    display: flex;
    letter-spacing: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.point-item .etc {
    width: 110px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.conclusion {
    font-size: 1.15rem;
    line-height: 1.5;
    font-weight: 600;
}
.conclusion span {
    color: var(--red-color);
    font-weight: bold;
    font-size: 1.1rem;
}
.conclusion .impossible {
    font-size: 1.5em;
    font-weight: 600;
}
/* 三角形 下 */
.cstm-clip-lower-kaku {
    position: relative;
    height: 89px;
    margin: 0 10px;
    width: 96%;
    max-width: 960px;
    left: 50%;
    transform: translateX(-50%);
}

.custom-shape-divider-top-1753502830 { 
    position: absolute; 
    top: 0;
    left: 49%;
    transform: translateX(-50%);
    width: 100%; 
    Overflow: Hidden; 
    Line-height: 0; 
} 

.custom-shape-divider-top-1753502830 svg { 
    position: relative; 
    display: block; 
} 

.custom-shape-divider-top-1753502830 .shape-fill { 
    fill: #FCF3ED; 
}

/* --- 例えばセクション --- */
.example {
    padding: 40px 10px;
    background-color: #fff; /* このセクションの背景は白 */
    text-align: center;
}

.example-header p {
    font-size: 1.9rem;
    font-weight: bold;
    margin: 0 0 15px 0;
}

p.example-subtitle {
    font-size: 1.1em;
    color: var(--red-color);
    font-weight: bold;
    line-height: 1.6;
    margin: 0;
}

.comparison-container {
    border-radius: 15px;
    margin: 30px 0;
}

.image-card {
    position: relative;
    margin-bottom: 20px;
}

.image-card:last-child {
    margin-bottom: 0;
}

.image-card img {
    border-radius: 10px;
    display: block;
}

.explanation {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    text-align: center;
    margin: 30px 0;
    letter-spacing: 0;
}

.advice-box {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 30px 0;
}
.example .advice-box .advice-bubble {
    padding: 10px 12px;
    width: 100%;
    left: -10px;
}
.example .advice-box .advice-character {
    bottom: 0;
    left: 0;
}
.example .advice-bubble p {
    font-size: 16px;
    line-height: 2;
    letter-spacing: normal;
}

.advice-character {
    min-width: 65px;
    position: relative;
    z-index: 1;
    left: 7px;
}

.advice-bubble {
    background-color: var(--orange-color);
    color: #fff;
    padding: 15px;
    border-radius: 15px;
    text-align: left;
    position: relative;
    font-size: 1.2rem;
    line-height: 1.3;
    min-width: 300px;
}

.advice-bubble p {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    line-height: 2;
}

/* 吹き出しのしっぽ */
.advice-bubble::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 40px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent var(--orange-color) transparent transparent;
}

.cta-box {
    position: relative;
    padding: 20px 0;
}
.emphasis-dots {
    position: relative;
}
.emphasis-dots::before {
content: '・・・・';
    position: absolute;
    top: -1.1em;
    left: 50%;
    transform: translateX(-50%);
    color: #333;
    font-size: 1em;
    letter-spacing: 1px;
}

.cta-box h3 {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.cta-box p:nth-of-type(1) {
    font-family: "Zen Old mincho",serif;
    font-weight: 600;
}
.cta-box p:nth-of-type(1) span {
    color: var(--red-color);
    font-size: 1.3em;
}
.cta-box p:nth-of-type(1) span:nth-of-type(2) {
    color: #634D3E;
    font-size: 1.3em;
}

.cta-box .cta-conclusion {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: normal;
    position: relative;
    width: fit-content;
    display: inline-block;
}
/* キラキラの装飾 */
.cta-box .cta-conclusion:before {
    content: "";
    display: block;
    background: url(images/cta-conclusion-bf.png) no-repeat;
    width: 28px;
    height: 30px;
    background-size: contain;
    position: absolute;
    bottom: -16px;
    left: -15px;
}

.cta-box .cta-conclusion:after {
    content: "";
    display: block;
    background: url(images/cta-conclusion-af.png) no-repeat;
    width: 28px;
    height: 30px;
    background-size: contain;
    position: absolute;
    bottom: -16px;
    right: -15px;
}

.cta-box .cta-conclusion span {
    color: #FF8C00;
    font-size: 1.2em;
}

/* --- 私たちにお任せくださいセクション --- */
.commitment {
    padding: 40px 0;
    text-align: center;
    background-color: #FCF3ED;
    margin-top: -6px;
    position: relative;
}
.commitment_inner {
    padding: 0 10px;
}
.commitment h1 {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    margin: 0 0 20px 0;
    font-family: 'Zen Old Mincho',serif;
}
.commitment h2 span:nth-of-type(1) {
    font-size: 1.6em;
}

.commitment .highlight-large {
    font-size: 1.55em;
    font-weight: bold;
    color: #FF8B79;
}

/* --- 技術者情報セクション --- */
.technician-info {
  margin: 40px auto; /* 上下の余白 */
  text-align: center;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* 上段のボックス（スイス本国〜） */
.technician-info .training-info {
  background-color: #FFE1CE; /* 明るいオレンジ */
  color: #634D3E;
  padding: 8px 3px;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.technician-info .training-info span {
    color: #FF8C00;
    font-size: 1.5em;
    font-weight: bold;
}

/* 下段のボックス（認定された〜） */
.technician-info .certified-info {
  background-color: #FFAF4E; /* 濃いオレンジ */
  color: #fff;               /* 白文字 */
  padding: 1.5em 1em;
  line-height: 1.5;
  margin: 0;
}
.technician-info .certified-info span {
    position: relative;
    display: inline-block;
    color: #634D3E;
    font-size: 1.5em;
    font-weight: bold;
}
.technician-info .certified-info span::before {
    content: '・・・・・・・・';
    position: absolute;
    top: -.8em;
    left: 50%;
    transform: translateX(-50%);
    color: #634D3E;
    font-size: 1em;
    letter-spacing: 1px;
}

/* PC表示（768px以上）の調整 */
@media (min-width: 768px) {

/* --- 結論セクション --- */
.answer {
  background-image: url(images/answer_bg_pc.png);
  background-size: 95%;
}
.answer .icon{
    top: -100px;
}
.answer .answer-text{
    font-size: 35px;
}

  .technician-info {
    max-width: 800px; /* PCでは横幅が広がりすぎないように制限 */
  }
  .technician-info .training-info,
  .technician-info .certified-info {
    font-size: 22px;
    width: fit-content;
    padding: 8px 15px;
  }
 
}

.certificate-area {
    position: relative;
        width: 95%;
    max-width: 450px;
    margin: 0 auto;
}
.certificate-area:before {
    display: block;
    content: "";
    background: url(images/certificate_bg.png) no-repeat;
    background-size: contain;
    position: absolute;
    width: 100%;
    aspect-ratio: 4 / 3; /* 例：画像の縦横比が4:3の場合 */
    bottom: -28px;
    z-index: 0;
}
.certificate-area strong {
position: absolute;
    display: block;
    top: 15px;
    left: 0;
    transform: rotate(354deg);
    z-index: 1;
    background: #ffffffb5;
    padding: 5px 10px;
    color: #FF8B79;
}

.certificate-sp-img {
    position: relative;
    z-index: 1;
}
.deco-icon {
    position: absolute;
    width: 25px; /* アイコンサイズ調整 */
    opacity: 0.7;
}

/* --- 「だから、私たちは」のダイアログボックス --- */
.cando {
    margin-left: 10px;
    margin-right: 10px;
}
.dialog-intro {
    font-size: 20px;
    margin: 0;
    text-align: center;
}
.dialog-box-final {
  background-color: #fcf3ed;
  border-radius: 20px;
  padding: 30px 10px 20px; /* モバイルでの余白 */
  margin: 0 auto 80px;
  max-width: 800px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  max-width: 400px;
}
.dialog-box-final .dialog-intro {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
    font-size: 20px;
    color: #634D3E;
    width: 100%;
}
.dialog-box-final .dialog-text {
  text-align: center;
}

.dialog-box-final .dialog-character {
    margin-top: 1.5em;
    position: absolute;
    right: 12px;
    bottom: 1px;
}

.dialog-box-final .dialog-character img {
  width: 68px;
  height: auto;
}

.dialog-box-final .dialog-inner-box {
  color: #5C2B09;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  text-align: left;
  padding-left: 15px;

}

.highlight-maker {
  background: linear-gradient(transparent 60%, #FDCF8E 60%);
  position: relative;
}

.highlight-maker::before {
  content: '・・・・・・';
  position: absolute;
  top: -1.1em;
  color: #554a44;
  font-size: 1em;
  letter-spacing: 1px;
}

.highlight-correct {
  color: #FF8C00;
  font-size: 1.6em; /* モバイルでのフォントサイズ */
  font-weight: 700;
  background: linear-gradient(transparent 60%, #FDCF8E 60%);
}

/* ▲ 2. PC用のスタイルをmin-widthで追加 ▲ */
@media (min-width: 768px) {
  .dialog-box-final {
    flex-direction: row;     /* PCでは横並びに変更 */
    align-items: flex-end;   /* 下端揃えに変更 */
    justify-content: center;
    padding: 2em;
      max-width: 800px;
  }
  .dialog-box-final .dialog-character {
    margin-top: 0;           /* 縦の余白をリセット */
    margin-left: 1.5em;      /* 横の余白を追加 */
  }
  .dialog-box-final .dialog-character img{
    width: 100px;
  }
  .dialog-box-final .dialog-intro {
    font-size: 28px;
    top: -22px;
  }
  .dialog-box-final .dialog-inner-box{
    font-size: 22px;
  }
  .highlight-correct {
    font-size: 2.2rem;
    margin-left: -9px;
    background: linear-gradient(transparent 76%, #FDCF8E 60%);
  }
  .dialog-inner-box span.highlight-maker {
    padding-bottom: 2px;
  }
}

/* --- 修理事例セクション --- */
.case-study {
    padding: 40px 10px 0;
    background-color: #fcf3ec;
    text-align: center;
    margin-top: -6px;
    margin-bottom: -80px;
}

.section-title-dots {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 2px;
}
.namisen {
    width: 182px;
    margin: 0 auto 40px;
}

.case-study-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 15px 15px 50px;
    text-align: left;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.before-after-images {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}
.before-after-images .image-wrapper {
    position: relative;
}
.before-after-images .image-wrapper img {
    border-radius: 10px;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.before-after-images .arrow {
    font-size: 2rem;
    color: #e85d47;
}

.image-wrapper .label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 3px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}
.label.before { background-color: #555; }
.label.after { background-color: #f9a825; }

.case-text {
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
    padding: 15px;
}
.highlight-orange {
    color: var(--red-color);
}

.final-advice {
    position: relative;
    top: -80px;
}

.advice-box .advice-bubble {
    min-width: 235px;
    padding: 10px 20px;
}
.advice-bubble p {
    font-size: 18px;
    line-height: 1.5;
}
.advice-box .advice-character {
    width: 65px;
    bottom: -27px;
}
.final-advice {
    margin: 30px 0 70px;
}

/* --- LINEでお問い合わせセクション --- */
.line-cta {
    padding: 0 10px 80px;
    text-align: center;
    background-color: #FCF3ED; /* 背景色を継続 */
    border-bottom: 1px solid #FCF3ED; /* 区切り線 */
}
.cta-text-slanted {
    display: inline-block;
    padding: 5px 15px;
    font-size: 18px;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    font-weight: 500;
}
.line-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #52c16e; /* LINEグリーン */
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 25px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    width: 97%;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1;
}
.line-button:hover {
    transform: scale(1.05);
}
.line-button::after {
    content: "";
    background: url(images/button-right.png) no-repeat;
    width: 20px;
    height: 20px;
    background-size: contain;
    display: inline-block;
    margin-left: 10px;
    font-size: 0.8em;
}

/* --- 簡単・安心セクション --- */
.easy-safe {
    padding: 40px 10px;
    text-align: center;
    background: url(images/easy-safe_bg.png) no-repeat;
background-size: 95%;
    background-position: top center;
}
.easy-safe .icon {
    top: -87px;
}
.easy-safe .icon-wrapper {
    height: 50px;
}

.easy-safe h2 {
    font-size: 35px;
    line-height: 1.5;
    margin: 20px 0 50px 0;
    font-weight: 600;
}
.easy-safe h2 span {
    font-size: 44px;
}
.easy-safe .features-container {
        display: flex;
        gap: 30px;
        align-items: stretch; /* カードの高さを揃える */
        flex-direction: column;
}
.feature-card {
    background-color: #fbeee9;
    border-radius: 20px;
    padding: 40px 10px;
    margin-bottom: 20px;
    align-items: center;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.feature-card h3 {
    font-family: 'Zen Maru Gothic',sans-serif;
    color: var(--red-color);
    font-size: 32px;
    margin: 0 0 10px 0;
    letter-spacing: initial;
}
.feature-subtitle {
    font-size: 22px;
    line-height: 1.5;
    margin: 0 0 30px 0;
    letter-spacing: initial;
}
.feature-img {
    margin-bottom: 20px;
    max-width: 200px;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block; /* 中央寄せのため */
}
.feature-list li {
    font-size: 17px;
    margin-bottom: 10px;
    padding-top: 3px;
    padding-left: 40px; /* アイコン分のスペース */
    position: relative;
}
.feature-list li:last-child {
    margin-bottom: 0;
}

/* リストのアイコン */
.feature-list li::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url('images/good.png'); /* 仮のチェックマークアイコン */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 2px;
}

/* --- 修理会社との違いセクション --- */
.top0 {
    top: 0;
}
.repair-company-cons {
    text-align: center;
}
.repair-company-cons .manga {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.repair-company-cons h2 {
    font-size: 26px;
    line-height: 1.6;
    font-weight: 500;
    margin: 20px 0 40px;
}
.repair-company-cons h2 span {
    font-weight: 700;
    font-size: 32px;
}

.cons-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}
.cons-intro span {
    color: var(--red-color);
    font-size: 18px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 500;
}
.cons-content-wrapper {
    padding: 0 10px;
    position: relative;
}
.cons-content-wrapper .cons-character {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 116px;
}
.cons-list-container {
    background-color: #fbeee9;
    border-radius: 20px;
    padding: 30px 10px;
}
.cons-list-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.cons-list-container li {
    font-size: 17px;
    line-height: 1.6;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    letter-spacing: initial;
    width: 95%;
}
.cons-list-container li:last-child {
    margin-bottom: 0;
}
/* リストのチェックアイコン */
.cons-list-container li::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url('images/caution.png'); /* 仮のチェックマークアイコン */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 4px;
}
.cons-highlight {
    color: var(--red-color);
}

/* --- 比較セクション --- */
.comparison {
    padding: 40px 10px 0;
    background-color: #fff;
}
.comparison-title {
    font-family: "Zen Old Mincho", serif;
    text-align: center;
    font-size: 44px;
    font-weight: 600;
    position: relative; /* 背景文字の位置の基準 */
    z-index: 1; /* 文字が背景より手前に来るように */
    margin: 30px 0;
}
/* 背景の「pros&cons」の文字 */
.comparison-title::before {
    content: 'pros&cons';
    font-family: "Zen Old Mincho",serif; /* この部分だけ別のフォントを指定しても良い */
    font-weight: bold;
    font-size: 3.5rem;
    color: #fff3e4;
    position: absolute;
    bottom: -54px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1; /* タイトルの背面に配置 */
    width: 100%; /* 横幅を確保して中央揃えを安定させる */
}

.comparison .comparison-cards-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
            position: relative;
    z-index: 2;
}
.comparison-card {
    border-radius: 20px;
    padding: 30px 30px 50px;
}
:nth-of-type(2).comparison-card {
    margin-bottom: 0;
}
.comparison-card.maker { background-color: #fff3e4; }
.comparison-card.company { background-color: #fcf3ec; }

.comparison-card h3 {
    text-align: center;
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 40px;
    color: var(--orange-color);
    font-weight: 500;
        font-family: 'Zen Maru Gothic',sans-serif;
}
.comparison-card:nth-of-type(2) h3 {
    color: var(--red-color);
}
.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comparison-card li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-left: 40px;
    font-size: 18px;
    position: relative;
    letter-spacing: initial;
}
.comparison-card li:last-child {
    margin-bottom: 0;
}
.comparison-card li:before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url('images/good.png'); /* 仮のチェックマークアイコン */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}
.comparison-card li.bad:before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url('images/bad.png'); /* 仮のチェックマークアイコン */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}
.curved {
    position: relative;
    background: #fff;
    height: 50px;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    width: 130%;
    left: 50%;
    transform: translateX(-50%);
}

/* --- 安くできる理由セクション --- */
.reasons-cheap {
    background-color: #fcf3ec;
    padding: 0 10px 40px;
    text-align: center;
}
.reasons-cheap .icon {
    top: -28px;
}
.reasons-container {
    position: relative;
    justify-content: center;
}
.reasons-cheap h2 {
    font-size: 25px;
    line-height: 1.6;
    margin: 0px 0 100px;
    font-weight: 500;
}
.reasons-cheap h2 span {
    font-size: 33px;
    font-weight: 600;
}
h2.touten {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    display: inline-block;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    border-bottom: none !important;
}
h2.touten span {
    font-size: 28px;
}
.reason-button {
    display: block;
    background-color: #ff8976;
    color: white;
    font-weight: 500;
    font-size: 28px;
    padding: 5px 15px;
    margin: 0;
    white-space: nowrap;
}

.reason-block {
    background: #fff;
    border-radius: 20px;
    padding: 10px 10px 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    width: 100%;
}
.reason-icon-wrapper {
    display: flex;
    flex-direction: column;
}
.reason-icon-wrapper img {
    width: 82px;
    margin: 60px auto 10px;
}
.reason-block h3 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: normal;
    margin: 10px 0;
    border-bottom: 1px solid #FFE1CE;
    padding-bottom: 8px;
}

.reason-block p {
    font-size: 16px;
    line-height: 1.４;
    margin: 0;
}

.reason-illustration {
    margin-top: 20px;
    width: 100%;
    max-width: 480px;
}
.red {
    color: var(--red-color);
}
/* --- 料金比較表セクション --- */
.price-table {
    padding: 0 20px 40px;
    background-color: #fcf3ec;
}
.price-table-title {
    font-family: "Zen Old Mincho", serif;
    text-align: center;
    font-size: 44px;
    font-weight: 600;
    position: relative; /* 背景文字の位置の基準 */
    z-index: 0; /* 文字が背景より手前に来るように */
    margin: 0;
    line-height: 1.3;
}
/* 背景の「pros&cons」の文字 */
.price-table-title::before {
    content: 'prices';
    font-family: "Zen Old Mincho",serif;
    font-weight: bold;
    font-size: 3.5rem;
    color: #fff;
    position: absolute;
    bottom: -54px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1; /* タイトルの背面に配置 */
    width: 100%; /* 横幅を確保して中央揃えを安定させる */
}
.price-table-title span {
    font-size: 30px;
}

/* テーブル */
.price-table-inner{
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

/* テーブルヘッダー (クオーツ / 機械式) */
.price-table-inner thead th {
    background-color: #f2f2f2;
    padding: 10px; /* 少し小さく */
    font-size: 15px; /* 少し小さく */
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #000;
}

/* 金額のセル */
.price-table-inner .price {
    text-align: right;
    font-weight: bold;
    width: 30%; /* 幅を%で指定 */
}

/* 注釈 */
.footnotes {
    padding: 10px 0;
        max-width: 900px;
    margin: 0 auto;
}

.footnote {
    font-size: 13px; /* 少し小さく */
    color: #555;
    margin: 4px 0;
    text-indent: -1.2em;
    padding-left: 1.2em;
    line-height: 1.5;
}

/* ===============================================
   料金比較表
   =============================================== */
.price-table-wrapper {
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    z-index: 0;
    position: relative;
        overflow: clip;
}
.price-table .price-table-wrapper:nth-of-type(2) {
    margin-bottom: 0;
}
.price-table-wrapper table {
    border-collapse: collapse; /* ボーダーを重ねる */
    color: #634D3E; /* 基本の文字色 */
    width: 100%;
}

/* ヘッダーセルのスタイル (th) */
.price-table-wrapper thead th {
    color: #634D3E;
    background: #fff;
    font-weight: bold;
    padding: 15px;
    font-size: 18px;
    letter-spacing: 2px;
        border-bottom: 0
}

.price-table-wrapper th.maker {
    background-color: var(--orange-color);
}

.price-table-wrapper th.our-shop {
    background-color: #FF7661; /* レッド */
}

/* データセルのスタイル (td) */
.price-table-wrapper tbody {
    background-color: #fcf3ec; /* 全体の背景色 */
}

.price-table-wrapper tbody td {
padding: 10px 9px;
    border-bottom: 1px solid #fcf3ec;
    font-size: 14px;
    vertical-align: middle;
}
.maker-td {
    color: #333;
}
.tosya-td {
    background-color:#FF7661;
    color: #fff;
    text-align: center!important;
    font-weight: 600;
}
.tosya-td span {
    font-size: 10px;
}
.price-table-wrapper thead th.quartz {
    background: var(--orange-color);
    color: #fff;
    font-weight: 500;
        font-size: 20px;
}
.price-table-wrapper thead th.mechanical {
    background: var(--orange-color);
    color: #fff;
    font-weight: 500;
        font-size: 22px;
}
.wh {
    background:#fff;
}
.price.red {
    background: #fff;
    color: #FF7661;
    font-weight: 600;
    font-size: 1.1em;
}
    .price-table td:first-child {
        text-align: left;
    }
.price-table-wrapper tbody tr:last-child td {
    border-bottom: none; /* 最後の行の下線は消す */
}

/* 金額のセル用の共通スタイル */
.price-table-wrapper .price-num, .price-note {
    text-align: center;
    font-weight: 600;
}

/* 当店の金額（赤字）用のスタイル */
.price-table-wrapper .price-our {
    color: #FF7661;
    font-weight: bold;
    font-size: 18px;
}

/* 最後の行の注意書き */
.price-table-wrapper .price-note {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.price-table-wrapper .price-note strong {
    font-size: 18px;
    color: #FF7661;
}
.touten-td,.price-our,.price-note {
    background: #fff;
}
.price-table-inner tr {
    border-color: #fcf3ec!important;
}

/* ===============================================
   実績セクション (.results)
   =============================================== */
.results {
    background-color: #fcf3ec; /* セクションの背景色 */
    padding: 10px 10px 50px;
    text-align: center;
}

.results-content {
    position: relative;
    display: inline-block;
}
.laurel {
    position: relative;
}
/* 左の月桂樹 */
.laurel::before {
    content: '';
    display: block;
    width: 28px;
    height: 58px;
    background-image: url('images/g_left.png'); /* ★左の月桂樹の画像パス */
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -23px;
    top: 50%;
    transform: translateY(-50%);
}

/* 右の月桂樹 */
.laurel::after {
    content: '';
    display: block;
    width: 28px;
    height: 58px;
    background-image: url('images/g_right.png'); /* ★右の月桂樹の画像パス */
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -23px;
    top: 50%;
    transform: translateY(-50%);
}

/* 「安心と信頼で〜」の行のスタイル */
.monthly-count {
    color: #634D3E; /* 「と」や「で」の文字色（茶色） */
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 1px;
}

/* オレンジ色の文字部分 */
.monthly-count .highlight {
    color: #FF8C00;
    font-size: 30px;
}
.monthly-count span:nth-of-type(3) {
    color: var(--red-color);
}

.laurel {
    font-weight: 500;
    line-height: 1;
    font-size: 20px;
    display: inline-block;
    background: linear-gradient(transparent 80%, #FDCF8E 20%);
}

.annual-count .label {
    display: block;
    font-size: 20px;
    margin: 5px 0 10px;
}

.laurel .number {
    font-size: 40px;
    color: var(--red-color);
    margin-right: 5px;
    font-weight: 600;
}
.laurel .ken {
    color: var(--red-color);
    font-size: 30px;
}
.laurel .goirai {
    font-size: 28px;
}

.closing-text {
    font-size: 22px;
    font-weight: 500;
    color: #634D3E;
    margin: 10px 0 0 0;
}

/* --- 後悔しないためにセクション --- */
.no-regrets {
    background: url(images/no-regret_bg.png) no-repeat;
    background-size: 95%;
    background-position: bottom;
    padding: 40px 15px 80px;
    text-align: center;
}

.section-title-wrapper {
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 30px;
}
.section-title-wrapper h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}
.section-title-wrapper .large-text {
    font-size: 35px;
    display: inline-block;
    background-color: #ffe1ce;
    padding: 0 20px;
}

.craftsman-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 30px;
    object-fit: cover;
}

.prose {
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: normal;
}
.highlight-red {
    color: var(--red-color);
    font-weight: 500;
}

.mission-text {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}
.mission-text .highlight-paragraph {
    font-size: 20px;
    border-radius: 5px;
    line-height: 2.2;
    display: inline;
    font-weight: 600;
    letter-spacing: normal;
    background: linear-gradient(transparent 65%, #FDCF8E 35%);
}
.final-pal {
    margin: 30px 0;
    font-size: 18px;
}
.final-pal span {
    font-size: 20px;
    font-weight: 600;
}

.line-coupon-banner {
    margin: 80px auto 30px;
}
.line-coupon-banner img {
    padding: 0 20px;
}

.final-cta p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
    margin: 0 0 10px 0;
}

/* ===============================================
   よくある質問セクション
   =============================================== */
.faq {
    padding: 0 10px 40px;
    background-color: #fcf3ec;
}
    .faq .con {
        margin-top: 50px;
    }

    .faq .icon.watch_illust {
        top: 0;
left: 50%;
        transform: translateX(-50%);
    }
.faq h2 {
    text-align: center;
    font-size: 36px;
    margin: 20px 0 30px 0;
}

.faq-container {
    margin: 0 auto;
}

.faq-item {
   width: 100%;
    margin: 0 auto 15px; /* 各質問の間の余白 */
    border-bottom: 1px solid #f0e6dd; /* 区切り線 */
}

.faq-question {
    /* ボタンのデフォルトスタイルを解除 */
    background: none;
    border: none;
    cursor: pointer;
    
    /* レイアウト */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5px;
    padding-left: 35px;
    position: relative;
    
    /* テキストのスタイル */
    text-align: left;
    font-family: "Zen Maru Gothic",serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFADA1;
    letter-spacing: normal;
}

/* 「Q」のアイコン */
.faq-question::before {
    content: 'Q';
    font-family: "Zen Old Mincho",serif;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ffada1; /* ピンク系の背景 */
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

/* 「+/-」のアイコン */
.faq-question::after {
    content: '+';
    font-size: 20px;
    color: #9F7D66;
    transition: transform 0.3s ease;
    font-weight: 500;
}

/* 回答部分の基本スタイル */
.faq-answer {
    /* ★ここに「見た目」のスタイルを移動 */
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    color: #9F7D66;

    /* 閉じた状態のレイアウトとアニメーション設定 */
    max-height: 0;
    overflow: hidden;
    padding: 0 20px 0 60px; /* ← 閉じた時は上下のpaddingを0に */
    margin: 0;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out, margin 0.5s ease-out;
}

.faq-answer p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
    letter-spacing: normal;
}

/* 「A」のアイコン */
.faq-answer::before {
    content: 'A.';
    position: absolute;
    left: 20px;
    top: 23px; /* 開いた時のpadding-topに合わせる */
    color: #ffada1;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: serif;
    /* 閉じるアニメーション中もアイコンが消えないようにする */
    transition: opacity 0.3s ease-out;
    opacity: 0; /* ← 普段は透明にしておく */
}

/* --- 開いた状態（.activeクラスが付いた時）のスタイル --- */
.faq-item.active .faq-question::after {
    content: '−'; /* マイナス記号に変更 */
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    /* ★ここには「変化する値」だけを残す */
    max-height: 500px; /* 十分な高さを確保 */
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 15px;
}

/* 開いた時だけ「A」アイコンを表示する */
.faq-item.active .faq-answer::before {
    opacity: 1;
}

.faq .advice-box.faq-closing-advice .advice-bubble::before {
    bottom: 40px;
    top: initial;
}
.faq .advice-box.faq-closing-advice .advice-bubble {
    padding: 20px 15px;
}
.faq .advice-box.faq-closing-advice .advice-bubble p {
    font-size: 16px;
}
.faq .advice-box {
    margin: 30px 0 -13px;
}
/* ===============================================
   依頼の流れセクション
   =============================================== */
.how-it-works {
    padding: 40px 5px 80px;
    margin-top: 18px;
    text-align: center;
      background-image:
    url('images/how-it-works_bg.png'),    /* 1つ目の背景 (上部) */
    url('images/how-it-works_bottom_bg.png'); /* 2つ目の背景 (下部) */
    
  background-position:
    top center,      /* 1つ目の背景の位置 */
    bottom center;   /* 2つ目の背景の位置 */
    
  background-repeat:
    no-repeat,       /* 1つ目の背景の繰り返し */
    no-repeat;       /* 2つ目の背景の繰り返し */
    
  background-size:
    95%,         /* 1つ目の背景のサイズ */
    95%;           /* 2つ目の背景のサイズ (例) */
}

.how-it-works-header {
    margin-bottom: 30px;
}
.how-it-works-header .icon {
    margin-bottom: 30px;
    top: 0;
}
.how-it-works-header p {
    margin: 0;
    color: #FF8B79;
    font-weight: 500;
    font-size: 18px;
}
.how-it-works-header h2 {
    margin: 20px 0 0 0;
    font-size: 22px;
}
.how-it-works-header h2 span {
    font-size: 1.3em;
    position: relative;
}
.how-it-works-header h2 span::before {
content: '・・・・・・・';
    position: absolute;
    top: -.9em;
    left: 50%;
    transform: translateX(-50%);
    color: #BDACA0;
    font-size: 1em;
    letter-spacing: 1px;
}
/* ===============================================
   ステップカード
   =============================================== */

/* カード全体を囲むラッパー */
.step-card {
    position: relative;
    max-width: 300px;
    margin: 60px auto; /* 上部のアーチ部分の余白を確保 */
    padding-top: 40px; /* アーチと重なる部分の高さ */
    text-align: center;
}

/* 上部のアーチ部分 (疑似要素で作成) */
.step-card::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;  /* アーチの幅 */
    height: 80px; /* アーチの高さ */
    border-radius: 80px 80px 0 0; /* 上半分を半円に */
    background-color: #fcf3ed; /* カード本体と同じ背景色 */
}

/* カード本体のコンテンツエリア */
.step-content {
    background-color: #fcf3ed; /* 背景色 */
    padding: 30px 15px 50px;
    position: relative;
    z-index: 1; /* アーチより手前に表示 */
}

/* 「STEP 01」のコンテナ */
.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; /* 最も手前に表示 */
    line-height: 1;
}
.step-illustration img {
    max-width: 200px;
}

.step-label {
    display: block;
    font-size: 26px;
    font-weight: bold;
    color: #FF8C00;
    margin-bottom: -5px;
    letter-spacing: 3px;
}

.step-digit {
    -webkit-text-stroke: 2px #9F7D66;
    text-shadow: 3px 3px #feb865;
    color: transparent;
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 5px;
    font-family: "Zen Maru Gothic", sans-serif;
}

/* イラスト部分 */
.step-illustration {
    margin-top: 30px;
    margin-bottom: 20px;
}

/* タイトル部分 */
.step-title {
    color: #8B6D59;
    font-size: 28px;
    line-height: 1.6;
    margin: 0 0 15px 0;
        font-family: 'Zen Maru Gothic',sans-serif;
}

/* タイトルの黄色いマーカー */
.step-title .highlight {
    background: linear-gradient(transparent 65%, #FDCF8E 65%);
}

/* 点線 */
.step-dots {
    color: #FF8C00;
    font-weight: bold;
    letter-spacing: -2px;
    margin-bottom: 15px;
    font-size: 24px;
}

/* 説明文 */
.step-description {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
    color: #9F7D66;
    letter-spacing: normal;
}

.cancellation-box {
    padding: 0 5px;
    position: relative;
    margin-bottom: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.cancellation-box .character {
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 15px;
}

.cancellation-box .character img {
    display: block;
    width: 120px;
    height: 150px;
}

.cancellation-box .speech-bubble {
    position: relative;
    background-color: #fcf3ed;
    border-radius: 15px;
    padding: 20px;
    text-align: left;
    font-size: 20px;
    line-height: 1.6;
}

.cancellation-box .speech-bubble p {
    margin: 0;
    word-break: auto-phrase;
    font-weight: 500;
    color: #9F7D66;
}

.cancellation-box .speech-bubble strong {
    color: #FF8B79;
    font-size: 20px;
}

/* --- お問い合わせフォームセクション --- */
.contact-form-section {
    padding: 0 0 40px;
    background-color: #fcf3ee;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 36px;
    margin: 20px 0 10px 0;
}
.contact-form-section .section-subtitle {
    text-align: center;
    color: var(--red-color);
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: normal;
    font-size: 20px;
}
.contact-form {
    background-color: #fff;
    padding: 25px;
    border-radius: 20px;
    width: 95%;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.contact-form-section .icon-wrapper {
    height: 80px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.form-group .required, .form-group .optional {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: normal;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
}
.form-group .required { background-color: #e53e3e; color: white; }
.form-group .optional { background-color: #ccc; color: white; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 1rem;
    box-sizing: border-box;
}

.file-input-wrapper { display: flex; align-items: center; gap: 10px; }
.file-input { display: none; }
.file-label {
    background-color: #e0e0e0;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
}
.file-name { font-size: 0.9rem; color: #777; }

.terms-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
}
.terms-box h4 { margin: 0; padding: 10px; border-bottom: 1px solid #ddd; }
.terms-content {
    height: 150px;
    overflow-y: scroll;
    padding: 10px;
    font-size: 0.8rem;
    color: #555;
    background-color: #f9f9f9;
}
.privacy-note, .email-note { font-size: 0.75rem; color: #777; line-height: 1.5; }
.email-note { border: 1px solid #f9a825; padding: 10px; border-radius: 5px; }

.agreement-box { display: flex; align-items: center; justify-content: center; }
.agreement-box input[type="checkbox"] { margin-right: 10px; }
.agreement-box label { font-size: 0.9rem; margin: 0; }

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #ccc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: not-allowed;
    margin-top: 20px;
}
.submit-button:not(:disabled) {
    background-color: #e85d47;
    cursor: pointer;
}

/* --- ページフッター --- */
footer {
    text-align: center;
    padding: 30px 10px;
    font-size: 0.8rem;
    color: #fff;
    background-color: #ffada0;
}
footer p {
    margin: 0;
}
.footer_left {
    padding: 30px 0 0;
    text-align: left;
    flex:1;
    font-size: 1rem;
}
.footer_right {
    flex: 1;
}
.footer_left address {
    font-style: normal;
}
footer .column {
    gap: 30px;
    margin-bottom: 60px;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    font-weight: bold;
    color: #fff;
}
.footer_left p:nth-of-type(1) {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* --- 右下固定ボタン --- */
.floating-action-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: #52c16e;
    border-radius: 50%;
    box-shadow: 5px 4px 12px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 13px;
    font-weight: 500;
    z-index: 1000;
    text-align: center;
    line-height: 1.2;
    font-family: "Zen Maru Gothic", sans-serif;
}
.floating-action-button:hover {
    opacity: .8;
}
.floating-action-button img {
    width: 30px;
    height: 30px;
}
/* 矢印（::after疑似要素で作成） */
.floating-action-button::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 10px; /* ボタン下からの位置 */
  /* 矢印のサイズと太さ */
  width: 5px;
  height: 5px;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  /* 位置の調整と回転 */
  transform: translateX(-50%) rotate(45deg);
}

/* ===============================================
   PC版のスタイル (画面幅 768px以上で適用)
   =============================================== */
@media (min-width: 768px) {

    /* --- 全体・コンテナ設定 --- */
    body {
        font-size: 18px; /* PCでは少し文字を大きく */
    }
        /* スマホのみ改行：PCでは非表示に */
    .sp-only {
        display: none;
    }

    /* パソコンのみ改行：PCでは表示（<br>本来の動作に戻す） */
    .pc-only {
        display: inline;
    }
    /* 各セクションの最大幅と中央寄せ */
    .con,
    .hero,
    .manga,
    .caution-points,
    .example,
    .easy-safe,
    .repair-company-cons,
    .comparison,
    .no-regrets,
    .site-footer {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .question::before,
    .pitfall::before,
    .commitment::before,
    .case-study::before,
    .line-cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #f7f3f1;
        background-size: cover;
        z-index: -1; /* コンテンツの下に配置 */
    }

    .hero {
        /* PCでも全幅にするため、他のセクションに設定した最大幅を上書き */
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }
    .curved {
        height: 120px;
    }

    /* --- 疑問提起セクション --- */
    .question .icon-wrapper {
        width: 100%; /* アイコンは中央上部に */
    }
    .question h2 {
        font-size: 1.8rem;
    }
    .dialog-box {
        margin-top: 0; /* 上の余白をリセット */
    }
    .dialog-box .manga-pc {
        max-width: 625px;
        margin-top: -80px;
    }

    /* --- 落とし穴セクション --- */
    .pitfall .con {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-bottom: 100px;
    }
    .pitfall .pitfall-title {
        font-size: 3rem;
    }
    .pitfall .movement-image {
        margin-top: 0;
    }

    /* 漫画セクション */
    .manga-sp {
    display: none;
}
.manga-pc {
    display: block;
}

    /* --- 注意点セクション --- */
    .points-grid {
        /* PCでは4列にする */
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 800px; /* グリッドの最大幅 */
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 100px;
    }
    .point-item p {
        font-size: 20px;
    }
    .conclusion span {
        font-size: 22px;
    }

    /* --- 例えばセクション --- */
    .example .comparison-container {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        justify-content: center;
    }
    .example .image-card {
        flex-basis: 50%;
        margin-bottom: 0;
    }
    .example .explanation {
        margin-left: auto;
        margin-right: auto;
    }
    .example .advice-box {
        justify-content: center;
        align-items: center;
    }

    /* --- 私たちにお任せくださいセクション --- */
    .commitment {
        background: url(images/commitment_bg_pc.png) no-repeat #fcf4ee;
        background-position: center;
        background-size: 80%;
        padding: 80px 5px;
    }
    .commitment_inner {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 30px 50px;
    }
    .certificate-area {
        margin: 0;
    }
    .certificate-area:before {
        display: none;
    }
    .certificate-sp-img {
    transform: rotate(350deg);
    width: 350px;
}
.certificate-area strong {
    font-size: 25px;
}
    /* テキスト要素をグループとして扱うためのラッパーの代わり */
    .commitment h1, .commitment .technician-info {
        order: 2; /* テキストを後に表示 */
        flex-basis: 45%;
        text-align: left;
        font-size: 30px;
    }
    /* 下部の要素は全幅に */
    .commitment .icon-wrapper, .commitment .dialog-box-final {
        flex-basis: 100%;
    }
    .commitment .dialog-box-final {
        max-width: 600px;
    }

    /* --- 修理事例セクション --- */
    .case-study-card .before-after-images {
        flex-shrink: 0; /* 画像が縮まないように */
    }
    .case-text {
        font-size: 1rem;
    }
    .cta-text-slanted,.final-cta p {
        font-size: 24px;
    }
    .line-button {
        font-size: 28px;
    }
    /* --- 注意点セクション --- */
    .points-grid {
        /* PCでは4列にする */
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
        max-width: 800px; /* グリッドの最大幅 */
        margin-left: auto;
        margin-right: auto;
    }
    .point-item p {
        font-size: 16px;
    }
    .conclusion{
        font-size: 20px;
    }

    /* --- 例えばセクション --- */
    .example .comparison-container {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        justify-content: center;
    }
    .example .image-card {
        flex-basis: 50%;
        margin-bottom: 0;
    }
    .advice-box .advice-character {
    width: 95px;
    }
    .example .advice-box .advice-bubble{
        left: 15px;
        padding: 10px 30px;
    }
    .example .advice-bubble p{
        font-size: 22px;
    }
    .advice-bubble::before{
        top: 50%;
        transform: translateY(-50%);
    }
   .cta-box p:nth-of-type(1) {
    font-size: 30px;
   }
   .cta-box .cta-conclusion {
    font-size: 18px;
   }
   .cta-box .cta-conclusion:before,
   .cta-box .cta-conclusion:after {
    width: 53px;
    height: 57px;
   }
   .cta-box .cta-conclusion::before {
    bottom: -30px;
    left: -50px;
   }
    .cta-box .cta-conclusion::after {
    bottom: -30px;
    right: -50px;
   }

    /* --- 私たちにお任せくださいセクション --- */

    /* 下部の要素は全幅に */
    .commitment .icon-wrapper, .commitment .dialog-box-final {
        flex-basis: 100%;
    }
    .commitment .dialog-box-final {
        max-width: 600px;
    }

    .cando .icon-wrapper {
        height: 80px;
    }
    .cando .icon {
        top: -100px;
    }

    /* --- 修理事例セクション --- */
    .case-study .con {
        max-width: 1000px;
        padding-left: 0;
        padding-right: 0;
    }
    .case-study .case-study-card {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 40px;
        background-color: #fff;
        border: 1px solid #f0e6dd;
        border-radius: 20px;
        padding: 40px 40px 80px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        z-index: 1;
    }
    .case-study .case-study-card::before {
        content: "";
        background: url(images/casestudy_top_bg.png) no-repeat;
        background-size: contain;
        position: absolute;
        display: block;
        top: -60px;
        left: -55px;
        width: 135px;
        height: 112px;
        z-index: 0;
    }
        .case-study .case-study-card::after {
        content: "";
        background: url(images/casestudy_bottom_bg.png) no-repeat;
        background-size: contain;
        position: absolute;
        display: block;
        bottom: -60px;
        right: -55px;
        width: 135px;
        height: 112px;
        z-index: 0;
    }
    .case-study .case-text {
        flex-basis: 50%;
        text-align: left;
        font-size: 18px;
    }
    .case-study .case-image {
        flex-basis: 45%;
    }
    .case-study .case-image img {
        width: 387px;
        height: auto;
        border-radius: 10px;
    }
    .case-study .final-advice {
        margin-top: 30px;
        justify-content: left;
        top: initial;
        bottom: 130px;
        z-index: 1;
    }
    .advice-box .advice-bubble {
        padding: 20px;
        margin-left: 30px;
    }
    .advice-box .advice-bubble p {
        font-size: 22px;
        word-break: auto-phrase;
    }

    /* --- 簡単・安心セクション --- */
    .easy-safe {
    background: url(images/easy-safe_bg_pc.png) no-repeat;
    background-size: contain;
    background-position: top center;
    margin-top: 0;
}
.easy-safe .icon {
    top: -140px;
}
.easy-safe .icon-wrapper {
    height: 0;
}
    .easy-safe .feature-card {
        flex-basis: 50%;
    }
    .easy-safe .feature-card .feature-list {
        margin-top: auto; /* リストをカード下部に配置 */
    }
    .easy-safe .features-container {
        flex-flow: row;
    }

    .repair-company-cons h2 {
        font-size: 35px;
    }
    .repair-company-cons h2 span {
        font-size: 36px;
    }
    .cons-list-container {
    padding: 40px 80px;
}
.cons-list-container li {
    width: 89%;
}

    /* 比較 */
    .comparison .comparison-cards-container {
        display: flex;
        flex-direction: row;
        gap: 40px;
    }
    .comparison .comparison-card {
        flex-basis: 50%;
    }

    /* --- 安く出来る理由セクション (PC) --- */
    .touten {
        width: fit-content;
    }
    .reasons-cheap .reasons-container {
        display: flex;
        gap: 30px;
        align-items: stretch; /* 高さを揃える */
    }
    .reasons-cheap .reason-block {
        margin-bottom: 0;
    }
    .reason-icon-wrapper {
    display: flex;
    flex-direction: row;
            align-items: center;
        justify-content: center;
        margin-top: 60px;
}
.reason-icon-wrapper img {
    margin: 0;
}
.reason-block h3 {
    font-size: 22px;
    padding: 0 10px 0 50px;
    margin-left: -10px;
}

    /* --- 料金比較表セクション (PC) --- */
    .price-table .table-wrapper {
        overflow-x: visible; /* PCではスクロール不要 */
    }
    .price-table-wrapper {
max-width: 900px;
        width: 100%;
    }
    .price-table-wrapper tbody td {
    padding: 15px 30px;
    }
    .price-table table {
        min-width: auto; /* 最小幅をリセット */
    }
    .price-table th, 
    .price-table td {
        padding: 20px;
        font-size: 1rem;
    }
    .laurel {
        font-size: 36px;
        margin-top: 0;
    }
    .laurel .number {
        font-size: 68px;
    }
    .laurel .ken {
        font-size: 48px;
    }
    .laurel .goirai {
        font-size: 48px;
    }
    .laurel::before, .laurel::after {
        width: 34px;
        height: 68px;
    }
    .laurel::before {
        left: -35px;
    }
    .laurel::after {
        right: -35px;
    }

    .price-table-inner {
        margin: 25px 0;
    }

    .price-table-inner thead th {
        padding: 12px; /* 元のサイズに */
        font-size: 16px; /* 元のサイズに */
    }

    .price-table-inner tbody td {
        padding: 12px; /* 元のサイズに */
        font-size: 16px; /* 元のサイズに */
    }
    
    .price-table-inner tbody td:first-child {
        width: 40%; /* PCでの幅に戻す */
    }
    
    .footnote {
        font-size: 14px; /* 元のサイズに */
    }

    /* --- 後悔しないためにセクション (PC) --- */
    .no-regrets{
        background: url(images/no-regret_bg_pc.png) no-repeat;
        background-size: contain;
        background-position: bottom center;
    }
    .no-regrets .no-regrets-content-wrapper {
        display: flex;
        align-items: center;
        gap: 120px;
        margin-top: 40px;
        max-width: 960px;
        margin-left: auto;
        margin-right: auto;
    }
    .section-title-wrapper .large-text {
        margin-left: 10px;
    }
    .no-regrets .craftsman-photo-wrapper {
        flex: 0 0 300px; /* 画像の幅を固定 */
    }
    .no-regrets .craftsman-photo {
        width: 300px;
        height: 300px;
    }
    .no-regrets .no-regrets-text-wrapper {
        text-align: left;
    }
    .prose p {
        font-size: 18px;
        letter-spacing: normal;
    }
    .no-regrets .mission-text {
        text-align: center; /* 中央のテキストはセンター寄せ */
    }
    .mission-text p:nth-of-type(1),
    .mission-text p:nth-of-type(4) {
        font-size: 20px;
    }
    .mission-text .highlight-paragraph {
        font-size: 24px;
    }
    .final-pal {
        font-size: 20px;
    }
    .final-pal span {
        font-size: 24px;
    }
    .final-cta p {
        font-size: 20px;
    }

    /* よくある質問 */
    .faq .con {
        margin-top: 80px;
    }

    .faq h2 {
        margin: 0 0 50px 0;
    }
    .faq-question {
        font-size: 24px;
        padding-left: 50px;
    }
    .faq-question::before{
        font-size: 24px;
        padding: 5px;
    }
    .faq .advice-box.faq-closing-advice .advice-bubble p {
        font-size: 20px;
    }
    .faq .advice-box .advice-character {
        left: 0;
    }

    /* --- 依頼の流れセクション (PC) --- */
    .how-it-works{
    text-align: center;
      background-image:
    url('images/how-it-works_bg_pc.png'),    /* 1つ目の背景 (上部) */
    url('images/how-it-works_bottom_bg_pc.png'); /* 2つ目の背景 (下部) */
    
  background-position:
    top center,      /* 1つ目の背景の位置 */
    bottom center;   /* 2つ目の背景の位置 */
    
  background-repeat:
    no-repeat,       /* 1つ目の背景の繰り返し */
    no-repeat;       /* 2つ目の背景の繰り返し */
    
  background-size:
    90%,         /* 1つ目の背景のサイズ */
    95%;           /* 2つ目の背景のサイズ (例) */
    }
    .how-it-works-header p {
        font-size: 24px;
    }
    .how-it-works-header h2 {
        font-size: 24px;
        letter-spacing: 2px;
    }
    .how-it-works-header h2 span::before {
        top: -.3em;
    }
    .how-it-works-header h2 span {
        font-size: 44px;
    }

    .how-it-works .steps-container {
        display: flex;
        gap: 20px;
        align-items: stretch; /* カードの高さを揃える */
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }
    .how-it-works .step-card {
        flex-basis: 300px; /* カードの基本の幅 */
        flex-grow: 1;      /* 余ったスペースを均等に埋める */
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        margin: 60px 0;
    }
    .how-it-works .step-card .step-description {
        margin-top: auto; /* 説明文をカード下部に配置 */
    }
    /* PCでは説明文の横のドットを非表示に */
    .how-it-works .step-description::before,
    .how-it-works .step-description::after {
        content: none;
    }

    /* --- キャンセルOK案内 (PC) --- */
    .cancellation-box .speech-bubble p{
        text-align: center;
    }
    .cancellation-box .speech-bubble strong {
        font-size: 32px;
    }
    .final-cancel-section {
        padding: 40px 20px;
    }
    .final-cancel-section .final-cancel-ok {
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-form-section .icon {
        top: -98px;
    }
    .contact-form-section .icon-wrapper {
        height: 50px;
    }
    .contact-form-section h2 {
        font-size: 44px;
        margin-bottom: 0;
    }
    .contact-form-section .section-subtitle {
        font-size: 24px;
        margin-top: 0;
    }

    /* line固定ボタン */
    .floating-action-button {
        width: 180px;
        height: 180px;
        font-size: 26px;
        line-height: 1.4;
    }
    .floating-action-button img {
        width: 60px;
        height: 60px;
    }
    .floating-action-button::after {
        width: 15px;
    height: 15px;
    bottom: 20px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    }

    footer .column {
    flex-direction: row;
}

}
