@charset "UTF-8";

/* 共通部分
--------------------------------------------------------------------------- */
html {
    font-size: 100%;
}
body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    background-color: rgb(255 255 255);
    margin: 0;
}
a {
    text-decoration: none;
}


/* Header
---------------------------------------------------------------------------- */
article {
    padding-top: 48px;
}
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background-color: white;
    z-index: 100;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.page-header a {
    padding: 0;
    margin-left: 16px;
    font-size: 24px;
    font-weight: 600;
    color: rgb(50 50 50);
    line-height: 1.1;
    display: inline-block;
}


/* Footer
---------------------------------------------------------------------------- */
footer {
    width: 100%;
    background-color: rgb(20 90 55);
    padding: 28px 16px;
}

footer p {
    margin: 0;
    color: rgb(235 245 240);
    text-align: center;
}

/* 肩書き */
footer p:first-child {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

/* 運営者表記 */
.footer-operator {
	margin: 8px 0 0;
	font-size: 0.88rem;
	letter-spacing: 0.03em;
	color: rgb(220 235 228);
}

.footer-operator a {
	color: inherit;
	text-decoration: underline;
}

.footer-operator a:hover {
	opacity: 0.8;
}

/* プライバシーポリシー */
.footer-link {
	margin: 10px 0 12px;
	font-size: 0.85rem;
}

.footer-link a {
    color: rgb(220 235 228);
    text-decoration: underline;
}

.footer-link a:hover {
    opacity: 0.8;
}

/* コピーライト */
.copyright-text {
	font-size: 0.7rem;
	line-height: 1.6;
	opacity: 0.9;
}

.copyright-mark {
	display: inline-block;
	font-size: 1.55em;
	line-height: 1;
	transform: translateY(0.14em);
}


/* 共用
---------------------------------------------------------------------------- */
/* 章の基本余白 */
.sec-why,
.sec-worries,
.sec-impact,
.sec-focus,
.sec-achievement,
.sec-flow,
.sec-faq {
    padding: 60px 16px;
}

.sec-final{
    padding: 72px 16px;
}

/* 見出しブロックの余白 */
.sec-why__head,
.sec-worries__head,
.sec-impact__head,
.sec-focus__head,
.sec-achievement__head,
.sec-flow__head,
.sec-faq__head {
    margin-bottom: 30px;
}

/* 章末ボックスの見た目揃え */
.sec-worries__message,
.impact-note,
.sec-focus__message {
    margin-top: 22px;
}

/* テキスト共通 */
.text-deco-01 {
    font-feature-settings: "palt";
}
.text-deco-02 {
    white-space: nowrap;
}


/* Main contents
---------------------------------------------------------------------------- */

/* (1) Firstview ------------------------------------------- */
.fv-container {
    position: relative;
}
.fv-container img {
    display: block;
    width: 100%;
    height: 80vh;
    object-fit: cover;
    object-position: 50% 10%;
    filter: brightness(82%);
}
.fv-text {
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    color: white;
    text-shadow: 
        0 0 1px rgb(175 175 175),
        0 0 2px rgb(175 175 175);
    pointer-events: none;
}
.fv-container h1 {
    font-size: 30px;
    letter-spacing: 0.05em;
}
.fv-container h2 {
    margin-top: 20px;
    font-size: 22px;
    font-feature-settings: "palt";
}
.fv-container h4 {
    margin-top: 20px;
    font-size: 18px;
}

.cta-btn {
    margin-top: 35px;
    width: 290px;
    height: 45px;
    background-color: rgb(35, 140, 87);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding-top: 2px; /* 文字位置微修正 */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: background-color 0.2s ease;
}
.cta-btn:hover {
    background-color: rgb(31, 122, 76);
}


/* (2) なぜ「歯科医院専門」なのか ------------------------------ */
.sec-why{
    background-color: #fff;
}

.sec-why__inner{
    max-width: 980px;
    margin: 0 auto;
}

.sec-why__head{
    text-align: center;
}

.sec-why__kicker{
    margin: 0 0 10px;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    color: rgb(80 80 80);
}

.sec-why__title{
    margin: 0 0 12px;
    font-size: 1.6rem;
    line-height: 1.4;
    color: rgb(50 50 50);
}

.sec-why__lead{
    margin: 0 auto;
    max-width: 46em;
    color: rgb(70 70 70);
    line-height: 1.8;
}

/* 比較カード（PC:2カラム、スマホ:縦積み） */
.sec-why__grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 26px;
}

