@charset "UTF-8";

/*
 * ARK PROMOTION 静的復旧版
 * 2025年11月版の寸法・配色・3カラム構成を基にしています。
 * Waybackに残らなかった背景画像は、軽量なCSSグラデーションで近似しています。
 */

:root {
    --pink: #f5b5aa;
    --pink-dark: #c07f6e;
    --pink-deep: #835855;
    --pink-pale: #fce5d4;
    --blue-pale: #e9f5ff;
    --green-pale: #e4eee9;
    --slate: #67767a;
    --text: #595959;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(75, 55, 55, 0.17);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    line-height: 1.8;
}

body,
button,
input,
textarea {
    font: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid #1c7c8c;
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    padding: 10px 16px;
    color: #fff;
    background: #222;
    border-radius: 6px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}

/* ===== 3カラムの基本構成 ===== */
.main-container {
    display: grid;
    grid-template-columns: minmax(360px, 48fr) minmax(420px, 30fr) minmax(220px, 22fr);
    width: 100%;
    height: 100vh;
    overflow: hidden;
    letter-spacing: 0.08em;
}

.left-panel,
.right-panel {
    min-width: 0;
    height: 100vh;
}

.left-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: clamp(26px, 4vw, 72px);
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.85) 0 2px, transparent 3px) 0 0 / 24px 24px,
        linear-gradient(145deg, #fff8f4 0%, #f8d7d1 47%, #e2f2ef 100%);
}

.left-panel::before,
.left-panel::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.left-panel::before {
    top: -18vw;
    left: -10vw;
    width: 38vw;
    height: 38vw;
    background: rgba(245, 181, 170, 0.28);
}

.left-panel::after {
    right: -10vw;
    bottom: -17vw;
    width: 34vw;
    height: 34vw;
    background: rgba(188, 226, 224, 0.38);
}

.left-visual {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    min-height: 0;
    margin: auto;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.75);
    border-radius: 42px 12px 42px 12px;
    box-shadow: var(--shadow);
}

.left-visual > img {
    width: 100%;
    height: min(68vh, 820px);
    object-fit: cover;
    object-position: center 35%;
}

.left-brand {
    position: absolute;
    inset: auto 0 0;
    padding: 64px 32px 28px;
    color: #fff;
    text-align: left;
    background: linear-gradient(transparent, rgba(44, 35, 40, 0.88));
}

.left-brand span {
    font-size: clamp(9px, 0.7vw, 13px);
    letter-spacing: 0.22em;
}

.left-brand strong {
    display: block;
    font-size: clamp(24px, 2.2vw, 42px);
    line-height: 1.2;
}

.left-brand p {
    margin: 5px 0 0;
    font-size: clamp(13px, 1vw, 18px);
    font-weight: 700;
}

.left-actions {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: min(100%, 700px);
    margin: 0 auto;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 12px 18px;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(61, 51, 54, 0.16);
    font-weight: 800;
    line-height: 1.3;
    transition: transform 0.2s, filter 0.2s;
}

.contact-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.form-button {
    background: var(--pink);
}

.line-button {
    background: #06c755;
}

.line-button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.mail-button {
    background: var(--pink-dark);
}

.center-panel {
    position: relative;
    min-width: 0;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    border-right: 13px solid #ffb6c1;
    border-left: 13px solid #ffb6c1;
    scrollbar-width: thin;
    scrollbar-color: var(--pink) #fff3f0;
    overscroll-behavior: contain;
}

.center-panel::-webkit-scrollbar {
    width: 8px;
}

.center-panel::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 20px;
}

.center-inner {
    min-height: 100%;
    background: #fff;
}

.right-panel {
    position: relative;
    overflow: hidden;
    color: var(--slate);
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.34) 0 1px, transparent 1px 18px),
        linear-gradient(90deg, var(--blue-pale), var(--green-pale));
}

