/* 変数定義（指定カラー・フォント） */
:root {
    --color-base: #F8F9FA;
    --color-main: #1B2A47;
    --color-accent: #D97706;
    --color-text: #333333;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
}

/* 共通設定 */
body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-base);
    line-height: 1.8;
    margin: 0;
    padding: 0;
    font-size: 16px;
}
@media (min-width: 768px) {
    body { font-size: 18px; }
}
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--color-main);
    margin: 0;
    letter-spacing: 0.05em;
}
a {
    text-decoration: none;
    color: inherit;
}
img { max-width: 100%; height: auto; display: block; }
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}
.section { padding: 80px 0; }
.bg-light { background-color: #ffffff; }
.sp-only { display: inline; }
@media (min-width: 768px) {
    .sp-only { display: none; }
}

/* セクションタイトル装飾 */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    position: relative;
    line-height: 1.5;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 15px auto 0;
}

/* ヘッダー */
.header {
    background-color: var(--color-main);
    color: #fff;
    padding: 12px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    box-sizing: border-box;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    color: #fff;
    font-size: 16px;
}
.nav ul {
    list-style: none;
    display: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}
@media (min-width: 992px) {
    .nav ul { display: flex; }
    .logo { font-size: 20px; }
}
.nav a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
}
.nav a:hover { color: var(--color-accent); }
@media (min-width: 1200px) {
    .nav a { font-size: 15px; }
}

/* ================================
   ファーストビュー（写真入り）
   ================================ */
.fv {
    background-color: #fff;
    padding: 110px 5% 70px;
    background-image:
        linear-gradient(135deg, rgba(27,42,71,0.04) 0%, rgba(217,119,6,0.05) 100%);
    position: relative;
    overflow: hidden;
}
.fv::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 85% 15%, rgba(217,119,6,0.10) 0%, transparent 55%);
    pointer-events: none;
}
.fv-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
@media (min-width: 992px) {
    .fv-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }
/* 代表写真 */
.fv-photo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.fv-portrait {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 6px solid #fff;
    box-shadow:
        0 0 0 3px var(--color-accent),
        0 12px 30px rgba(0,0,0,0.18);
    aspect-ratio: 1 / 1;
    display: block;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .fv-portrait { width: 280px; height: 280px; }
}

.fv-photo-caption {
    margin-top: 16px;
    background-color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}
.caption-name {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-main);
    margin: 0;
    font-size: 16px;
}
.caption-qual {
    color: var(--color-accent);
    font-size: 12px;
    font-weight: bold;
    margin: 2px 0 0;
    letter-spacing: 0.05em;
}

.fv-badge {
    display: inline-block;
    background-color: var(--color-main);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.fv-catch {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--color-main);
}
.fv-catch .accent {
    color: var(--color-accent);
    background: linear-gradient(transparent 60%, rgba(217,119,6,0.25) 60%);
    padding: 0 4px;
}
@media (min-width: 768px) {
    .fv-catch { font-size: 36px; }
}
.fv-sub {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.85;
    color: #444;
}
@media (min-width: 768px) {
    .fv-sub { font-size: 17px; }
}
.fv-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 30px;
}
@media (min-width: 992px) {
    .fv-buttons { justify-content: flex-start; }
}
.btn-tel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid var(--color-main);
    color: var(--color-main);
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(27,42,71,0.1);
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
}
.btn-tel:hover {
    transform: translateY(-3px);
    background-color: var(--color-main);
    color: #fff;
}
.btn-tel-icon { font-size: 20px; }
.btn-tel-text small { display: block; font-size: 11px; font-weight: normal; }
.btn-tel-text strong { display: block; font-size: 18px; letter-spacing: 0.05em; }
@media (min-width: 768px) {
    .btn-tel-text strong { font-size: 20px; }
}

/* FV内 信頼指標 */
.fv-trust {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px;
    margin: 0;
    background-color: rgba(255,255,255,0.7);
    border: 1px solid rgba(27,42,71,0.1);
    border-radius: 12px;
    backdrop-filter: blur(6px);
}
.fv-trust li { text-align: center; }
.trust-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.1;
}
@media (min-width: 768px) {
    .trust-num { font-size: 30px; }
}
.trust-label {
    display: block;
    font-size: 11px;
    color: #555;
    margin-top: 4px;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .trust-label { font-size: 13px; }
}

/* ボタン共通 */
.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, opacity 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
    text-align: center;
    margin: 10px;
    width: 80%;
    max-width: 320px;
    box-sizing: border-box;
    background-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 6px 12px rgba(217, 119, 6, 0.35);
    border: none;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.05em;
}
.btn-primary:hover {
    transform: translateY(-3px);
    opacity: 0.95;
    box-shadow: 0 10px 18px rgba(217, 119, 6, 0.45);
}

