@charset "utf-8";
/* agrina CLUB SHIFT LP専用CSS
   agrina CLUB SHIFT LP 専用。このLPだけで使用し、他ページとは共有しない
   ブレークポイント: 1279 → 1024 → 600（コンチーゴ規約） */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;700;800;900&display=swap');

/*************************** reset ***************************/
html {
    font-size: 62.5%; /* 1rem = 10px */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
    border: none;
    vertical-align: bottom;
}
a {
    text-decoration: none;
    color: inherit;
}
body {
    font-family: "Outfit", "メイリオ", "MS Pゴシック", sans-serif;
    color: #0b1d4d;
}

/*************************** header ***************************/
#container {
    position: relative;
}
.l-clubshift-header {
    /* Figmaではヘッダーはヒーロー写真の上に重ねる（塗りは透明） */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    width: 100%;
    height: 14rem;
    padding: 0 12rem;
}
.l-clubshift-header__brand {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.l-clubshift-header__logo {
    width: 7.1rem;
    flex-shrink: 0;
}
.l-clubshift-header__tagline {
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1;
    color: #0b1d4d;
}
.l-clubshift-header__tagline span {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

/*************************** hero ***************************/
.p-clubshift__hero {
    position: relative;
    background-image: url(../images/img/club-shift/hero_bg.webp);
    background-size: cover;
    background-position: center right;
    padding: 21.4rem 12rem 13.4rem;
}
.p-clubshift__hero > * {
    position: relative;
    z-index: 1;
    max-width: 64rem;
}
.p-clubshift__hero > p:first-child {
    font-size: 2.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}
.p-clubshift__hero > h1 {
    font-size: 5.6rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.112rem;
    color: #0b1d4d;
    margin-bottom: 1rem;
}
.p-clubshift__hero-hp {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 1rem;
}
.p-clubshift__hero-hp > p:first-child {
    font-size: 2rem;
    font-weight: 900;
    color: #0b2340;
    white-space: nowrap;
}
.p-clubshift__hero-hp > p:last-child {
    background: #0b2340;
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    padding: 0.6rem 1.2rem;
    border-radius: 0.4rem;
    white-space: nowrap;
}
.p-clubshift__hero-hp mark {
    background: none;
    color: #f2e900;
}
.p-clubshift__hero > p:nth-of-type(2) {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
    color: #0b1d4d;
    margin-bottom: 1rem;
}
.p-clubshift__hero-cta {
    display: flex;
    align-items: center;
    height: 10rem;
}
.p-clubshift__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    width: 36rem;
    height: 6rem;
    padding: 0 4rem;
    background: #f2e900;
    color: #0b1d4d;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.06rem;
    border-radius: 3.2rem;
    transition: background-color 0.2s, color 0.2s;
}
.p-clubshift__btn::after {
    content: ">";
    display: inline-block;
    font-weight: 400;
    transition: transform 0.2s;
}
@media (hover: hover) {
    .p-clubshift__btn:hover {
        background: #0b1d4d;
        color: #f2e900;
    }
    .p-clubshift__btn:hover::after {
        transform: translateX(0.5rem);
    }
}

/*************************** nayami ***************************/
.p-clubshift__nayami {
    background: #f3f7f5;
    padding: 11.2rem 12rem 5.2rem 11.7rem;
    /* 人物写真をカード群の右へはみ出させるため、横のはみ出しはここで切る */
    overflow: hidden;
}
.p-clubshift__nayami > p:first-child {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d1b2a;
    text-align: center;
    margin-bottom: 2.4rem;
}
.p-clubshift__nayami > h2 {
    position: relative;
    font-size: 4.8rem;
    font-weight: 700;
    color: #0b2340;
    text-align: center;
    line-height: 1.15;
    padding-bottom: 4.8rem;
}
.p-clubshift__nayami > h2::after {
    /* 装飾: 見出しライン */
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 10rem;
    height: 0.8rem;
    background: #1d73e8;
    border-radius: 0.4rem;
}
.p-clubshift__nayami > p:nth-of-type(2) {
    max-width: 86.4rem;
    margin: 3.6rem auto 0;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.096rem;
    color: #0b1d4d;
    text-align: center;
}
.p-clubshift__nayami > div {
    /* Figmaではカード群の幅が932px。写真はその右隣に置く */
    position: relative;
    width: 93.2rem;
    max-width: 100%;
    margin-top: 10.1rem;
}
.p-clubshift__nayami-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
}
.p-clubshift__nayami-list > div {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    background: #fff;
    border: 0.1rem solid #e5e7eb;
    border-radius: 1.2rem;
    padding: 2.4rem;
    box-shadow: 0 1rem 1.2rem rgba(0, 0, 0, 0.04);
}
.p-clubshift__nayami-list > div::before {
    /* 装飾: お悩みアイコン（Figma書き出しの線画） */
    content: "";
    flex-shrink: 0;
    width: 3.4rem;
    height: 3.4rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.p-clubshift__nayami-list > div:nth-child(1)::before {
    background-image: url(../images/img/club-shift/nayami_icon_01.svg);
}
.p-clubshift__nayami-list > div:nth-child(2)::before {
    background-image: url(../images/img/club-shift/nayami_icon_02.svg);
}
.p-clubshift__nayami-list > div:nth-child(3)::before {
    background-image: url(../images/img/club-shift/nayami_icon_03.svg);
}
.p-clubshift__nayami-list > div:nth-child(4)::before {
    background-image: url(../images/img/club-shift/nayami_icon_04.svg);
}
.p-clubshift__nayami-list > div:nth-child(5)::before {
    background-image: url(../images/img/club-shift/nayami_icon_05.svg);
}
.p-clubshift__nayami-list > div:nth-child(6)::before {
    background-image: url(../images/img/club-shift/nayami_icon_06.svg);
}
.p-clubshift__nayami-list p {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.5;
    color: #0d1b2a;
}
.p-clubshift__nayami-image {
    position: absolute;
    left: 100%;
    top: -4.3rem;
    /* 幅を明示しないと、左端が親の右端に接するため幅0に潰れる */
    width: 37.9rem;
}
.p-clubshift__nayami-image img {
    width: 37.9rem;
    height: 45.4rem;
    object-fit: contain;
}

/*************************** solution ***************************/
.p-clubshift__solution {
    background: #0b1d4d url(../images/img/club-shift/solution_bg.webp) center / cover no-repeat;
    padding: 11.2rem 12rem;
}
.p-clubshift__solution > p:first-child {
    font-size: 2.8rem;
    font-weight: 800;
    color: #6f8fe8;
    text-align: center;
}
.p-clubshift__solution > h2 {
    position: relative;
    margin-top: 3.6rem;
    padding-bottom: 4.8rem;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-align: center;
}
.p-clubshift__solution > h2 strong {
    font-size: 6.7rem;
    font-weight: 900;
    font-style: normal;
    letter-spacing: -0.134rem;
}
.p-clubshift__solution > h2::after {
    /* 装飾: 見出しライン */
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 10rem;
    height: 0.8rem;
    background: #6f8fe8;
    border-radius: 0.4rem;
}
.p-clubshift__solution > p:nth-of-type(2) {
    max-width: 104.8rem;
    margin: 3.6rem auto 0;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.024rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}
.p-clubshift__solution-cards {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 9.4rem;
    margin-top: 6.5rem;
}
.p-clubshift__solution-cards::after {
    /* 装飾: 2枚のカードをつなぐプラス記号 */
    content: "＋";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.6rem;
    height: 7.6rem;
    border-radius: 50%;
    background: #6f8fe8;
    color: #fff;
    font-size: 4.5rem;
    font-weight: 900;
}
.p-clubshift__solution-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 1.8rem;
    padding: 2rem;
    box-shadow: 0 1.2rem 1.6rem rgba(7, 25, 46, 0.1);
}
.p-clubshift__solution-card > p:first-child {
    font-size: 5.4rem;
    font-weight: 900;
    letter-spacing: 0.136rem;
    color: #1d73e8;
    margin-bottom: 0.8rem;
}
.p-clubshift__solution-card > p:nth-child(2) {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0b2340;
    margin-bottom: 1.6rem;
}
.p-clubshift__solution-card > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.p-clubshift__solution-card img {
    max-height: 40rem;
    width: auto;
    object-fit: contain;
}
.p-clubshift__solution-card > p:last-child {
    font-size: 2rem;
    color: #5e6c7b;
    margin-top: 1.6rem;
}
.p-clubshift__solution > p:last-child {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-top: 4rem;
}