.right-panel nav {
    position: absolute;
    right: 8%;
    bottom: 5%;
    left: 10%;
    z-index: 2;
}

.right-link-list {
    display: grid;
    gap: clamp(5px, 0.8vh, 12px);
}

.right-link a {
    display: flex;
    align-items: center;
    min-height: 30px;
    font-size: clamp(10px, 0.85vw, 15px);
    font-weight: 800;
}

.link-circle {
    flex: 0 0 auto;
    width: clamp(10px, 1vw, 17px);
    height: clamp(10px, 1vw, 17px);
    margin-right: 12px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.right-link.is-active .link-circle {
    background: #ff9eae;
    box-shadow: 0 0 0 5px rgba(255, 158, 174, 0.2);
    transform: scale(1.15);
}

.right-background-text {
    position: absolute;
    top: 20%;
    right: -31%;
    margin: 0;
    color: rgba(103, 118, 122, 0.08);
    font-family: Georgia, serif;
    font-size: clamp(48px, 5vw, 90px);
    line-height: 1;
    white-space: nowrap;
    transform: rotate(90deg);
}

.floating-line {
    display: none;
}

/* ===== 共通見出し ===== */
.section-heading {
    position: relative;
    margin-bottom: clamp(26px, 5vw, 54px);
    text-align: center;
}

.section-heading > span {
    display: block;
    color: rgba(103, 118, 122, 0.28);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 6vw, 86px);
    font-style: italic;
    line-height: 0.8;
}

.section-heading h2 {
    position: relative;
    margin: -0.1em 0 0;
    color: var(--slate);
    font-size: clamp(24px, 2.2vw, 40px);
    line-height: 1.45;
}

.section-heading > img {
    width: 80px;
    margin: 0 auto 12px;
}

/* ===== トップビュー ===== */
.top-view {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #17242b;
}

.top-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.top-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: clamp(75px, 12vw, 145px) clamp(24px, 5vw, 60px) clamp(32px, 6vw, 72px);
    color: #fff;
    background: linear-gradient(transparent, rgba(27, 34, 38, 0.9));
}

.top-kicker {
    margin: 0 0 4px;
    font-size: clamp(9px, 0.9vw, 14px);
    font-weight: 700;
    letter-spacing: 0.2em;
}

