@charset "UTF-8";


/*-----------------------------------------------------------------------------------*/
/*  TABLE OF CONTENTS
/*-----------------------------------------------------------------------------------*/
/*
/*  1 - Base（ベース）
/*  2 - Common（共通、ユーティリティ）
/*  4 - Header（ヘッダー）
/*  1_1 - TOP MV（メインビジュアル）
/*  1_2 - TOP MENU
/*
/*-----------------------------------------------------------------------------------*/


/*-----------------------------------------------------------------------------------*/
/*  1 - Base
/*-----------------------------------------------------------------------------------*/

*,
::before,
::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}


html {
    display: block;
    font-size: 62.5%;
    width: 100%;
    height: 100%;
    /* height: -webkit-fill-available; */
    /* ダブルタップ時の拡大停止 */
    touch-action: manipulation;
}

body {
    /* min-height: 100vh;
    /* mobile viewport bug fix */
    /* min-height: -webkit-fill-available; */
    /* スマホ横揺れ対策 */
    overflow-x: hidden;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3',
        Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    /*Chrome,Safari*/
    -ms-text-size-adjust: 100%;
    /*EgdeMobile*/
    -moz-text-size-adjust: 100%;
    /*firefox*/

}

/* モーダル、ドロワーメニュー表示時の背景スクロール対策 */
.body-scoll-stop {
    height: 100vh;
    overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
p {
    padding: 0;
    margin: 0;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

nav li::before {
    content: none;
}

a {
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

a:hover {
    cursor: pointer;
}

button {
    padding: 0;
    border: 0;
}

button:hover {
    cursor: pointer;
}

figure,
.wp-block-image {
    display: block;
    padding: 0;
    margin: 0;
}

picture {
    display: block;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    /* 画像保存対策 */
    pointer-events: none;
    user-select: none;
}

/* フォーカス時のアウトライン削除 */
*:focus {
    outline: none !important;
}


/* スマホのみ電話番号リンク有効 */
/* @media(min-width: 768px){
    a[href^="tel:"]{
        pointer-events: none;
    }
} */

:root {
    --color-primary: #004c9e;
    --color-red: #ff0210;
    --color-line: #3bc74b;
    --color-gray: #797979;
    --color-lightgray: #f8f8f8;
}


/*-----------------------------------------------------------------------------------*/
/*  2 - Common(共通)
/*-----------------------------------------------------------------------------------*/

/*========= ※ クラス =============*/
.kome-span {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
}

/*========= 改行用クラス =============*/
/* 改行スマホのみ */
.br-sp {
    display: block;
}

/* 改行タブレットのみ */
.br-tab {
    display: none;
}

/* 改行PCのみ */
.br-pc {
    display: none;
}

main {
    padding-top: 61px;
}

@media screen and (min-width:768px),
print {

    main {
        padding-top: 90px;
    }

    /* 改行スマホのみ */
    .br-sp {
        display: none;
    }

    /* 改行PCのみ */
    .br-pc {
        display: block;
    }
}





/*========= section 共通スタイル =============*/

/* セクション コンテナ */
.section__container {
    padding: 95px 0;
}

/* セクション インナー */
.section__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* セクション インナー小 */
.section__small-inner {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

/* セクション アイコン */
.section__ico {
    display: flex;
    justify-content: center;
    margin: 0 auto 32px auto;
}

/* セクション 見出し */
.section__header {
    padding: 50px 0 45px 0;
}

.section__page-header {
    padding: 159px 0 92px 0;
}

.section__heading {
    margin: 0 0 14px 0;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3',
        Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
    /* font-size: clamp(3rem, calc(3rem + ((1vw - 0.36rem) * 2.5641)), 4rem); */
    font-size: 32px;
    min-height: 0vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1rem;
    color: var(--color-primary);
}

.section__sub-heading {
    margin: 0 0 0 0;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3',
        Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
    /* font-size: clamp(3rem, calc(3rem + ((1vw - 0.36rem) * 2.5641)), 4rem); */
    font-size: 16px;
    min-height: 0vw;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1rem;
    color: var(--color-primary);
}

.section__content figure {
    margin: 0 0 25px 0;
}

.section__content h2 {
    margin: 20px 0;
}

.section__content h3, .section__content h4, .section__content h5 {
    margin: 20px 0;
}

.section__content p {
    margin: 16px 0;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3',
        Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1rem;
    color: #333333;
}

.section__content a {
    color: #0068B7;
    text-decoration: underline;
}

.section__content a:hover {
    opacity: 0.7;
}

.section__content ul {
    list-style: disc;
    padding: revert;
}

.section__content li {
    margin: 0 0 5px 0;
}

.section__content ol {
    list-style: decimal;
    padding: revert;
}


/* 基本本文 */
.bacic__text {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3',
        Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1rem;
    color: #333333;
}


/* ---------- 小PC・タブ対応 ---------- */
@media screen and (max-width:1350px) {
    .section__header {
        padding: 35px 15px;
    }
    .section__page-header {
        padding: 100px 15px 35px 15px;
    }
    .section__container {
        padding: 60px 15px;
    }
}


/* ---------- スマホ対応 ---------- */
@media screen and (max-width:768px) {
    .section__page-header {
        padding: 35px 15px;
    }

    /* セクション コンテナ */
    .section__container {
        padding: 60px 15px;
    }

    /* セクション アイコン */
    .section__ico {
        margin: 0 auto 20px auto;
    }

    /* セクション 見出し */
    .section__heading {
        margin: 0 0 5px 0;
        font-size: 2.4rem;
        font-weight: 600;
        line-height: 1.2;
    }

    /* 基本本文 */
    .bacic__text {
        font-size: 1.6rem;
    }
}







/*-----------------------------------------------------------------------------------*/
/*  4 - Header
/*-----------------------------------------------------------------------------------*/

.header {
    width: 100%;
    background-color: white;
    position: fixed;
    z-index: 1000;
}

.header__top {
    width: 100%;
    height: 18px;
    background-color: var(--color-lightgray);
    display: flex;
    align-items: center;
}

.header__top-text {
    font-size: 7px;
    color: var(--color-gray);
    margin: 0 0 0 35px;
}

.header__container {
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
}

.header__nav-box {
    flex-grow: 1;
    height: 100%;
    display: flex;
    justify-content: space-between;
}


/* ヘッダーロゴ */
.header__logo-box {
    margin: 8px auto 8px 35px;
}

.header__logo-link {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.header__logo {
    margin: 0 45px 0 0;
}

/* ヘッダーロゴ画像 */
.header__logo-img {
    height: 100%;
}

.header__logo-text {
    font-size: 16px;
    font-weight: bold;
    color: var(--color-primary);
    padding: 0 0 0 10px;
}

.header__logotext-br {
    display: none;
}


/* ヘッダー問い合わせ*/
.header__contact-box {
    background-color: var(--color-red);
    width: 200px;
    height: 100%;
    text-align: center;
}

.header__contact-box-loan {
    background-color: #004C9E;
}

.header__contact-box:hover {
    opacity: 0.7;
}

.header__contact-link {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__contact-img {
    width: 29px;
    margin: 0 10px 0 0;
}

.header__contact-img-line {
    width: 33px;
}

.header__contact-text {
    font-size: 18px;
    font-weight: bold;
    color: white;
    line-height: 1.3;
}

/* ヘッダーキャッチ */
.header__catch {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3',
        Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0rem;
}


/* ハンバーガー ボタン */
.header__btn-box {
    display: none;
}

/* 電話 */
.header__tel-list {
    display: flex;
    align-items: center;
    margin: 0 15px 0 0;
}

.header__tel-item:not(:last-child) {
    margin: 0 15px 0 0;
}

.header__tel-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    padding: 10px 0;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.header__tel-link:hover {
    opacity: 0.7;
}

.header__tel-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0 0 0;
    font-size: 20px;
    font-weight: bold;
    color: var(--color-primary);
}

.header__tel-text span{
    margin: 0 0 2px 0;
    display: block;
    font-size: 11px;
    letter-spacing: 0;
    font-weight: bold;
}

.header__tel-img {
    display: block;
    width: 33px;
    height: 33px;
    margin: 0 12px 0 0;
}

.header__tel-date {
    margin: 4px 28px 0 auto;
    font-size: 1.2rem;
    text-align: end;
}

.header__mail-link {
    width: 210px;
    height: 80px;
    margin: 0 0 10px 20px;
    border-radius: 0 0 30px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1C96A7;
    font-size: 1.8rem;
    color: #ffffff;
}

.header__mail-ico {
    display: block;
    width: 22.5px;
    height: 16px;
    margin: 2px 8px 0 0;
    transition: all 0.4s ease;
}

.header__mail-link:hover {
    color: #000000;
}

.header__mail-link:hover .header__mail-ico path {
    fill: #000000;
}


/* グローバルナビ nav */
.header__gnav {
    /* margin: auto 10px 15px 0; */
    margin: auto auto 15px auto;
}

/* グローバルナビ ul */
.header__gnav-list {
    /* max-width: 1080px;
    margin: 0 auto; */
    display: flex;
}

/* グローバルナビ li */
.header__gnav-item {
    /* width: 20%;
    height: 60px; */
    padding: 0 25px;
}

/* .header__gnav-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
} */

/* グローバルナビ a */
.header__gnav-link {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1rem;
    color: #000;

}
/* .header__gnav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1rem;
    color: #000;

} */

.header__gnav-link:hover {
    opacity: 0.7;
}

.header__gnav-sp {
    display: none;
}


/* ---------- 小PC・タブ対応 ---------- */
@media screen and (max-width:1500px) {
    .header__gnav-item {
        padding: 0 20px;
    }
    .header__tel-link {
        font-size: 23px;
    }
}
@media screen and (max-width:1350px) {
    
    /* .header__gnav {
        margin-right: 100px;
    } */

    .header__logotext-br {
        display: block;
    }

    .header__top-text {
        margin: 0 0 0 8px;
    }

    .header__logo-box {
        margin: 8px auto 8px 8px;
    }

    .header__gnav-item {
        padding: 0 15px;
    }
    .header__tel-link {
        font-size: 20px;
    }
    .header__contact-box {
        width: 90px;
    }
    .header__contact-link {
        flex-direction: column;
    }
    .header__contact-img {
        margin: 0 0 10px 0;
    }
    .header__contact-text {
        font-size: 12px;
    }
}

@media screen and (max-width:1050px) {

    .header__logo-link {
        flex-direction: column;
    }

    .header__logo-img {
        height: 40px;
    }
    .header__logo-text {
        font-size: 12px;
        padding: 0;
    }
    .header__logotext-br {
        display: none;
    }

    .header__gnav-item {
        padding: 0 10px;
    }
    .header__tel-text {
        display: none;
    }
    .header__tel-br {
        display: block;
    }

}


/* ---------- スマホ対応 ---------- */
@media screen and (max-width:768px) {

    .header__top {
        display: none;
    }

    .header__container {
        height: 61px;
        padding: 10px 10px 6px 10px;
    }

    /* ヘッダーロゴ box */
    .header__logo {
        margin: 0;
    }

    /* ヘッダーロゴ box */
    .header__logo-box {
        margin: 0 35px 0 0;
    }

    /* ヘッダーキャッチ */
    /* .header__catch {
        display: none;
    } */

    /* ヘッダーロゴ画像 */
    .header__logo-img {
        width: auto;
    }
    .header__logo-text {
        display: none;
    }
    .header__tel-list {
        display: none;
    }

    .header__contact-box {
        display: none;
    }



    /* ハンバーガー ボタン ボックス */
    .header__btn-box {
        display: block;
        width: 35px;
        height: 30px;
        position: absolute;
        top: 13px;
        right: 10px;
        z-index: 2000;
    }

    /* ハンバーガー ボタン */
    .header__btn {
        display: block;
        width: 35px;
        height: 30px;
        border: 0;
        position: relative;
        background-color: transparent;
    }

    /* ボタン線（中心） */
    .header__btn-line {
        position: absolute;
        top: 16px;
        left: 0%;
        display: inline-block;
        width: 100%;
        height: 2px;
        background-color: #000000;
        transition: all 0.2s ease-in-out;
    }

    /* ボタン線（上下） */
    .header__btn-line::before,
    .header__btn-line::after {
        position: absolute;
        left: 0%;
        display: inline-block;
        width: 100%;
        height: 2px;
        content: '';
        background-color: #000000;
        transition: all 0.3s ease-in-out;
    }

    .header__btn-line::before {
        top: -11px;
    }

    .header__btn-line::after {
        bottom: -11px;
    }

    .header__btn--open .header__btn-line {
        height: 0;
        background: transparent;
    }

    .header__btn--open .header__btn-line::before {
        top: 0;
        transform: rotate(45deg);
        background-color: #000000;
    }

    .header__btn--open .header__btn-line::after {
        top: 0;
        transform: rotate(-45deg);
        background-color: #000000;
    }

    /* コンタクトメニュー */
    .header__contact-list {
        display: none;
    }

    /* グローバルナビ nav  */
    .header__gnav {
        display: none;
    }

    /* グローバルナビ nav メニューオープン */
    .header__gnav--open {
        display: block;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        padding: 86px 10px 55px 10px;
        background-color: rgba(0, 97, 211, .6);
    }
    /* .header__gnav--open {
        display: block;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        padding: 86px 10px 55px 10px;
        background-color: #FFEC00;
    } */

    /* グローバルナビ ul */
    .header__gnav-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
    }

    /* グローバルナビ li */
    .header__gnav-item {
        width: 100%;
        height: auto;
        padding: 0;
        border-top: 1px solid #ffffff;

    }

    .header__gnav-item:not(:last-child) {
        border-right: 0;
    }

    .header__gnav-item:last-child {
        border-bottom: 1px solid #ffffff;
    }
    .header__gnav-sp {
        display: block;
    }

    /* グローバルナビ a */
    .header__gnav-link {
        display: block;
        width: 100%;
        padding: 25px 35px;
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.1rem;
        color: white;
        text-align: center;
        position: relative;
    }

}




/*-----------------------------------------------------------------------------------*/
/*  1_1 - TOP MV
/*-----------------------------------------------------------------------------------*/

/* ---------- swiper ---------- */
.top-mv__swiper-container {
    position: relative;
    margin-inline: auto;
}
.top-mv__swiper {
    /*スライダーの幅と高さを調整*/
    /* width: min(100%, 600px); */
    width: 100%;
    height: 666px;
}

.top-mv__swiper-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 矢印 */
.top-mv__swiper-button-prev,
.top-mv__swiper-button-next {
    width: 40px;
    height: 80px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}
.top-mv__swiper-button-prev {
    left: 25px;
}
.top-mv__swiper-button-next {
    right: 25px;
}
.top-mv__swiper-button-prev::after,
.top-mv__swiper-button-next::after {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.top-mv__swiper-button-prev::after {
    background-image: url(../images/arrow-left.png);
}
.top-mv__swiper-button-next::after {
    background-image: url(../images/arrow-right.png);
}

/* ページネーション */
.top-mv__swiper-container .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -40px;
}
.top-mv__swiper-container .swiper-pagination-bullet {
    background-color: #C7C7C7;
    height: 13px;
    width: 13px;
    margin: 0 6px !important;
    border-radius: 0;
    opacity: 1;
}
.top-mv__swiper-container .swiper-pagination-bullet-active {
    background-color: #707070;
}


/* ---------- スマホ対応 ---------- */
@media screen and (max-width:768px) {
    .top-mv {
        padding: 0;
    }
    .top-mv__swiper {
        height: 250px;
    }
    .top-mv__swiper-button-prev,
    .top-mv__swiper-button-next {
        width: 20px;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
    }
    .top-mv__swiper-button-prev {
        left: 10px;
    }
    .top-mv__swiper-button-next {
        right: 10px;
    }
}


/*-----------------------------------------------------------------------------------*/
/*  1_2 - TOP MENU
/*-----------------------------------------------------------------------------------*/
.top-menu {
    margin: 89px 0 0 0;
}
.top-menu__heading {
    position: relative;
    width: 100%;
    height: 520px;
}
.top-menu__heading::after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 127px;
    z-index: -10;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
}
.top-menu__heading-border {
    width: min(1480px, 100%);
    height: 100%;
    border: 1px solid var(--color-primary);
    background-color: white;
}

.top-menu__heading-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.top-menu__heading-box {
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 47px 0 70px 0;
}

.top-menu__heading-textbox {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.top-menu__heading-title {
    font-size: 111px;
    color: var(--color-primary);
    line-height: 1.15;
}
.top-menu__red {
    color: var(--color-red);
}
.top-menu__heading-subtitle {
    font-size: 34px;
    font-weight: 600;
}
.top-menu__heading-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}

.top-menu__heading-imgbox {
    height: 100%;
    margin: 0 0 0 -50px;
}

.top-menu__heading-img {
    height: 100%;
}

.top-menu__menu {
    background-color: var(--color-primary);
    padding: 13px 0 0 0;
}

.top-menu__menu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.top-menu__menu-link {
    display: block;
    width: min(200px, 50%);
}

.top-menu__menu-img {
    /* width: 200px; */
    width: 100%;
}

/* ---------- 小PC・タブ対応 ---------- */
@media screen and (max-width:1050px) {
    .top-menu__heading-title {
        font-size: 80px;
        line-height: 1.15;
    }
}

/* ---------- スマホ対応 ---------- */
@media screen and (max-width:768px) {
    .top-menu__heading-box {
        flex-direction: column-reverse;
        align-items: center;
    }
    .top-menu__heading-title {
        font-size: 40px;
        line-height: 1.1;
        padding: 10px 0;
    }
    .top-menu__heading-subtitle {
        font-size: 22px;
        padding: 0 0 10px 0;
    }
    .top-menu__heading-imgbox {
        height: 280px;
        margin: 0 0 0 0;
    }
    .top-menu__heading-text {
        font-size: 13px;
        font-weight: 400;
        line-height: 1.3;
    }
    .top-menu__menu {
        padding: 50px 0;
    }
}


/*-----------------------------------------------------------------------------------*/
/*  XX - CONTACT
/*-----------------------------------------------------------------------------------*/

.contact__header {
    padding: 159px 0 92px 0;
}

.contact__container {
    padding: 200px 15px 300px 15px;
}

.contact__top {
    text-align: center;
    padding-bottom: 20px;
    font-size: 15px;
}

.contact__form {
    width: 100%;
    padding: 95px 105px 139px 105px;
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact__form-title {
    font-size: 26px;
    padding: 0 0 15px 0;
    color: var(--color-primary);
}

.contact__form-itemlist {
    width: 100%;
    border: 2px solid var(--color-primary);
    margin-bottom: 92px;
}

.contact__form-item {
    display: flex;
    margin: 0;
}

.contact__form-item:not(:last-child) {
    border-bottom: 1px solid var(--color-primary);
}

.contact__form-th {
    width: 220px;
    min-width: 220px;
    padding: 25px 20px 25px 25px;
    background-color: #ebfdff;
    border-right: 1px solid var(--color-primary);
    font-size: 15px;
    font-weight: bold;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact__form-required {
    width: 40px;
    font-size: 12px;
    font-weight: bold;
    padding: 1px 7px;
    float: right;
    color: white;
    background-color: red;
    border-radius: 3px;
}

.contact__form-optional {
    width: 40px;
    font-size: 12px;
    font-weight: bold;
    padding: 1px 7px;
    float: right;
    color: white;
    background-color: gray;
    border-radius: 3px;
}

.contact__form-td {
    flex-grow: 1;
    padding: 14px 30px;
    margin: 0;
}

.contact__form-td--flex {
    width: 100%;
    flex-grow: 1;
    padding: 14px 30px;
    margin: 0;
    display: flex;
}

.contact__form-td--flex p {
    width: 100%;
    display: flex;
    align-items: center;
}


.contact__input {
    width: 100%;
    height: 40px;
    padding-left: 14px;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    font-size: 12px;
}

.contact__dropdown {
    width: 100%;
    height: 40px;
    padding-left: 14px;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    font-size: 12px;
}
span:not(:first-child) .contact__dropdown {
    margin-top: 15px;
}

.contact__short-width {
    width: 200px;
}

.contact__small-width {
    width: 65px;
    margin: 0 !important;
}

/* ---------- mailformのエラーメッセージ ---------- */
.contact__form .error_blank, .contact__form .error_match, .contact__form .error_format {
    color: red;
    font-size: 14px;
    font-weight: 500;
}

.contact__td-label {
    font-size: 13px;
    font-weight: 500px;
    color: var(--color-darkblue);
    padding: 0 0 10px 0;
}

.contact__td-caption {
    font-size: 12px;
    padding-top: 30px;
    width: 100%;
    display: block;
}

.contact__textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 50px;
    height: 175px;
    padding: 14px;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    font-size: 12px;
    line-height: 1.5;
}

.contact__policy {
    font-size: 12px;
    padding-bottom: 25px;
}

.contact__link-policy {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 12px;
    color: black;
    width: min(270px, 100%);
    height: 50px;
    border-radius: 5px;
    margin: 0 auto 50px auto;
    border: 1px solid var(--color-gray);
}

.contact__policy-img {
    width: 25px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

/* ---------- mailformの規約同意アドオン ---------- */
div#agreement {
    border-bottom: none;
    width: auto;
    margin: 0 0 90px 0;
    padding: 0;
}

.contact__acceptance {
    font-size: 15px;
    font-weight: 500;
}

.contact__warning {
    font-size: 13px;
    color: red;
}

.contact__pre-button {
    font-size: 15px;
    padding: 50px 0 10px 0;
}

.contact__submit {
    position: relative;
}

.contact__submit-button {
    font-size: 30px;
    font-weight: 600;
    color: white;
    background-color: red;
    /* width: min(436px, 100%); */
    width: 436px;
    height: 80px;
    border-radius: 10px;
    margin: 0 auto;
    cursor: pointer;
}

.contact__submit-img {
    width: 23px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.contact__personal {
    font-size: 13px;
    height: 200px;
    overflow-y: scroll;
    margin: 50px 0 0 0;
    padding: 15px;
    border: 1px solid var(--color-primary);
}

div.wpcf7 .wpcf7-spinner {
    display: block;
}

/* ---------- 小PC・タブ対応 ---------- */
@media screen and (max-width:1350px) {}

@media screen and (max-width:1050px) {
    .contact__form {
        padding: 40px 50px;
    }
}

/* ---------- スマホ対応 ---------- */
@media screen and (max-width:768px) {
    .contact__container {
        padding: 0 15px 100px 15px;
    }
    .contact__form {
        padding: 15px;
    }
    .contact__form-title {
        font-size: 18px;
    }
    .contact__form-itemlist {
        margin-bottom: 50px;
    }
    .contact__form-item {
        flex-direction: column;
    }
    .contact__form-th {
        width: 100%;
        min-width: auto;
        border-right: none;
        padding: 15px;
    }
    .contact__form-td {
        width: 100%;
        padding: 15px;
    }
    .contact__short-width {
        width: 100%;
    }
    .contact__link-policy {
        height: 50px;
        margin: 0 auto 30px auto;
    }
    .contact__policy-img {
        width: 20px;
    }
    div#agreement {
        margin-bottom: 70px;
    }
    .contact__acceptance {
        font-size: 13px;
        font-weight: 500;
    }
    .contact__warning {
        padding: 0;
    }
    .contact__pre-button {
        padding: 30px 0 10px 0;
    }
    .contact__submit {
        width: 100%;
    }
    .contact__submit-button {
        font-size: 18px;
        width: 100%;
        height: 50px;
    }
    .contact__submit-img {
        width: 15px;
    }
    .contact__personal {
        margin: 30px 0 0 0;
        padding: 10px;
    }
}


/*-----------------------------------------------------------------------------------*/
/*  店舗情報ページ
/*-----------------------------------------------------------------------------------*/

.shop {
    width: 100%;
    padding: 0 20px;
}
.shop__inner {
    max-width: 1150px;
    margin: 0 auto 60px auto;
}
.shop__header {
    margin: 0 0 30px 0;
    font-size: 4.24vw;
    color: #000;
    text-align: center;
}
.shop__sec-ttl {
    margin: 0 0 9px 0;
    font-weight: 400;
}
.shop__sec-subttl {
    font-weight: 400;
    line-height: 1.6;
}

.shop__main {
    width: 100%;
    padding: 10vw 2vw;
    background-color: #ebfdff;
}
.shop__title {
    margin: 0 0 0;
    padding: 5vw 0;
    font-size: 5.2vw;
    background-color: var(--regal-blue);
    color: var(--white);
    text-align: center;
}
.shop__title:first-child {
    margin: 0;
}
.shop__view-box {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.shop__view-item {
    width: 48.5%;
    max-width: 236px;
    padding: 2vw 0;
}
.shop__view-img {
    width: 100%;
    height: 30vw;
}
.shop__view-text {
    margin: 2vw 0;
    font-size: 3.6vw;
    line-height: 1.4;
    color: #000;
    font-weight: 400;
}

.shop__data {
    padding: 10vw 0 0;
    background-color: #f7f7f7;
}
.shop__com-name {
    padding: 0 3vw 3vw;
    font-size: 4.2vw;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
}
.shop__com-dl {
    display: flex;
    align-items: center;
    padding: 2vw;
    font-size: 2.8vw;
    letter-spacing: -.02em;
    color: #000;
    border-bottom: 1px solid #000;
    font-weight: 400;
}
.shop__first {
    border-top: 1px solid #000;
}
.shop__com-dt {
    width: auto;
    min-width: 31vw;
}
.shop__com-dd {
    line-height: 1.4;
}
.shop__map {
    max-width: 100%;
    margin: 0 auto;
    padding: 10vw 0;
}
.shop__map iframe {
    width: 100%;
    height: 50vw;
}

/* ---------- タブ対応 ---------- */
@media screen and (min-width:768px) {
    .shop {
        padding: 80px 0 0 0;
    }

    .shop__inner {
        margin: 0 auto 60px auto;
    }
    .shop__header {
        margin: 0 0 40px 0;
        font-size: 100%;
    }
    .shop__main {
        padding: 55px 0 70px;
    }
    .shop__title {
        margin: 55px 0 0;
        padding: 27px 0;
        font-size: 22px;
    }
    .shop__view-box {
        max-width: 840px;
        margin: 0 auto;
    }
    .shop__view-item {
        width: 33%;
        padding: 35px 0 0;
    }
    .shop__view-img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        object-position: center;
    }
    .shop__view-text {
        margin: 15px 0;
        font-size: 15px;
        line-height: 1.4;
    }
    .shop__data {
        padding: 35px 0 0;
    }
    .shop__company {
        max-width: 740px;
        margin: 0 auto;
    }
    .shop__com-name {
        padding: 0 0 15px;
        font-size: 22px;
    }
    .shop__com-dl {
        padding: 10px;
        font-size: 16px;
    }
    .shop__com-dt {
        width: 180px;
        min-width: auto;
    }
    .shop__map {
        max-width: 740px;
        margin: 0 auto;
        padding: 35px 0;
    }
    .shop__map iframe {
        height: 246px;
    }
}