/*************************** wear ***************************/
.p-clubshift__wear {
    background: #f9fafb;
    padding: 11.2rem 12rem;
}
.p-clubshift__wear > p:first-child {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d1b2a;
    text-align: center;
    margin-bottom: 1.6rem;
}
.p-clubshift__wear > h2 {
    position: relative;
    padding-bottom: 4.8rem;
    font-size: 4.8rem;
    font-weight: 700;
    color: #0b2340;
    text-align: center;
}
.p-clubshift__wear > h2::after {
    /* 装飾: 見出しライン */
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 10rem;
    height: 0.8rem;
    background: #6f8fe8;
    border-radius: 0.4rem;
}
.p-clubshift__wear > p:nth-of-type(2) {
    max-width: 73.6rem;
    margin: 2.4rem auto 5.6rem;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.7;
    color: #0b1f3a;
    opacity: 0.85;
    text-align: center;
}
.p-clubshift__wear-list > div {
    display: flex;
    gap: 2.2rem;
    margin-bottom: 2.2rem;
}
.p-clubshift__wear-list > div:last-child {
    margin-bottom: 0;
}
.p-clubshift__wear-list > div > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 0.1rem solid #e4e9ed;
    border-radius: 1.4rem;
    box-shadow: 0 0.8rem 1rem rgba(7, 25, 46, 0.06);
}
.p-clubshift__wear-list > div:first-child > div {
    gap: 1.2rem;
    padding: 2rem;
}
.p-clubshift__wear-list > div:first-child img {
    width: 100%;
    height: 22rem;
    object-fit: contain;
}
.p-clubshift__wear-list > div:last-child > div {
    gap: 0.7rem;
    padding: 1.4rem;
}
.p-clubshift__wear-list > div:last-child img {
    width: 100%;
    height: 11rem;
    object-fit: contain;
}
.p-clubshift__wear-list p {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0b2340;
    text-align: center;
}
.p-clubshift__wear > p:last-child {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0b1d4d;
    text-align: center;
    margin-top: 5.6rem;
}

/*************************** sponsor ***************************/
.p-clubshift__sponsor {
    background: #0b1d4d url(../images/img/club-shift/sponsor_bg.webp) center / cover no-repeat;
    padding: 11.2rem 12rem 4.5rem;
}
.p-clubshift__sponsor > p:first-child {
    font-size: 2.8rem;
    font-weight: 800;
    color: #6f8fe8;
    margin-bottom: 2.4rem;
}
.p-clubshift__sponsor > h2 {
    position: relative;
    padding-bottom: 4.8rem;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 2.4rem;
}
.p-clubshift__sponsor > h2::after {
    /* 装飾: 見出しライン */
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 10rem;
    height: 0.8rem;
    background: #1d73e8;
    border-radius: 0.4rem;
}
.p-clubshift__sponsor > p:nth-of-type(2) {
    max-width: 72rem;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
}
.p-clubshift__sponsor-list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    max-width: 72rem;
    margin-bottom: 8rem;
}
.p-clubshift__sponsor-list > div {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 0.1rem solid rgba(255, 255, 255, 0.15);
    border-radius: 1.6rem;
    padding: 2rem;
}
.p-clubshift__sponsor-list img {
    flex-shrink: 0;
    width: 12rem;
    height: 12rem;
    object-fit: cover;
    border-radius: 1.6rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.15);
}
.p-clubshift__sponsor-list > div > div {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.p-clubshift__sponsor-list p:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}
.p-clubshift__sponsor-list p:last-child {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}
.p-clubshift__sponsor > p:last-child {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    padding: 2.4rem;
}

