@charset "utf-8";

/* 基本 */
* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
}

html {
    font-size: 62.5%;
    height: -webkit-fill-available;
}

.tab {
    display: none;
}

img {
    width: 100%;
    height: auto;
    /* 画像の下にできる余白削除 */
    vertical-align: bottom;
}

a {
    text-decoration: none;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.flex-start1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flex-start2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.v-flex {
    display: flex;
    flex-flow: column;
}

.pc {
    display: block;
}

.tab {
    display: none;
}

.sp {
    display: none;
}

#hamburger-container {
    margin: 0;
    padding: 0;
}

/* 文字設定（任意） */
p {
    text-justify: inter-ideograph;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #ffffff;
    overflow-wrap: break-word;
    max-width: 720px;
    font-feature-settings: "palt";
    margin-bottom: 4rem;
}

p.slogan {
    text-justify: inter-ideograph;
    font-size: 5.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.07em;
    color: #ffffff;
    overflow-wrap: break-word;
    max-width: 720px;
    font-feature-settings: "palt";
    /* 追記 */
    margin-bottom: 4.8rem;
}

p.slogan span {
    color: #00AB16;
}

p.supplement-p-top1 {
    margin: 0 1.2rem 1.6rem 0;
    text-transform: uppercase;
    padding: 0.16rem 0.64rem;
    border: 0.1rem solid #00AB16;
    color: #00AB16;
    border-radius: 9999px;
}

p.supplement-p-top2 {
    margin: 0 0 1.6rem;
}

p.supplement-p-bottom {
    margin: 0 0 4.8rem;
}

h2 {
    text-justify: inter-ideograph;
    font-size: 17.6rem;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: #00AB16;
    font-feature-settings: "palt";
    text-align: center;
}

h3 {
    text-justify: inter-ideograph;
    font-size: 14.4rem;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #00AB16;
    font-feature-settings: "palt";
    text-align: center;
    margin-bottom: 7.2rem;
    text-transform: uppercase;
}

.section-title::before {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: .04em;
    font-style: normal;
    font-weight: 600;
    content: attr(data-jp);
    display: block;
    color: #ffffff;
    margin-bottom: 4rem;
    text-align: center;
}

h4 {
    text-justify: inter-ideograph;
    font-size: 5.6rem;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #ffffff;
    font-feature-settings: "palt";
    margin-bottom: 1.6rem;
}

h5 {
    text-justify: inter-ideograph;
    font-size: 4rem;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #ffffff;
    font-feature-settings: "palt";
}

h6 {
    text-justify: inter-ideograph;
    font-size: 2.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #ffffff;
    overflow-wrap: break-word;
    max-width: 720px;
    font-feature-settings: "palt";
    /* margin-bottom: 4rem; */
    margin-bottom: 0.8rem;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.uppercase-letter {
    text-transform: uppercase;
    /* 文字サイズ変えるなら */
    /* font-size: 8.8rem; */
    /* margin-bottom: 4rem; */
    /* 縁文字なら */
    color: rgba(0, 0, 0, .0);
    -webkit-text-stroke: 0.2rem #FFF;
}

.green-character {
    color: #00AB16;
}

.yellow-character {
    color: #f3e100;
}

.sky-blue-character {
    color: #034f1b;
}

.black-character {
    color: #231815;
}

.red-character {
    color: #E60012;
}

.big-span {
    font-size: 4rem;
}

.big-big-span {
    font-size: 5.4rem;
}

/* body */
body {
    background-color: #000000;
}

/* グロナビ */
.g-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    /* 追記 */
    background-image: linear-gradient(to bottom, rgba(0, 171, 22, 1), rgba(0, 171, 22, 0));
    padding: 4rem 4rem 0;
    position: fixed;
    z-index: 500;
    top: 0;
}

.logo {
    /* width: 12.89rem; */
    width: 18rem;
}

.logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul#g-nav {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    list-style: none;
}

li:not(:last-child) {
    margin-right: 5rem;
}

/* グロナビ追記 */
.g-nav li a {
    text-justify: inter-ideograph;
    font-size: 2.4rem;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.03em;
    color: #ffffff;
    overflow-wrap: break-word;
    max-width: 720px;
    font-feature-settings: "palt";
}

/* 下の緑の光 */
.bottom-green {
    background-image: linear-gradient(to top, rgba(0, 171, 22, 1), rgba(0, 171, 22, 0));
    position: fixed;
    width: 100vw;
    height: 8rem;
    bottom: 0;
    z-index: 500;
}

/* section */
section {
    padding: 20rem 0 0;
}

.section-wrap {
    max-width: 128rem;
    margin: 0 auto;
    padding: 0 1.6rem;
}