.top-overlay h1 {
    margin: 0;
    font-size: clamp(25px, 2.7vw, 46px);
    line-height: 1.45;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.top-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.top-features li {
    padding: 5px 10px;
    color: var(--pink-deep);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

/* ===== 冒頭サポート ===== */
.only-support {
    display: grid;
    gap: 36px;
    padding: clamp(56px, 10vw, 105px) clamp(20px, 5vw, 54px);
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.8) 0 5px, transparent 6px) 0 0 / 42px 42px,
        linear-gradient(150deg, #fffaf6, #edf6f4);
}

.support-summary {
    padding: clamp(24px, 4vw, 44px);
    border-radius: 32px 8px 32px 8px;
    box-shadow: 0 12px 34px rgba(80, 67, 67, 0.1);
}

.support-summary.warm {
    color: var(--pink-deep);
    background: linear-gradient(120deg, rgba(223, 187, 181, 0.86), rgba(252, 229, 212, 0.93));
}

.support-summary.cool {
    color: var(--slate);
    background: linear-gradient(120deg, rgba(228, 238, 233, 0.95), rgba(233, 245, 255, 0.95));
}

.section-svg-title {
    width: min(75%, 300px);
    margin: 0 auto 12px;
}

.support-title-image {
    width: min(52%, 210px);
}

.summary-title {
    margin: 0 0 22px;
    text-align: center;
    font-size: clamp(19px, 1.8vw, 30px);
    font-weight: 800;
}

.support-summary ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.support-summary li {
    display: grid;
    min-height: 48px;
    place-items: center;
    padding: 8px 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    font-size: clamp(11px, 0.85vw, 15px);
    font-weight: 800;
}

.support-summary li.wide {
    grid-column: 1 / -1;
}

/* ===== ブログ ===== */
.blog-section {
    padding: clamp(60px, 10vw, 112px) clamp(20px, 5vw, 54px);
    background: #fff;
}

.blog-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.blog-card {
    overflow: hidden;
    color: var(--slate);
    background: #fff;
    border: 1px solid #e7dfdf;
    border-radius: 18px;
    box-shadow: 0 9px 28px rgba(82, 61, 65, 0.08);
}

.blog-card > img {
    width: 100%;
    height: 118px;
    padding: 22px;
    object-fit: contain;
    background: linear-gradient(145deg, #fff7f4, #edf6f4);
}

.blog-card.photo-card > img {
    padding: 0;
    object-fit: cover;
}

.blog-card > div {
    padding: 18px;
}

.blog-card h3 {
    margin: 0;
    font-size: clamp(14px, 1.05vw, 18px);
    line-height: 1.5;
}

.blog-card time {
    display: block;
    margin-top: 6px;
    color: var(--pink-dark);
    font-size: 11px;
    font-weight: 700;
}

.blog-card p {
    margin: 10px 0;
    font-size: 12px;
    line-height: 1.7;
}

.blog-card a {
    color: var(--pink-dark);
    font-size: 12px;
    font-weight: 800;
    text-decoration: underline;
}

.video-placeholder {
    display: grid;
    min-height: 250px;
    margin-top: 24px;
    place-items: center;
    color: #fff;
    background:
        linear-gradient(135deg, transparent 44%, rgba(255, 255, 255, 0.15) 44% 56%, transparent 56%) 0 0 / 26px 26px,
        var(--pink);
    border-radius: 12px;
    font-size: clamp(18px, 1.8vw, 30px);
    font-weight: 800;
}

/* ===== フェチAVとは ===== */
.what-av {
    padding: clamp(70px, 11vw, 120px) clamp(28px, 7vw, 74px);
    color: var(--text);
    background:
        radial-gradient(ellipse at top left, rgba(245, 181, 170, 0.32), transparent 42%),
        repeating-linear-gradient(0deg, rgba(192, 127, 110, 0.035) 0 1px, transparent 1px 24px),
        #fffaf4;
}

.warm-heading h2 {
    color: var(--pink-dark);
}

.what-av > p {
    margin: 0 0 16px;
    font-size: clamp(13px, 0.95vw, 16px);
}

.what-av .lead-text {
    color: var(--pink-dark);
    font-size: clamp(15px, 1.2vw, 20px);
    font-weight: 800;
}

.point-heading {
    margin: 42px 0 22px;
    padding-bottom: 8px;
    color: var(--pink-dark);
    border-bottom: 2px solid var(--pink-dark);
    font-family: Georgia, serif;
    font-size: clamp(20px, 1.8vw, 30px);
    letter-spacing: 0.16em;
}

.point-list {
    display: grid;
    gap: 20px;
}

.point-list li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 15px;
    align-items: start;
}

.point-list b {
    color: var(--pink-dark);
    font-family: Georgia, serif;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.2;
}

.point-list p {
    margin: 0;
    font-size: 13px;
}

/* ===== 一人でできるAV ===== */
.only-example {
    position: relative;
    display: grid;
    grid-template-columns: 18% 82%;
    padding: clamp(72px, 13vw, 145px) 0;
    background: #fff;
}

.vertical-en {
    align-self: start;
    color: #c4cdce;
    font-family: Georgia, serif;
    font-size: clamp(20px, 1.7vw, 30px);
    line-height: 1;
    white-space: nowrap;
    transform: translateX(70%) rotate(90deg);
    transform-origin: left top;
}

.only-example-content {
    padding-right: clamp(24px, 5vw, 54px);
}

.only-example-content > img {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    border-radius: 34px 8px 34px 8px;
    box-shadow: var(--shadow);
}

.only-example-content h2 {
    margin: 36px 0 22px;
    color: var(--slate);
    text-align: center;
    font-size: clamp(24px, 2.1vw, 38px);
}

.only-example-content ul {
    display: grid;
    gap: 15px;
    font-size: 13px;
}

.only-example-content li {
    padding: 14px 16px;
    background: linear-gradient(90deg, #fff5f1, #f1f8f7);
    border-left: 4px solid var(--pink);
    border-radius: 0 12px 12px 0;
}

.only-note {
    margin: 24px 0 0;
    color: var(--pink-dark);
    font-weight: 800;
}

/* ===== おすすめ ===== */
.recommend {
    padding: clamp(72px, 12vw, 135px) clamp(28px, 8vw, 84px);
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.8) 0 3px, transparent 4px) 0 0 / 28px 28px,
        linear-gradient(145deg, #f8e7e2, #e8f2f1);
}

.recommend-list {
    display: grid;
    gap: 12px;
}

.recommend-list li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 72px;
    padding: 10px 20px;
    color: var(--slate);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    font-size: clamp(14px, 1.15vw, 20px);
    font-weight: 800;
}

