@charset "utf-8";

html {
    max-width: 100%;
    /* nav要素が右スクロールで見えてしまう現象を解決 */
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    /* font-family: "Noto Sans JP", sans-serif; */
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    /* font-weight: bold; */
    background-color: #000;
}

html,
body {
    /* overflow: hidden; */
    overflow-x: hidden;
}

/* ============================
デフォルト設定
============================ */

a {
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    transition: 0.5s;
}

img {
    width: 100%;
}

ol,
ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0;
}

figure {
    margin: 0;
}

/* h2,
h3,
h4,
img,
a,
p {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    transform: translateY(50px);
}

dt,
dd {
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    transform: translateX(100px);
}

.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transform: translateX(0);
} */


/* ============================
ヘッダー
============================ */

.header {
    margin: 0px;
    padding: 1.5% 2%;
    /* background-color: #074097; */
    background-color: #004098;
    text-align: center;
}

.header-h1 {
    margin: 0px;
    align-items: center;
    /* border-bottom: #fff 1.5px solid; */
    /* padding-bottom: 5px; */
}

.header-image {
    visibility: visible;
    width: 18%;
}

@media screen and (max-width: 550px) {
    .header-image {
        visibility: visible;
        width: 45%;
    }
}

/* ============================
全体設定
============================ */

.main {
    padding: 0 3%;
}

h1 {
    font-size: min(3.5vw, 35px);
    margin: 1rem auto;

    >span {
        color: #bd0304;
    }
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
    /* padding: 2rem; */
}

.wrapper>section {
    margin: 4rem auto;
}

.section {
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
}

/* h2 */
#qi4d>h2 {
    font-style: italic;
    padding: 1rem;
    background-image: linear-gradient(90deg, #dd4f1b 5%, #000 37%, #000 63%, #dd4f1b 95%);
}

#quantum>h2 {
    font-style: italic;
    padding: 1rem;
    background-image: linear-gradient(90deg, #a40101 5%, #000 37%, #000 63%, #a40101 95%);
}

#optm>h2 {
    font-style: italic;
    padding: 1rem;
    background-image: linear-gradient(90deg, #bd0304 5%, #000 37%, #000 63%, #bd0304 95%);
}

#g440>h2 {
    font-style: italic;
    padding: 1rem;
    background-image: linear-gradient(90deg, #0099ff 5%, #000 37%, #000 63%, #0099ff 95%);
}

@media screen and (max-width: 550px) {

    #qi4d>h2 {
        padding: 1rem 0.5rem;
        font-size: min(4.5vw, 45px);
    }

    #quantum>h2 {
        padding: 1rem 0.5rem;
        font-size: min(4.5vw, 45px);
    }

    #optm>h2 {
        padding: 1rem 0.5rem;
        font-size: min(4.5vw, 45px);
    }

    #g440>h2 {
        padding: 1rem 0.5rem;
        font-size: min(4.5vw, 45px);
    }
}