/* botton */
.button a {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    text-decoration: none;
    display: block;
    /* max-width: 250px; */
    width: 24rem;
    background-color: #333;
    margin: auto;
    padding: 1.6rem 30px;
    font-family: "Noto Sans Japanese";
    text-align: center;
    line-height: 1.8;
    text-decoration: none;
    font-weight: 500;
    outline: none;
    color: #fff;
    transition: ease .2s;
}

.button a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
}

.button a:hover::before {
    animation: shine 0.7s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* botton追記 */
.recruit-botton a {
    text-justify: inter-ideograph;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #ffffff;
    overflow-wrap: break-word;
    font-feature-settings: "palt";
    margin-right: 1.6rem;
}

.line-botton a {
    background-color: #00AB16;
    text-justify: inter-ideograph;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #ffffff;
    overflow-wrap: break-word;
    font-feature-settings: "palt";
}

.big-botton a {
    text-justify: inter-ideograph;
    font-size: 2rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #ffffff;
    overflow-wrap: break-word;
    font-feature-settings: "palt";
    /* margin-right: 0; */
    width: 40rem;
    padding: 1.6rem 2.4rem;
}

.big-botton-notes {
    margin-bottom: 2.4rem;
}

.tel-botton {
    margin-bottom: 3.6rem;
}

/* fv */
#fv {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100vw;
    height: auto;
    /* height: 100dvh; */
    aspect-ratio: 16 / 9;
    padding: 0;
}

.fv-slogan {
    grid-row: 1 / -1;
    grid-column: 1 / 2;
    z-index: 15;
    align-self: flex-start;
    justify-self: flex-start;
    margin-top: 18.4rem;
    display: flex;
    flex-flow: column;
    filter: drop-shadow(0 0 1rem rgba(0, 0, 0, .4));
}

.fv-slogan p {
    font-size: 9.6rem;
    font-weight: 700;
    margin: 0;
    display: inline;
    background: linear-gradient(transparent 98%, #ffffff 0%);
    background-repeat: repeat-y;
    padding-left: 4rem;
}

.fv-logo {
    width: 45%;
    height: auto;
    grid-row: 1 / 2;
    grid-column: 1 / -1;
    z-index: 10;
    align-self: flex-end;
    justify-self: center;
    margin-bottom: 8rem;
    filter: drop-shadow(0 0 1rem rgba(0, 0, 0, .4));
}

.fv-backlogo {
    width: 95.8%;
    height: auto;
    grid-row: 1 / -1;
    grid-column: 1 / -1;
    z-index: 5;
    align-self: flex-end;
    justify-self: center;
}

.fv-img {
    width: 100vw;
    height: auto;
    /* height: 100dvh; */
    grid-row: 1 / -1;
    grid-column: 1 / -1;
    z-index: 1;
    align-self: center;
    justify-self: center;
    overflow: hidden;
}

.campaign-top-bg {
    grid-column: 1 / 1;
    grid-row: 1 / 1;
    z-index: 1;
    align-self: center;
    justify-self: center;
    height: 100%;
    width: 100%;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.campaign-top-bg-img {
    grid-row: 1 / -1;
    grid-column: 1 / -1;
    height: 100%;
    width: auto;
    justify-self: center;
    align-self: center;
    z-index: 1;
}

.campaign-top-main-img {
    grid-row: 1 / -1;
    grid-column: 1 / -1;
    height: 100%;
    width: auto;
    justify-self: center;
    align-self: center;
}


.get-money {
    width: 30%;
    height: auto;
    grid-row: 1 / -1;
    grid-column: 1 / -1;
    z-index: 15;
    align-self: flex-end;
    justify-self: flex-end;
    margin: 0 4rem 20rem 0;
}

.iine {
    width: 10%;
    height: auto;
    grid-row: 1 / -1;
    grid-column: 1 / -1;
    z-index: 15;
    align-self: flex-end;
    justify-self: flex-start;
    margin: 0 0 35rem 4rem;
}

.heart {
    width: 9%;
    height: auto;
    grid-row: 1 / -1;
    grid-column: 1 / -1;
    z-index: 15;
    align-self: flex-end;
    justify-self: flex-start;
    margin: 0 0 25rem 15%;
}

/* ムービー */
.fv-img {
    position: relative;
}

/* imgのみ */
.move-item {
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 30s 0s infinite;
    animation: anime 30s 0s infinite;
}

.move-item:nth-of-type(2) {
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
}

.move-item:nth-of-type(3) {
    -webkit-animation-delay: 20s;
    animation-delay: 20s;
}

/* ふわっとアニメーション */
@keyframes anime {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    35% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        z-index: 9;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes anime {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    35% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        z-index: 9;
    }

    100% {
        opacity: 0;
    }
}

/* recruit-fv */
#recruit-fv {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100vw;
    height: auto;
    aspect-ratio: 8 / 3;
    padding: 0;
}

.recruit-fv-img {
    opacity: 0.5;
    width: 100vw;
    height: auto;
    grid-row: 1 / -1;
    grid-column: 1 / -1;
    z-index: 1;
    align-self: center;
    justify-self: center;
    overflow: hidden;
    object-fit: cover;
}

.recruit-backlogo01 {
    height: 58.6%;
    width: auto;
    grid-row: 1 / 2;
    grid-column: 1 / -1;
    z-index: 5;
    align-self: flex-end;
    justify-self: center;
}

.recruit-title {
    grid-row: 1 / -1;
    grid-column: 1 / 2;
    z-index: 5;
    align-self: flex-end;
    justify-self: center;
    text-align: center;
    color: ffffff;
    z-index: 10;
}

.recruit-title h2 {
    color: #ffffff;
}

/* about */
h2 {
    margin-bottom: 6.4rem;
    /* margin-bottom: 2.4rem; */
}

#about h2 {
    text-transform: uppercase;
}

