/* ========================
CSS Base Template
======================== */

/* --- リセットCSS --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    background-image: url("/assets/img/common/main-bg.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        background-repeat: repeat
    }
}

a,
p {
    font-family: "Noto Sans CJK JP", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.eng {
    font-family: Arial, Helvetica, sans-serif;
}

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

a:hover {
    text-decoration: underline;
}

p {
    font-weight: 300;
}

.red {
    color: #ba0719;
}

.black {
    color: #333;
}

.white {
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    line-height: 1;
}

main {
    width: 100%;
}

img,
video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

.margin-b {
    margin: 40px 0;
}

.margin-t {
    margin-top: 24px;
}


input,
textarea,
button,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

.container {
    padding: 80px 0;
}

.flex {
    display: flex;
}

.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.relative {
    position: relative;
}

.sp {
    display: none;
}

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

    .container {
        padding: 48px 0;
    }
}

/*背景*/
.other-bg {
    background-image: url("/assets/img/common/other-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.other-bg-02 {
    background: linear-gradient(to bottom, #9F0515 0%, #0F0F0F 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*ボタン*/
.button-container {
    text-align: center;
    margin: 40px 0 40px;
}

.button-container {
    transition: opacity 0.3s ease;
}

.button-container:hover {
    opacity: 0.6;
}

.button-01 {
    display: inline-flex;
    align-items: center;
    padding: 8px 32px 8px 40px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(160deg, #9F0515 50%, #BA071A 50%);
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    transition: background 0.3s ease;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .button-01 {
        padding: 3px 17px 3px 31px;
        font-size: clamp(0.65rem, 3.2vw, 14px);
    }
}

.button-01:hover {
    transform: scale(1.03);
}

.button-01 .arrow {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 60%;
    clip-path: polygon(40% 30%, 70% 50%, 40% 70%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    left: 0;
}

.button-01:hover .arrow {
    transform: translateX(6px);
}

.button-container-02 {
    text-align: center;
    margin: 24px 0 0;
}

.button-02 {
    display: inline-flex;
    align-items: center;
    padding: 4px 24px 4px 32px;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: bold;
    color: #fff;
    background: linear-gradient(165deg, #9F0515 50%, #BA071A 50%);
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    transition:
        background 0.4s ease,
        color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.3s ease;
    box-shadow: 0 4px 4px rgba(255, 255, 255, 0.3);
}


.button-02:hover {
    transform: scale(1.03);
}

.button-02 .arrow {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 60%;
    clip-path: polygon(40% 30%, 70% 50%, 40% 70%);
    transition:
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.4s ease;
    position: relative;
    left: 0;
}

.button-02:hover .arrow {
    transform: translateX(6px);
}

.content-img-button-wrap:hover .button-02 {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.content-img-button-wrap:hover .button-02 .arrow {
    opacity: 0.6;
}

.line-button {
    display: inline-flex;
    align-items: center;
    padding: 4px 32px 4px 40px;
    font-size: clamp(12px, 1.7vw, 24px);
    font-weight: bold;
    color: #06C755;
    background: #fff;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    transition: background 0.3s ease;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1300px) {
    .line-button {
        display: inline-flex;
        align-items: center;
        padding: 4px 4px 4px 20px;
        font-size: clamp(12px, 1.7vw, 24px);
        font-weight: bold;
        color: #06C755;
        background: #fff;
        border: none;
        cursor: pointer;
        position: relative;
        border-radius: 50px;
        overflow: hidden;
        transition: background 0.3s ease;
        transition: transform 0.3s ease, background 0.3s ease;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
    }
}


.line-button:hover {
    transform: scale(1.03);
}

.line-button .arrow {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: #06C755;
    border-radius: 60%;
    clip-path: polygon(40% 30%, 70% 50%, 40% 70%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    left: 0;
}

.line-button:hover .arrow {
    transform: translateX(6px);
}

.line-btn-cont-02 {
    text-align: center;
    margin: 16px 0;
}

.line-button-02 {
    display: inline-flex;
    align-items: center;
    padding: 4px 32px 4px 40px;
    font-size: clamp(12px, 1.7vw, 24px);
    font-weight: bold;
    color: #ffffff;
    background: #06C755;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: background 0.3s ease;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}


.line-button-02:hover {
    transform: scale(1.03);
    opacity: 0.6;
}

.line-button-02 .arrow {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 60%;
    clip-path: polygon(40% 30%, 70% 50%, 40% 70%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    left: 0;
}

.line-button-02:hover .arrow {
    transform: translateX(6px);
    opacity: 0.6;
}

.yt-btn-cont {
    text-align: center;
    margin: 16px 0;
}

.yt-button {
    display: inline-flex;
    align-items: center;
    padding: 4px 8% 4px 10%;
    font-size: clamp(12px, 1.4vw, 20px);
    font-weight: bold;
    color: #BA071A;
    background: #fff;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    transition: background 0.3s ease;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}


.yt-button:hover {
    transform: scale(1.03);
}

.yt-button .arrow {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: #BA071A;
    border-radius: 60%;
    clip-path: polygon(40% 30%, 70% 50%, 40% 70%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    left: 0;
}

.yt-button:hover .arrow {
    transform: translateX(6px);
}

@media screen and (max-width: 768px) {
    .button-container {
        text-align: center;
        margin: 20px 0 0;
    }

    .line-btn-cont {
        text-align: center;
        margin: 16px 0;
    }

    .line-button {
        display: inline-flex;
        align-items: center;
        padding: 2px 16px;
        font-size: 14px;
        font-weight: bold;
        color: #06C755;
        background: #fff;
        border: none;
        cursor: pointer;
        position: relative;
        border-radius: 50px;
        overflow: hidden;
        transition: background 0.3s ease;
        transition: transform 0.3s ease, background 0.3s ease;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
    }


    .line-button:hover {
        transform: scale(1.03);
    }

    .line-button .arrow {
        display: inline-block;
        width: 32px;
        height: 32px;
        background: #06C755;
        border-radius: 60%;
        clip-path: polygon(40% 30%, 70% 50%, 40% 70%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        left: 0;
    }

    .line-button:hover .arrow {
        transform: translateX(2px);
    }

    .yt-btn-cont {
        text-align: center;
        margin: 16px 0;
    }

    .yt-button {
        display: inline-flex;
        align-items: center;
        padding: 2px 16px;
        font-size: 14px;
        font-weight: bold;
        color: #BA071A;
        background: #fff;
        border: none;
        cursor: pointer;
        position: relative;
        border-radius: 50px;
        overflow: hidden;
        transition: background 0.3s ease;
        transition: transform 0.3s ease, background 0.3s ease;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
    }


    .yt-button:hover {
        transform: scale(1.03);
    }

    .yt-button .arrow {
        display: inline-block;
        width: 32px;
        height: 32px;
        background: #BA071A;
        border-radius: 60%;
        clip-path: polygon(40% 30%, 70% 50%, 40% 70%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        left: 0;
    }

    .yt-button:hover .arrow {
        transform: translateX(6px);
    }

}

/*　Googleカレンダー（スマホ表示） */
.googleCalender iframe {
    border-radius: 15px;
}

/*　Googleカレンダー（PC表示） */
@media screen and (max-width: 768px) {
    .googleCalender {
        width: 100%;
        padding: 0 16px;
    }

    .googleCalender iframe {
        width: 100%;
        border-radius: 5px;
        height: 400px;
    }
}


/* ========================
下層ページ共通 Template
======================== */

.bp-sec-ttl-area {
    width: 100%;
    max-width: 620px;
    margin-bottom: 40px;
}

.bp-sec-ttl-box {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.bp-sec-ttl-box-01 {
    color: #fff;
}

.bp-sec-sub-ttl {
    font-size: clamp(10px, 1.2vw, 16px);
}

.bp-sec-main-ttl {
    font-size: clamp(12px, 3vw, 40px);
}

.underline-dual {
    width: 100%;
    max-width: 360px;
    height: 2px;
    margin: 12px auto 0;
    display: flex;
}

.underline-dual::before,
.underline-dual::after {
    content: "";
    height: 100%;
    width: 50%;
}

.underline-dual::before {
    background-color: #000;
}

.underline-dual-02 {
    width: 100%;
    max-width: 360px;
    height: 2px;
    margin: 12px auto 0;
    display: flex;
}

.underline-dual-02::before,
.underline-dual-02::after {
    content: "";
    height: 100%;
    width: 50%;
}


.underline-dual::after {
    background-color: #9F0515;
}

.underline-dual-02::before {
    background-color: #ffffff;
}

.underline-dual-02::after {
    background-color: #9F0515;
}

@media screen and (max-width: 768px) {
    .bp-sec-ttl-area {
        margin-bottom: 24px;
        padding: 0 16px;
    }

    .bp-sec-sub-ttl {
        font-size: clamp(8px, 3vw, 14px);
        font-weight: 800;
    }

    .bp-sec-main-ttl {
        font-size: clamp(16px, 5vw, 24px);
    }

    .underline-dual {
        width: 100%;
        max-width: 240px;
        height: 2px;
        margin: 12px auto 0;
        display: flex;
    }

    .underline-dual::before,
    .underline-dual::after {
        content: "";
        height: 100%;
        width: 50%;
    }

    .underline-dual::before {
        background-color: #000;
    }

    .underline-dual-02 {
        width: 100%;
        max-width: 240px;
        height: 2px;
        margin: 12px auto 0;
        display: flex;
    }

    .underline-dual-02::before,
    .underline-dual-02::after {
        content: "";
        height: 100%;
        width: 50%;
    }


    .underline-dual::after {
        background-color: #9F0515;
    }

    .underline-dual-02::before {
        background-color: #ffffff;
    }

    .underline-dual-02::after {
        background-color: #9F0515;
    }

    .bp-fv-area {
        margin-top: 70px !important;
    }
}