/*************************** freehp ***************************/
.p-clubshift__freehp {
    background: #fff url(../images/img/club-shift/freehp_bg.webp) center / cover no-repeat;
    padding: 7rem 12rem;
}
.p-clubshift__freehp > p:first-child {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d1b2a;
    text-align: center;
    margin-bottom: 2.4rem;
}
.p-clubshift__freehp > h2 {
    position: relative;
    padding-bottom: 4.8rem;
    margin-bottom: 2.4rem;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0b2340;
    text-align: center;
}
.p-clubshift__freehp > h2::after {
    /* 装飾: 見出しライン */
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 10rem;
    height: 0.8rem;
    background: #6f8fe8;
    border-radius: 0.4rem;
}
.p-clubshift__freehp > p:nth-of-type(2) {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.7;
    color: #5c6b73;
    text-align: center;
    margin-bottom: 5.2rem;
}
.p-clubshift__freehp > div {
    display: flex;
    justify-content: flex-end;
}
.p-clubshift__freehp-list {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}
.p-clubshift__freehp-list > div:first-child p:first-child {
    font-size: 2.4rem;
    font-weight: 900;
    color: #0d1b2a;
    margin-bottom: 1.6rem;
}
.p-clubshift__freehp-list > div:first-child p:last-child {
    font-size: 2rem;
    line-height: 1.7;
    color: #5c6b73;
}
.p-clubshift__freehp-list > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.p-clubshift__freehp-list > div:nth-child(2) > div > p:first-child {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 1.6rem;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}
.p-clubshift__freehp-list > div:nth-child(2) > div > p:first-child::before {
    /* 装飾: 見出しライン */
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 0.4rem;
    height: 2.2rem;
    background: #1d73e8;
    border-radius: 0.2rem;
}
.p-clubshift__freehp-list > div:nth-child(2) > div > div {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}
.p-clubshift__freehp-list > div:nth-child(2) > div > div p {
    position: relative;
    padding: 1.4rem 1.6rem 1.4rem 3.2rem;
    background: #fff;
    border-radius: 0.8rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
}
.p-clubshift__freehp-list > div:nth-child(2) > div:first-child > div p {
    width: calc(50% - 0.6rem);
}
.p-clubshift__freehp-list > div:nth-child(2) > div:last-child > div p {
    width: 100%;
}
.p-clubshift__freehp-list > div:nth-child(2) > div > div p::before {
    /* 装飾: 箇条書きドット */
    content: "";
    position: absolute;
    left: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #1d73e8;
}
.p-clubshift__btn--block {
    width: 100%;
    height: 5.8rem;
    justify-content: center;
    border-radius: 3.7rem;
}

/*************************** reorder ***************************/
.p-clubshift__reorder {
    background: linear-gradient(180deg, #f0f4fa 0%, #e4ecf7 100%);
    padding: 11.2rem 12rem;
}
.p-clubshift__reorder > p:first-child {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d1b2a;
    text-align: center;
    margin-bottom: 2.4rem;
}
.p-clubshift__reorder > h2 {
    font-size: 4.8rem;
    font-weight: 700;
    color: #0b2340;
    text-align: center;
}
.p-clubshift__reorder-body {
    max-width: 120rem;
    margin: 4.8rem auto 0;
    text-align: center;
}
.p-clubshift__reorder-body h3 {
    font-size: 3.1rem;
    font-weight: 700;
    color: #0b2340;
    margin-bottom: 2.4rem;
}
.p-clubshift__reorder-body p {
    font-size: 2.4rem;
    line-height: 1.6;
    color: #0b2340;
}
.p-clubshift__reorder-timeline {
    max-width: 120rem;
    margin: 0 auto;
    padding: 4.8rem 0;
}
.p-clubshift__reorder-timeline-list {
    position: relative;
    display: flex;
}
.p-clubshift__reorder-timeline-list::before {
    /* 装飾: タイムラインの接続線 */
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 2.8rem;
    height: 0.2rem;
    background: #6fa7f3;
    z-index: 0;
}
.p-clubshift__reorder-timeline-list > div {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2.4rem 3.2rem;
}
.p-clubshift__reorder-timeline-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.6rem;
    height: 5.6rem;
    margin-bottom: 1.6rem;
    background: #1d73e8;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
}
.p-clubshift__reorder-timeline-list img {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1.6rem;
}
.p-clubshift__reorder-timeline-list p:first-of-type {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0b2340;
    margin-bottom: 0.8rem;
}
.p-clubshift__reorder-timeline-list p:last-of-type {
    font-size: 1.8rem;
    color: #5f7083;
}
.p-clubshift__reorder-timeline-note {
    margin-top: 4rem;
    text-align: center;
}
.p-clubshift__reorder-timeline-note p {
    font-size: 2rem;
    line-height: 1.4;
    color: #0b2340;
    margin-bottom: 1.2rem;
}

/*************************** flow ***************************/
.p-clubshift__flow {
    background: #0d1b2a;
    padding: 11.2rem 12rem;
}
.p-clubshift__flow > p:first-child {
    font-size: 2.8rem;
    font-weight: 800;
    color: #6f8fe8;
    text-align: center;
    margin-bottom: 2.4rem;
}
.p-clubshift__flow > h2 {
    position: relative;
    padding-bottom: 4.8rem;
    font-size: 4.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
.p-clubshift__flow > h2::after {
    /* 装飾: 見出しライン */
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 10rem;
    height: 0.8rem;
    background: #6f8fe8;
    border-radius: 0.4rem;
}
.p-clubshift__flow > p:nth-of-type(2) {
    max-width: 89.4rem;
    margin: 3.6rem auto 6.4rem;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.7;
    color: #e0e1dd;
    text-align: center;
}
.p-clubshift__flow-list > div {
    display: flex;
    justify-content: center;
    gap: 5.6rem;
    margin-bottom: 2.4rem;
}
.p-clubshift__flow-list > div:last-child {
    margin-bottom: 0;
}
.p-clubshift__flow-list > div > div {
    position: relative;
    width: 24rem;
    height: 20.8rem;
    padding: 2.4rem;
    background: #1b263b;
    border: 0.1rem solid #415a77;
    border-radius: 1.2rem;
}
.p-clubshift__flow-list > div > div:not(:last-child)::after {
    /* 装飾: ステップ間の矢印 */
    content: "→";
    position: absolute;
    right: -4rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
    font-weight: 900;
    color: #6f8fe8;
}
.p-clubshift__flow-list p:first-child {
    font-size: 3.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}
.p-clubshift__flow-list p:nth-child(2) {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
}
.p-clubshift__flow-list p:last-child {
    font-size: 1.6rem;
    line-height: 1.4;
    color: #e0e1dd;
}

/*************************** condition ***************************/
.p-clubshift__condition {
    position: relative;
    background: #0b1d4d url(../images/img/club-shift/condition_bg.webp) center / cover no-repeat;
    padding: 11.2rem 12rem;
}
.p-clubshift__condition::before {
    /* 装飾: 下部の光彩 */
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6rem;
    transform: translateX(-50%);
    width: 90rem;
    height: 32rem;
    background: radial-gradient(ellipse at center, rgba(111, 143, 232, 0.18) 0%, rgba(111, 143, 232, 0) 70%);
    pointer-events: none;
}
.p-clubshift__condition > * {
    position: relative;
    z-index: 1;
}
.p-clubshift__condition > p:first-child {
    font-size: 2.8rem;
    font-weight: 800;
    color: #6f8fe8;
    text-align: center;
    margin-bottom: 2.4rem;
}
.p-clubshift__condition > h2 {
    font-size: 4.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 2.4rem;
}
.p-clubshift__condition > p:nth-of-type(2) {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
.p-clubshift__condition-list {
    /* 最終行が2枚なので、gridではなくflexで中央寄せにする */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin: 7.2rem 0;
}
.p-clubshift__condition-list > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 2.4rem) / 3);
    min-height: 11.8rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 1.2rem;
}
.p-clubshift__condition-list p {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0b2340;
    text-align: center;
}
.p-clubshift__condition-note {
    background: #07192e;
    border-radius: 1.8rem;
    padding: 4rem 2.8rem;
    text-align: center;
}
.p-clubshift__condition-note h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #6f8fe8;
    margin-bottom: 1.6rem;
}
.p-clubshift__condition-note p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}
.p-clubshift__condition-note p:last-child {
    margin-bottom: 0;
}

