/*
Theme Name:   lightning Child Theme
Template:     lightning
Description:  lightningの子テーマです
Author:       Akihiko Harada
Version:      1.0.0
*/

.site-body{
	padding:0;
}
.breadcrumb-list {
    display: none !important;
}
.page-header {
    display: none !important;
}

.global-nav-list > li.header-contact-btn > a {
    background-color: #14A3A1; 
    color: #ffffff !important;
    border-radius: 4px; 
    padding: 8px 24px !important; 
    margin-left: 10px;
    transition: opacity 0.3s ease;
	display: flex;
    align-items: center;
    justify-content: center;
}

/* ボタンのホバーアクション */
.global-nav-list > li.header-contact-btn > a:hover {
    background-color: #14A3A1;
    opacity: 0.8;
}
.global-nav-list {
    display: flex !important;
    align-items: center !important; 
}


.global-nav-list > li {
    display: flex;
    align-items: center;
}




/* FV */

.hero-section {
    min-height: 600px; 
    padding: 0 40px !important; 
}

.hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    color: #ffffff;
    font-size: 64px !important; 
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.05em; 
    margin-bottom: 24px !important;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

.hero-lead {
    color: #ffffff;
    font-size: 16px !important;
    line-height: 1.8; 
    letter-spacing: 0.05em;
    margin-bottom: 40px !important;
    text-shadow: 0px 2px 5px rgba(0,0,0,0.5);
}
.hero-buttons-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-inner .hero-buttons-wrapper .hero-btn a {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none !important; /* デフォルトの下線を強制解除 */
    padding: 16px 48px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease;
    box-sizing: border-box; /* 枠線を含めたサイズ計算に統一 */
}

/* 左：プライマリボタン（青緑）強制適用 */
.hero-inner .hero-buttons-wrapper .hero-btn-primary a {
    background-color: #14A3A1 !important;
    color: #ffffff !important;
    border: 1px solid #14A3A1 !important;
}
.hero-inner .hero-buttons-wrapper .hero-btn-primary a:hover {
    background-color: #0f7a79 !important;
    border-color: #0f7a79 !important;
}

/* 右：セカンダリボタン（透過＋白枠）強制適用 */
.hero-inner .hero-buttons-wrapper .hero-btn-secondary a {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
}
.hero-inner .hero-buttons-wrapper .hero-btn-secondary a:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

/* --- スマホ表示用（レスポンシブ） --- */
@media screen and (max-width: 768px) {
    .hero-buttons-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .hero-inner .hero-buttons-wrapper .hero-btn, 
    .hero-inner .hero-buttons-wrapper .hero-btn a {
        width: 100%;
        display: block;
    }
	.hero-title {
    font-size: 40px !important; 
    margin-bottom: 12px !important;
}
	.hero-lead {
    font-size: 14px !important;
    line-height: 1.6; 
    letter-spacing: 0.02em;
    margin-bottom: 20px !important;
    text-shadow: 0px 2px 2px rgba(0,0,0,0.5);
}
}

/* --- フォーム全体の枠（カード風） --- */
/* ※フォームを囲む要素に class="custom-contact-form" などを付けている想定です */
.custom-contact-form {
   background-color: #f3f3f3;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    margin: 40px auto;
}

/* --- 入力欄の基本スタイル --- */
.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"],
.custom-contact-form select,
.custom-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 12px; /* ★ここで各項目の間隔を詰めています（お好みで調整） */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 15px;
    color: #333;
}

/* プレースホルダー（入力欄の中の文字）の色 */
.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
    color: #888;
}

/* --- 郵便番号とボタンの横並び --- */
.zip-code-row {
    display: flex;
    gap: 10px; /* 郵便番号とボタンの隙間 */
    margin-bottom: 12px;
}
.zip-code-row input {
    margin-bottom: 0; /* flex内の下部余白をリセット */
}
.address-search-btn {
    background-color: #8f8f8f; /* グレーのボタン */
    color: #ffffff;
    border: none;
    padding: 0 20px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap; /* ボタンの文字の折り返しを防ぐ */
}

span.req {
    background: #14A3A0;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    margin-right: 10px;
}

span.any {
    background: #929292;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    margin-right: 10px;
}

/* --- 送信ボタン --- */
.custom-contact-form input[type="submit"],
.custom-contact-form .submit-btn {
    width: 100%;
    background-color: #14A3A1; /* 画像に近いオレンジ色 */
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}
.custom-contact-form input[type="submit"]:hover,
.custom-contact-form .submit-btn:hover {
    opacity: 0.8; /* マウスオーバーで少し薄くする */
}