@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-size: 15px;
    line-height: 1.5;
    color: #333;
    text-align: center;
    box-sizing: border-box;
}

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;
}

img,
h2,
h3,
h4,
h5,
figure,
ul,
li,
a,
p {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: all 0.5s;
}

.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main {
    width: 100%;
    /* padding: 2% 2%; */
    margin: 0 auto;
    background-image: url('../img/background-image_technology.jpg');
    /* 背景画像を固定 */
    background-attachment: fixed;
    /* 背景画像を画面全体にカバー */
    background-size: auto;
    /* 背景画像を中央に配置 */
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.floating-banner {
    position: fixed;
    bottom: 8px;
    left: 8px;
    margin: 0 auto;
    width: 30%;
    background-color: #e31616;
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    z-index: 99999;
    border-radius: 5px;
    box-shadow: #7c7c7c 2px 2px 2px;
    animation: section-headlinecampaign 1.1s infinite;
}

@keyframes floating-banner {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1);
    }
}

.floating-banner-title {
    width: 100%;
    color: #e31616;
    background-color: #fff;
    padding: 0.7rem;
    margin: 0;
    font-size: min(2.0vw, 25px);
}

.floating-banner-description {
    text-shadow: #333 1px 1px 0px;
    text-align: left;
    color: #fff;
    margin: 0;
    font-size: min(2.0vw, 25px);
    line-height: 1.3;
}

.floating-banner-description>span {
    color: yellow;
}


.wrapper {
    background-color: black;
    margin: 0 auto;
    padding: 2% 2%;
}

.section {
    margin: 0 auto 2rem;
    max-width: 1400px;
    background-color: black;
    padding: 2rem;
}

.section-headline {
    color: #fff;
    font-size: min(4.0vw, 45px);
    margin-top: 0px;
}

@media screen and (max-width: 550px) {
    .floating-banner {
        width: 40%;
        padding: 0.5rem;
        gap: 0.2rem;
    }

    .floating-banner-title {
        padding: 0.3rem;
        font-size: min(2.8vw, 30px);
    }

    .floating-banner-description {
        font-size: min(2.8vw, 30px);
    }

    .floating-banner-description>br{
        display: none;
    }

    .wrapper {
        padding: 1%;
        padding-top: 1rem;
    }

    .section {
        margin: 0 auto;
        padding: 0.5rem;
    }

    .section-headline {
        font-size: min(4.0vw, 45px);
    }

}



/* ============================
ヘッダー
============================ */

.header {
    margin: 0px;
    padding: 1.5% 2%;
    background-color: #074097;
    text-align: left;
}

.header-h1 {
    margin: 0px;
    align-items: center;
}


.header-image {
    width: 18%;
}


/* ============================
ヒーロー
============================ */

.hero {
    width: 100%;
}

h1 {
    margin: 0;
}

/* ============================
YouTube動画
============================ */


.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%;
    }
}

/* ============================
スコアアップを目指すフィッティング
============================ */

.title-image {
    width: 50%;
    background-color: black;
    padding: 0.5rem;
}

.section.first {
    background-image: url('../img/background-image_fitting.jpg');
    /* 背景画像を固定 */
    background-attachment: fixed;
    /* 背景画像を画面全体にカバー */
    background-size: contain;
    /* 背景画像を中央に配置 */
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}