/* お悩みセクション */
.trouble-list {
    background-color: var(--color-base);
    padding: 30px;
    border-radius: 10px;
    border: 2px dashed var(--color-main);
}
@media (min-width: 768px) {
    .trouble-list { padding: 50px; }
}
.trouble-item {
    margin-bottom: 20px;
    padding-left: 1.5em;
    text-indent: -1.5em;
    font-weight: 500;
}
.trouble-item::before {
    content: '✓';
    color: var(--color-accent);
    margin-right: 10px;
    font-weight: bold;
    font-size: 20px;
}
.trouble-text {
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    color: var(--color-main);
    font-size: 20px;
}

/* 代表挨拶・プロフィール */
.greeting-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}
@media (min-width: 768px) {
    .greeting-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 50px;
    }
    .greeting-text { flex: 2; }
    .greeting-profile { flex: 1; }
}
.greeting-lead {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-main);
    margin-bottom: 20px;
}
.sub-title {
    font-size: 22px;
    margin: 40px 0 20px;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 10px;
    display: inline-block;
}
.sub-title-center {
    font-size: 24px;
    text-align: center;
    margin: 0 auto 20px;
    position: relative;
    display: block;
}
.sub-title-center::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--color-accent);
    margin: 15px auto 0;
}

/* プロフィール画像(強化) */
.profile-img-wrapper {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}
.profile-img {
    width: 160px !important;
    height: 160px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    border: 5px solid #fff !important;
    box-shadow:
        0 0 0 3px var(--color-accent),
        0 8px 20px rgba(0,0,0,0.15) !important;
    aspect-ratio: 1 / 1 !important;
    display: block !important;
}
@media (min-width: 768px) {
    .profile-img { 
        width: 180px !important; 
        height: 180px !important; 
    }
}
.profile-badge {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background-color: var(--color-main);
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    letter-spacing: 0.1em;
}

.greeting-profile {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(27,42,71,0.08);
    position: relative;
}
.greeting-profile h4 {
    font-size: 18px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-align: center;
}
.greeting-profile .name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0;
    text-align: center;
    font-family: var(--font-serif);
    color: var(--color-main);
}
.greeting-profile .name-read {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    font-family: var(--font-sans);
    margin-top: 4px;
    letter-spacing: 0.1em;
}
.profile-msg {
    margin-top: 18px;
    padding: 14px 16px;
    background-color: rgba(217,119,6,0.1);
    border-left: 3px solid var(--color-accent);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-main);
    font-weight: 500;
    border-radius: 0 6px 6px 0;
}
.profile-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.profile-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
.profile-list li::before {
    content: '■';
    color: var(--color-accent);
    margin-right: 8px;
    font-size: 10px;
}

/* 強みエリア */
.strength-area {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 60px;
    border: 2px solid var(--color-base);
}
.strength-lead {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}
.strength-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .strength-grid { grid-template-columns: repeat(3, 1fr); }
}
.strength-card {
    background: var(--color-base);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--color-accent);
}
.strength-title {
    font-size: 18px;
    margin-bottom: 5px;
}
.strength-sub {
    font-size: 14px;
    font-weight: bold;
    color: #666;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ccc;
}

/* お約束エリア */
.promise-area {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-main);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
}
.promise-area .sub-title-center { color: #fff; }
.promise-end {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-accent);
    margin-top: 30px;
}

/* =================================
   選ばれる理由(新規追加)
   ================================= */
#why .why-lead {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
    line-height: 1.9;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .why-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(27,42,71,0.08);
    border-top: 5px solid var(--color-accent);
    transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(27,42,71,0.15);
}
.why-num {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.85;
}
.why-card h3 {
    font-size: 19px;
    color: var(--color-main);
    margin-bottom: 14px;
    line-height: 1.5;
}
.why-card p {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
}
.why-cta {
    background: var(--color-main);
    color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.why-cta::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(217,119,6,0.4) 0%, transparent 70%);
    pointer-events: none;
}
.why-cta-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #fff;
    position: relative;
}
.why-cta .btn-primary {
    background-color: var(--color-accent);
    box-shadow: 0 6px 14px rgba(217,119,6,0.4);
    position: relative;
}
.why-cta .btn-primary:hover {
    background-color: #fff;
    color: var(--color-accent);
}

/* 4つの事業メニュー */
.service-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.service-item {
    background-color: var(--color-base);
    padding: 30px;
    border-radius: 8px;
    border-left: 6px solid var(--color-main);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: relative;
}
.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-main);
}
.highlight {
    color: var(--color-accent);
    font-weight: bold;
}
.price-tag {
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--color-main);
    background-color: rgba(217, 119, 6, 0.12);
    border: 1px solid rgba(217, 119, 6, 0.3);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 16px;
}