.middle-p {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 4.8rem;
}

.about-p span {
    color: #00AB16;
}

.l-side {
    width: 50%;
}

.r-side {
    width: 50%;
}

.about-letter-img {
    width: 60rem;
    height: auto;
}

/* カードレイアウト開始 */
.card-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.worry-card {
    gap: 9.6rem;
}

.card-item {
    padding: 3rem;
    width: calc((100% - 3rem * 2) / 3);
    background-color: #181818;
    display: flex;
    flex-direction: column;
    padding: 4.8rem;
    /* border-radius: 1rem; */
    border-radius: 3px;
    text-align: center;
}

.worry-card-item {
    width: calc((100% - 9.6rem * 2) / 3);
    padding: 0;
}

.card-item img {
    margin-bottom: 4rem;
    height: 20rem;
    width: auto;
}

.card-p {
    flex-grow: 1;
    /* margin-bottom: 2rem; */
    margin-bottom: 0;
}

.card-a {
    display: block;
    padding: 2rem 0;
    color: #111;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    background-color: aqua;
    border-radius: 1rem;
}

/* カードレイアウト終了 */
/* 定義リスト */
dl {
    display: flex;
    justify-content: space-between;
}

dt {
    padding: 2rem 3rem;
    width: 28%;
    /* border-bottom: 0.2rem solid #000000; */
}

dd {
    padding: 2rem 3rem;
    width: calc(100% - 28%);
    /* border-bottom: 0.2rem solid #00ffff; */
}

.last-dl {
    margin-bottom: 0;
}

/* 横並びコンテンツ */
.side-card-wrap {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    border-bottom: 0.1rem solid #767676;
}

.side-card-wrap:nth-child(even) {
    flex-direction: row-reverse;
}

.side-card-img {
    width: 50%;
    /* 追記 */
    padding: 4.8rem;
}

.side-card-text {
    padding: 0 3rem;
    width: 50%;
    /* 追記 */
    padding: 4.8rem;
}

.side-card-img img {
    display: block;
    width: 100%;
    height: auto;
    /* border-radius: 1rem; */
    border-radius: 3px;
}

/* 横並びコンテンツ2 */
.side-card-wrap2 {
    display: flex;
    align-items: center;
    margin: 0 auto 5rem;
    width: 60rem;
}

.side-card-wrap2:nth-child(even) {
    flex-direction: row-reverse;
}

.side-card-img2 {
    width: 50%;
}

.side-card-text2 {
    padding: 0 3rem;
    width: 50%;
}

