@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;
    position: relative;
}




/* .container {
    position: relative;
    width: 400px;
    height: 200px;
    overflow: hidden;
    background-color: #eee;
    margin: 50px auto;
}

.wipe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #3498db;
    transition: left 0.5s ease;
}

.wipe.active {
    left: 0%;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: white;
    z-index: 1;
} */


/* ============================
デフォルト設定
============================ */

a {
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    transition: 0.5s;
}

img {
    width: 100%;
}

figure,
figcaption,
dl,
dt,
dd,
ol,
ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0;
}

h2,
h3,
h4,
img,
a,
dt,
dd,
p {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    transform: translateX(-50px);
    /* position: absolute; */
    /* top: 0; */
    /* left: -100%; */
    /* width: 100%; */
    /* height: 100%; */
    /* transition: left 0.5s ease; */
}

/* dt,
dd {
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    transform: translateX(100px);
} */

.is-visible {
    opacity: 1;
    visibility: visible;
    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%;
}


/* ============================
トップの動画
============================ */

.mv {
    width: 100%;
}

.mv-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.35%;
}

.mv-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.top-video {}

.video-button {
    position: absolute;
    bottom: 10px;
    left: 20px;
    z-index: 3;
    display: inline-block;
}

.video-button>img {
    width: 55px;
    height: auto;
}

.video-button>img:hover {
    cursor: pointer;
}

@media screen and (max-width: 450px) {
    .video-button {
        position: absolute;
        bottom: 10px;
        left: 10px;
        z-index: 3;
    }

    .video-button>img {
        width: 35px;
        height: auto;
    }
}



/* ============================
ヒーロー
============================ */