/* カード共通 */
.why-card{
    border-radius: 14px;
    padding: 18px 18px 16px;
    background: rgb(248 248 248);
    border: 1px solid rgb(230 230 230);
}

.why-card__title{
    margin: 0 0 12px;
    font-size: 1.15rem;
    color: rgb(50 50 50);
}

/* リスト共通 */
.why-card__list{
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.8;
    color: rgb(70 70 70);
}

/* 丸アイコン */
.why-card__list li{
    position: relative;
    padding-left: 1.35em;
    margin-bottom: 8px;
}

.why-card__list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.55em;
    height: 0.55em;
    border-radius: 50%;
    background: rgb(170 170 170);
}

/* 左：一般 */
.why-card--general{
    background: rgb(246 246 246);
}

/* 右：歯科専門 */
.why-card--dental{
    background: rgb(240 252 246);
    border-color: rgb(35 140 87 / 0.35);
}

.why-card--dental .why-card__title{
    color: rgb(20 90 55);
}

.why-card--dental .why-card__list li::before{
    background: rgb(35 140 87);
}

/* 注記 */
.sec-why__note{
    margin-top: 18px;
    text-align: center;
}

.sec-why__noteText{
    margin: 0;
    font-size: 0.95rem;
    color: rgb(90 90 90);
}

/* Edge Chrome 位置修正 */
@supports (not (-webkit-hyphens: none)) and (not (-moz-appearance: none)) {
.why-card__list li::before{
    top: 0.6em;
}
}

/* (3) 歯科医院サイトでよくあるお悩み ---------------------------- */
.sec-worries{
    background: rgb(248 250 252);
}

.sec-worries__inner{
    max-width: 860px;
    margin: 0 auto;
}

.sec-worries__head{
    text-align: center;
}

.sec-worries__title{
    margin: 0 0 10px;
    font-size: 1.6rem;
    line-height: 1.4;
    color: rgb(50 50 50);
}

.sec-worries__lead{
    margin: 0;
    color: rgb(70 70 70);
    line-height: 1.8;
}

/* リスト（カードタイプ） */
.worries-list{
    list-style: none;
    margin: 18px auto 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.worries-list__item{
    background: #fff;
    border: 1px solid rgb(230 230 230);
    border-radius: 12px;
    padding: 16px 14px 14px 44px;
    line-height: 1.7;
    color: rgb(55 55 55);
    position: relative;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.04);
}

/* チェックアイコン */
.worries-list__item::before{
    content: "";
    position: absolute;
    left: 16px;
    top: 47%;
    width: 16px;
    height: 10px;
    border-left: 3px solid rgb(35 140 87);
    border-bottom: 3px solid rgb(35 140 87);
    transform: translateY(-50%) rotate(-45deg);
}

/* メッセージ（強調ボックス） */
.sec-worries__message{
    background: rgb(240 252 246);
    border: 1px solid rgb(35 140 87 / 0.25);
    border-radius: 14px;
    padding: 18px 16px 16px 16px;
}

.sec-worries__messageMain{
    margin: 0 0 6px;
    font-weight: 700;
    color: rgb(35 85 60);
    line-height: 1.7;
}

.sec-worries__messageSub{
    margin: 0;
    color: rgb(60 60 60);
    line-height: 1.9;
}

/* CTA */
.sec-worries__cta{
    text-align: center;
    margin-top: 16px;
}
.sec-worries__cta .cta-btn {
    margin: 0 auto;
}


/* (4) Webを刷新すると何が変わるのか ---------------------------- */
.sec-impact{
    background: #ffffff;
}

.sec-impact__inner{
    max-width: 980px;
    margin: 0 auto;
}

.sec-impact__head{
    text-align: center;
}

.sec-impact__title{
    margin: 0 0 10px;
    font-size: 1.6rem;
    line-height: 1.4;
    color: rgb(50 50 50);
}

.sec-impact__lead{
    margin: 0 auto;
    max-width: 48em;
    color: rgb(70 70 70);
    line-height: 1.8;
}

/* 3つの変化：カード */
.impact-cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.impact-card{
    background: rgb(248 250 252);
    border: 1px solid rgb(230 230 230);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
}