.side-card-img2 img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* footer */
footer {
    padding: 20rem 0 6.4rem;
    background-image: url(../img/kasegitai-o.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.footer-wrap {
    max-width: 128rem;
    margin: 0 auto;
    padding: 0 1.6rem;
}

footer h3 {
    text-align: start;
    justify-self: flex-start;
}

footer h3.section-title::before {
    text-align: start;
    justify-self: flex-start;
}

footer .l-side {
    align-items: flex-start;
}

.footer-botton {
    justify-self: flex-end;
}

footer .r-side {
    justify-content: space-between;
}

p.supplement-p-top1b {
    margin: 0 1.2rem 1.6rem 0;
    text-transform: uppercase;
    padding: 0.16rem 0.64rem;
    border: 0.1rem solid #00AB16;
    color: #00AB16;
    border-radius: 9999px;
    font-size: 1.4rem;
}

p.supplement-p-top2b {
    font-size: 1.4rem;
    margin: 0 0 1.6rem;
}

.link-list {
    padding: 2.4rem 0;
    border-bottom: 0.1rem solid #767676;
    align-items: center;
}

.link-title {
    width: calc(100% - 4.8rem);
    height: auto;
}

.link-allow {
    width: 4.8rem;
    height: auto;
}

small {
    text-justify: inter-ideograph;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #ffffff;
    overflow-wrap: break-word;
    font-feature-settings: "palt";
    margin: 16rem auto 0;
    padding: 3.2rem 0 0;
    text-align: center;
    display: block;
    border-top: 0.1rem solid #767676;
}

/* 定義リスト */
dl {
    margin-bottom: 1rem;
    background-color: #181818;
    border-radius: 3px;
}

dt {
    color: #ffffff;
    text-justify: inter-ideograph;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    overflow-wrap: break-word;
    max-width: 720px;
    font-feature-settings: "palt";
    padding: 4.8rem;
}

dd {
    color: #ffffff;
    text-justify: inter-ideograph;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.04em;
    overflow-wrap: break-word;
    max-width: 720px;
    font-feature-settings: "palt";
    padding: 4.8rem;
}

.indent {
    text-indent: -1em;
    padding-left: calc(4.8rem + 1em);
}

/* あしらい */
h2 {
    position: relative;
    z-index: 2;
}

h2::after {
    position: absolute;
    z-index: 3;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

h3 {
    position: relative;
    z-index: 2;
}

#about h2::after {
    background-image: url(../img/pick-up.webp);
    width: 30rem;
    height: 15rem;
    right: 6rem;
    bottom: -4rem;
}

h3::after {
    position: absolute;
    z-index: 3;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#stores h3::after {
    background-image: url(../img/select.webp);
    width: 50rem;
    height: 12rem;
    right: 10rem;
    bottom: -4rem;
}

footer h3::after {
    background-image: url(../img/say-hellow.webp);
    width: 20rem;
    height: 10rem;
    right: -2rem;
    bottom: -2rem;
}

#entry h3::after {
    background-image: url(../img/try.webp);
    width: 20rem;
    height: 10rem;
    right: calc(50% - 10rem);
    bottom: -4rem;
    /* background-color: yellow; */
}

#advantage h3::after {
    background-image: url(../img/strong-point.webp);
    width: 30rem;
    height: 10rem;
    right: calc(100% / 4);
    bottom: -2rem;
}

#recruit h3::after {
    background-image: url(../img/join-us.webp);
    width: 20rem;
    height: 10rem;
    right: calc(100% / 3 - 2rem);
    bottom: -2rem;
}

/* 注釈 */
.entry-point {
    color: #ff00dd;
    margin: 2.4rem 0 0 0;
}

.entry-point2 {
    margin-left: auto;
    margin-right: auto;
}

.last-dl dd span {
    color: #ff00dd;
}

.magenta {
    color: #ff00dd;
}

/* #recruit-fv h2::after{
    background-image: url(../img/selection.webp);
    width: 50rem;
    height: 15rem;
    right: calc(50% - 25rem);
    bottom: -6rem;
} */

/* キャンペーン */
.g-nav li a.yellow-character {
    color: #f3e100;
}

.campaign-all {
    background-image: url(../img/winter-bg-pc.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

#campaign-fv {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100vw;
    height: 100dvh;
    align-self: center;
    justify-self: center;
    padding-top: 0;
}

.campaign-botton-area {
    background-color: #f3e100;
    padding: 4.8rem;
    border-radius: 1rem;
    align-self: flex-end;
    margin-bottom: 8rem;
    filter: drop-shadow(0 0 4rem rgb(0, 78, 162, 0.4));
}

.campaign-botton-area-l {
    gap: 1.6rem;
    align-self: center;
    justify-self: flex-start;
}

.campaign-botton-area-l h4 {
    margin: 0;
}

.campaign-botton-area-r {
    align-self: flex-end;
}

.campaign-botton-side-margin {
    max-width: 128rem;
    margin: 0 auto;
    padding: 0 1.6rem;
    width: 100%;
    height: auto;

    grid-row: 1 / 1;
    grid-column: 1 / 1;
    z-index: 5;

    display: grid;
}

.campaign-page-img {
    grid-row: 1 / 1;
    grid-column: 1 / 1;
    z-index: 2;
    align-self: center;
    justify-self: center;
}

.campaign-botton-shop-img {
    width: 8.8rem;
    height: 8.8rem;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.campaign-botton-area-l p {
    margin-bottom: 0.8rem;
}

.campaign-footer {
    background-color: #000000;
}

.campaign-shadow {
    filter: drop-shadow(0 0 4rem rgb(126, 18, 29, 0.4));
}

.worry-allow {
    width: 2.5vw;
    height: auto;
    margin: calc((20rem - 3.65vw) / 2) auto;
}

#campaign-main {
    padding-top: 0;
}

/* h2.campaign-section-title {
    margin-bottom: 7.2rem;
} */

.campaign-side-card-wrap {
    /* background-color: #f3e100; */
    border-bottom: none;
    /* border-radius: 0 0 1rem 1rem; */
}

p.campaign-supplement-p-top1 {
    color: #034f1b;
    border: 0.1rem solid #034f1b;
}

.entry-point-red {
    color: #E60012;
}

.campaign-banner-wrap {
    /* background-color: #f3e100; */
    /* border-radius: 1rem 1rem 0 0; */
    padding: 4.8rem 4.8rem 0 4.8rem;
}

.campaign-banner {
    padding-bottom: 4.8rem;
    border-bottom: 0.1rem solid #231815;
}

.campaign-section-title::before {
    color: #231815;
}

/* .stores-involved-title {
    background-color: #f3e100;
} */

.stores-involved-title h3 {
    padding: 4.8rem 0 2.4rem;
    margin-bottom: 0;
}

/* .caution-title {
    background-color: #bae3f9;
    border-radius: 1rem 1rem 0 0;
} */

.caution-title h3 {
    padding: 0 0 2.4rem;
    margin-bottom: 0;
}

#campaign-caution {
    margin-bottom: 20rem;
}