/*************************** option ***************************/
.p-clubshift__option {
    background: #f2f4f7;
    padding: 10rem 12rem;
}
.p-clubshift__option > p:first-child {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d1b2a;
    text-align: center;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 2rem;
}
.p-clubshift__option > h2 {
    font-size: 5.2rem;
    font-weight: 700;
    color: #0b1d4d;
    text-align: center;
    margin-bottom: 2rem;
}
.p-clubshift__option > p:nth-of-type(2) {
    max-width: 85rem;
    margin: 0 auto 8.4rem;
    font-size: 2.4rem;
    font-weight: 700;
    color: #0b1d4d;
    opacity: 0.75;
    text-align: center;
}
.p-clubshift__option > div:first-of-type {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
    margin-bottom: 5.4rem;
}
.p-clubshift__option > div:first-of-type::before,
.p-clubshift__option > div:first-of-type::after {
    /* 装飾: 中央のPCと左右カードをつなぐ点線 */
    content: "";
    position: absolute;
    top: 50%;
    width: 8.8rem;
    border-top: 0.1rem dashed #9aa8bd;
}
.p-clubshift__option > div:first-of-type::before {
    left: 32rem;
}
.p-clubshift__option > div:first-of-type::after {
    right: 32rem;
}
.p-clubshift__option > div:first-of-type > div:first-child,
.p-clubshift__option > div:first-of-type > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.p-clubshift__option > div:first-of-type > div:first-child > p,
.p-clubshift__option > div:first-of-type > div:last-child > p {
    font-size: 2.4rem;
    font-weight: 900;
    color: #1e3a5f;
    text-transform: uppercase;
}
.p-clubshift__option > div:first-of-type img {
    flex-shrink: 0;
    width: 9.6rem;
    height: 7.2rem;
    object-fit: cover;
    border-radius: 0.8rem;
}
.p-clubshift__option > div:first-of-type > div:nth-child(2) img {
    width: 46rem;
    height: auto;
    max-width: 100%;
    border-radius: 1.6rem;
    box-shadow: 0 0.8rem 3.2rem rgba(0, 0, 0, 0.18);
}
.p-clubshift__option-promo {
    text-align: center;
}
.p-clubshift__option-promo > p:first-child {
    font-size: 2.4rem;
    font-weight: 900;
    color: #1e3a5f;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.p-clubshift__option-promo > div {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.p-clubshift__option > div:first-of-type > div:first-child > div,
.p-clubshift__option > div:first-of-type > div:last-child > div,
.p-clubshift__option-promo > div > div {
    display: flex;
    gap: 1.2rem;
    width: 32rem;
    padding: 1.6rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.08);
    text-align: left;
}
.p-clubshift__option-promo img {
    flex-shrink: 0;
    width: 9.6rem;
    height: 7.2rem;
    object-fit: cover;
    border-radius: 0.8rem;
}
.p-clubshift__option > div:first-of-type p:first-child,
.p-clubshift__option-promo p:first-child {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.4rem;
}
.p-clubshift__option > div:first-of-type > div:first-child > div > div p:last-child,
.p-clubshift__option > div:first-of-type > div:last-child > div > div p:last-child,
.p-clubshift__option-promo > div > div > div p:last-child {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #6b7280;
}
.p-clubshift__option-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 5.4rem;
    padding: 1.9rem 4rem;
    background: #0b1d4d;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    border-radius: 0.8rem;
}

/*************************** recommend ***************************/
.p-clubshift__recommend {
    position: relative;
    background: linear-gradient(112.5deg, #fff 0%, #edf8ff 100%);
    padding: 10rem 12rem;
}
.p-clubshift__recommend::before {
    /* 装飾: 背景ピッチ写真 */
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/img/club-shift/recommend_bg.webp) center / cover no-repeat;
    opacity: 0.75;
}
.p-clubshift__recommend > * {
    position: relative;
    z-index: 1;
}
.p-clubshift__recommend > p:first-child {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d1b2a;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2.4rem;
}
.p-clubshift__recommend > h2 {
    font-size: 4.8rem;
    font-weight: 700;
    color: #0b2340;
    text-align: center;
}
.p-clubshift__recommend-list {
    max-width: 120rem;
    margin: 4.8rem auto 0;
    padding: 2.4rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 1rem;
}
.p-clubshift__recommend-list > div {
    display: flex;
    gap: 1.6rem;
    padding-bottom: 1.6rem;
}
.p-clubshift__recommend-list > div:last-child {
    padding-bottom: 0;
    padding-top: 1.6rem;
    border-top: 0.1rem solid rgba(11, 35, 64, 0.3);
}
.p-clubshift__recommend-list > div > div {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 2rem;
}
.p-clubshift__recommend-list i {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 50%;
    background: #121c40;
    color: #fff;
    font-size: 2rem;
}
.p-clubshift__recommend-list p {
    font-size: 1.6rem;
    font-weight: 700;
    color: #262633;
}
.p-clubshift__recommend-cta {
    margin-top: 3.2rem;
    font-size: 2.4rem;
    color: #0b2340;
    text-align: center;
}
.p-clubshift__recommend-cta strong {
    color: #1d73e8;
}

