@charset "UTF-8";

@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";



/***********************************************
 *                  全体                   *
 ***********************************************/


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



/* スマホ表示時に改行 */
.sma {
    display: none;
}

@media screen and (max-width: 768px) {
    .sma {
        display: block;
    }
}

/* PC非表示 */

@media screen and (max-width: 768px) {
  .br-hide {
    display: none;
  }
}



/* マージンゼロのセクション */
.zero_section {
    margin-top: 0 !important;
    margin-left: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* マージン小のセクション */
.title_section {
    margin-top: 0px !important;
    margin-left: 0 !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* 文字カラー白のセクション */
.white_sec{
   color:#fff;

}


/* ハンバーガーボタン */
.c-hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #004488;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.c-hamburger-btn__bars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.c-hamburger-btn__bar {
    width: 30px;
    height: 2px;
    background-color: white !important;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 4px auto;
}

.c-hamburger-btn__label {
    font-size: 14px;
    font-weight: bold;
    margin-top: 8px;
    text-align: center;
    color: white;
}





/* モバイルフッター */

.p-footer-sticky-nav{
    background-color: transparent !important;
    box-shadow: none !important;
}

.c-navbar__item {
  margin: 0 2px;
}

/* ベーシックタイトル */

.marine_basic_title {
    --_font-size-level: 4;
    font-size: var(--_fluid-font-size);
    line-height: var(--_line-height);
}

/* タイトルキャプション */
.title_caption{
    margin-top: 0px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    
}
@media (max-width: 768px) {
    .title_caption{
       margin-bottom: 30px;
    }
}

 


/* txt_section内のpタグ - デスクトップは中央揃え */

.txt_section p {
    text-align: center;
    margin: 0 0 1em 0;
    line-height: 1.8;
}

/* モバイル表示 - 左揃えに変更 */
@media (max-width: 768px) {
    .txt_section p {
        text-align: left;
    }
}


/***********************************************
 *          ヒーローセクション                  *
 ***********************************************/

.hero_section{
    height: 90vh;
}

.hero_img{
    width: 600px;
}
@media (max-width: 768px) {
    .hero_img{
        width: 90vw;
}
    
}

/***********************************************
 *          CTAセクション                  *
 ***********************************************/

         /* banzai_title_wrapperのスタイル */
        .banzai_title_wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            gap: 40px;
            position: relative;
        }

        /* スマホ用画像コンテナ（PC表示では非表示） */
        .banzai_images_sp {
            display: none;
        }

        /* PC表示用の左右画像 */
        .banzai_deco_left,
        .banzai_deco_right {
            width: 200px;
            flex-shrink: 0;
        }

        .banzai_deco_left img,
        .banzai_deco_right img {
            width: 100%;
            height: auto;
            display: block;
        }

        .banzai_title {
            text-align: center;
            flex: 0 0 auto;
        }

        .banzai_title h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1A1A1A;
            margin: 0;
            padding: 20px 40px;
            position: relative;
            display: inline-block;
            line-height: 1.5;
        }

        .banzai_title h2::before,
        .banzai_title h2::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 2px;
            height: 70%;
            background-color: #1A1A1A;
        }

        .banzai_title h2::before {
            left: 0;
            transform: translateY(-50%) rotate(-25deg);
        }

        .banzai_title h2::after {
            right: 0;
            transform: translateY(-50%) rotate(25deg);
        }

        /* PC表示用の改行を非表示 */
        .banzai_title h2 br.sp-only {
            display: none;
        }

        /* スマホ表示 */
        @media (max-width: 768px) {
            .banzai_title_wrapper {
                flex-direction: column;
                margin: 40px auto 20px;
                gap: 20px;
            }

            /* PC用の左右画像を非表示 */
            .banzai_deco_left,
            .banzai_deco_right {
                display: none;
            }

            /* スマホ用画像コンテナを表示 */
            .banzai_images_sp {
                display: flex;
                justify-content: center;
                gap: 20px;
                width: 100%;
                margin-bottom: 10px;
            }

            .banzai_image_left,
            .banzai_image_right {
                width: 180px;
                flex-shrink: 0;
            }

            .banzai_image_left img,
            .banzai_image_right img {
                width: 100%;
                height: auto;
                display: block;
            }

            .banzai_title h2 {
                font-size: 20px;
                font-weight: 700;
                padding: 15px 30px;
                line-height: 1.6;
            }

            .banzai_title h2 br.sp-only {
                display: block;
            }

            .banzai_title h2::before,
            .banzai_title h2::after {
                height: 60%;
            }
        }

        @media (max-width: 480px) {
            .banzai_title_wrapper {
                margin: 30px auto 15px;
            }

            .banzai_images_sp {
                gap: 15px;
            }

            .banzai_image_left,
            .banzai_image_right {
                width: 150px;
            }

            .banzai_title h2 {
                font-size: 18px;
                padding: 12px 25px;
            }
        }

        /* 既存のボタンスタイル */
        .contact-button-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: stretch;
            font-family: 'Noto Sans JP', sans-serif;
        }

        /* 共通ボタンスタイル */
        .contact-button-item {
            flex: 1;
            max-width: 380px;
            padding: 15px 25px;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            box-sizing: border-box;
        }

        .contact-button-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        /* 電話ボタン（白） */
        .contact-phone-button {
            background-color: #ffffff;
            border: 2px solid #e0e0e0;
            justify-content: flex-start;
        }

        .contact-phone-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-phone-icon img {
            width: 45px;
            height: 45px;
        }

        .contact-phone-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0px;
            line-height: 1.3;
            flex: 1;
        }

        .contact-phone-label {
            font-size: 15px;
            color: #1A1A1A;
            font-weight: 400;
            margin: 0;
        }

        .contact-phone-number {
            font-size: 30px;
            font-weight: 900;
            color: #1A1A1A;
            letter-spacing: 1px;
            margin: 0;
        }

        .contact-phone-hours {
            font-size: 12px;
            color: #1A1A1A;
            font-weight: 400;
            margin: 0;
        }

        /* メールボタン（青 #0099d9） */
        .contact-mail-button {
            background-color: #0099d9;
            border: 1px solid #004488;
            justify-content: center;
        }

        .contact-mail-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-mail-icon img {
            width: 40px;
            height: 40px;
            filter: brightness(0) invert(1);
        }

        .contact-mail-text {
            font-size: 26px;
            font-weight: 900;
            color: white;
            letter-spacing: 0.5px;
            margin: 0;
            line-height: 1;
        }

        /* 店舗ボタン（緑 #b6efd5） */
        .contact-store-button {
            background-color: #b6efd5;
            border: 1px solid #4b9672;
            justify-content: center;
        }

        .contact-store-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-store-icon img {
            width: 45px;
            height: 45px;
        }

        .contact-store-text {
            font-size: 24px;
            font-weight: 900;
            color: #004488;
            letter-spacing: 0.5px;
            margin: 0;
            line-height: 1;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .contact-button-wrapper {
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }

            .contact-button-item {
                max-width: 95%;
                width: 95%;
                min-height: 90px;
                padding: 20px 25px 20px 50px;
                justify-content: flex-start;
                gap: 18px;
            }

            .contact-phone-button {
                justify-content: flex-start;
            }

            .contact-phone-icon,
            .contact-mail-icon,
            .contact-store-icon {
                width: 55px;
                height: 55px;
                flex-shrink: 0;
            }

            .contact-phone-icon img {
                width: 48px;
                height: 48px;
            }

            .contact-mail-icon img {
                width: 45px;
                height: 45px;
            }

            .contact-store-icon img {
                width: 48px;
                height: 48px;
            }

            .contact-phone-content {
                align-items: flex-start;
                flex: 1;
                justify-content: center;
            }

            .contact-phone-label {
                font-size: 13px;
                line-height: 1.2;
            }

            .contact-phone-number {
                font-size: 24px;
                line-height: 1.2;
            }

            .contact-phone-hours {
                font-size: 11px;
                line-height: 1.2;
            }

            .contact-mail-text,
            .contact-store-text {
                font-size: 22px;
                line-height: 1.2;
                flex: 1;
                display: flex;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .contact-button-item {
                min-height: 85px;
                padding: 18px 20px 18px 40px;
                gap: 15px;
            }

            .contact-phone-icon,
            .contact-mail-icon,
            .contact-store-icon {
                width: 50px;
                height: 50px;
            }

            .contact-phone-icon img {
                width: 44px;
                height: 44px;
            }

            .contact-mail-icon img {
                width: 42px;
                height: 42px;
            }

            .contact-store-icon img {
                width: 44px;
                height: 44px;
            }

            .contact-phone-label {
                font-size: 12px;
            }

            .contact-phone-number {
                font-size: 24px;
            }

            .contact-phone-hours {
                font-size: 10px;
            }

            .contact-mail-text,
            .contact-store-text {
                font-size: 20px;
            }
        }

/***********************************************
 *          CTAセクション                  *
 ***********************************************/

.staff_img{
        margin-bottom: 20px !important;
}

@media (max-width: 768px) {
        .staff_img{
             width: 60vw !important;
         }
}

}