.impact-card__title{
    margin: 0;
    font-size: 1.1rem;
    color: rgb(35 140 87);
    letter-spacing: 0.04em;
}

.impact-card__arrow{
    margin: 10px 0 8px;
    font-size: 1.2rem;
    color: rgb(120 120 120);
}

.impact-card__result{
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgb(50 50 50);
}

.impact-card__desc{
    margin: 0;
    text-align: left;
    color: rgb(70 70 70);
    line-height: 1.75;
}

/* 一般論の注記ボックス */
.impact-note{
    background: rgb(240 252 246);
    border: 1px solid rgb(35 140 87 / 0.25);
    border-radius: 14px;
    padding: 16px;
}

.impact-note__main{
    margin: 0 0 8px;
    color: rgb(50 50 50);
    line-height: 1.9;
}

.impact-note__em{
    font-weight: 800;
    color: rgb(20 90 55);
}

.impact-note__sub{
    margin: 0;
    font-size: 0.95rem;
    color: rgb(90 90 90);
    line-height: 1.7;
}


/* (5) 当社が重視しているポイント ---------------------------- */
.sec-focus{
    background: rgb(248 250 252);
}

.sec-focus__inner{
    max-width: 980px;
    margin: 0 auto;
}

.sec-focus__head{
    text-align: center;
}

.sec-focus__title{
    margin: 0 0 10px;
    font-size: 1.6rem;
    line-height: 1.4;
    color: rgb(50 50 50);
}

.sec-focus__lead{
    margin: 0;
    color: rgb(70 70 70);
    line-height: 1.8;
}

/* 項目：2列（PC）→1列（スマホ） */
.focus-list{
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.focus-item{
    background: #fff;
    border: 1px solid rgb(230 230 230);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.04);
}

.focus-item__title{
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgb(50 50 50);
    padding-left: 1.2em;
    position: relative;
}

/* 左の丸アイコン */
.focus-item__title::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    background: rgb(35 140 87);
}

.focus-item__desc{
    margin: 0;
    color: rgb(70 70 70);
    line-height: 1.75;
    text-align: left;
}

/* まとめメッセージ（強調） */
.sec-focus__message{
    background: rgb(240 252 246);
    border: 1px solid rgb(35 140 87 / 0.25);
    border-radius: 14px;
    padding: 16px;
}

.sec-focus__messageMain{
    margin: 0;
    color: rgb(50 50 50);
    line-height: 1.9;
    padding-top: 2px;
}

.sec-focus__quote{
    font-weight: 800;
    color: rgb(20 90 55);
}


/* (6) 実績について ------------------------------------------ */
.sec-achievement{
    background: #fff;
}

.sec-achievement__inner{
    max-width: 980px;
    margin: 0 auto;
}

.sec-achievement__head{
    text-align: center;
}

.sec-achievement__title{
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.4;
    color: rgb(50 50 50);
}

/* 写真＋本文の箱 */
.sec-achievement__box{
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 16px;
    background: rgb(248 250 252);
    border: 1px solid rgb(230 230 230);
    border-radius: 14px;
    padding: 18px;
    align-items: start;
}

/* 画像 */
.sec-achievement__media{
    margin: 0;
}

.sec-achievement__media img{
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: 50% 32%;
    border-radius: 12px;
}

/* 本文 */
.sec-achievement__content{
    background: transparent;
    border: none;
    padding: 0;
}

.sec-achievement__text{
    margin: 0 0 14px;
    color: rgb(60 60 60);
    line-height: 1.9;
}

.sec-achievement__text--em{
    margin-bottom: 0;
    font-weight: 600;
    color: rgb(35 85 60);
}

.sec-achievement__text strong {
	font-weight: 700;
	color: rgb(20 90 55);
}


/* (7) 制作の流れ ------------------------------------------------ */
.sec-flow{
    background: rgb(248 250 252);
}

.sec-flow__inner{
    max-width: 980px;
    margin: 0 auto;
}

.sec-flow__head{
    text-align: center;
}

.sec-flow__title{
    margin: 0 0 10px;
    font-size: 1.6rem;
    line-height: 1.4;
    color: rgb(50 50 50);
    padding-top: 2px;
}

.sec-flow__lead{
    margin: 0 auto;
    max-width: 48em;
    color: rgb(70 70 70);
    line-height: 1.8;
}