/*************************** case ***************************/
.p-clubshift__case {
    position: relative;
    background: #fff;
    padding: 11.2rem 12rem;
}
.p-clubshift__case::before {
    /* 装飾: 背景グリッド */
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 83.6rem;
    background-image: linear-gradient(to right, rgba(209, 222, 235, 0.45) 0.1rem, transparent 0.1rem), linear-gradient(to bottom, rgba(209, 222, 235, 0.45) 0.1rem, transparent 0.1rem);
    background-size: 2.4rem 2.4rem;
}
.p-clubshift__case > * {
    position: relative;
    z-index: 1;
}
.p-clubshift__case > p:first-child {
    font-size: 2.8rem;
    font-weight: 800;
    color: #6f8fe8;
    text-align: center;
    margin-bottom: 2.4rem;
}
.p-clubshift__case > h2 {
    font-size: 4.8rem;
    font-weight: 700;
    color: #0b2340;
    text-align: center;
}
.p-clubshift__case-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    margin-top: 2.4rem;
    padding: 4rem 0;
}
.p-clubshift__case-arrow--prev,
.p-clubshift__case-arrow--next {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    background: #fff;
    border: 0.1rem solid #e0e6ea;
    border-radius: 50%;
    box-shadow: 0 0.8rem 1rem rgba(7, 25, 46, 0.08);
    font-size: 1.6rem;
    color: #0b2340;
    cursor: pointer;
}
.p-clubshift__case-list {
    overflow: hidden;
    max-width: 98rem;
}
.p-clubshift__case-list > div {
    display: flex;
    background: #fff;
    border: 0.1rem solid #e0e6ea;
    border-radius: 2rem;
    box-shadow: 0 1.2rem 3.2rem rgba(7, 25, 46, 0.1);
    overflow: hidden;
}
.p-clubshift__case-list img {
    flex-shrink: 0;
    width: 44.2rem;
    height: 41.8rem;
    object-fit: cover;
}
.p-clubshift__case-list > div > div:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.1rem;
    padding: 3.6rem 3rem 2.4rem;
}
.p-clubshift__case-list > div > div:last-child > div:first-child {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}
.p-clubshift__case-list > div > div:last-child > div:first-child p:first-child {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0b2340;
}
.p-clubshift__case-list > div > div:last-child > div:first-child p:last-child {
    background: #6f8fe8;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    padding: 0.5rem 1.4rem;
    border-radius: 0.4rem;
}
.p-clubshift__case-list > div > div:last-child > p:nth-child(2) {
    font-size: 1.4rem;
    color: #333;
}
.p-clubshift__case-list > div > div:last-child > div:nth-child(3) {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
}
.p-clubshift__case-list > div > div:last-child > div:nth-child(3) p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 22.6rem;
    height: 5.2rem;
    padding: 0 1rem;
    background: #fff;
    border: 0.1rem solid #e8edf2;
    border-radius: 1.2rem;
    box-shadow: 0 0.4rem 0.6rem rgba(7, 25, 46, 0.05);
    font-size: 1.2rem;
    color: #0b2340;
}
.p-clubshift__case-list > div > div:last-child > div:nth-child(3) i {
    flex-shrink: 0;
    font-size: 1.6rem;
    color: #6f8fe8;
}
.p-clubshift__case-list > div > div:last-child > p:nth-child(4) {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
}