/* h3 */
.section-headline {
    margin: 0 auto 4rem;
    width: 80%;
    color: #fff;
    font-size: min(4.0vw, 45px);
    background-image: linear-gradient(0deg, #bd0304 10%, #000 40%);
}

.section-headline.tm {
    background-image: linear-gradient(0deg, #dd4f1b 10%, #000 40%);
}

.section-headline.cw {
    background-image: linear-gradient(0deg, #a40101 10%, #000 40%);
}

.section-headline.pn {
    background-image: linear-gradient(0deg, #0099ff 10%, #000 40%);
}

/* h3 */
.section-headline.top {
    background-image: none;
}

.section-headline.top>span {
    color: #a40101;
}

.nobasu {
    color: #a40101;
}

/* h4 */
.function-headline {
    font-size: min(2.5vw, 24px);
}

/* p */
.description {
    font-size: min(2.0vw, 18px);
}

@media screen and (max-width: 550px) {

    h1 {
        font-size: min(4.0vw, 40px);
        margin: 1rem auto;
    }

    .wrapper>section {
        margin: 1.5rem auto;
    }

    .section {
        padding: 0.3rem;
    }

    .section-headline {
        font-size: min(5.0vw, 50px);
        margin: 0 auto 1.5rem;
        width: 95%;
    }

    .function-headline {
        font-size: min(3.5vw, 32px);
        margin: 0.3rem auto 1rem;
    }

    .description {
        font-size: min(3.0vw, 30px);
    }
}

/* ============================
ヒーロー
============================ */

.hero-headline {
    width: 60%;
    max-width: 800px;
    margin: 1.5rem auto 0.5rem;
}

.nav {
    margin: 2rem auto;
    max-width: 1500px;
    width: 100%;
    height: 60dvh;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 60dvh;
}

.nav-item {
    /* width: 25%; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    transition: all 0.3s ease;
    height: 60dvh;
}

.nav-item:hover {
    cursor: pointer;
    flex-grow: 5;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.nav-link:hover {
    flex-grow: 5;
}

#taylormade {
    background-color: #9c5520;
    background-image:
        linear-gradient(0deg, #000, rgba(0, 0, 0, 0.3), #000),
        url(../img/taylormade/hero_taylormade.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
}

#callaway {
    background-color: #a40101;
    background-color: #9c5520;
    background-image:
        linear-gradient(0deg, #000, rgba(0, 0, 0, 0.3), #000),
        url(../img/callaway/hero_callaway.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
}

#cobra {
    background-color: #60616b;
    background-color: #9c5520;
    background-image: linear-gradient(0deg, #000, rgba(0, 0, 0, 0.3), #000),
        url(../img/cobra/hero_cobra.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
}

#ping {
    background-color: #002b5f;
    background-color: #9c5520;
    background-image: linear-gradient(0deg, #000, rgba(0, 0, 0, 0.3), #000),
        url(../img/ping/hero_ping.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
}

.hero-image {
    display: block;
    max-height: 60px;
    width: auto;
}

.hero-image.cs {
    opacity: 0.6;
}

@media screen and (max-width: 748px) {
    .nav-item:hover {
        flex-grow: 5;
    }
}

@media screen and (max-width: 600px) {

    .hero-headline {
        width: 80%;
        max-width: 800px;
        margin: 1rem auto 0.5rem;
    }

    .nav {
        margin: 1rem auto;
        /* height: 60%; */
        display: flex;
        flex-direction: column;
    }

    .nav-list {
        flex-direction: column;
        height: none;
        /* height: 100%; */
    }

    .nav-item {
        width: 100%;
        height: none;
        height: 12.5vh;
    }

    #taylormade {
        background-color: #9c5520;
        background-image:
            linear-gradient(90deg, #000, rgba(0, 0, 0, 0.3), #000),
            url(../img/taylormade/hero_taylormade.jpg);
    }

    #callaway {
        background-color: #a40101;
        background-color: #9c5520;
        background-image:
            linear-gradient(90deg, #000, rgba(0, 0, 0, 0.3), #000),
            url(../img/callaway/hero_callaway.jpg);
    }

    #cobra {
        background-color: #60616b;
        background-color: #9c5520;
        background-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.3), #000),
            url(../img/cobra/hero_cobra.jpg);
    }

    #ping {
        background-color: #002b5f;
        background-color: #9c5520;
        background-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.3), #000),
            url(../img/ping/hero_ping.jpg);
    }

}

