/* カラー定義 */
:root {
    --main-navy: #001A4F;
    --accent-orange: #F18E3F;
    --hover-navy: #000c2a;
    --text-color: #333;
    --light-bg: #f5f8ff;
}

/* 基本設定 */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Noto Sans JP', sans-serif; color: var(--text-color); line-height: 1.6; background-color: #fff; scroll-behavior: smooth; overflow-x: hidden; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--light-bg); }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 40px; color: var(--main-navy); position: relative; padding-bottom: 15px; }
.section-title::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--accent-orange); }

/* ボタン */
.btn-main { display: block; width: fit-content; margin: 20px auto; padding: 15px 40px; background: var(--accent-orange); color: #fff; text-decoration: none; border-radius: 30px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; font-size: 1.1rem; }
.btn-main:hover { background: var(--hover-navy); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.btn-small { padding: 8px 20px; background: var(--accent-orange); color: #fff; border-radius: 20px; text-decoration: none; font-size: 0.9rem; font-weight: bold; }

/* ヘッダー */
header { padding: 10px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; background: #fff; z-index: 100; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; width: auto; }
nav ul { list-style: none; display: flex; align-items: center; }
nav li { margin-left: 15px; }
nav a { text-decoration: none; color: var(--main-navy); font-weight: bold; font-size: 0.9rem; }

/* メインビジュアル */
.hero { background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1200&q=80'); background-size: cover; background-position: center; padding: 120px 0; text-align: center; }
.hero h1 { font-size: 2.5rem; margin-bottom: 20px; color: var(--main-navy); line-height: 1.4; }
.hero h1 span { color: var(--accent-orange); }
.hero p { font-size: 1.2rem; margin-bottom: 30px; color: #444; }

/* サービス内容（2列固定） */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.service-card { background: #fff; padding: 35px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; border: 1px solid #eee; }
.service-icon { font-size: 2.5rem; background: rgba(241,142,63,0.1); width: 80px; height: 80px; line-height: 80px; border-radius: 50%; margin: 0 auto 20px; }
.service-card h3 { margin-bottom: 15px; color: var(--main-navy); }
.service-list { list-style: none; text-align: left; display: inline-block; }
.service-list li { margin-bottom: 10px; position: relative; padding-left: 20px; font-size: 0.95rem; }
.service-list li::before { content: "●"; color: var(--accent-orange); position: absolute; left: 0; font-size: 0.7rem; }

/* 料金表 */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 20px; }
.price-card { background: #fff; padding: 40px 20px; border-radius: 12px; border: 1px solid #eee; text-align: center; display: flex; flex-direction: column; transition: 0.3s; }
.plan-name { font-size: 1.5rem; font-weight: bold; color: var(--main-navy); margin-bottom: 10px; }
.plan-copy { font-size: 0.85rem; color: #666; margin-bottom: 20px; height: 2.5em; }
.price { font-size: 2rem; font-weight: bold; border-bottom: 2px solid #eee; padding-bottom: 15px; margin-bottom: 20px; color: var(--main-navy); }
.price span { font-size: 0.9rem; }
.price-features { list-style: none; text-align: left; margin-bottom: 10px; }
.price-features li { margin-bottom: 12px; font-size: 0.95rem; padding-left: 25px; position: relative; }
.price-features li::before { content: "✔"; color: var(--accent-orange); position: absolute; left: 0; font-weight: bold; }
.price-card.popular { border: 2px solid var(--accent-orange); transform: scale(1.05); z-index: 2; box-shadow: 0 10px 30px rgba(241,142,63,0.1); }
.label { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent-orange); color: #fff; padding: 4px 20px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
.price-card.spot { background: #fafafa; border-style: dashed; }
.swipe-notice { display: none; text-align: center; color: #888; font-size: 0.8rem; margin-top: 20px; }

/* ご利用の流れ */
.flow-list { max-width: 700px; margin: 0 auto; }
.flow-item { margin-bottom: 30px; display: flex; align-items: center; background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.flow-item span { background: var(--main-navy); color: #fff; width: 40px; height: 40px; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-right: 20px; flex-shrink: 0; font-weight: bold; font-size: 1.2rem; }
.flow-item strong { color: var(--main-navy); margin-right: 10px; font-size: 1.1rem; }

/* よくある質問 */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 20px; background: #fff; padding: 25px; border-radius: 10px; }
.faq-item strong { color: var(--main-navy); display: block; margin-bottom: 10px; font-size: 1.1rem; }
.faq-item p { color: #555; padding-left: 10px; border-left: 3px solid var(--accent-orange); }

/* フォーム */
.contact-form { max-width: 650px; margin: 0 auto; background: #f9f9f9; padding: 40px; border-radius: 15px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; font-size: 1rem; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent-orange); outline: none; }

/* フッター */
footer { background: var(--main-navy); color: #fff; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 40px; }
footer h4 { border-left: 4px solid var(--accent-orange); padding-left: 10px; margin-bottom: 20px; }
footer p { opacity: 0.8; margin-bottom: 10px; }
footer a { color: #fff; text-decoration: none; }
footer a:hover { color: var(--accent-orange); }
.copyright { text-align: center; font-size: 0.8rem; opacity: 0.5; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }

/* レスポンシブ */
@media (max-width: 900px) {
    .price-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 20px 5px 40px; }
    .price-card { min-width: 280px; flex: 0 0 280px; scroll-snap-align: center; transform: none !important; margin: 0 10px; }
    .swipe-notice { display: block; }
}
@media (max-width: 600px) {
    .service-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
    .contact-form { padding: 20px; }
}

/* Googleフォーム埋め込みの調整（幅広版） */
.contact-embed {
    max-width: 850px; /* ここを 700px から 850px に広げました */
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-embed iframe {
    width: 100%; /* 親要素（850px）いっぱいに広げる */
    border: none;
    display: block;
}