/*************************** faq ***************************/
.p-clubshift__faq {
    position: relative;
    background: #e8eef4 url(../images/img/club-shift/faq_bg.webp) center / cover no-repeat;
    padding: 10rem 12rem;
}
.p-clubshift__faq::before {
    /* 装飾: 背景に敷く半透明レイヤー */
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(235, 237, 242, 0.3);
}
.p-clubshift__faq > * {
    position: relative;
    z-index: 1;
}
.p-clubshift__faq > p:first-child {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1d73e8;
    opacity: 0.7;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.p-clubshift__faq > h2 {
    font-size: 5.2rem;
    font-weight: 700;
    color: #0b2340;
    text-align: center;
    margin-bottom: 2rem;
}
.p-clubshift__faq > p:nth-of-type(2) {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.7;
    color: #555e6d;
    text-align: center;
    margin-bottom: 6.4rem;
}
.p-clubshift__faq-list > details {
    margin-bottom: 1.6rem;
    background: rgba(255, 255, 255, 0.8);
    border: 0.1rem solid #d8dde8;
    border-radius: 1.2rem;
}
.p-clubshift__faq-list > details:last-child {
    margin-bottom: 0;
}
.p-clubshift__faq-list summary {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    padding: 2.2rem 2.8rem 2.2rem 2.4rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2b4a;
    cursor: pointer;
    list-style: none;
}
.p-clubshift__faq-list summary::-webkit-details-marker {
    display: none;
}
.p-clubshift__faq-list span {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: #1d73e8;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.6rem;
    font-weight: 800;
    border-radius: 50%;
}
.p-clubshift__faq-list i {
    flex-shrink: 0;
    margin-left: auto;
    font-size: 1.4rem;
    color: #1d73e8;
    transition: transform 0.2s;
}
.p-clubshift__faq-list details[open] i {
    transform: rotate(180deg);
}
.p-clubshift__faq-list p {
    padding: 0 2.8rem 2.4rem 7rem;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
    color: #46536b;
}
.p-clubshift__faq-list a {
    /* 本文リンクは通常リンク色＋下線（CV色は使わない） */
    color: #1d73e8;
    text-decoration: underline;
}
@media (hover: hover) {
    .p-clubshift__faq-list a:hover {
        text-decoration: none;
    }
}
.p-clubshift__faq-figure {
    padding: 0 2.8rem 2.4rem 7rem;
}
.p-clubshift__faq-figure img {
    width: 100%;
    height: auto;
    border: 0.1rem solid #d8dde8;
    border-radius: 0.8rem;
}
.p-clubshift__faq-figure p {
    padding: 1.2rem 0 0;
    font-size: 1.4rem;
}

/*************************** cta ***************************/
.p-clubshift__cta {
    position: relative;
    padding: 10rem 12rem;
    text-align: center;
}
.p-clubshift__cta::before {
    /* 装飾: 背景写真 */
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/img/club-shift/cta_bg.webp) center / cover no-repeat;
}
.p-clubshift__cta::after {
    /* 装飾: 背景グラデーション */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 26, 41, 0.97) 0%, rgba(13, 26, 41, 0.82) 50%, rgba(13, 26, 41, 0.72) 100%);
}
.p-clubshift__cta > * {
    position: relative;
    z-index: 1;
}
.p-clubshift__cta > p:first-child {
    font-size: 2.4rem;
    font-weight: 800;
    color: #6f8fe8;
    margin-bottom: 3.2rem;
}
.p-clubshift__cta > h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.67;
    color: #fff;
    text-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.4);
    margin-bottom: 3.2rem;
}
.p-clubshift__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.3rem;
}
.p-clubshift__cta-buttons .p-clubshift__btn {
    width: auto;
    padding: 2rem 5.6rem;
    height: auto;
    border-radius: 4rem;
    font-size: 2rem;
}
.p-clubshift__cta-buttons .p-clubshift__btn::after {
    content: none;
}
.p-clubshift__cta-buttons p {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/*************************** 追従ボタン ***************************/
.p-clubshift__floating {
    position: fixed;
    left: 50%;
    bottom: 3rem;
    z-index: 20;
    transform: translate(-50%, 12rem);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}
.p-clubshift__floating.is-shown {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}
.p-clubshift__floating .p-clubshift__btn {
    box-shadow: 0 0.6rem 2rem rgba(11, 29, 77, 0.35);
}

/*************************** form ***************************/
.p-clubshift__form {
    background: #f2f4f7;
    padding: 10rem 12rem;
}
.p-clubshift__form > p:first-child {
    font-size: 2.8rem;
    font-weight: 800;
    color: #6f8fe8;
    text-align: center;
    margin-bottom: 2rem;
}
.p-clubshift__form > h2 {
    position: relative;
    padding-bottom: 4.8rem;
    font-size: 4.8rem;
    font-weight: 700;
    color: #0b2340;
    text-align: center;
}
.p-clubshift__form > h2::after {
    /* 装飾: 見出しライン */
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 10rem;
    height: 0.8rem;
    background: #6f8fe8;
    border-radius: 0.4rem;
}
.p-clubshift__form > p:nth-of-type(2) {
    margin: 3.6rem 0 5.6rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.7;
    color: #46536b;
    text-align: center;
}
.p-clubshift__form form {
    max-width: 84rem;
    margin: 0 auto;
    padding: 4.8rem;
    background: #fff;
    border-radius: 1.8rem;
    box-shadow: 0 1.2rem 3.2rem rgba(7, 25, 46, 0.08);
}
.p-clubshift__form dt {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0b2340;
}
.p-clubshift__form dd {
    margin-bottom: 2.8rem;
}
.p-clubshift__form abbr {
    padding: 0.3rem 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 0.4rem;
    text-decoration: none;
}
.p-clubshift__form .attention {
    background: #e8453c;
    color: #fff;
}
.p-clubshift__form .ayl {
    background: #e4e9ed;
    color: #5f7083;
}
.p-clubshift__form input[type="text"],
.p-clubshift__form textarea {
    width: 100%;
    padding: 1.4rem 1.6rem;
    background: #f8fafc;
    border: 0.1rem solid #d8dde8;
    border-radius: 0.8rem;
    font-family: inherit;
    font-size: 1.6rem;
    color: #0b2340;
    transition: border-color 0.2s, background-color 0.2s;
}
.p-clubshift__form input[type="text"]:focus,
.p-clubshift__form textarea:focus {
    outline: none;
    background: #fff;
    border-color: #1d73e8;
}
.p-clubshift__form textarea {
    line-height: 1.7;
    resize: vertical;
}
.p-clubshift__form .plugin_form_error {
    color: #e8453c;
    font-size: 1.5rem;
    font-weight: 700;
}
.p-clubshift__form .plugin_form_error:not(:empty) {
    margin-bottom: 2rem;
    padding: 1.4rem 1.6rem;
    background: #fdecea;
    border-radius: 0.8rem;
}
.p-clubshift__form input[type="submit"] {
    display: block;
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
    padding: 2rem 4rem;
    background: #f2e900;
    border: none;
    border-radius: 4rem;
    font-family: inherit;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.06rem;
    color: #0b1d4d;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}
@media (hover: hover) {
    .p-clubshift__form input[type="submit"]:hover {
        background: #0b1d4d;
        color: #f2e900;
    }
}
.p-clubshift__form form > p:last-child {
    margin-top: 2rem;
    font-size: 1.4rem;
    color: #5f7083;
    text-align: center;
}

/*************************** footer ***************************/
.l-clubshift-footer {
    position: relative;
    background: #1b263b;
    padding: 5.8rem 12rem 4rem;
}
.l-clubshift-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
}
.l-clubshift-footer__logo {
    width: 7.1rem;
}
.l-clubshift-footer__brand p {
    max-width: 55.2rem;
    font-size: 1.4rem;
    line-height: 2.3;
    color: #e0e1dd;
    text-align: center;
}
.l-clubshift-footer__copyright {
    position: relative;
    padding-top: 2.4rem;
    text-align: center;
    font-size: 1.3rem;
    color: #e0e1dd;
}
.l-clubshift-footer__copyright::before {
    /* 装飾: 区切り線 */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.1rem;
    background: rgba(255, 255, 255, 0.15);
}

/*************************** PC狭幅調整 1279 ***************************/
@media screen and (max-width: 1279px) {
    .l-clubshift-header {
        padding: 0 4%;
    }
    .p-clubshift__hero {
        padding: 16rem 4% 10rem;
    }
    .p-clubshift__hero > h1 {
        font-size: 4.8rem;
    }
    .p-clubshift__nayami {
        padding: 8rem 4% 5rem;
    }
    .p-clubshift__nayami > h2 {
        font-size: 3.8rem;
    }
    .p-clubshift__nayami > div {
        gap: 3rem;
    }
    .p-clubshift__nayami-list {
        width: 60rem;
    }
    .p-clubshift__solution {
        padding: 8rem 4%;
    }
    .p-clubshift__solution > h2 {
        font-size: 3.8rem;
    }
    .p-clubshift__solution > h2 strong {
        font-size: 5.2rem;
    }
    .p-clubshift__wear {
        padding: 8rem 4%;
    }
    .p-clubshift__wear > h2 {
        font-size: 3.8rem;
    }
    .p-clubshift__sponsor {
        padding: 8rem 4%;
    }
    .p-clubshift__sponsor > h2 {
        font-size: 3.8rem;
    }
    .p-clubshift__freehp {
        padding: 6rem 4%;
    }
    .p-clubshift__freehp > h2 {
        font-size: 3.6rem;
    }
    .p-clubshift__reorder {
        padding: 8rem 4%;
    }
    .p-clubshift__reorder > h2 {
        font-size: 3.8rem;
    }
    .p-clubshift__flow {
        padding: 8rem 4%;
    }
    .p-clubshift__flow > h2 {
        font-size: 3.8rem;
    }
    .p-clubshift__flow-list > div {
        flex-wrap: wrap;
    }
    .p-clubshift__condition {
        padding: 8rem 4%;
    }
    .p-clubshift__condition > h2 {
        font-size: 3.8rem;
    }
    .p-clubshift__option {
        padding: 7rem 4%;
    }
    .p-clubshift__option > h2 {
        font-size: 4rem;
    }
    .p-clubshift__recommend {
        padding: 7rem 4%;
    }
    .p-clubshift__recommend > h2 {
        font-size: 3.8rem;
    }
    .p-clubshift__case {
        padding: 8rem 4%;
    }
    .p-clubshift__case > h2 {
        font-size: 3.6rem;
    }
    .p-clubshift__case-list img {
        width: 30rem;
    }
    .p-clubshift__faq {
        padding: 7rem 4%;
    }
    .p-clubshift__faq > h2 {
        font-size: 4rem;
    }
    .p-clubshift__cta {
        padding: 7rem 4%;
    }
    .p-clubshift__cta > h2 {
        font-size: 3.2rem;
    }
    .p-clubshift__form {
        padding: 7rem 4%;
    }
    .p-clubshift__form > h2 {
        font-size: 3.8rem;
    }
    .l-clubshift-footer {
        padding: 5rem 4% 3rem;
    }
}

/*************************** タブレット 1024 ***************************/
@media screen and (max-width: 1024px) {
    .p-clubshift__hero {
        background-position: center 30%;
    }
    .p-clubshift__hero::before {
        /* 装飾: 狭い画面でのみ背景写真に白ベールを敷いて本文を読めるようにする */
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.92) 60%, rgba(255, 255, 255, 0.5) 100%);
    }
    .p-clubshift__hero > * {
        max-width: 100%;
    }
    .p-clubshift__hero > h1 {
        font-size: 4rem;
    }
    .p-clubshift__hero > p:nth-of-type(2) br {
        display: none;
    }
    .p-clubshift__btn {
        width: 32rem;
    }
    .p-clubshift__nayami > div {
        flex-direction: column;
        align-items: center;
    }
    .p-clubshift__nayami-list {
        width: 100%;
    }
    .p-clubshift__nayami-image {
        display: none;
    }
    .p-clubshift__solution > p:nth-of-type(2) {
        max-width: 100%;
    }
    .p-clubshift__solution-cards {
        flex-direction: column;
        gap: 9.4rem;
    }
    .p-clubshift__solution-card {
        width: 100%;
    }
    .p-clubshift__wear-list > div {
        flex-wrap: wrap;
    }
    .p-clubshift__wear-list > div:first-child > div {
        flex: 1 1 calc(50% - 1.1rem);
    }
    .p-clubshift__wear-list > div:last-child > div {
        flex: 1 1 calc(33.333% - 1.47rem);
    }
    .p-clubshift__sponsor-list > div {
        flex-direction: column;
        align-items: flex-start;
    }
    .p-clubshift__freehp > div {
        display: block;
    }
    .p-clubshift__freehp-list {
        width: 100%;
    }
    .p-clubshift__reorder-timeline-list {
        flex-direction: column;
        gap: 4rem;
    }
    .p-clubshift__reorder-timeline-list::before {
        display: none;
    }
    .p-clubshift__flow-list > div > div {
        width: calc(50% - 0.6rem);
    }
    .p-clubshift__flow-list > div > div:not(:last-child)::after {
        display: none;
    }
    .p-clubshift__condition-list > div {
        width: calc((100% - 1.2rem) / 2);
    }
    .p-clubshift__option > div:first-of-type {
        flex-direction: column;
    }
    .p-clubshift__option > div:first-of-type > div:nth-child(2) img {
        width: 36rem;
    }
    .p-clubshift__option-promo > div {
        flex-wrap: wrap;
    }
    .p-clubshift__recommend-list > div {
        flex-wrap: wrap;
    }
    .p-clubshift__recommend-list > div > div {
        flex: 1 1 calc(50% - 0.8rem);
    }
    .p-clubshift__case-list > div {
        flex-direction: column;
    }
    .p-clubshift__case-list img {
        width: 100%;
        height: 24rem;
    }
    .p-clubshift__case-arrow--prev,
    .p-clubshift__case-arrow--next {
        display: none;
    }
}