/* .nav {}

.nav-list {
    margin: 0 auto;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80dvh;
    gap: 5px;

    --hero01: url(../img/taylormade/logo_taylormade.png);
    --hero02: url(../img/callaway/logo_callaway.png);
    --hero03: url(../img/cobra/logo_cobra.png);
    --hero04: url(../img/ping/logo_ping.png);

    --herobgattachi: scroll;

    &:has(#taylormade:hover) {
        --hero01: url(../img/car1.jpg);
        --hero02: url(../img/car1.jpg);
        --hero03: url(../img/car1.jpg);
        --hero04: url(../img/car1.jpg);
        --herobgattachi: fixed;
        background-size: contain;
    }

    &:has(#callaway:hover) {
        --hero01: url(../img/car2.jpg);
        --hero02: url(../img/car2.jpg);
        --hero03: url(../img/car2.jpg);
        --hero04: url(../img/car2.jpg);
        --herobgattachi: fixed;
        background-size: contain;
    }

    &:has(#cobra:hover) {
        --hero01: url(../img/cobra/hero_cobra.jpg);
        --hero02: url(../img/cobra/hero_cobra.jpg);
        --hero03: url(../img/cobra/hero_cobra.jpg);
        --hero04: url(../img/cobra/hero_cobra.jpg);
        --herobgattachi: fixed;
        background-size: contain;
    }

    &:has(#ping:hover) {
        --hero01: url(../img/car4.jpg);
        --hero02: url(../img/car4.jpg);
        --hero03: url(../img/car4.jpg);
        --hero04: url(../img/car4.jpg);
        --herobgattachi: fixed;
        background-size: contain;
    }
}

.nav-item {
    width: 25%;
    background-color: gray;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: var(--herobgattachi);
    transition: background-image .5s ease-in-out;
    height: 80dvh;

    &#taylormade {
        background-image: var(--hero01),
            linear-gradient(0deg, #000, #9c5520, #000);
    }

    &#callaway {
        background-image: var(--hero02),
            linear-gradient(0deg, #000, #a40101, #000);
    }

    &#cobra {
        background-image: var(--hero03),
            linear-gradient(0deg, #000, #60616b, #000);
    }

    &#ping {
        background-image: var(--hero04),
            linear-gradient(0deg, #000, #002b5f, #000);
    }
}


.nav-item:hover {
    cursor: pointer;
}


@media screen and (max-width: 600px) {
    .nav-list {
        flex-direction: column;
        height: 80dvh;
        gap: 5px;
        height: 50dvh;
    }

    .nav-item {
        width: 100%;
        height: 50dvh;

        &#taylormade {
            background-image: var(--hero01),
                linear-gradient(90deg, #000, #9c5520, #000);
        }

        &#callaway {
            background-image: var(--hero02),
                linear-gradient(90deg, #000, #a40101, #000);
        }

        &#cobra {
            background-image: var(--hero03),
                linear-gradient(90deg, #000, #60616b, #000);
        }

        &#ping {
            background-image: var(--hero04),
                linear-gradient(90deg, #000, #002b5f, #000);
        }
    }
} */