/* ステップ（縦タイムライン風） */
.flow-steps{
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    position: relative;
}
.flow-steps::before {
    content: "";
    position: absolute;
    left: 36px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: rgb(35 140 87 / 0.30);
}

.flow-step{
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid rgb(230 230 230);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.04);
    position: relative;
}
.flow-step:last-child .flow-step__title {
    color: rgb(20 90 55);
}

/* 数字（丸バッジ） */
.flow-step__num{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgb(35 140 87);
    box-shadow: 0 6px 16px rgb(35 140 87 / 0.25);
    letter-spacing: 0.02em;
    padding-top: 2px; /* 丸バッジ内の数字の高さ調整 */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1;
    position: relative;
    z-index: 2;
}
.flow-step:last-child .flow-step__num{
    background: rgb(35 140 87);
    outline: 3px solid rgb(35 140 87 / 0.18);
    outline-offset: 2px;
    font-weight: 900;
}

/* 本文 */
.flow-step__title{
    margin: 0 0 6px;
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgb(50 50 50);
}

.flow-step__text{
    margin: 0;
    color: rgb(70 70 70);
    line-height: 1.75;
}


/* (8) よくあるご質問（FAQ） ------------------------------------ */
.sec-faq{
    background: rgb(248 250 252);
}

.sec-faq__inner{
    max-width: 980px;
    margin: 0 auto;
}

.sec-faq__head{
    text-align: center;
}

.sec-faq__title{
    margin: 0 0 10px;
    font-size: 1.6rem;
    line-height: 1.4;
    color: rgb(50 50 50);
}

.sec-faq__lead{
    margin: 0;
    color: rgb(70 70 70);
    line-height: 1.8;
}

/* FAQ本体 */
.faq-list{
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.faq-item{
    background: #fff;
    border: 1px solid rgb(230 230 230);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.04);
    overflow: hidden;
}

/* summaryのデフォルト矢印＋見た目調整 */
.faq-q{
    list-style: none;
    display: grid;
    grid-template-columns: 28px 1fr 18px;
    gap: 10px;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
}

.faq-q::-webkit-details-marker{
    display: none;
    }

.faq-q__label{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgb(35 140 87);
    line-height: 1.1;
    padding-top: 2px; /* Qの表示高さ調整 */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1;
}

.faq-q__text{
    display: block;
    color: rgb(50 50 50);
    font-weight: 700;
    line-height: 1.6;
    padding-top: 2px;
}

/* 右側の開閉アイコン（＋/－） */
.faq-q::after{
    content: "＋";
    font-weight: 900;
    color: rgb(35 140 87);
    justify-self: end;
    padding-top: 2px;
}

/* 開いたら「－」 */
.faq-item[open] .faq-q::after{
    content: "－";
}

/* 回答部 */
.faq-a{
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    padding: 0 16px 14px;
    border-top: 1px solid rgb(235 235 235);
}

