@charset "UTF-8";

body {
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    counter-reset: number 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

a {
    display: block;
}

a:hover {
    opacity: 0.8;
    transition: all 0.3s;
}


/* 共通スタイル
======================= */
/* PC */
@media screen and (min-width: 751px) {
    .contents_inner {
        max-width: 750px;
        margin: 0 auto;
    }
}





/* -----------------------------------
    トップページ
----------------------------------- */

/* コンテンツ幅
======================= */
@media screen and (min-width: 751px) {
    .contents_inner_toppage {
        box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
    }
}


/* FV
======================= */
.header_slider {
    margin-bottom: 28px;
}

.swiper {
    height: 44vw;
    max-height: 330px;
    min-height: 140px;
}

.swiper-wrapper {
    transition-timing-function: linear;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: top;
}

/* PC */
@media screen and (min-width: 751px) {
    .header_slider {
        margin-bottom: 40px;
    }

    .swiper {
        height: 40vw;
    }
}


/* offer
======================= */
.offer_btn {
    margin: 0 auto;
    width: 95%;
}

.offer_btn a {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.offer_btn a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background-image: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 10%,
        rgba(255, 255, 255, 0.7) 100%,
        rgba(255, 255, 255, 0) 0%
    );
    transform: scale(1, 1) rotate(-25deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -20%;
    }

    10% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}


/* area13
======================= */
.area13 {
    position: relative;
}

.area13_img {
    width: 100%;
    text-align: center;
}

.area13_video {
    position: absolute;
    bottom: 6%;
    left: 20px;
    right: 20px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.area13_video_wrapper {
    width: 100%;
    height: 100%;
}

.area13_video_wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* footer
======================= */
footer {
    color: #fff;
    font-size: 12px;
    display: block;
    background: #251d00;
    padding: 0 10px;
}

.footer-nav {
    text-align: center;
    padding: 20px 0 10px;
}

.footer-nav li {
    display: inline-block;
    margin: 0 5px 0 0;
    border-right: 1px solid #fff;
}

.footer-nav li:last-child {
    border: none;
    margin-right: 0;
    padding-right: 0;
}

.footer-nav li a {
    text-decoration: none;
    padding: 0 10px 0 0;
}

.footer-nav li:last-child a {
    padding-right: 0;
}

.copyright {
    text-align: center;
    padding: 10px 0;
    padding-bottom: 10px;
}

/* PC */
@media screen and (min-width: 751px) {
    footer {
        font-size: 18px;
    }
}


/* floating btn
======================= */
#cta {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 40%;
    max-width: 240px;
    height: auto;
    padding: 20px;
    z-index: 9999;
    opacity: 1;
}





/* -----------------------------------
    下層ページ
----------------------------------- */

/* 共通スタイル
======================= */
.contents_inner_subpage {
    padding: 32px 20px;
    line-height: 1.5;
}

.title {
    margin-bottom: 32px;
}

.title h1 {
    font-size: clamp(1.5rem, 1.407rem + 0.47vw, 1.625rem);
    font-weight: 500;
    text-align: center;
    margin-bottom: 24px;
}

.privacy h2,
.law dt {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    border-bottom: 5px solid #d5d5d5;
    padding-bottom: 10px;
    line-height: 1.2;
    position: relative;
}

.privacy h2::after,
.law dt::after {
    position: absolute;
    content: "";
    display: block;
    border-bottom: 5px solid #F06050;
    bottom: -5px;
    width: 72px;
}


/* プライバシーポリシー
======================= */
.privacy {
    margin-bottom: 32px;
}

.privacy h2::before {
    counter-increment: number 1;
    content: counter(number) ". ";
}

.privacy h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}

.privacy ul {
    margin-top: 8px;
}

.privacy li {
    position: relative;
    padding-left: 10px;
}

.privacy li::before{
    position: absolute;
    content: "";
    top: 36%;
    left: 0;
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #C3905E;
}

.privacy_tools:first-child {
    margin-bottom: 24px;
}

.privacy_tools a{
    display: inline;
    text-decoration: underline;
}


/* 特商法
======================= */
.law dt {
    font-weight: 500;
}

.law dd {
    margin-bottom: 32px;
}