.hero {
    visibility: visible;
    width: 100%;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hero-base {
    width: 100%;
}

h1 {
    margin: 0;
    visibility: visible;
}

.campaign-link {
    margin: 2rem auto;
    padding: 0 0 1rem;
    display: block;
    color: #fff;
    font-weight: bold;
    background-color: red;
    font-size: min(3.8vw, 40px);
    max-width: 1000px;
    width: 90%;
    animation: campaign-link 1.1s infinite;
}

@keyframes campaign-link {

    0%,
    100% {
        transform: translateY(0px);
    }

    70% {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 650px) {
    .campaign-link {
        margin: 0.8rem auto;
        padding: 0 0 0.1rem;
    }
}


/* ============================
メーカーのパネル
============================ */

.maker-panel {}

.maker-panel-item {
    display: none;
}

.maker-panel-item.active {
    display: block;
}


.new-model-headline {
    width: 30%;
    max-width: 400px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.top-mv {
    max-width: 1500px;
}

/* .campaign-link {
    width: 85%;
} */

/* .camp-image {} */


@media screen and (max-width: 550px) {

    .new-model-headline {
        width: 60%;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

/* ============================
フローティングバナー
============================ */
.floating-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 750px;
    padding: 0.5rem;
    margin: 0 auto 1rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.floating-banner.visible {
    opacity: 1;
    visibility: visible;
}

.floating-banner-ping {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 750px;
    padding: 0.5rem;
    margin: 0 auto 1rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.floating-banner-ping.visible {
    opacity: 1;
    visibility: visible;
}

@keyframes floatingPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.97);
    }
}

.floating-image {
    width: 100%;
    z-index: 9999;
    border-radius: 5px;
    box-shadow: #7c7c7c 2px 2px 2px;
    animation: floatingPulse 1.1s infinite;
}


/* ============================
軽さは速さだ
============================ */

.qi-face {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;

    >div {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
}

.qi-face-image {
    width: 50%;
}

/* .qi-face-caption {} */

.qi-head-func-image {
    width: 80%;
    margin: 1rem auto;
}

@media screen and (max-width: 550px) {
    .qi-face {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;

        >div {
            flex-direction: column;
            gap: 0.5rem;
        }
    }

    .qi-face-image {
        width: 85%;
    }

    .qi-head-func-image {
        width: 100%;
        margin: 0.3rem auto;
    }
}

/* ============================
フィッティングで仕立てるオーダーメイドの初速
============================ */

.reax-image {
    width: 30%;
}

.factor-item.reax {
    width: 31%;
    margin-top: 2rem;
}

.fitting-select {
    display: flex;
    flex-direction: column-reverse;
    margin: 2rem auto;
}

.fitting-select-image {
    width: 80%;
    margin: 1rem auto;
}

.fitting-secect-caption {
    >p {
        font-weight: bold;
    }
}

@media screen and (max-width: 550px) {
    .reax-image {
        width: 50%;
    }

    .factor-item.reax {
        width: 48.1%;
        margin-top: 1rem;
    }

    .fitting-select {
        display: flex;
        flex-direction: column-reverse;
        margin: 1rem auto;
    }

    .fitting-select-image {
        width: 100%;
        margin: 0.3rem auto;
    }
}



/* ============================
低POIでフェアウェイキープ率を上げろ
============================ */
/*
 POI
 */
.poi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
    margin: 2rem auto;
}

.poi-image {
    width: 50%;
}

.poi-caption {
    width: 50%;
    text-align: center;

    >p {
        text-align: left;
    }
}

.poi-headline {
    margin: 0;
    border-bottom: #fff 1px solid;
    font-size: min(4.0vw, 45px);
    /* フォントサイズはsection-headlineと同じ */
}

.red-back {
    padding: 2rem;
    margin: 3rem auto 5rem;
    background-image:
        linear-gradient(45deg, #bd0304 5%, #000 40%, #000 60%, #bd0304 95%);

    >dt {
        font-size: min(3.5vw, 40px);
        font-weight: bold;
        margin-bottom: 2rem;
    }

    >dd {
        width: 30%;
        margin: 0 auto;
    }
}

/* 
ターゲットファクター 
*/
.factor-image {
    margin: 1.5rem auto;
}

.factor-list {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 1rem;
}

.factor-item {
    width: 25%;
    margin-top: 2rem;
}

/* .factor {} */

/* .factor-gif {} */

/* .factor-caption {} */

.factor-headline {
    font-size: min(1.6vw, 16px);
    border-bottom: #fff 1px solid;
}

.factor-description {
    text-align: left;
    font-size: min(1.6vw, 15px);
}

@media screen and (max-width: 550px) {
    .poi {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 0.5rem;
        margin: 0.8rem auto;
    }

    .poi-image {
        width: 80%;
    }

    .poi-caption {
        width: 80%;
        text-align: center;
    }

    .poi-headline {
        margin: 0;
        border-bottom: #fff 1px solid;
        font-size: min(4.0vw, 45px);
        /* フォントサイズはsection-headlineと同じ */
    }

    .red-back {
        padding: 1rem;
        margin: 1.0rem auto 2rem;

        >dt {
            font-size: min(3.8vw, 45px);
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        >dd {
            width: 45%;
            margin: 0 auto;
        }
    }

    /* 
ターゲットファクター 
*/
    .factor-image {
        margin: 0.5rem auto;
    }

    .factor-list {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .factor-item {
        width: 48%;
        margin-top: 0.5rem;
    }

    /* .factor {} */

    /* .factor-gif {} */

    /* .factor-caption {} */

    .factor-headline {
        font-size: min(3.2vw, 34px);
        margin: 0.5rem auto;
    }

    .factor-description {
        text-align: left;
        font-size: min(2.4vw, 28px);
    }
}


/* ============================
callaway-トライフォースフェース
============================ */

.tri-face {
    margin-bottom: 4rem;
}

.tri-face-ai-image {
    width: 45%;
}

.tri-face-caption {
    text-align: center;
    margin: 2rem auto;
}

.tri-face-caption>.description>span {
    color: #a40101;
}

@media screen and (max-width: 550px) {
    .tri-face {
        margin-bottom: 2rem;
    }

    .tri-face-ai-image {
        width: 45%;
    }

    .tri-face-caption {
        text-align: center;
        margin: 1rem auto;
    }
}

/* ============================
callaway-価格
============================ */

.quantum-price-categoly {
    width: 30%;
    margin-top: 2rem;
    margin-bottom: 2rem;
}



/* ============================
PING-理想の重心ライン
============================ */

.jushin {
    /* margin: 4rem auto; */

}

.jushin-image {
    width: 50%;
}

.jushin-caption {
    text-align: left;
    margin: 2rem auto;
}

/* ============================
PING-過去最大のMOI
============================ */

.factor-item.ping-moi {
    width: 30%;
    margin-top: 2rem;
}

.factor-description.ping-moi {
    text-align: center;
}

.factor-description.ping-moi>span {
    color: #0099ff;
    font-size: 2em;
    font-weight: bold;
}

.factor-list.two-col {
    flex-wrap: wrap;
}

.factor-item.two-col {
    width: 45%;
    margin-top: 2rem;
}

.factor-description.two-col {
    text-align: center;
}

.factor-description.two-col>span {
    color: #0099ff;
    font-size: 2em;
    font-weight: bold;
}

@media screen and (max-width: 550px) {

    .factor-item.ping-moi {
        width: 48%;
        margin-top: 0.5rem;
    }

    .factor-list.two-col {
        flex-wrap: wrap;
    }

    .factor-item.two-col {
        width: 100%;
        margin-top: 1rem;
    }

    .factor-gif-ping {
        width: 60%;
    }
}

/* ============================
PING-HLシリーズもラインナップ
============================ */

.hl-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hl-image {
    width: 40%;
}

.hl-top-caption {
    width: 60%;
    text-align: left;
}

.hl-top-headline {
    font-size: min(2.5vw, 24px);
    text-align: left;
}

.hl-top-headline>span {
    color: #0099ff;
}

.hl-top.face {
    flex-direction: column;
    gap: 1rem;
}

.hl-top.face>.hl-top-caption {
    text-align: center;
}

@media screen and (max-width: 550px) {

    .hl-top {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hl-image {
        width: 60%;
    }

    .hl-top-caption {
        width: 100%;
        text-align: left;
    }

    .hl-top-headline {
        font-size: min(3.5vw, 32px);
        text-align: center;
        margin: 0.5rem auto;
    }

}


/* ============================
コブラオプティマ
============================ */

.tab-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.tab-item {
    width: 25%;
    font-size: min(2.2vw, 22px);
    color: #fff;
    background-color: #bd0304;
    font-weight: bold;
    padding: 1rem;
    cursor: pointer;
}

.tab-item.active {
    color: #bd0304;
    background-color: #60616b;
}

.panel-list {
    padding: 1rem;
    background-color: #60616b;
}

.panel-item {
    display: none;
}

.panel-item.active {
    display: block;
}

/* .panel-headline-image {} */

.function {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 90%;
    margin: 1rem auto;
}

.function.reverse {
    flex-direction: row-reverse;
    gap: 1rem;
    margin-bottom: 1rem;
}

.function.reverse>figcaption {
    text-align: right;
}

.func-image {
    width: 40%;
}

.function-caption {
    width: 60%;
    text-align: left;
}

/* .function-headline {
    font-size: min(2.5vw, 24px);
    margin: 0;
} */

.function-description {
    font-size: min(1.8vw, 16px);
}

.cobra-crown-image {
    margin: 2rem auto;
}

@media screen and (max-width: 550px) {
    .tab-list {
        gap: 0.5rem;
    }

    .tab-item {
        font-size: min(3.0vw, 28px);
        padding: 0.2rem 0.5rem;
    }

    .panel-list {
        padding: 0.3rem;
    }

    .panel-item {
        display: none;
    }

    .panel-item.active {
        display: block;
    }

    /* .panel-headline-image {} */

    .function {
        gap: 0.3rem;
        width: 100%;
        margin: 0.5rem auto;
    }

    .function.reverse {
        gap: 0.3rem;
        margin-bottom: 0.5rem;
    }

    .function.reverse>figcaption {
        text-align: right;
    }

    /* .function-headline {
        font-size: min(2.5vw, 24px);
        margin: 0;
    } */

    .function-description {
        font-size: min(2.4vw, 28px);
    }

    .cobra-crown-image {
        margin: 2rem auto;
    }
}

/* ============================
コブラオプティマ-フェアウェイウッド
============================ */
.fw-function-image {
    width: 90%;
    margin: 1.5rem auto;
}

@media screen and (max-width: 550px) {
    .fw-function-image {
        width: 100%;
        margin: 0.5rem auto 0;
    }
}

/* ============================
コブラオプティマ-価格
============================ */

.price-headline {
    color: #fff;
    font-size: min(3.5vw, 40px);
}

.price-list {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 1rem;
}

.price-item {
    width: 25%;
    margin: 0.5rem;
}

/* .price-card {} */

/* .price-image {} */

/* .price-card-caption {} */

.price-card-description {
    width: 60%;
    margin: 0.5rem auto 0;
}

.shat-list {
    text-align: left;
}

.shaft-name {
    text-align: left;
    font-size: min(1.6vw, 16px);
}

.shaft-dd {
    font-size: min(1.6vw, 16px);
    margin: 0;
}

.shaft-image {
    margin-bottom: 0.5rem;
}

.online-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.online-item {
    width: 25%;
}

.online-item.sp {
    display: none;
}

.online-link {
    display: block;
    margin: 0 auto;
    padding: 1rem;
    font-size: min(1.8vw, 16px);
    color: #fff;
    border: #fff 1px solid;
}

.online-link:hover {
    color: #000;
    background-color: #fff;
}

@media screen and (max-width: 550px) {

    .price-headline {
        font-size: min(4.5vw, 45px);
        margin: 0.5rem auto;
    }

    .price-list {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: space-between;
    }

    .price-item {
        width: 48%;
        margin: 0;
    }

    /* .price-card {} */

    .price-image {
        width: 90%;
        margin: 0 auto;
    }

    /* .price-card-caption {} */

    .price-card-description {
        width: 50%;
        margin: 0 auto;
    }

    .shaft-name {
        font-size: min(2.4vw, 28px);
    }

    .shaft-dd {
        font-size: min(3.2vw, 34px);
        margin: 0 0 0.3rem;
    }

    .online-list {
        display: none;
    }

    .online-item {
        width: 25%;
    }

    .online-item.sp {
        display: block;
        width: 100%;
    }

    .online-link {
        display: block;
        margin: 0 auto;
        padding: 1rem;
        font-size: min(1.8vw, 16px);
        color: #fff;
        border: #fff 1px solid;
    }
}




/* ============================
YouTube動画
============================ */

.background.doga {
    /* background-color: #f4f1f1; */
    margin-bottom: 2rem;
}

.section-headline.youtube {
    color: #333;
    border-bottom: #333 1px double;
}

.movie {
    width: 100%;
    /* padding-bottom: 2rem; */
}

.movie-wrap {
    width: 100%;
    max-width: calc(810px + 8rem);
    /* padding: 0 2rem; */
    margin: 0 auto;
    border-radius: 10px;
}

.movie-iframeWrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.35%;
}

.movie-iframeWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .movie {
        padding-bottom: 0.5rem;
    }

    .movie-wrap {
        max-width: 100%;
    }
}

@media screen and (max-width: 550px) {
    .background.doga {
        margin-bottom: 0.5rem;
    }
}


@media screen and (max-width: 550px) {
    .panel-headline.forPrice {
        font-size: min(3.5vw, 32px);
        padding-top: 0.5rem;
        width: 50%;
    }

    .price {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .price-item {
        width: 48%;
    }

    .price-caption {
        font-size: min(2.4vw, 18px);
        text-align: left;
    }

    .price-description {
        margin: 0;
    }

    .online-link {
        display: block;
        margin: 1rem auto 2rem;
        padding: 0.5rem;
        font-size: min(2.8vw, 26px);
    }
}




/* ============================
キャンペーン
============================ */

#campaign {
    color: #000;
    font-weight: bold;
}

#campaign-callaway {
    color: #000;
    font-weight: bold;
}

#campaign-ping {
    color: #000;
    font-weight: bold;
}

#campaign-cobra {
    color: #000;
    font-weight: bold;
}

.background.third {
    background-color: #ffffff;
    padding: 2rem;
    margin-top: 2rem;
}

.section-headline.campaign {
    color: #fff;
    width: 100%;
    background-image: none;
    background-color: red;
    padding: 1rem;
    animation: section-headlinecampaign 1.1s infinite;
}


@keyframes section-headlinecampaign {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }
}

.section-headline.campaign>br {
    display: none;
}

.section-wrapper.campaign {
    background-color: #ffffff;
}

.card-headline.campaign {
    color: #fff;
    font-weight: bold;
    background-image: none;
    background-color: red;
    margin-bottom: 0;
    margin-top: 1rem;
    padding: 1rem 0;

}

.card-description.technology {
    text-align: left;
}

.campaign-simulation {
    background-color: rgba(153, 204, 255, 0.785);
    padding: 2rem;
    margin: 1rem auto;
}

.simulation-list {
    font-size: min(3.0vw, 24px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.simulation-list.gokei {
    background-color: rgb(239, 239, 9);
}

.simulation-list:first-child {
    margin-top: 0;
}

.simulation-term {
    width: 50%;
    background-color: #ffffff;
    padding: 1rem;
    margin-bottom: 1rem;
}

.simulation-term.gokei {
    text-align: center;
    font-size: 1.4em;
    color: #c81616;
    background-color: rgb(239, 239, 9);
    margin-bottom: 0;
}

.simulation-term.tsuruya {
    color: #074097;
    background-color: #fff;
}

.simulation-term.point {
    color: #c81616;
    background-color: #fff;
}

.simulation-description {
    width: 50%;
    margin: 0;
    padding: 1rem 0 1rem 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.simulation-description>br {
    display: none;
}

.simulation-description.gokei {
    font-size: 1.4em;
    color: #333;
    background-color: rgb(239, 239, 9);
    margin-bottom: 0;
}

.campaign-massage {
    font-size: min(4.0vw, 36px);
    background-color: #021c42;
    color: #fff;
    padding: 3rem 1rem;
    margin-bottom: 0;
}

.campaign-massage>span {
    font-size: 1.5em;
    color: rgb(239, 239, 9);
}

.campaign-massage.point {
    background-color: #c81616;
    color: #fff;
}

.campaign-massage.point>span {
    font-size: 1.5em;
    color: rgb(239, 239, 9);
}

.triangle {
    width: 15%;
    margin: 2rem auto;
    animation: triangle 1.1s infinite;
}

@keyframes triangle {

    0%,
    100% {
        transform: translateY(0px);
    }

    70% {
        transform: translateY(-10px);
    }
}

.section-over-view:last-child {
    margin-bottom: 0;
}



@media screen and (max-width: 550px) {

    .background.third {
        padding: 0rem;
    }

    .section-headline.campaign {
        padding: 0.5rem;
    }

    .section-headline.campaign>br {
        display: block;
    }

    .card-headline.campaign {
        margin-top: 0.5rem;
        padding: 0.5rem 0;
    }

    .campaign-simulation {
        padding: 0.5rem;
        margin: 0.5rem auto;
    }

    .simulation-list {
        font-size: min(3.0vw, 24px);
        flex-direction: column;
    }

    .simulation-term {
        width: 100%;
        padding: 0.3rem;
        margin-bottom: 0.5rem;
        font-size: min(3.7vw, 36px);
    }

    .simulation-term.gokei {
        margin-bottom: 0;
    }

    .simulation-description {
        width: 100%;
        padding: 0.2rem 0 0.2rem 0.5rem;
        margin-bottom: 0.5rem;
        font-size: min(3.6vw, 33px);
        text-align: center;
    }

    .simulation-description.gokei {
        margin-bottom: 0.5rem;
    }

    .simulation-description>br {
        display: block;
    }

    .simulation-description>span {
        font-size: 0.8em;
    }

    hr {
        margin: 0;
    }

    .campaign-massage {
        font-size: min(4.5vw, 40px);
        padding: 1.5rem 0.5rem;
        margin-bottom: 0;
    }

    .triangle {
        width: 15%;
        margin: 1rem auto 0.5rem;
    }

    .careful {
        font-size: min(2.5vw, 20px);
    }

}

/* ============================
店舗一覧
============================ */

.shop {
    width: 100%;
    margin: 4rem auto 4rem;
    text-align: center;
}

.shop>div {
    /* width: 80%; */
    display: flex;
    text-align: center;
    justify-content: center;
}

.shop-link {
    text-align: center;
    width: 80%;
    color: #fff;
    background-color: #e31616;
    font-weight: bold;
    font-size: min(3.5vw, 40px);
    padding: 1.2% 4%;
    border-radius: 50px;
}

.shop-link:hover {
    opacity: 0.7;
}

.shop-link>span:hover {
    transform: translate(5px, 0px);
}

@media screen and (max-width: 700px) {
    .shop {
        margin: 2rem auto 2rem;
    }

    .shop-link {
        font-size: min(4vw, 45px);
        padding: 1.2% 4%;
    }
}



/* ============================
フッター
============================ */
.footer {
    text-align: center;
    background-color: #7c7c7c;
    margin-top: 20px;
    padding: 5%;

}

.footer>div {
    width: 30%;
    text-align: center;
    margin: 0px auto;
}

.logo-link:hover {
    opacity: 0.7;
}

.footer-list {
    margin: 20px auto;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 1rem;
    padding: 0;
}

.footer-item {
    width: 25%;
}

.footer-link:hover {
    opacity: 0.7;
}

.sns-logo {
    width: 100%;
}

.policy-link {
    color: #fff;
    font-size: 1.2vw;
}

.policy-link:hover {
    opacity: 0.7;
}

.footer-p02 {
    color: #fff;
    font-size: 1.2vw;
}

@media screen and (max-width: 650px) {
    .footer>div {
        width: 60%;
    }

    .footer-list {
        gap: 1rem;
        flex-direction: column;
        justify-content: center;
    }

    .footer-item {
        width: 60%;
        margin: 0 auto;
    }

    .policy-link {
        font-size: 2vw;
    }

    .footer-p02 {
        font-size: 2vw;
    }
}