.faq-a__label{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgb(35 140 87 / 0.12);
    color: rgb(20 90 55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    margin-top: 12px;
    line-height: 1.1;
    padding-top: 2px;
}

.faq-a__text{
    margin: 12px 0 0;
    color: rgb(70 70 70);
    line-height: 1.85;
    padding-top: 2px;
}


/* (9) 最後のメッセージ ---------------------------------------- */
.sec-final{
    background: rgb(240 252 246);
}

.sec-final__inner{
    max-width: 980px;
    margin: 0 auto;
}

.sec-final__box{
    background: #fff;
    border: 1px solid rgb(35 140 87 / 0.22);
    border-radius: 16px;
    padding: 26px 20px;
    box-shadow: 0 6px 22px rgb(0 0 0 / 0.06);
    text-align: center;
}

.sec-final__title{
    margin: 0 0 12px;
    font-size: 1.45rem;
    color: rgb(20 90 55);
    letter-spacing: 0.04em;
}

.sec-final__lead{
    margin: 0 0 16px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgb(50 50 50);
}

.sec-final__em{
    font-weight: 800;
    color: rgb(20 90 55);
}

.sec-final__text{
    margin: 0 0 14px;
    line-height: 1.9;
    color: rgb(70 70 70);
}

.sec-final__text:last-of-type {
	margin-bottom: 0;
	font-size: 0.95rem;
	color: rgb(90 90 90);
	letter-spacing: 0.03em;
}

.sec-final__cta{
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec-final__note{
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: rgb(90 90 90);
    line-height: 1.6;
    text-align: center;
}











/* プライバシーポリシー
--------------------------------------------------------------------------------- */
/* タイトル */
.privacy-title {
    margin: 0 0 6px;
    font-size: 1.6rem;
    line-height: 1.4;
    color: rgb(50 50 50);
    letter-spacing: 0.04em;
}
.privacy-meta {
    margin: 0 0 22px;
    font-size: 0.9rem;
    color: rgb(110 110 110);
}

/* 全体レイアウト */
.privacy-text-01 {
    margin: 30px auto 60px;
    padding: 0 16px;
    max-width: 920px;
    text-align: left;
    font-size: 1rem;
    line-height: 1.9;
    color: rgb(80 80 80);
}

/* 段落間隔 */
.privacy-text-01 p {
    margin: 0 0 12px;
}

/* 運営会社表記 */
.privacy-operator {
	margin: 0 0 20px;
	font-size: 0.95rem;
	color: rgb(20 90 55);
	letter-spacing: 0.03em;
	font-weight: 700;
}

/* 条見出し */
.privacy-text-02 {
    margin: 26px 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: rgb(20 90 55);
    border-left: 6px solid rgb(20 90 55);
    background: rgb(240 252 246);
    padding: 10px 12px;
    border-radius: 10px;
}
.privacy-text-03 {
    margin-left: 5px;
}
.privacy-text-03 li {
    margin-left: 0;
}

/* 入れ子 */
.privacy-text-04 {
    list-style: none;
    counter-reset: number;
    padding-left: 0;
}
.privacy-text-04 li {
    position: relative;
    padding-left: 2.2rem;
}
.privacy-text-04 li::before {
    counter-increment: number;
    content: '(' counter(number) ')';
    position: absolute;
    top: 0;
    left: 0;
    color: rgb(90 90 90);
}
.privacy-text-05 {
    list-style: none;
    counter-reset: number;
    padding-left: 0;
}
.privacy-text-05 li {
    position: relative;
    padding-left: 2.5rem;
}
.privacy-text-05 li::before {
    counter-increment: number;
    content: '-' counter(number) '.';
    position: absolute;
    top: 0.05em;
    left: 0;
    color: rgb(90 90 90);
}

/* リスト共通(余白整理) */
.privacy-text-03,
.privacy-text-04,
.privacy-text-05 {
    margin: 10px 0 14px;
    padding-left: 1.2rem;
}
.privacy-text-03 li,
.privacy-text-04 li,
.privacy-text-05 li {
    margin: 8px 0;
}

/* イントロ段落 */
.privacy-text-06 {
    margin: 0 0 26px;
}

/* お問い合わせボタン */
.privacy-contact {
    margin-top: 48px;
    margin-bottom: 40px;
    padding-top: 24px;
    border-top: 1px solid rgb(220 230 225);
    text-align: center;
}

.privacy-contact p {
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: rgb(80 80 80);
    line-height: 1.8;
}

.privacy-contact__btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 0.9rem;
    color: rgb(20 90 55);
    border: 1px solid rgb(20 90 55);
    border-radius: 999px;
    background-color: #fff;
}

.privacy-contact__btn:hover {
    background-color: rgb(240 252 246);
}

/* Edge Chrome 位置修正 */
@supports (not (-webkit-hyphens: none)) and (not (-moz-appearance: none)) {


}




/* お問い合わせフォーム（コンタクトページ）
--------------------------------------------------------------------------------- */
/* ページ全体（article） */
.contact-page {
    max-width: 920px;
    margin: 0 auto;
    padding: 58px 16px 64px;
}

/* お問い合わせページ タイトル */
.contact-page__header {
  margin: 0 0 28px;
  text-align: center;
}

.contact-page__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgb(20 90 55);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.contact-page__lead {
  font-size: 0.95rem;
  color: rgb(100 110 105);
  line-height: 1.7;
}



.contact-page__operator {
	margin: 0 0 18px;
	padding: 16px;
	border: 1px solid rgb(20 90 55 / 0.16);
	border-radius: 14px;
	background-color: rgb(240 252 246);
}

.contact-page__operatorTitle {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 700;
	color: rgb(20 90 55);
	letter-spacing: 0.03em;
}

.contact-page__operatorText {
	margin: 0 0 6px;
	color: rgb(60 60 60);
	line-height: 1.8;
}

.contact-page__operatorText a {
	color: inherit;
	text-decoration: underline;
}

.contact-page__operatorText a:hover {
	opacity: 0.8;
}

.contact-page__operatorText strong {
	font-weight: 700;
	color: rgb(20 90 55);
}

.contact-page__operatorNote {
	margin: 0;
	font-size: 0.92rem;
	color: rgb(90 90 90);
	line-height: 1.7;
}







/* フォームをカード化 */
.contact-page__form {
    background: #fff;
    border: 1px solid rgb(20 90 55 / 0.18);
    border-radius: 16px;
    padding: 22px 18px;
    box-shadow: 0 10px 28px rgb(0 0 0 / 0.06);
    color: rgb(80 80 80);
    line-height: 1.8;
    font-size: 0.98rem;
}

/* 冒頭注意文 */
.contact-page__note {
    margin: 0 0 16px;
    font-size: 0.92rem;
    color: rgb(110 110 110);
}

/* ラベル行 */
.contact-page__label {
    margin: 18px 0 8px;
    font-weight: 700;
    color: rgb(50 50 50);
}

/* 入力行 */
.contact-page__field {
    margin: 0 0 14px;
}

/* 入力共通 */
.contact-page__form input[type="text"],
.contact-page__form input[type="email"],
.contact-page__form input[type="tel"],
.contact-page__form select,
.contact-page__form textarea {
    width: 100%;
    max-width: 640px;
    border: 1px solid rgb(20 90 55 / 0.22);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 1rem;
    background: #fff;
    color: rgb(50 50 50);
    line-height: 1.5;
}

/* placeholder */
.contact-page__form input::placeholder,
.contact-page__form textarea::placeholder {
    color: rgb(150 150 150);
}

.contact-page__form,
.contact-page__form p {
    text-align: left;
}

/* 姓名2列（:has()は使わないで安定させる） */
.contact-page__field--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
}