.recommend-list img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* ===== 所属女性 ===== */
.woman-list {
    padding: clamp(68px, 10vw, 112px) clamp(20px, 5vw, 54px);
    background:
        linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)),
        repeating-linear-gradient(45deg, #fce5d4 0 16px, #e9f5ff 16px 32px);
}

.profile-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.profile-list li {
    overflow: hidden;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(80, 67, 67, 0.1);
}

.profile-list img {
    width: 100%;
    aspect-ratio: 0.64;
    object-fit: cover;
    object-position: top;
}

.profile-list b,
.profile-list span {
    display: block;
}

.profile-list b {
    margin-top: 7px;
    color: var(--pink-dark);
    font-size: 13px;
}

.profile-list span {
    padding: 0 4px 8px;
    color: var(--slate);
    font-size: 10px;
}

/* ===== 仕事一覧 ===== */
.works {
    padding: clamp(76px, 12vw, 135px) 0 0;
    background: #fff;
}

.work-heading {
    padding: 0 26px;
}

.work-list {
    display: grid;
}

.work-card {
    position: relative;
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: 360px;
    overflow: hidden;
}

.work-card:nth-child(1) {
    background: linear-gradient(135deg, #fff4f0, #f9ded8);
}

.work-card:nth-child(2) {
    background: linear-gradient(135deg, #eef8ff, #dceff4);
}

.work-card:nth-child(3) {
    background: linear-gradient(135deg, #fff9e8, #f4e8c5);
}

.work-card:nth-child(4) {
    background: linear-gradient(135deg, #f8ecf5, #ead8e9);
}

.work-card:nth-child(5) {
    background: linear-gradient(135deg, #ecf6f3, #d9ece8);
}

.work-card > img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.work-card > div {
    align-self: center;
    padding: clamp(24px, 4vw, 50px) clamp(20px, 3.5vw, 42px);
}

.work-card small {
    color: var(--pink-dark);
    font-family: Georgia, serif;
    letter-spacing: 0.12em;
}

.work-card h3 {
    margin: 7px 0 18px;
    color: var(--slate);
    font-size: clamp(22px, 2vw, 34px);
    line-height: 1.35;
}

.work-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.9;
}

/* ===== 収入例 ===== */
.income {
    padding: clamp(72px, 11vw, 124px) clamp(24px, 6vw, 64px);
    background:
        linear-gradient(rgba(255, 255, 255, 0.89), rgba(255, 255, 255, 0.89)),
        repeating-linear-gradient(-45deg, var(--pink) 0 12px, var(--blue-pale) 12px 24px);
}

.income-list {
    display: grid;
    gap: 13px;
}

.income-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 14px;
    align-items: center;
    padding: 19px 22px;
    background: #fff;
    border-left: 7px solid var(--pink);
    border-radius: 8px 18px 18px 8px;
    box-shadow: 0 7px 18px rgba(80, 67, 67, 0.08);
}

.income-list h3 {
    grid-row: span 3;
    margin: 0;
    color: var(--slate);
    font-size: clamp(14px, 1.1vw, 19px);
}

.income-list small,
.income-list em {
    text-align: right;
    font-size: 10px;
    font-style: normal;
}

.income-list strong {
    color: var(--pink-dark);
    text-align: right;
    font-size: clamp(14px, 1.15vw, 20px);
}

.income-caution {
    margin: 20px 0 0;
    color: var(--slate);
    font-size: 10px;
}

/* ===== サポート体制 ===== */
.full-support {
    padding: clamp(72px, 11vw, 124px) clamp(24px, 6vw, 64px);
    background:
        radial-gradient(circle at 90% 8%, rgba(245, 181, 170, 0.23), transparent 35%),
        linear-gradient(145deg, #fff, #eef7f5);
}

.support-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.support-list li {
    padding: 24px 18px;
    text-align: center;
    background: #fff;
    border: 1px solid #e5eceb;
    border-radius: 22px;
    box-shadow: 0 8px 22px rgba(55, 83, 83, 0.08);
}

.support-list img {
    width: 78px;
    height: 78px;
    margin: 0 auto 15px;
    object-fit: contain;
}

.support-list p {
    margin: 0;
    color: var(--slate);
    font-size: 12px;
    font-weight: 800;
}

.support-list small {
    font-size: 10px;
}

/* ===== 応募の流れ ===== */
.flow {
    padding: clamp(72px, 11vw, 124px) clamp(28px, 7vw, 74px);
    background:
        radial-gradient(circle at 0 100%, rgba(233, 245, 255, 0.85), transparent 48%),
        linear-gradient(145deg, #fff8f4, #fff);
}

.flow-list {
    display: grid;
    gap: 45px;
}

.flow-list li {
    position: relative;
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 20px;
    align-items: center;
}

.flow-list li:not(:last-child)::after {
    position: absolute;
    top: 67px;
    bottom: -43px;
    left: 31px;
    width: 5px;
    content: "";
    background: repeating-linear-gradient(var(--pink) 0 9px, transparent 9px 15px);
}

.flow-list b {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    color: #fff;
    background: var(--pink);
    border: 6px solid #fff;
    border-radius: 50%;
    box-shadow: 0 7px 20px rgba(192, 127, 110, 0.23);
    font-family: Georgia, serif;
    font-size: 19px;
}

.flow-list h3 {
    margin: 0;
    color: var(--slate);
    font-size: clamp(17px, 1.4vw, 24px);
}

.flow-list p {
    margin: 3px 0 0;
    color: #8b999b;
    font-size: 11px;
}

.flow-cta {
    margin-top: 48px;
    text-align: center;
}

.flow-cta p {
    margin: 0 0 12px;
    color: var(--pink-dark);
    font-weight: 800;
}

.flow-cta a {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 12px 42px;
    color: #fff;
    background: var(--pink);
    border: 4px solid #fff;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(192, 127, 110, 0.25);
    font-weight: 800;
}

/* ===== FAQ ===== */
.faq-section {
    padding: clamp(72px, 11vw, 124px) clamp(24px, 6vw, 64px);
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0 12px, transparent 12px 24px),
        linear-gradient(145deg, #edf5f4, #f9e9e5);
}

.faq-list {
    display: grid;
    gap: 13px;
}

.faq-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(103, 118, 122, 0.16);
    border-radius: 14px;
}

.faq-item summary {
    display: grid;
    grid-template-columns: 1fr 30px;
    gap: 12px;
    align-items: center;
    min-height: 62px;
    padding: 14px 18px;
    color: var(--slate);
    cursor: pointer;
    font-size: clamp(12px, 0.95vw, 16px);
    font-weight: 800;
    list-style: none;
}

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

.faq-item summary span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #fff;
    background: var(--pink);
    border-radius: 50%;
    font-size: 19px;
    transition: transform 0.2s;
}

.faq-item[open] summary span {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0;
    padding: 0 18px 20px;
    color: var(--text);
    font-size: 12px;
}

/* ===== 応募フォーム ===== */
.contact-section {
    padding: clamp(72px, 11vw, 124px) clamp(24px, 6vw, 64px);
    color: #fff;
    background:
        radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.18) 0 4px, transparent 5px) 0 0 / 34px 34px,
        linear-gradient(145deg, #dfbbb5, #92bdb7);
}

.contact-heading > span,
.contact-heading h2,
.contact-heading p {
    color: #fff;
}

.contact-heading p {
    margin: 16px 0 0;
    font-size: 12px;
}

.form-status {
    display: none;
    margin-bottom: 18px;
    padding: 14px;
    color: #7b433b;
    background: #fff5df;
    border: 2px solid #fff;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
}

.form-status.is-visible {
    display: block;
}

.contact-form {
    padding: clamp(22px, 4vw, 42px);
    color: var(--text);
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-form > label {
    display: grid;
    gap: 7px;
    margin-bottom: 19px;
}

.contact-form > label > span,
.contact-form legend {
    color: var(--slate);
    font-size: 12px;
    font-weight: 800;
}

.contact-form input[type="text"],
.contact-form input[type="number"],
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    color: var(--text);
    background: #fff;
    border: 1px solid #c9d1d2;
    border-radius: 8px;
}

.contact-form fieldset {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin: 0 0 20px;
    padding: 0;
    border: 0;
}

.contact-form legend {
    grid-column: 1 / -1;
    margin-bottom: 7px;
}

.contact-form fieldset label {
    position: relative;
    cursor: pointer;
}

.contact-form fieldset input {
    position: absolute;
    opacity: 0;
}

.contact-form fieldset span {
    display: grid;
    min-height: 43px;
    place-items: center;
    padding: 7px;
    border: 1px solid #c9d1d2;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.contact-form fieldset input:checked + span {
    color: var(--pink-deep);
    background: var(--pink-pale);
    border-color: var(--pink);
}

.contact-form button {
    display: block;
    width: min(100%, 320px);
    min-height: 58px;
    margin: 28px auto 0;
    color: #fff;
    background: var(--pink);
    border: 4px solid #f8ddd7;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
}

.form-stop-note {
    margin: 16px 0 0;
    text-align: center;
    font-size: 10px;
}

.contact-alternatives {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
}

/* ===== フッター ===== */
.site-footer {
    display: grid;
    gap: 24px;
    padding: clamp(40px, 7vw, 76px) clamp(24px, 6vw, 64px);
    color: #fff;
    background: #3d3438;
    font-size: 11px;
    text-align: center;
}

.site-footer > ul {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.site-footer > ul a {
    text-decoration: underline;
}

.company-info small {
    color: rgba(255, 255, 255, 0.6);
}

.company-info p {
    margin: 3px 0;
}

.x-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0 auto;
}

.x-link img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* ===== プライバシーポリシー ===== */
.privacy-page {
    min-height: 100vh;
    background: linear-gradient(145deg, #fff7f4, #edf6f4);
}

.privacy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 82px;
    padding: 16px max(24px, calc((100% - 980px) / 2));
    background: #fff;
    border-bottom: 5px solid var(--pink);
}

.privacy-logo {
    color: var(--pink-deep);
    font-size: 20px;
    font-weight: 900;
}

.privacy-header a:last-child {
    color: var(--pink-dark);
    font-size: 13px;
    font-weight: 800;
}

.privacy-main {
    width: min(calc(100% - 32px), 900px);
    margin: 50px auto 70px;
}

.privacy-main > header {
    margin-bottom: 34px;
    text-align: center;
}

.privacy-main > header small {
    color: var(--pink-dark);
    letter-spacing: 0.18em;
}

.privacy-main > header h1 {
    margin: 8px 0 0;
    color: var(--slate);
    font-size: clamp(28px, 5vw, 48px);
}

.privacy-article {
    padding: clamp(24px, 5vw, 58px);
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.privacy-article section + section {
    margin-top: 32px;
}

.privacy-article h2 {
    margin: 0 0 12px;
    padding-left: 14px;
    color: var(--slate);
    border-left: 5px solid var(--pink);
    font-size: 19px;
}

.privacy-article p,
.privacy-article li {
    font-size: 13px;
}

.privacy-article ul {
    padding-left: 1.2em;
    list-style: disc;
}

.privacy-back {
    margin-top: 38px;
    text-align: center;
}

.privacy-back a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 10px 30px;
    color: #fff;
    background: var(--pink);
    border-radius: 999px;
    font-weight: 800;
}

.privacy-footer {
    padding: 24px;
    color: #fff;
    background: #3d3438;
    font-size: 11px;
    text-align: center;
}

/* ===== タブレット・スマートフォン ===== */
@media (max-width: 1024px) {
    .main-container {
        display: block;
        height: 100vh;
    }

    .left-panel,
    .right-panel {
        display: none;
    }

    .center-panel {
        width: 100%;
        border: 0;
    }

    .floating-line {
        position: fixed;
        right: 18px;
        bottom: 18px;
        z-index: 1000;
        display: block;
        width: clamp(78px, 18vw, 118px);
        filter: drop-shadow(0 9px 14px rgba(34, 73, 63, 0.24));
    }

    .top-view,
    .top-image {
        min-height: 90vh;
        height: 90vh;
    }

    .top-overlay h1 {
        font-size: clamp(28px, 7vw, 54px);
    }

    .summary-title,
    .section-heading h2,
    .only-example-content h2,
    .work-card h3 {
        font-size: clamp(26px, 6vw, 42px);
    }

    .support-summary li,
    .what-av > p,
    .only-example-content ul,
    .recommend-list li {
        font-size: clamp(14px, 3.5vw, 19px);
    }

    .blog-card h3 {
        font-size: clamp(15px, 3.8vw, 20px);
    }

    .blog-card p,
    .work-card p,
    .faq-item p,
    .contact-heading p {
        font-size: clamp(12px, 3.2vw, 16px);
    }

    .faq-item summary {
        font-size: clamp(13px, 3.5vw, 18px);
    }
}

@media (max-width: 700px) {
    .top-view,
    .top-image {
        min-height: 82vh;
        height: 82vh;
    }

    .top-overlay {
        padding-right: 22px;
        padding-left: 22px;
    }

    .support-summary ul,
    .blog-list,
    .support-list,
    .contact-alternatives {
        grid-template-columns: 1fr;
    }

    .support-summary li.wide {
        grid-column: auto;
    }

    .only-example {
        display: block;
        padding-right: 22px;
        padding-left: 22px;
    }

    .vertical-en {
        margin-bottom: 22px;
        font-size: 18px;
        white-space: normal;
        transform: none;
    }

    .only-example-content {
        padding-right: 0;
    }

    .profile-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .work-card {
        display: block;
    }

    .work-card > img {
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 0.82;
        object-position: center 25%;
    }

    .income-list li {
        display: block;
    }

    .income-list h3 {
        margin-bottom: 8px;
    }

    .income-list small,
    .income-list strong,
    .income-list em {
        display: block;
        text-align: left;
    }

    .contact-form fieldset {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .top-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .top-features li {
        text-align: center;
    }

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

    .recommend-list li {
        grid-template-columns: 46px 1fr;
        padding-right: 14px;
        padding-left: 14px;
    }

    .recommend-list img {
        width: 42px;
        height: 42px;
    }

    .privacy-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