/* 点検チェックシートセクションの装飾 */
.checksheet-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}
.table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 8px;
}
.check-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    min-width: 600px;
}
.check-table th, .check-table td {
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    text-align: left;
    font-size: 16px;
}
.check-table th {
    background-color: var(--color-main);
    color: #fff;
    font-weight: bold;
}
.table-group-header {
    background-color: #edf2f7;
    font-weight: bold;
    color: var(--color-main);
}
.table-group-header td {
    padding: 10px 20px;
    font-size: 16px;
    border-top: 2px solid var(--color-main);
}
.cell-center {
    text-align: center !important;
    font-weight: bold;
    background-color: #f7fafc;
    width: 20%;
}
.checksheet-note {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 15px;
}

/* =================================
   ご相談の流れ(新規追加)
   ================================= */
.voice-lead {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
    line-height: 1.9;
}
.flow-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.flow-step {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(27,42,71,0.06);
    border-left: 5px solid var(--color-accent);
    position: relative;
}
@media (min-width: 768px) {
    .flow-step { padding: 30px 32px 30px 130px; }
}
.flow-num {
    display: inline-block;
    background-color: var(--color-main);
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
@media (min-width: 768px) {
    .flow-num {
        position: absolute;
        left: 30px;
        top: 32px;
        font-size: 14px;
    }
}
.flow-step h4 {
    font-size: 19px;
    color: var(--color-main);
    margin-bottom: 10px;
}
.flow-step p {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin: 0;
}

/* お問い合わせセクション */
.contact {
    background-color: var(--color-main);
    color: #fff;
    text-align: center;
}
.contact .section-title { color: #fff; }
.contact-text { margin-bottom: 40px; line-height: 1.9; }
.contact-info {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
}
.contact-info .tel {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
}
.contact-info .tel strong {
    font-size: 32px;
    color: var(--color-accent);
    display: block;
    margin-top: 5px;
    letter-spacing: 0.05em;
}
.contact-info .email {
    font-size: 16px;
    margin: 0;
}
.contact-info .email a { color: #fff; }
.contact-info .email a:hover { color: var(--color-accent); text-decoration: underline; }

.contact-form-wrapper {
    margin-top: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}
.form-required {
    color: #fff;
    background: #e33;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: middle;
    font-weight: normal;
}
.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    color: #333;
    font-size: 16px;
    font-family: var(--font-sans);
    background-color: #fff;
}
.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(217,119,6,0.15);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit { text-align: center; margin-top: 12px; }
.form-submit-btn {
    display: inline-block;
    padding: 15px 40px;
}

/* 会社概要テーブル */
.company-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.company-table th, .company-table td {
    padding: 20px;
    border: 1px solid #eee;
    text-align: left;
}
.company-table th {
    width: 30%;
    background-color: var(--color-main);
    color: #fff;
    font-weight: 500;
}
.company-table a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}
@media (max-width: 767px) {
    .company-table th, .company-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .company-table th { border-bottom: none; }
}

/* フッター */
.footer {
    background-color: #0b1526;
    color: #fff;
    padding: 40px 0 25px;
    font-size: 14px;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}
.footer-logo {
    font-family: var(--font-serif);
    font-size: 18px;
    color: #fff;
    margin: 0 0 8px;
    font-weight: 700;
}
.footer-addr {
    color: #cbd5e0;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}
.footer-tel-link {
    color: var(--color-accent);
    font-weight: 700;
}
.footer-tel-link:hover { text-decoration: underline; }
.footer-copy {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 18px;
    font-size: 12px;
    color: #cbd5e0;
    margin: 16px 0 0;
}

/* =================================
   スマホ用 固定CTAバー(新規追加)
   ================================= */
.fixed-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: #fff;
    box-shadow: 0 -4px 14px rgba(0,0,0,0.12);
    padding: 10px 8px;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, opacity 0.3s;
}
.fixed-cta.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
@media (max-width: 767px) {
    .fixed-cta { display: flex; }
}
.fixed-tel,
.fixed-mail {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
    border-radius: 8px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    box-sizing: border-box;
}
.fixed-tel { background-color: var(--color-accent); }
.fixed-mail { background-color: var(--color-main); }
.fixed-tel-icon,
.fixed-mail-icon { font-size: 20px; }
.fixed-tel-text small {
    display: block;
    font-size: 10px;
    font-weight: normal;
    opacity: 0.95;
}
.fixed-tel-text strong {
    display: block;
    font-size: 16px;
    letter-spacing: 0.05em;
}
.fixed-mail { font-size: 13px; line-height: 1.3; }

/* 固定CTAが出ている分はbody底に余白 */
@media (max-width: 767px) {
    body { padding-bottom: 76px; }
}

/* アニメーション用クラス */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* プロフィール画像の縦横比を強制固定 */
.profile-img-wrapper .profile-img {
    width: 180px !important;
    height: 180px !important;
    max-width: 180px !important;
    max-height: 180px !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 50% !important;
    aspect-ratio: 1 / 1 !important;
    display: block !important;
}