/* 「姓」「名」とinputを一体化して左寄せに */
.contact-page__field--2col .field-unit {
    display: block;
    text-align: left;
    color: rgb(80 80 80);
}

/* 姓名のinputは列幅いっぱいに */
.contact-page__field--2col input[type="text"] {
    margin-top: 6px;
    max-width: none;
}

/* 郵便番号は短め */
.contact-page__form input[name*="_zip"] {
    max-width: 220px;
}

/* 都道府県select */
.contact-page__form select[name*="_pref"] {
    max-width: 320px;
}

/* テキストエリア */
.contact-page__form textarea {
    max-width: 760px;
    min-height: 180px;
    resize: vertical;
}

/* 送信ボタン行 */
.contact-page__submit {
    margin: 22px 0 0;
    text-align: center;
}

/* 送信ボタン */
.contact-page__submit input[type="submit"] {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 320px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: rgb(35 140 87);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    cursor: pointer;
}

/* hover */
.contact-page__submit input[type="submit"]:hover {
    filter: brightness(0.95);
}

/* focus（入力中） */
.contact-page__form input[type="text"]:focus,
.contact-page__form input[type="email"]:focus,
.contact-page__form input[type="tel"]:focus,
.contact-page__form select:focus,
.contact-page__form textarea:focus {
    outline: 3px solid rgb(35 140 87 / 0.25);
    border-color: rgb(35 140 87 / 0.55);
}

/* 必須(*)の視認性を少しだけ上げたい場合（任意）*/
.contact-page__label {
    position: relative;
}
.contact-page__label::before {
    content: "";
}

/* 戻るボタン */
.contact-page__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgb(20 90 55 / 0.35);
	background-color: rgb(255 255 255);
	color: rgb(20 90 55);
	font-size: 0.9rem;
	line-height: 1.4;
	cursor: pointer;
	margin: 0 0 14px;
	transition: background-color 0.2s ease;
}

.contact-page__back:hover {
	background-color: rgb(240 252 246);
}