.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 {
    margin: 0 auto;
    padding: 2%;
    background-image: linear-gradient(45deg, #1e1d21, #dd5881, #a4233c, #1e1d21);
}

.wrapper {
    margin: 0 auto;
    max-width: 1200px;
}

.section {
    padding: 0 2rem;
    margin: 0 auto;
}

.section-headline {
    margin: 4rem auto;
    padding: 1rem;
    color: #fff;
    background-color: #333399;
    font-size: min(4.0vw, 45px);
    font-style: italic;
}

.section-move-headline {
    margin: 2rem auto;
    padding: 1rem;
    color: #fff;
    font-size: min(4.0vw, 45px);
    border-bottom: #fff 2px solid;
}


@media screen and (max-width: 840px) {
    .main {
        padding: 1%;
    }

    .section {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 600px) {

    .section {
        padding: 0 0.5rem;
    }

    .section-headline {
        margin: 2rem auto;
        padding: 0.5rem;
        font-size: min(4.0vw, 45px);
    }

    .section-move-headline {
        margin: 1rem auto;
        padding: 0.5rem;
        color: #fff;
        font-size: min(4.0vw, 45px);
        border-bottom: #fff 1px solid;
    }
}


/* ============================
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%;
    }
}


/* ============================
テクノロジー
============================ */
.technology {
    color: #fff;
    text-align: left;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
}

.technology.reverse {
    margin: 0;
    display: flex;
    flex-direction: column-reverse;
}

.technology.right {
    text-align: right;
}

.technology-image {
    margin: 0 auto;
    width: 60%;
}

/* .technology-caption {} */

.tech-headline {
    font-size: min(4.0vw, 45px);
    background-color: #e31616;
    display: inline-block;
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 0 1rem;
    font-style: italic;
}

.tech-description {
    font-size: min(2.5vw, 20px);
}

.tech-description>span {
    color: #e31616;
    background-color: #fff;
    padding: 0 1rem;
}

.tech-description.left {
    text-align: left;
}

.tech-x-image {
    width: 30%;
}

.card {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin: 4rem auto;
}

.card-list {
    width: 32%;
}

.card-headline {
    color: #e31616;
    background-color: #fff;
    font-size: min(2.5vw, 20px);
}

.card-image {
    margin: 0.5rem 0;
}

.card-description {
    color: #fff;
    font-size: min(2vw, 18px);
    text-align: left;
}

@media screen and (max-width: 600px) {
    .technology {
        margin: 0.5rem auto;
    }

    .technology-image {
        width: 65%;
    }

    .tech-headline {
        font-size: min(4.4vw, 45px);
        margin-top: 0.5rem;
        margin-bottom: 0;
        padding: 0 1rem;
    }

    .tech-description {
        font-size: min(2.8vw, 24px);
    }

    .tech-x-image {
        width: 40%;
    }

    .card {
        gap: 0.5rem;
        margin: 2rem auto;
    }

    .card-headline {
        font-size: min(3.0vw, 24px);
    }

    .card-description {
        font-size: min(2.8vw, 24px);
    }
}

/* ============================
ラインナップ
============================ */

.tab-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.tab-item {
    width: 25%;
    color: #fff;
    background-color: #e31616;
    padding: 0.5rem;
    font-size: min(2.5vw, 20px);
    cursor: pointer;
}

.tab-item.active {
    color: #e31616;
    background-color: #fff;
}

.panel-list {
    background-color: #fff;
    padding: 2rem 1rem 1rem 1rem;
}

.panel-item {
    display: none;
}

.panel-item.active {
    display: block;
}

.panel-section {
    text-align: left;
    margin-bottom: 2rem;
}

/* .panel-image {} */

.panel-headline {
    display: inline-block;
    text-align: left;
    font-size: min(2.5vw, 20px);
    font-style: italic;
    color: #fff;
    background-color: #e31616;
    padding: 0.5rem 1rem;
    margin-bottom: 0;
}

.panel-overview {
    margin: 0;
    text-align: left;
    font-size: min(2.5vw, 20px);
    font-style: italic;
    color: #e31616;
    padding: 0.5rem 1rem;
}

.func {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
}

.panel-func {
    width: 49%;
    padding: 1rem;
}

.panel-func.ir {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 1rem;
}

.panel-func.ir:nth-child(3) {
    margin-top: 2rem;
}

.panel-func.ir:nth-child(4) {
    margin-top: 2rem;
}

.panel-func.single {
    margin: 0 auto;
    width: 100%;
}

/* .panel-func-image {} */

/* .panel-func-caption {} */

.panel-func-headline {
    font-size: min(2.5vw, 20px);
    font-style: italic;
    color: #e31616;
    margin-top: 0;
    margin-bottom: 0;
}

.panel-func-description {
    font-size: min(2vw, 18px);
}



.price {
    padding: 1rem;
}

.price-headline {
    border-top: #333 2px solid;
    font-size: min(2.5vw, 20px);
    font-style: italic;
}

.price-wrapper {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.price-wrapper.ut {
    margin-bottom: 2rem;
}

.price-club {
    width: 50%;
}

.price-nomal-image {
    margin-bottom: 0.5rem;
}

.price-sub-image {
    margin: 0.5rem auto;
}

.online-link {
    display: block;
    font-size: min(2vw, 18px);
    font-style: italic;
    background-color: #333399;
    color: #fff;
    padding: 1rem;
    text-align: center;
    box-shadow: #000066 2.5px 2.5px 0px;
    margin: 1rem auto;
}

.online-link:hover {
    box-shadow: #000066 0px 0px 0px;
}

.shaft-list {
    width: 49%;
}

.shaft-item {
    margin-bottom: 1rem;
}

.shaft {
    display: flex;
    flex-direction: column-reverse;
}

/* .shaft-image {} */

/* .shaft-caption {} */

.shaft-name {
    font-size: min(2vw, 18px);
    margin: 0;
}

@media screen and (max-width: 600px) {
    .tab-list {
        gap: 0.5rem;
    }

    .tab-item {
        width: 25%;
        padding: 0.3rem 0.5rem;
        font-size: min(3.0vw, 24px);
    }

    .panel-list {
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }

    .panel-section {
        margin-bottom: 1rem;
    }

    /* .panel-image {} */

    .panel-headline {
        font-size: min(3.0vw, 24px);
        padding: 0.2rem 0.5rem;
    }

    .panel-overview {
        font-size: min(3.0vw, 24px);
        padding: 0.2rem 0.5rem;
    }

    .func {
        display: flex;
        flex-wrap: wrap;
        align-items: start;
        justify-content: space-between;
    }

    .panel-func {
        width: 50%;
        padding: 0.5rem;
    }

    .panel-func.ir {
        display: flex;
        flex-direction: column-reverse;
        margin-top: 1rem;
    }

    .panel-func-image {
        /* margin: 0 auto;
        width: 60%; */
    }

    .panel-func-headline {
        font-size: min(2.8vw, 24px);
    }

    .panel-func-description {
        font-size: min(2.8vw, 24px);
    }

    .price {
        padding: 0.5rem;
    }

    .price-headline {
        border-top: #333 1px solid;
        font-size: min(2.5vw, 20px);
        margin-top: 0.5rem;
    }

    .price-wrapper {
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 1rem;
    }

    .price-wrapper.ut {
        margin-bottom: 2rem;
    }

    .price-club {
        width: 50%;
    }

    .price-nomal-image {
        margin-bottom: 0.5rem;
    }

    .price-sub-image {
        margin: 0.5rem auto;
    }

    .online-link {
        font-size: min(2.8vw, 24px);
        padding: 0.5rem;
        box-shadow: #000066 2px 2px 0px;
        margin: 0.5rem auto;
    }

    .shaft-list {
        width: 49%;
    }

    .shaft-item {
        margin-bottom: 0.5rem;
    }

    .shaft {
        display: flex;
        flex-direction: column-reverse;
    }

    /* .shaft-image {} */

    /* .shaft-caption {} */

    .shaft-name {
        font-size: min(2.8vw, 24px);
        margin: 0;
    }
}



/* ============================
キャンペーン
============================ */

.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;
    margin-bottom: 0;
}

.campaign-simulation {
    /* background-color: rgba(153, 204, 255, 0.785); */
    padding: 2rem;
    margin: 0 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: 1em;
    color: #333;
    /* 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 {
    color: #fff;
    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: 1em;
    color: #fff;
    /* 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 {
    margin-top: 0;
    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 {
    color: #fff;
}

.careful {
    color: #fff;
    font-size: min(1.8vw, 17px);
    margin-top: 0;
    margin-bottom: 0px;
    text-align: left;
}

.careful.black {
    color: #333;
}

@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;
        font-size: min(3.7vw, 36px);
    }

    .card-description.technology {
        font-size: min(2.8vw, 25px);
    }

    .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-top: 0.5rem;
        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: 20%;
        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;
    }
}