.fitting {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.fitting-image {
    width: 25%;
}

.fitting-caption {
    width: 75%;
    text-align: left;
}

.fitting-description {
    line-height: 1.6;
    font-size: min(2.0vw, 20px);
}

.arrow-image {
    width: 10%;
}

.fitting-explain {
    color: #333;
    background-color: #ffffffad;
    padding: 2rem;
}

.fitting-explain-title {
    margin-top: 0;
    font-size: min(3.0vw, 35px);
}

.fitting-explain-description {
    text-align: left;
    font-size: min(2.0vw, 18px);
}

.careful {
    font-size: min(1.8vw, 17px);
    margin-bottom: 0px;
    text-align: right;
}

@media screen and (max-width: 550px) {

    .title-image {
        margin: 0.5rem auto;
        width: 70%;
    }

    .fitting {
        flex-direction: column;
        gap: 0.2rem;
    }

    .fitting-image {
        width: 30%;
    }

    .fitting-caption {
        width: 100%;
    }

    .fitting-description {
        font-size: min(3.2vw, 26px);
    }

    .arrow-image {
        width: 15%;
        margin-bottom: 0;
    }

    .fitting-explain {
        padding: 0.5rem;
    }

    .fitting-explain-title {
        font-size: min(3.5vw, 35px);
        margin-bottom: 0.5rem;
    }

    .fitting-explain-description {
        font-size: min(3.2vw, 26px);
        margin: 0.3rem auto;
    }
}

/* ============================
3Dフィッティング
============================ */

.wrapper.white {
    background-color: #fff;
}

.section.white {
    background-color: #fff;
}

.section-headline.black {
    color: #333;

}

.grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.grid-col-3>.grid-item {
    width: 32%;
}

/* .grid-item {} */

.threed {
    margin: 0;
}

/* .threed-caption {} */

.threed-headline {
    font-size: min(2.0vw, 20px);
}

.threed-description {
    text-align: left;
    font-size: min(1.6vw, 16px);
}

@media screen and (max-width: 550px) {
    .grid {
        flex-direction: column;
        align-items: center;
    }

    .grid-col-3>.grid-item {
        width: 90%;
        margin-bottom: 0.5rem;
    }

    .threed-headline {
        font-size: min(3.5vw, 35px);
        margin: 0.2rem auto;
    }

    .threed-description {
        font-size: min(3.2vw, 26px);
        margin: 0.1rem auto;
    }
}

/* ============================
カスタムバリエーション
============================ */

.custom {
    padding-top: 1rem;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.5rem;
}

/* .custom-contents {} */

/* .contents-top {} */

.custom-contents-headline {
    background-color: #f0f0f0;
    font-size: min(4.0vw, 45px);
    color: #333;
    padding: 1rem 0;
    margin: 0;
}

.custom-contents-title {
    color: #f0f0f0;
    font-size: min(4.0vw, 45px);
    margin: 0;
    font-weight: bold;
}

.custom-contents-title.x {
    color: #e31616;
    margin-top: 1rem;
}

.custom-contents-title>span {
    font-size: 0.3em;
}

.contents-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* .contents-item {} */

/* .contents-head-image {} */

.flow-description.white {
    color: #fff;
}

.contents-shaft-list {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 1000px;
    overflow-y: auto;
}

@media screen and (max-width: 1400px) {
    .contents-shaft-list {
        height: 800px;
    }
}

@media screen and (max-width: 1100px) {
    .contents-shaft-list {
        height: 700px;
    }
}

@media screen and (max-width: 900px) {
    .contents-shaft-list {
        height: 600px;
    }
}

@media screen and (max-width: 750px) {
    .contents-shaft-list {
        height: 500px;
    }
}

@media screen and (max-width: 650px) {
    .contents-shaft-list {
        height: 400px;
    }
}

.contents-shaft-item {
    margin-bottom: 1rem;
}

.contents-shaft {
    margin: 0;
    display: flex;
    flex-direction: column-reverse;
}

/* .contents-shaft-image {} */

/* .contents-shaft-caption {} */

/* .shaft-name {} */


@media screen and (max-width: 550px) {
    .custom {
        padding-top: 0.5rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    /* .custom-contents {} */

    .contents-top {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .custom-contents-headline {
        width: 75%;
        padding: 0.5rem 0;
    }

    .custom-contents-title {
        width: 25%;
    }

    .custom-contents-title.x {
        font-size: min(8.0vw, 50px);
        margin-top: 0;
    }

    .contents-list {
        margin-top: 1rem;
        flex-direction: row;
        flex-wrap: Wrap;
        justify-content: start;
        gap: 0.5rem;
    }

    .contents-item {
        width: 48%;
    }

    .contents-item.sure {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .contents-head-image.sure {
        width: 48%;
    }

    .flow-description.white {
        width: 48%;
        font-size: min(3.2vw, 26px);
    }

    .flow-description.white.care {
        width: 100%;
        color: #fff;
    }

    .contents-shaft-list {
        margin-top: 1rem;
        padding: 0.5rem;
        flex-direction: column;
        width: 100%;
        height: 200px;
        overflow-y: auto;
    }

    .contents-shaft-item {
        margin-bottom: 0.5rem;
    }
}



/* ============================
弾道計測器によるクラブ選択
============================ */

.fitting-description.white {
    color: #fff;
}

.column {
    margin-top: 3rem;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
}

/* .section-headline {
    color: #fff;
    font-size: min(3.5vw, 35px);
} */

.column-one {
    width: 84%;
}

.flow {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* .flow-item {} */

.flow-detail {
    background-color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-image {
    width: 32%;
}

.flow-caption {
    padding: 0 1rem;
    width: 68%;
}

.flow-title {
    color: #333;
    text-align: left;
    font-size: min(2.0vw, 20px);
    border-bottom: #333 1px solid;
}

.flow-description {
    color: #333;
    text-align: left;
    font-size: min(1.6vw, 16px);
}

.triangle {
    width: 10%;
    margin: 1rem auto;
}



.section-headline.sab {
    font-size: min(1.9vw, 18px);
    margin-bottom: 0.5rem;
}

.section-headline.sab>span {
    font-size: 0.8em;
}

.column-two {
    padding-top: 1rem;
    width: 16%;
    position: sticky;
    top: 0;
    background-color: #e31616;
}

.message {
    color: #fff;
    font-size: min(2.8vw, 30px);
    font-style: italic;
}

.link,
.page-link {
    margin: 0 auto;
    width: 90%;
    color: #fff;
    font-size: min(2.2vw, 30px);
    font-weight: bold;
    display: block;
    background-color: rgb(221, 0, 0);
    padding: 1rem 0.5rem;
    margin-bottom: 3rem;
    box-shadow: rgb(119, 0, 0) 5px 5px 0px;
    opacity: 1;
    visibility: visible;
    transform: none;

}

.link:hover {
    box-shadow: rgb(119, 0, 0) 0px 0px 0px;
}

.page-link:hover {
    box-shadow: rgb(119, 0, 0) 0px 0px 0px;
}


@media screen and (max-width: 550px) {
    .fitting-description {
        /* font-size: min(3.2vw, 26px); */
    }

    .fitting-description.white {
        text-align: left;
        /* font-size: min(3.2vw, 26px); */
    }

    .column {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }

    .column-one {
        width: 75%;
    }

    .flow {
        margin: 1rem 0;
    }

    .flow-detail {
        flex-direction: column;
    }

    .flow-image {
        width: 100%;
    }

    .section-headline.sab {
        font-size: min(3.0vw, 26px);
    }

    .column-two {
        padding-top: 0.5rem;
        width: 25%;
    }

    .flow-caption {
        padding: 0 0.5rem;
        width: 100%;
    }

    .flow-title {
        font-size: min(3.5vw, 35px);
        margin: 0.5rem auto;
    }

    .flow-description {
        font-size: min(3.2vw, 26px);
        margin: 0.5rem auto;
    }

    .triangle {
        width: 15%;
        margin: 0.3rem auto;
    }

    .message {
        font-size: min(4.5vw, 50px);
    }

    .link,
    .page-link {
        width: 95%;
        font-size: min(3.2vw, 26px);
        padding: 0.5rem 0.5rem;
        margin-bottom: 1rem;
        box-shadow: rgb(119, 0, 0) 2px 2px 0px;
    }
}


/* ============================
発売前に手に入る
============================ */

.section-campaign {
    padding: 2rem;
    background-color: black;
}

.section-headline.campaign {
    background-color: #e31616;
    padding: 1rem 0.5rem;
    animation: section-headlinecampaign 1.1s infinite;
}

.campaign-wrapper {
    padding: 2rem;
    background-color: #fff;
    text-align: left;
}

@keyframes section-headlinecampaign {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }
}

.campaign-text {
    font-weight: bold;
    text-align: center;
    font-size: min(3.0vw, 33px);
}

.campaign-text:nth-child(2) {
    display: block;
    background-color: #e31616;
    color: #fff;
    padding: 0.5rem;
    text-align: center;
}

@media screen and (max-width: 550px) {
    .section-campaign {
        padding: 0.5rem;
    }

    .section-headline.campaign {
        padding: 0.5rem 0.5rem;
    }

    .campaign-wrapper {
        padding: 0.5rem;
    }

    .campaign-text {
        font-size: min(3.3vw, 28px);
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}


/* ============================
テクノロジー
============================ */

.hero-technology {
    display: none;
}

.technology {
    color: #fff;

}

.section-headline.technology {
    margin: 10rem auto;
}

.tab-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: #111 solid 1px;
}

.tab-item {
    width: 20%;
    padding: 1rem 2rem;
    cursor: pointer;
    border: #333 solid 1px;
    background-color: #b9b9b9;
    border-bottom: none;
}

.tab-item.active {
    background-color: #fff;
}

/* .t-logo-image {} */


.panel-list {
    border: #111 solid 1px;
    border-top: none;
}

.panel-item {
    padding: 2rem;
    background-color: #fff;
    display: none;
}

.panel-item.active {
    display: block;
}

.message.black {
    color: #333;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}


.panel-technology {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.technology-image {
    width: 40%;
}

.technology-caption {
    width: 60%;
}

.technology-name {
    color: #333;
    text-align: left;
    font-size: min(2.0vw, 20px);
    font-weight: bold;
    border-bottom: #333 1px solid;
    margin-top: 0;
    margin-bottom: 0.3rem;
}

.technology-description {
    color: #333;
    text-align: left;
    font-size: min(1.6vw, 16px);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.technology-description:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 850px) {
    .hero-technology {
        display: block;
    }

    .section-headline.technology {
        display: none;
    }

    .tab-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.3rem;
    }

    .tab-item {
        border: #333 solid 0.5px;
        padding: 1rem 0.8rem;
    }

    .tab-item.active {
        background-color: #fff;
    }

    /* .t-logo-image {} */

    .panel-list {
        border: #111 solid 0.5px;
        border-top: none;
    }

    .panel-item {
        padding: 1.5rem;
        /* background-color: #f0f0f0; */
        display: none;
    }

    .panel-technology {
        margin: 0;
        flex-direction: column;
        gap: 0.5rem;
    }

    .technology-image {
        width: 100%;
    }

    .technology-caption {
        width: 100%;
    }

    .technology-name {
        font-size: min(3.5vw, 35px);
        margin-bottom: 0.3rem;
    }

    .technology-description {
        font-size: min(3.2vw, 26px);
    }

    .technology-description:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 550px) {

    .hero-technology {
        display: block;
    }

    .section-headline.technology {
        display: none;
    }

    .tab-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.3rem;
    }

    .tab-item {
        padding: 0.3rem 0.5rem;
    }

    .tab-item.active {
        /* background-color: #111; */
    }

    /* .t-logo-image {} */

    .panel-list {
        border: #111 solid 1px;
        border-top: none;
    }

    .panel-item {
        padding: 0.5rem;
        background-color: #f0f0f0;
        display: none;
    }

    .panel-item.active {
        display: block;
    }

    .message.black {
        font-size: min(3.5vw, 35px);
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }


    .panel-technology {
        margin: 0;
        flex-direction: column;
        gap: 0.5rem;
    }

    .technology-image {
        width: 100%;
    }

    .technology-caption {
        width: 100%;
    }

    .technology-name {
        font-size: min(3.5vw, 35px);
        margin-bottom: 0.3rem;
    }

    .technology-description {
        font-size: min(3.2vw, 26px);
    }

    .technology-description:last-child {
        margin-bottom: 0;
    }
}


/* ============================
オンラインショップ
============================ */

.article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.product {
    margin: 0 auto 2rem;
    padding-bottom: 1rem;
    border-bottom: #333 2px solid;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.product:last-child {
    margin-bottom: 0;
}

/* ==================================== */

.product-image {
    width: 30%;
    display: none;
}

.product-image.active {
    display: block;
}

.product-t150-image {
    width: 30%;
    display: none;
}

.product-t150-image.active {
    display: block;
}

.product-t250-image {
    width: 30%;
    display: none;
}

.product-t250-image.active {
    display: block;
}

.product-t250lau-image {
    width: 30%;
    display: none;
}

.product-t250lau-image.active {
    display: block;
}

.product-t350-image {
    width: 30%;
    display: none;
}

.product-t350-image.active {
    display: block;
}

/* ==================================== */

.product-caption {
    width: 70%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.gallery-list {
    width: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
}

/* ==================================== */

.gallery-item {
    width: 100%;
    border: #333 1px solid;
    cursor: pointer;
}

.gallery-item.active {
    border: #333 2px solid;
}


.gallery-t150-item {
    width: 100%;
    border: #333 1px solid;
    cursor: pointer;
}

.gallery-t150-item.active {
    border: #333 2px solid;
}

.gallery-t250-item {
    width: 100%;
    border: #333 1px solid;
    cursor: pointer;
}

.gallery-t250-item.active {
    border: #333 2px solid;
}

.gallery-t250lau-item {
    width: 100%;
    border: #333 1px solid;
    cursor: pointer;
}

.gallery-t250lau-item.active {
    border: #333 2px solid;
}

.gallery-t350-item {
    width: 100%;
    border: #333 1px solid;
    cursor: pointer;
}

.gallery-t350-item.active {
    border: #333 2px solid;
}

/* ==================================== */

.gallery-image {
    width: 100%;
}

.caption-div {
    width: 85%;
}


.product-name {
    color: #333;
    text-align: left;
    font-size: min(2.0vw, 20px);
    font-weight: bold;
    border-bottom: #333 1px solid;
    margin-top: 0;
    margin-bottom: 0.3rem;
}

.product-description {
    color: #333;
    text-align: left;
    font-size: min(1.6vw, 16px);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

/* .shaft {} */

.shaft-name {
    font-size: min(1.6vw, 16px);
    margin: 0;
    text-align: left;
}

.shaft-image {
    width: 100%;
}

.link.product-link {
    margin: 1rem auto;
    width: 100%;
    color: #333;
    font-size: min(1.5vw, 19px);
    background-color: #fff;
    padding: 0.3rem 0;
    border: #333 1px solid;
    box-shadow: #333 2px 2px 0px;
}

.link.product-link>span {
    color: #e31616;
}

.link.product-link:hover {
    box-shadow: #333 0px 0px 0px;
}

@media screen and (max-width: 550px) {

    .article {
        gap: 0.5rem;
    }

    .product {
        flex-direction: column;
        margin: 0 auto 1rem;
        padding-bottom: 0.5rem;
        gap: 0.5rem;
        border-bottom: #333 1px solid;
    }

    .product-image {
        width: 90%;
    }

    .product-t150-image {
        width: 90%;
    }

    .product-t250-image {
        width: 90%;
    }

    .product-t250lau-image {
        width: 90%;
    }

    .product-t350-image {
        width: 90%;
    }

    .product-caption {
        width: 90%;
        flex-direction: column;
        gap: 0.5rem;
    }

    .gallery-list {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .gallery-item {
        width: 100%;
    }

    .gallery-t150-item {
        width: 100%;
    }

    .gallery-t250-item {
        width: 100%;
    }

    .gallery-t250lau-item {
        width: 100%;
    }

    .gallery-t350-item {
        width: 100%;
    }

    .caption-div {
        width: 100%;
    }

    .product-name {
        font-size: min(3.7vw, 35px);
        margin-top: 0;
        margin-bottom: 0.3rem;
    }

    .product-description {
        font-size: min(3.3vw, 28px);
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    /* .shaft {} */

    .shaft-name {
        font-size: min(3.0vw, 24px);
        margin: 0;
        text-align: left;
    }

    .shaft-image {
        width: 100%;
    }

    .link.product-link {
        margin: 0.5rem auto;
        font-size: min(3.5vw, 28px);
        background-color: #fff;
        padding: 0.3rem 0;
        border: #333 1px solid;
        box-shadow: #333 1px 1px 0px;
    }
}



/* ============================
店舗一覧
============================ */

.shop {
    width: 100%;
    margin: 4rem auto 4.5rem;
    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 2.5rem;
    }

    .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: 15%;
    text-align: center;
    margin: 0px auto;
}

.logo-link:hover {
    opacity: 0.7;
}

.footer-list {
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

.footer-item {
    width: 8%;
}

.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: 30%;
    }

    .footer-item {
        width: 14%;
    }

    .policy-link {
        font-size: 2vw;
    }

    .footer-p02 {
        font-size: 2vw;
    }
}