/* モバイル版
------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
@media (max-width: 600px) {

    /* Header ------------------------------------------------------ */
    /*
    .page-header {
        height: 87px;
    }
    body.Android .page-header {
        height: 85px;
    }
    */



    /* Footer ------------------------------------------------------ */
    /*
    footer {
        margin-top: 45px;
    }
    */

    /* 共用 -------------------------------------------------------- */
    .sec-why,
    .sec-worries,
    .sec-impact,
    .sec-focus,
    .sec-achievement,
    .sec-flow,
    .sec-faq {
        padding: 48px 14px;
    }
    .sec-final {
        padding: 56px 14px;
    }

    .sec-why__head,
    .sec-worries__head,
    .sec-impact__head,
    .sec-focus__head,
    .sec-achievement__head,
    .sec-flow__head,
    .sec-faq__head {
        margin-bottom: 24px;
    }


    /* Main contents ----------------------------------------------- */
    /* (1) Firstview */
    .fv-text {
        font-size: 1.6rem;
        top: 80px;
        padding: 0 16px;
    }
    .fv-container h1 {
        font-size: 22px;
    }
    .fv-container h2 {
        font-size: 16px;
    }
    .cta-btn {
        width: 100%;
        max-width: 290px;
        padding-top: 0;
    }

    /* (2)なぜ「歯科医院専門」なのか */
    .sec-why__title {
        font-size: 1.35rem;
    }

    .sec-why__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-card {
        padding: 16px;
    }

    /* (3)歯科医院サイトでよくあるお悩み */
    .sec-worries__title {
        font-size: 1.35rem;
    }

    .worries-list__item {
        padding: 14px 14px 14px 40px;
    }

    .worries-list__item::before {
        left: 14px;
    }

    body.Android
    .worries-list__item::before{
        top: 46%;
    }

    /* (4) Webを刷新すると何が変わるのか */
    .sec-impact__title {
        font-size: 1.35rem;
    }

    .impact-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .impact-card__desc {
        text-align: left;
    }

    /* (5) 当社が重視しているポイント */
    .sec-focus__title {
        font-size: 1.35rem;
    }

    .focus-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* (6) 実績について */
    .sec-achievement__title {
        font-size: 1.35rem;
    }

    .sec-achievement__box {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .sec-achievement__media img {
        height: 200px;
        object-position: 50% 25%;
    }

    /* (7) 制作の流れ */
    .sec-flow__title {
        font-size: 1.35rem;
    }

    .flow-step {
        grid-template-columns: 40px 1fr;
        padding: 12px;
    }
    .flow-steps::before {
        left: 32px;  /* 40pxの中心=20px + 左padding分を考慮して微調整 */
    }

    .flow-step__num {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    /* (8) よくあるご質問 */
    .sec-faq__title {
        font-size: 1.35rem;
    }

    .faq-q {
        padding: 12px 14px;
    }

    .faq-a {
        padding: 0 14px 12px;
    }

    .faq-q__label{
        padding-top: 0;
    }

    /* (9) 最後のメッセージ */
    .sec-final__box {
        padding: 20px 16px;
    }

    .sec-final__title {
        font-size: 1.25rem;
    }

    .sec-final__lead {
        font-size: 1.05rem;
    }

    .sec-final__cta .cta-btn {
        width: 100%;
        max-width: 290px; /* 既存CTA幅に合わせる */
    }


    /* プライバシーポリシー ----------------------------------------- */
    .privacy-operator {
        font-size: 0.9rem;
    }

    .privacy-text-01 {
        margin: 20px auto 48px;
        padding: 0 14px;
        font-size: 0.95rem;
        line-height: 1.85;
    }

    .privacy-title {
        font-size: 1.35rem;
    }

    .privacy-text-02 {
        font-size: 1.05rem;
        padding: 9px 10px;
    }

    .privacy-text-04 li {
        padding-left: 1.7rem;
    }

    .privacy-text-05 li {
        padding-left: 1.9rem;
    }

    .privacy-text-05 li::before {
        top: 0;
    }



    /* お問い合わせ ----------------------------------------------- */
    .contact-page {
        padding: 52px 14px 56px;
    }

    .contact-page__title {
        font-size: 1.35rem;
    }

    .contact-page__lead {
        font-size: 0.9rem;
    }

    .contact-page__form {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .contact-page__field--2col {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact-page__submit input[type="submit"] {
        max-width: 100%;
    }


}


/* モバイル版(469px)
------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
@media (max-width: 469px) {

    /* (6) */
    .sec-achievement__media img {
        object-position: 50% 30%;
    }
}