﻿@charset "UTF-8";

/* ==========================================
   お問い合わせページ（全幅Webページ / TOPテイスト）
   ========================================== */

/* 全体背景（TOPページ共通のドット背景アニメーション） */
body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    background-color: #ffd4d7;
    color: #231815;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-image:
        radial-gradient(#fff0f1 35%, transparent 35%),
        radial-gradient(#fff0f1 35%, transparent 35%);
    background-size: 200px 200px;
    background-position: 0 0, 100px 100px;
    animation: dot-bg-flow 20s linear infinite;
}

@keyframes dot-bg-flow {
    0% {
        background-position: 0 0, 100px 100px;
    }
    100% {
        background-position: -200px -200px, -100px -100px;
    }
}

/* サイトヘッダー */
.site-header {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.header-logo img {
    height: 75px;
    width: auto;
    display: block;
}

.site-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.site-nav a {
    text-decoration: none;
    color: #231815;
    font-weight: 700;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
    color: #ea6182;
}

/* メインコンテンツ容器 */
.contact-main {
    max-width: 1100px;
    margin: 40px auto 80px;
    padding: 0 20px;
    box-sizing: border-box;
}

/* タイトルエリア */
.contact-title-group {
    text-align: center;
    margin-bottom: 35px;
}

.contact-en-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ea6182;
    letter-spacing: 0.15em;
    margin: 0 0 8px 0;
}

.contact-jp-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #231815;
    margin: 0;
    letter-spacing: 0.08em;
}

/* リード文章 */
.contact-intro-text {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 2.0;
    color: #333;
    font-weight: 500;
}

.contact-intro-text p {
    margin: 8px 0;
}

/* 3つの連絡窓口（PCでゆったり3カラム） */
.contact-methods-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 3px solid #f6b5c0;
    border-radius: 24px;
    padding: 40px 20px;
    box-shadow: 0 12px 30px rgba(234, 97, 130, 0.12);
}

.contact-method-item {
    flex: 1;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-method-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 2px;
    background-color: #f6b5c0;
}

.method-icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea6182;
}

.method-icon-box svg {
    width: 44px;
    height: 44px;
    fill: currentColor;
}

.method-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
}

.method-value {
    font-size: 1.35rem;
    font-weight: 900;
    color: #ea6182;
    text-decoration: none;
    word-break: break-all;
}

.method-value:hover {
    opacity: 0.8;
}

/* 下部アクションボタン */
.contact-action-container {
    text-align: center;
    margin-top: 40px;
}

.contact-form-trigger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #ea6182;
    border: 3px solid #ea6182;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(234, 97, 130, 0.2);
    transition: all 0.3s ease;
}

.contact-form-trigger-btn:hover {
    background: #ea6182;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(234, 97, 130, 0.35);
}

.contact-form-trigger-btn .btn-arrow {
    margin-left: 12px;
    font-size: 1.2rem;
}

/* フォームセクション */
.contact-form-section {
    max-width: 800px;
    margin: 60px auto 0;
    background: #fff;
    border: 3px solid #f6b5c0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: #ea6182;
}

.contact-form-group {
    margin-bottom: 24px;
}

.contact-form-group label {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    color: #333;
}

.contact-form-group label .required-badge {
    background: #ea6182;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1.05rem;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #ea6182;
    outline: none;
}

.contact-submit-btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 35px auto 0;
    padding: 16px;
    background: #ea6182;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
}

.contact-submit-btn:hover {
    background: #d44e6f;
    transform: translateY(-2px);
}

/* フッター */
.site-footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid rgba(234, 97, 130, 0.2);
}

/* レスポンシブ対応 (768px以下) */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .contact-jp-title {
        font-size: 2.0rem;
    }

    .contact-methods-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .contact-method-item:not(:last-child)::after {
        display: none;
    }

    .contact-method-item {
        border-bottom: 1px dashed #f6b5c0;
        padding: 25px 0;
    }

    .contact-method-item:last-child {
        border-bottom: none;
    }

    .method-value {
        font-size: 1.15rem;
    }

    .contact-form-section {
        padding: 25px 18px;
    }
}