.campaign-caution-side-card-wrap {
    /* background-color: #bae3f9; */
    border-bottom: none;
    /* border-radius: 0 0 1rem 1rem; */
    padding: 4.8rem 0 0 0;
}

.campaign-caution-side-card-wrap .side-card-wrap {
    border-bottom: none;
    align-items: stretch;
}

.campaign-caution-side-card-wrap .side-card-wrap .side-card-text {
    /* background-color: #ffffff; */
    display: grid;
    align-items: center;
}

.campaign-caution-side-card-wrap .side-card-wrap .side-card-text p {
    margin-bottom: 0;
    border-radius: 1rem;
}

.sub-caution {
    padding: 4.8rem;
    background-color: #f3e100;
}

.r-wbg {
    border-radius: 0 1rem 1rem 0;
}

.l-wbg {
    border-radius: 1rem 0 0 1rem;
}

.y-bg {
    background-color: #f3e100;
    border-radius: 1rem;
}

.sky-bg {
    background-color: #e6dcb1;
    border-radius: 1rem;
    padding: 4.8rem;
}

.w-bg {
    background-color: #ffffff;
    border-radius: 1rem;
}

.worry-card-item {
    background-color: transparent;
}

.worry-card-item img {
    /* width: calc((100% - 19.2rem) / 3); */
    height: auto;
    aspect-ratio: 351.3225 / 200;
}

#worry {
    padding-bottom: calc(20rem - 6.25vw);
    background: linear-gradient(rgb(126, 18, 29, 0), rgb(126, 18, 29, 100));
}

/* トップページキャンペーン */
.campaign-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.campaign-botton {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    align-self: flex-end;
}

/* 三角形 */
.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 50vw solid transparent;
    border-left: 50vw solid transparent;
    border-top: 6.25vw solid #7e121d;
    border-bottom: 0;
}

/* 高さ調整 */
.blank{
    /* height: 13.0188rem;
    width: 100%; */
    color: #00AB16;
    text-transform:uppercase;
}

/* モーダルウィンドウ */
.modaal-botton{
    display: none;
}