/*************************** SP 600 ***************************/
@media screen and (max-width: 600px) {
    .l-clubshift-header {
        height: auto;
        padding: 1.6rem 4%;
    }
    .l-clubshift-header__logo {
        width: 5rem;
    }
    .l-clubshift-header__tagline {
        font-size: 2.2rem;
    }
    .l-clubshift-header__tagline span {
        font-size: 1.1rem;
    }
    .p-clubshift__hero {
        padding: 12rem 6% 8rem;
        background-position: 70% center;
    }
    .p-clubshift__hero > p:first-child {
        font-size: 1.5rem;
    }
    .p-clubshift__hero > h1 {
        font-size: 3.2rem;
    }
    .p-clubshift__hero-hp {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .p-clubshift__hero-hp > p:first-child {
        font-size: 1.5rem;
    }
    .p-clubshift__hero-hp > p:last-child {
        font-size: 2rem;
    }
    .p-clubshift__hero > p:nth-of-type(2) {
        font-size: 1.4rem;
    }
    .p-clubshift__btn {
        width: 100%;
        max-width: 34rem;
        height: 5.6rem;
        padding: 0 3rem;
        font-size: 1.7rem;
    }
    .p-clubshift__nayami {
        padding: 6rem 6% 4rem;
    }
    .p-clubshift__nayami > p:first-child {
        font-size: 2rem;
    }
    .p-clubshift__nayami > h2 {
        font-size: 2.6rem;
        padding-bottom: 3.6rem;
    }
    .p-clubshift__nayami > p:nth-of-type(2) {
        font-size: 1.6rem;
        margin-top: 2.4rem;
    }
    .p-clubshift__nayami > div {
        margin-top: 4rem;
    }
    .p-clubshift__nayami-list {
        grid-template-columns: 1fr;
    }
    .p-clubshift__nayami-list > div {
        padding: 1.6rem;
    }
    .p-clubshift__nayami-list > div::before {
        width: 2.6rem;
        height: 2.6rem;
    }
    .p-clubshift__nayami-list p {
        font-size: 1.5rem;
    }
    .p-clubshift__solution {
        padding: 6rem 6%;
    }
    .p-clubshift__solution > p:first-child {
        font-size: 2rem;
    }
    .p-clubshift__solution > h2 {
        font-size: 2.8rem;
        padding-bottom: 3.6rem;
    }
    .p-clubshift__solution > h2 strong {
        font-size: 3.8rem;
    }
    .p-clubshift__solution > p:nth-of-type(2) {
        font-size: 1.6rem;
    }
    .p-clubshift__solution-card > p:first-child {
        font-size: 4rem;
    }
    .p-clubshift__solution-card > p:nth-child(2) {
        font-size: 2.2rem;
    }
    .p-clubshift__solution > p:last-child {
        font-size: 2.4rem;
    }
    .p-clubshift__wear {
        padding: 6rem 6%;
    }
    .p-clubshift__wear > p:nth-of-type(2) {
        font-size: 1.6rem;
        padding: 1.6rem;
    }
    .p-clubshift__wear > h2 {
        font-size: 2.6rem;
        padding-bottom: 3.6rem;
    }
    .p-clubshift__wear-list > div:first-child > div {
        flex: 1 1 100%;
    }
    .p-clubshift__wear-list > div:last-child > div {
        flex: 1 1 calc(50% - 0.8rem);
    }
    .p-clubshift__wear > p:last-child {
        font-size: 1.8rem;
    }
    .p-clubshift__sponsor {
        padding: 6rem 6% 4rem;
    }
    .p-clubshift__sponsor > h2 {
        font-size: 2.8rem;
        padding-bottom: 3.6rem;
    }
    .p-clubshift__sponsor > p:nth-of-type(2) {
        font-size: 1.6rem;
    }
    .p-clubshift__sponsor > p:last-child {
        font-size: 1.8rem;
    }
    .p-clubshift__freehp {
        padding: 5rem 6%;
    }
    .p-clubshift__freehp > h2 {
        font-size: 2.4rem;
    }
    .p-clubshift__freehp > p:nth-of-type(2) {
        font-size: 1.6rem;
    }
    .p-clubshift__freehp-list > div:nth-child(2) > div > div {
        flex-direction: column;
    }
    .p-clubshift__freehp-list > div:nth-child(2) > div > div p {
        width: 100%;
    }
    .p-clubshift__reorder {
        padding: 6rem 6%;
    }
    .p-clubshift__reorder > h2 {
        font-size: 2.8rem;
    }
    .p-clubshift__reorder-body h3 {
        font-size: 2.2rem;
    }
    .p-clubshift__reorder-body p {
        font-size: 1.6rem;
    }
    .p-clubshift__reorder-timeline-note p {
        font-size: 1.5rem;
    }
    .p-clubshift__flow {
        padding: 6rem 6%;
    }
    .p-clubshift__flow > h2 {
        font-size: 2.6rem;
    }
    .p-clubshift__flow > p:nth-of-type(2) {
        font-size: 1.6rem;
    }
    .p-clubshift__flow-list > div > div {
        width: 100%;
    }
    .p-clubshift__condition {
        padding: 6rem 6%;
    }
    .p-clubshift__condition > h2 {
        font-size: 2.8rem;
    }
    .p-clubshift__condition > p:nth-of-type(2) {
        font-size: 1.6rem;
    }
    .p-clubshift__condition-list > div {
        width: 100%;
    }
    .p-clubshift__condition-list p {
        font-size: 1.6rem;
    }
    .p-clubshift__condition-note h3 {
        font-size: 2.2rem;
    }
    .p-clubshift__option {
        padding: 5rem 6%;
    }
    .p-clubshift__option > h2 {
        font-size: 3.2rem;
    }
    .p-clubshift__option > p:nth-of-type(2) {
        font-size: 1.8rem;
        margin-bottom: 4rem;
    }
    .p-clubshift__option > div:first-of-type > div:first-child > div,
    .p-clubshift__option > div:first-of-type > div:last-child > div,
    .p-clubshift__option-promo > div > div {
        width: 100%;
    }
    .p-clubshift__option > div:first-of-type > div:nth-child(2) img {
        width: 100%;
    }
    .p-clubshift__option-banner {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    .p-clubshift__recommend {
        padding: 5rem 6%;
    }
    .p-clubshift__recommend > h2 {
        font-size: 2.8rem;
    }
    .p-clubshift__recommend-list > div > div {
        flex: 1 1 100%;
    }
    .p-clubshift__recommend-cta {
        font-size: 1.8rem;
    }
    .p-clubshift__case {
        padding: 5rem 6%;
    }
    .p-clubshift__case > h2 {
        font-size: 2.6rem;
    }
    .p-clubshift__case-list > div > div:last-child > div:nth-child(3) p {
        width: 100%;
    }
    .p-clubshift__faq {
        padding: 5rem 6%;
    }
    .p-clubshift__faq > h2 {
        font-size: 3rem;
    }
    .p-clubshift__faq > p:nth-of-type(2) {
        font-size: 1.6rem;
        margin-bottom: 4rem;
    }
    .p-clubshift__faq-list summary {
        padding: 1.6rem;
        gap: 1.2rem;
        font-size: 1.5rem;
    }
    .p-clubshift__faq-list p {
        padding: 0 1.6rem 1.6rem 1.6rem;
        font-size: 1.4rem;
    }
    .p-clubshift__faq-figure {
        padding: 0 1.6rem 1.6rem;
    }
    .p-clubshift__faq-figure p {
        padding: 1rem 0 0;
        font-size: 1.3rem;
    }
    .p-clubshift__cta {
        padding: 5rem 6%;
    }
    .p-clubshift__cta > h2 {
        font-size: 2.4rem;
    }
    .p-clubshift__cta-buttons .p-clubshift__btn {
        width: 100%;
        padding: 1.8rem 3rem;
    }
    .p-clubshift__form {
        padding: 5rem 6%;
    }
    .p-clubshift__form > h2 {
        font-size: 2.8rem;
        padding-bottom: 3.6rem;
    }
    .p-clubshift__form > p:nth-of-type(2) {
        font-size: 1.6rem;
        margin: 2.4rem 0 4rem;
    }
    .p-clubshift__form form {
        padding: 2.4rem 2rem;
    }
    .p-clubshift__form input[type="submit"] {
        font-size: 1.7rem;
        padding: 1.8rem 3rem;
    }
    .l-clubshift-footer {
        padding: 4rem 6% 3rem;
    }
}
