@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;
    font-weight: bold;
}


/* ============================
デフォルト設定
============================ */

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;
    text-align: left;
}

.header-h1 {
    margin: 0px;
    align-items: center;
}


.header-image {
    visibility: visible;
    width: 18%;
}


/* ============================
ヒーロー
============================ */

.hero {
    visibility: visible;
    width: 100%;
}

h1 {
    margin: 0;
    visibility: visible;
}

.campaign-link {
    margin: 2rem auto;
    padding: 1rem 0;
    display: block;
    color: #fff;
    font-weight: bold;
    background-color: red;
    font-size: min(4.0vw, 45px);
    max-width: calc(1400px - 2rem);
    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;
    }
}





/* ============================
全体設定
============================ */

/* .main {} */

.background.first {
    background-color: #5c0202;
}

/* .section-hero-image {} */

.section {
    margin: 0 auto;
    max-width: 1400px;
    padding: 2rem;
}

.section-headline {
    color: #fff;
    font-size: min(4.0vw, 45px);
    margin-top: 0px;
}

.section-wrapper {
    background-color: #fff;
    padding: 2rem;
}

.section-over-view {
    font-size: min(3.5vw, 35px);
    font-style: italic;
    margin-top: 0;
}

@media screen and (max-width: 550px) {
    .section {
        padding: 0.5rem;
    }

    .section-headline {
        font-size: min(4.5vw, 45px);
    }

    .section-wrapper {
        padding: 0.5rem;
    }

    .section-over-view {
        font-size: min(3.8vw, 37px);
        font-style: italic;
        margin-top: 0.3rem;
    }
}

/* ============================
YouTube動画
============================ */

.background.doga{
    background-color: #f4f1f1;
}

.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%;
    }
}



/* ============================
前作との比較
============================ */

.card-list {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-list.col-2>.card-item {
    width: 48%;
}

/* .card-item {} */

.card-headline {
    font-size: min(3.0vw, 24px);
    color: #fff;
    background-image: linear-gradient(45deg, #201f1f, #c81616, #f6612a);
    padding: 0.5rem 0;
    margin: 0 auto 0.5rem;
}

/* .card-contents {} */

/* .card-image {} */

.card-caption {}

.card-description {
    font-size: min(3.0vw, 24px);
    margin-bottom: 0;
}

.card-description.technology {
    text-align: left;
}

.card-description>span {
    color: #c81616;
    font-size: 1.5em;
    font-weight: bold;
}

@media screen and (max-width: 550px) {
    .card-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .card-list.col-2>.card-item {
        width: 100%;
        margin-bottom: 1rem;
    }

    .card-headline {
        font-size: min(3.7vw, 30px);
    }

    .card-description {
        font-size: min(3.3vw, 28px);
    }
}

/* ============================
テクノロジー
============================ */

.contents-list {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 1rem;
}

.contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
}

.contents.second {
    flex-direction: row-reverse;
}

.contents-image {
    width: 50%;
}

.contents-caption {
    width: 50%;
}

.section-over-view.technology {
    margin-top: 1.5rem;
}

@media screen and (max-width: 550px) {
    .section-over-view.technology {
        margin-top: 0.5rem;
    }

    .contents {
        flex-direction: column-reverse;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .contents.second {
        flex-direction: column-reverse;
    }

    .contents-image {
        width: 90%;
    }

    .contents-caption {
        width: 100%;
    }
}


/* ============================
価格
============================ */

.price {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;

}

/* =============切り替え============= */

.product-main-image {
    width: 30%;
    border: #333 1px solid;
    padding: 2px;
    display: none;
}

.product-main-image.active {
    display: block;
}

.product-main-image-idi {
    width: 30%;
    border: #333 1px solid;
    padding: 2px;
    display: none;
}

.product-main-image-idi.active {
    display: block;
}

/* =============切り替え============= */

.price-caption {
    width: 70%;
    text-align: left;
}

.price-name {
    font-size: min(3.0vw, 24px);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.price-description {
    font-size: min(2.5vw, 19px);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.online-link {
    display: block;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 0.5rem;
    background-color: #c81616;
    box-shadow: #5c0202 2px 2px 0px;
    width: 80%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.online-link>span {
    color: rgb(239, 239, 9);
}

.online-link:hover {
    box-shadow: #5c0202 0px 0px 0px;
}

.price-product-list {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 0.5rem;
}

/* =============切り替え============= */

.price-product-item {
    width: 10%;
    padding: 2px;
    border: #333 1px solid;
    cursor: pointer;
}

.price-product-item.active {
    border: #333 2px solid;
}

.price-product-item-idi {
    width: 10%;
    padding: 2px;
    border: #333 1px solid;
    cursor: pointer;
}

.price-product-item-idi.active {
    border: #333 2px solid;
}

/* =============切り替え============= */

@media screen and (max-width: 850px) {
    .price {
        padding: 0 1rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .product-main-image {
        width: 100%;
    }

    .product-main-image-idi {
        width: 100%;
    }


    .price-caption {
        width: 100%;
    }

    .price-name {
        font-size: min(3.5vw, 28px);
        margin-top: 0;
        margin-bottom: 0.2rem;
    }

    .price-description {
        font-size: min(3.0vw, 24px);
        margin-bottom: 0.2rem;
    }

    .online-link {
        width: 100%;
        margin: 0.8rem auto;
    }

    .price-product-item {
        width: 25%;
    }

    .price-product-item-idi {
        width: 25%;
    }
}


/* ============================
iDi
============================ */

/* ============================
テクノロジー
============================ */

.background.second {
    background-image: linear-gradient(45deg, #06090a, #8a8b8c, #dcdcdc, #06090a);
}

.section-headline.idi {
    color: #021c42;
}

.card-headline.idi {
    background-image: none;
    background-color: #8a8b8c;
    text-shadow: #333 1.2px 1.2px 0px;
}

/* ============================
キャンペーン
============================ */

.background.third {
    background-color: #ffffff;
}

.section-headline.campaign {
    color: #fff;
    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(3.0vw, 24px);
    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: #fff;
    color: #021c42;
}

.campaign-massage.point>span {
    font-size: 1.5em;
    color: #c81616;
}

.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;
}

.careful {
    font-size: min(1.8vw, 17px);
    margin-top: 0;
    margin-bottom: 0px;
    text-align: left;
}

@media screen and (max-width: 550px) {
    .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(3.7vw, 30px);
        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: 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;
    }
}