/* スマホ版 */
@media screen and (max-width:480px) {

    /* 基本 */
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    /* 文字 */
    h2 {
        font-size: 6.4rem;
        line-height: 1;
        margin-bottom: 4rem;
        /* 上下入れ替えの場合 */
        /* font-size: 8rem;
        margin-bottom: 1.2rem; */
    }

    .uppercase-letter {
        /* font-size: 4.8rem; */
        -webkit-text-stroke: 0.15rem #FFF;
    }

    h4 {
        font-size: 4rem;
        /* margin-bottom: 1.2rem; */
        margin-bottom: 0.8rem;
    }

    p {
        font-size: 1.4rem;
        margin-bottom: 3.2rem;
    }

    p.slogan {
        font-size: 2.4rem;
        /* 追記 */
        margin-bottom: 2.4rem;
    }

    p.supplement-p-bottom {
        margin: 0 0 3.2rem;
        font-size: 1.4rem;
    }

    h3 {
        font-size: 5.6rem;
        line-height: 1;
        letter-spacing: -0.01em;
        margin-bottom: 3.2rem;
    }

    h5 {
        font-size: 3.2rem;
    }

    .section-title::before {
        font-size: 1.6rem;
        margin-bottom: 1.6rem;
    }

    .big-span {
        font-size: 2.4rem;
        font-weight: 700;
    }

    /* section */
    section {
        padding: 5.6rem 0 0;
    }

    .section-wrap {
        max-width: 100vw;
        /* padding: 0 2rem; */
        /* padding: 0 4rem; */
        padding: 0 2.4rem;
    }

    /* flex */
    .flex-start2 {
        display: block;
    }

    /* botton */
    .button a {
        /* width: 25.6rem; */
        width: 100%;
    }

    .big-botton a {
        width: 100%;
    }

    .recruit-botton a {
        font-size: 1.6rem;
    }

    .line-botton a {
        font-size: 1.6rem;
    }

    .tel-botton {
        width: 100%;
        margin-bottom: 1rem;
    }

    .tel-botton a {
        font-size: 1.6rem;
    }

    .mail-botton {
        width: 100%;
        margin-bottom: 4rem;
    }

    .mail-botton a {
        font-size: 1.6rem;
    }

    /* グロナビ */
    .g-nav {
        padding: 2rem 2rem 0;
    }

    /* fv */
    #fv {
        overflow: hidden;
        height: 100vh;
        height: 100dvh;
    }

    .fv-img {
        width: 100vw;
        width: 100dvw;
        height: 100vh;
        height: 100dvh;
    }

    /* .fv-img{
        overflow: hidden;
    } */
    .fv-logo {
        width: calc(100vw - 4.8rem);
        margin-bottom: 2.4rem;
    }

    .fv-backlogo {
        align-self: center;
        justify-self: right;
        /* width: calc(100% / 3); */
        width: 100%;
        /* 追記 */
        object-fit: cover;
        overflow: hidden;
        height: 100vh;
        height: 100dvh;
        object-position: right;
        grid-column: 1 / 2;
    }

    .fv-slogan-sp {
        color: #ffffff;
        z-index: 100;
        grid-row: 1 / -1;
        grid-column: 1 / 2;
        justify-self: center;
        align-self: center;
        writing-mode: vertical-rl;
        font-weight: 700;
        font-size: 2.8rem;
        margin-bottom: 0;
        /* 座布団 */
        display: inline;
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
        /* 座布団加工 */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(14, 89, 103, 0.9) 30%, rgba(14, 89, 103, 0.9) 70%, rgba(0, 0, 0, 0) 100%);
        padding: 3.2rem 0;
        line-height: 1.2;
    }

    .top-green {
        background-image: linear-gradient(to bottom, rgba(0, 171, 22, 1), rgba(0, 171, 22, 0));
        position: fixed;
        width: 100vw;
        height: 8rem;
        top: 0;
        z-index: 500;
        padding: 2.4rem 2.4rem 0;
    }

    .get-money {
        width: 30%;
        height: auto;
        grid-row: 1 / -1;
        grid-column: 1 / -1;
        z-index: 15;
        align-self: flex-end;
        justify-self: flex-end;
        margin: 0 2.4rem 11.3rem 0;
    }

    /* recruit-fv */
    #recruit-fv {
        overflow: hidden;
        height: calc(100vh / 3 * 2);
        height: calc(100dvh / 3 * 2);
        margin: 0;
        padding: 0;
    }

    .recruit-fv-img {
        opacity: 1;
        height: calc(100vh / 3 * 2);
        height: calc(100dvh / 3 * 2);
        height: 100%;
    }

    .recruit-backlogo01 {
        height: auto;
        width: calc(100% - 4.8rem);
    }

    /* about */
    .middle-p {
        /* font-size: 1.6rem; */
        font-size: 1.4rem;
        margin-bottom: 4rem;
        font-weight: 700;
    }

    .about-letter-img {
        width: 100%;
    }

    #about .flex {
        display: block;
    }

    #about h2::after {
        width: 10rem;
        height: 6rem;
        right: 2.4rem;
        bottom: -4rem;
    }

    /* 横並びコンテンツ */
    .side-card-wrap {
        display: block;
        padding-top: 4rem;
    }

    .side-card-img {
        width: 100%;
        /* width: calc(100% - 4rem); */
        padding: 0;
        margin: 0 auto;
    }

    .side-card-text {
        width: 100%;
        padding: 4rem 0;
    }

    p.supplement-p-top1 {
        font-size: 1.4rem;
        /* margin-bottom: 1.2rem; */
        margin-bottom: 0.8rem;
    }

    p.supplement-p-top2 {
        font-size: 1.4rem;
        /* margin-bottom: 1.2rem; */
        margin-bottom: 0.8rem;
    }

    p.supplement-p-top1b {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    p.supplement-p-top2b {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .side-card-wrap01 {
        padding-top: 0;
    }

    .recruit-botton a {
        margin: 0 auto 1rem;
    }

    #stores h3::after {
        width: 18rem;
        height: 5rem;
        right: calc(50% - 9rem);
        bottom: -2.5rem;
    }

    #recruit h3::after {
        width: 12rem;
        height: 4rem;
        right: calc(50% - 6rem);
        bottom: -1.5rem;
    }

    #advantage h3::after {
        width: 16rem;
        height: 5rem;
        right: calc(50% - 8rem);
        bottom: -1.5rem;
    }

    /* footer */
    footer {
        padding: 5.6rem 0 3.2rem;
    }

    .footer-wrap {
        padding: 0 2.4rem;
    }

    .footer-wrap .flex {
        display: block;
    }

    .footer-wrap .link-list {
        display: flex;
    }

    .big-botton-notes {
        margin-bottom: 0.8rem;
        font-size: 1.4rem;
    }

    small {
        margin: 4.8rem auto 0;
        font-size: 1.4rem;
    }

    footer h3::after {
        width: 10rem;
        height: 3rem;
        right: -2rem;
        bottom: -1rem;
    }

    /* カード */
    .card-wrap {
        display: block;
    }

    .card-item {
        width: 100%;
        margin-bottom: 3.2rem;
        padding: 4rem;
    }

    .card-item-last {
        width: 100%;
        margin-bottom: 0;
    }

    /* 定義リスト */
    dl {
        display: block;
    }

    dt {
        font-size: 1.4rem;
        width: 100%;
        padding: 2.4rem 2.4rem 0 2.4rem;
    }

    dd {
        font-size: 1.4rem;
        width: 100%;
        padding: 2.4rem;
    }

    /* 左右 */
    .r-side {
        width: 100%;
    }

    .l-side {
        width: 100%;
    }

    /* entry */
    #entry h3::after {
        width: 8rem;
        height: 4.5rem;
        right: calc(50% - 4rem);
        bottom: -2rem;
    }

    /* キャンペーントップページ */

    .campaign-top-bg {
        /* height: 100%; */
        height: 100dvh;
        justify-self: center;
        align-self: flex-end;
        overflow: hidden;
    }

    .campaign-top-main-img.sp {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }

    .campaign-top-bgimg {
        /* height: 100%; */
        height: 100dvh;
        width: auto;
        overflow: hidden;
        align-self: center;
        justify-self: center;
        z-index: 1;
        grid-column: 1 / -1;
        grid-row: 1 / -1;
    }

    .campaign-top-man {
        grid-column: 1 / -1;
        grid-row: 1 / -1;
        justify-self: center;
        align-self: flex-start;
        z-index: 2;
        margin-top: 8rem;
        object-position: 0 0;
        /* height: calc(100dvh - 21.6rem); */
        height: calc(100dvh - 16rem);
        aspect-ratio: 751 / 1015;
        overflow: hidden;
        width: auto;
    }

    .campaign-top-date {
        grid-column: 1 / -1;
        grid-row: 1 / -1;
        justify-self: flex-start;
        align-self: flex-start;
        z-index: 4;
        /* height: 35%;
        width: auto; */
        height: auto;
        width: 60%;
        padding: 10.4rem 0 0 2.4rem;
        filter: drop-shadow(0 0 0.5rem rgb(126, 18, 29, 1)) drop-shadow(0 0 0.75rem rgb(126, 18, 29,1)) drop-shadow(0 0 1rem rgb(126, 18, 29, 0.75));
    }

    .campaign-top-money {
        grid-column: 1 / -1;
        grid-row: 1 / -1;
        /* justify-self: flex-start; */
        justify-self: center;
        align-self: flex-end;
        z-index: 4;
        /* width: 90%; */
        width: 100%;
        height: auto;
        /* margin-bottom: 12.4rem; */
        padding: 0 2.4rem 10.4rem 2.4rem;
        filter: drop-shadow(0 0 0.5rem rgb(126, 18, 29, 1)) drop-shadow(0 0 0.75rem rgb(126, 18, 29, 1)) drop-shadow(0 0 1rem rgb(126, 18, 29,0.75));
    }

    .banner-botton {
        grid-column: 1 / -1;
        grid-row: 1 / -1;
        justify-self: center;
        align-self: flex-end;
        z-index: 5;
        background-color: #E60012;
        display: grid;
        justify-content: center;
        align-content: center;
        width: calc(100% - 4.8rem);
        padding: 1.6rem 3rem;
        border-radius: 0.3rem;
        filter: drop-shadow(0 0 4rem rgb(0, 78, 162, 0.4));
        /* margin-bottom: 5.6rem; */
        margin-bottom: 2.4rem;
    }

    .banner-botton p {
        text-justify: inter-ideograph;
        font-size: 1.6rem;
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 600;
        line-height: 1.5;
        letter-spacing: 0.04em;
        color: #ffffff;
        overflow-wrap: break-word;
        font-feature-settings: "palt";
        margin-bottom: 0;
    }

    /* キャンペーンページ */
    #hamburger li a.yellow-character {
        color: #f3e100;
    }

    .campaign-all {
        background-image: url(../img/winter-bg-sp.webp);
    }

    .worry-card-item {
        padding: 0 2.4rem;
        margin-bottom: 4rem;
    }

    .worry-card-item-last {
        margin-bottom: 0;
    }

    .worry-card-item img {
        margin-bottom: 2.4rem;
    }

    h2.campaign-section-title {
        margin-bottom: 3.2rem;
    }

    .big-big-span {
        font-size: 2.4rem;
    }

    .campaign-banner-wrap {
        padding: 4rem 2.4rem 0 2.4rem;
    }

    .campaign-banner {
        padding-bottom: 4rem;
    }

    .campaign-banner-wrap .middle-p {
        margin-bottom: 3.2rem;
    }

    .stores-involved-title h3 {
        padding: 4rem 2.4rem 0.8rem;
    }

    .campaign-side-card-wrap {
        padding: 2.4rem 2.4rem 0 2.4rem;
    }

    .caution-title h3 {
        padding: 0 0 0.8rem;
    }

    .campaign-caution-side-card-wrap {
        padding: 2.4rem 0 0 0;
    }

    .sub-caution {
        padding: 2.4rem 1.6rem;
        margin-top: 1.6rem;
    }

    .sky-bg {
        padding: 4rem 2.4rem;
    }

    .w-bg {
        padding: 2.4rem 1.6rem;
    }

    .campaign-caution-side-card-wrap .side-card-wrap {
        padding: 0;
    }

    .campaign-caution-side-card-wrap .side-card-wrap .side-card-text {
        padding: 0;
    }

    #campaign-caution {
        margin-bottom: 5.6rem;
    }

    .worry-allow {
        width: 8.14vw;
        height: auto;
        margin: 3.2rem auto;
    }

    .campaign-botton-area {
        padding: 2.4rem;
        flex-flow: column;
        margin-bottom: 2.4rem;
    }

    .campaign-botton-side-margin {
        display: grid;
        padding: 0 2.4rem;
    }

    .campaign-botton-area-r {
        flex-flow: column;
        align-self: auto;
    }

    .campaign-botton-area-l p {
        text-align: center;
    }

    .campaign-botton-area-l h4 {
        margin-bottom: 2.4rem;
    }

    .sp-botton-case {
        display: block;
        z-index: 8;
        grid-column: 1 / -1;
        grid-row: 1 / -1;
    }

    .campaign-page-img {
        height: calc(100dvh - 28.7rem);
        width: 100vw;
        align-self: flex-start;
        padding: 8rem 0 0 0;
    }

    .campaign-page-img.sp {
        display: grid;
    }

    .campaign-page-img.se-size {
        display: none;
    }

    .campaign-page-man {
        grid-column: 1 / -1;
        grid-row: 1 / -1;
        z-index: 2;
        overflow: hidden;
        height: auto;
        width: 100%;
        aspect-ratio: 751 / 625;
        justify-self: flex-end;
        /* object-position: 2.4vw center; */
        object-position: center center;
    }

    .campaign-page-money {
        grid-column: 1 / -1;
        grid-row: 1 / -1;
        z-index: 4;
        overflow: hidden;
        height: auto;
        width: 80%;
        justify-self: flex-start;
        align-self: flex-end;
        padding: 0 2.4rem 1.6rem;
        filter: drop-shadow(0 0 0.5rem rgb(126, 18, 29, 1)) drop-shadow(0 0 0.75rem rgb(126, 18, 29, 1)) drop-shadow(0 0 1rem rgb(126, 18, 29, 0.3));
    }

    .campaign-page-date {
        grid-column: 1 / -1;
        grid-row: 1 / -1;
        z-index: 4;
        overflow: hidden;
        height: auto;
        width: 14.5%;
        justify-self: flex-end;
        align-self: flex-start;
        padding: 1.6rem 2.4rem 0 0;
        filter: drop-shadow(0 0 0.5rem rgb(126, 18, 29,1)) drop-shadow(0 0 0.75rem rgb(126, 18, 29, 1)) drop-shadow(0 0 1rem rgb(126, 18, 29, 0.3));
    }

    .campaign-page-slogan {
        grid-column: 1 / -1;
        grid-row: 1 / -1;
        z-index: 4;
        overflow: hidden;
        height: auto;
        width: 52%;
        justify-self: flex-start;
        align-self: flex-start;
        padding: 1.6rem 0 0 2.4rem;
        filter: drop-shadow(0 0 0.5rem rgb(126, 18, 29, 1)) drop-shadow(0 0 0.75rem rgb(126, 18, 29, 1)) drop-shadow(0 0 1rem rgb(126, 18, 29, 0.3));
    }

    .se-size {
        display: none;
    }

    /* 三角形 */
    .triangle {
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 50vw solid transparent;
        border-left: 50vw solid transparent;
        border-top: 11.6vw solid #7e121d;
        border-bottom: 0;
    }

    #worry {
        padding-bottom: calc(8.4rem - 11.6vw);
    }
}

/* アイフォンSE用 */
@media screen and (max-width:375px) {

    /* キャンペーントップページ */
    .campaign-top-man {
        height: 85dvh;
    }

    .campaign-top-date {
        padding-top: 9.6rem;
    }

    .campaign-top-money {
        width: 100%;
        padding-bottom: 9.6rem;
    }

    .banner-botton{
        margin-bottom: 2.4rem;
    }

    /* キャンペーンページ */
    .campaign-page-img.se-size {
        display: block;
    }

    .campaign-page-img.xr-size {
        display: none;
    }

}