@charset "utf-8";
/* style.css
 * **************************************************
 * アクアプログラム LP
 * **************************************************
 */

/* ========================================
   ベース
   ======================================== */
:root {
    --color-base: #000000;
    --color-border: #29abe2;
    --color-button: #00a2df;
    --font-gothic:
        "Yu Gothic Medium", "YuGothic", "游ゴシック体", "游ゴシック",
        "Yu Gothic", sans-serif;
    --mincho-weight: 500;
    --radius-width: min(1.05vw, 20px);
}

html {
    font-size: min(0.842vw, 16px);
}

body {
    color: var(--color-base);
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.6;
    line-break: strict;
    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* img */
img {
    height: auto;
    max-width: 100%;
}

/* link */
a {
    display: block;
}

/* container */
.container {
    margin-inline: auto;
    padding: 0;
    width: min(75rem, 100% - 2rem);
}

/* heading */
h2,
h3,
h4 {
    font-weight: var(--mincho-weight);
}

.heading {
    font-size: 2.75rem;
    line-height: 1.5;
    margin-bottom: 0.18em;
}

.heading:has(+ .desc) {
    margin-bottom: 0.63em;
}

.heading:has(+ .desc-lg) {
    margin-bottom: 0.36em;
}

/* paragraph */
.desc {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 2;
}

.desc-lg {
    font-size: 1.75rem;
    line-height: 2.2;
}

.catch {
    font-size: 3.31rem;
    font-weight: var(--mincho-weight);
    line-height: 1.5;
}

.is-center {
    text-align: center;
}

/* button */
.button {
    background-color: var(--color-button);
    border-radius: min(0.315vw, 6px);
    color: #ffffff;
    display: block;
    font-family: var(--font-gothic);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    margin-inline: auto;
    position: relative;
    padding: 0.5em 0;
    text-align: center;
    transition: background-color 0.5s;
    width: 15rem;
}

.button:hover {
    background-color: var(--color-border);
}

.button::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 0.6em;
    transform: translateY(-50%);
}

/* loop */
.loop-images {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.loop01 {
    height: min(27.78vw, 528px);
}

.loop02 {
    height: min(27.15vw, 516px);
}

.loop-image {
    height: 100%;
    width: auto;
    max-width: initial;
}

.loop-image:nth-child(odd) {
    animation: loop1 80s -40s linear infinite;
}

.loop-image:nth-child(even) {
    animation: loop2 80s linear infinite;
}

@keyframes loop1 {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

/* アニメーション調整 */
[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

@media only screen and (max-width: 47.9375em) {
    :root {
        --color-base: #333333;
        --mincho-weight: 700;
        --radius-width: min(2.66vw, 10px);
        --space-x: 2rem;
        --space-y: 4.8rem;
    }

    html {
        font-size: 2.66vw;
    }

    body {
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .container {
        margin-inline: var(--space-x);
        width: calc(100% - var(--space-x) * 2);
    }

    .heading {
        font-size: 2.25rem;
        line-height: 1.7;
    }

    .desc {
        font-size: 1.6rem;
        letter-spacing: 0.025em;
    }

    .desc-lg {
        font-size: 1.7rem;
        letter-spacing: 0.025em;
    }

    .catch {
        font-size: 2.6rem;
        line-height: 1.6;
    }

    .is-center.heading {
        overflow-wrap: anywhere;
        word-break: keep-all;
    }

    .is-center.desc,
    .is-center.desc-lg {
        text-align: left;
    }

    br.pc-only {
        display: none;
    }

    .loop01 {
        height: 40vw;
    }

    .loop02 {
        height: 38vw;
    }

    .button {
        border-radius: 4px;
        font-size: 1.5rem;
        width: calc(100% - var(--space-x) * 2);
    }
}

/* ========================================
   コンテンツ
   ======================================== */

/* ---------------------------------------- */
/*  メインビジュアル */
/* ---------------------------------------- */

.mv {
    position: relative;
}

.mv picture img {
    width: 100%;
    max-width: initial;
}

.mv-heading {
    position: absolute;
    top: 36.88%;
    left: 28.73%;
    width: 43.15%;
}

.mv-text {
    position: absolute;
    top: 15.04%;
    right: 14.73%;
    width: 4.84%;
}

@media only screen and (max-width: 47.9375em) {
    .mv picture img {
        aspect-ratio: 1;
        object-fit: cover;
    }

    .mv-heading {
        top: 58%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
    }

    .mv-text {
        top: 10%;
        right: 5%;
        width: 6%;
    }
}

/* ---------------------------------------- */
/*  イントロダクション */
/* ---------------------------------------- */

.intro {
    background: url(../images/bg_intro_01.jpg) no-repeat center top;
    background-size: cover;
}

.intro-section {
    padding-left: 18.31vw;
}

.intro-lead {
    padding-top: 5.15vw;
}

.intro-appeal {
    padding-top: 4.73vw;
    padding-bottom: 12.63vw;
}

.intro-body {
    display: flex;
    position: relative;
}

.intro-lead .intro-image {
    margin-left: -2.1vw;
    width: 34.84vw;
}

.intro-appeal .intro-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 45.57vw;
}

.intro-lead .intro-text {
    padding-top: 4.42vw;
}

.intro-lead .intro-heading {
    margin-left: -4.1vw;
    margin-bottom: 2.42vw;
    width: 26.57vw;
}

.intro-appeal .intro-heading {
    margin-left: -2.1vw;
    margin-bottom: 1.68vw;
    width: 37.42vw;
}

@media only screen and (max-width: 47.9375em) {
    .intro {
        background: linear-gradient(
            to right,
            #b8f0fa 0%,
            #dff7fd 40%,
            #ffffff 75%,
            #e8f8fc 100%
        );
    }

    .intro-section {
        overflow: hidden;
        padding-left: var(--space-x);
        padding-right: var(--space-x);
    }

    .intro-lead {
        padding-top: var(--space-y);
    }

    .intro-appeal {
        padding-block: var(--space-y);
    }

    .intro-body {
        flex-direction: column-reverse;
        gap: 1.6rem 0;
    }

    .intro-lead .intro-image {
        margin-left: 25%;
        width: 85%;
    }

    .intro-appeal .intro-image {
        display: none;
    }

    .intro-lead .intro-text {
        padding-top: 0;
    }

    .intro-lead .intro-heading,
    .intro-appeal .intro-heading {
        margin-bottom: 2.4rem;
        margin-left: 0;
    }

    .intro-lead .intro-heading {
        width: 84%;
    }

    .intro-appeal .intro-heading {
        width: 100%;
    }
}

/* ---------------------------------------- */
/*  悩み */
/* ---------------------------------------- */

.trouble {
    position: relative;
}

.trouble-bg {
    inset: 0;
    position: absolute;
    z-index: -1;
}

.trouble-bg::before {
    background: url(../images/img_trouble_01.jpg) no-repeat center top;
    background-size: cover;
    content: "";
    inset: 0;
    position: fixed;
    pointer-events: none;
}

.trouble .container {
    padding-top: min(32.63vw, 620px);
    padding-bottom: min(6.31vw, 120px);
    position: relative;
    z-index: 1;
}

.trouble-body {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    padding: 6.25rem 6.875rem 5.625rem;
}

.trouble-body {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    padding: 6.25rem 6.875rem 5.625rem;
    position: relative;
    z-index: 1;
}

.trouble-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3.5rem 3.75rem;
    margin: 4.5rem 0 3.75rem;
}

.trouble-item {
    align-items: center;
    display: flex;
    font-family: var(--font-gothic);
    font-size: 1.625rem;
    gap: 0 1.5rem;
    letter-spacing: 0.05em;
}

.trouble-item::before {
    background: url(../images/icon_checkmark.svg) no-repeat center top -2px;
    background-size: 100%;
    content: "";
    display: block;
    flex-shrink: 0;
    height: 1.84em;
    width: 1.84em;
}

@media only screen and (max-width: 47.9375em) {
    .trouble .container {
        padding-top: 68vw;
        padding-bottom: var(--space-y);
    }

    .trouble-body {
        padding: 3.2rem var(--space-x) 2.4rem;
    }

    .trouble-list {
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
        margin-top: 2.8rem;
        margin-bottom: 2.4rem;
    }

    .trouble-item {
        font-size: 1.5rem;
        gap: 0 0.8rem;
    }
}

/* ---------------------------------------- */
/*  特徴 */
/* ---------------------------------------- */

.features {
    background: url(../images/bg_features_01.jpg) no-repeat center top;
    background-size: cover;
    padding-top: min(5.26vw, 100px);
    padding-bottom: min(18.94vw, 360px);
    position: relative;
    z-index: 2;
}

.has-line {
    margin-bottom: 5.625rem;
    position: relative;
}

.has-line::after {
    background-color: var(--color-base);
    display: block;
    content: "";
    height: 3.5rem;
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
}

.reason-catch {
    margin-bottom: 6.875rem;
}

/* セントラルスポーツ研究所 */
.cis-box {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-width);
    padding: 3.83% 0 2.83%;
    position: relative;
}

.cis-title {
    margin-inline: auto;
    margin-bottom: 1.5rem;
    width: 28.41%;
}

.cis-image {
    position: absolute;
    top: -45.78%;
    left: -1.75%;
    width: 16.33%;
}

/* ループスライダー */
.loop02 {
    margin-top: min(3.57vw, 68px);
    margin-bottom: min(6.73vw, 128px);
}

/* 4つの力 */
.power .container {
    position: relative;
}

.power-list {
    display: flex;
    flex-wrap: wrap;
    gap: min(2.52vw, 48px) 4rem;
    margin-bottom: min(6.84vw, 130px);
}

.power-item {
    background: linear-gradient(27deg, #29abe2 28%, #00a99d 100%);
    border-radius: var(--radius-width);
    color: #ffffff;
    padding: 1rem 0 1.25rem;
    width: calc(50% - 4rem / 2);
}

.power-item-title {
    font-size: 2.1875rem;
    font-weight: var(--mincho-weight);
    line-height: 1;
    margin-bottom: 0.62em;
}

.power-item-title span {
    display: flex;
    align-items: center;
    gap: 0 1rem;
    justify-content: center;
    margin-bottom: 0.114em;
}

.power-item-title span::before,
.power-item-title span::after {
    background-color: currentColor;
    content: "";
    height: 1px;
    width: 5rem;
}

.power-item-desc {
    font-family: var(--font-gothic);
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.power-image {
    position: absolute;
    top: -3.125rem;
    left: 32%;
    width: 33.66%;
}

/* こだわり */
.commitment-body {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-width);
    padding: min(3.68vw, 70px) 0 min(4.73vw, 90px);
}

.commitment-desc {
    margin: 0 0 2.375rem;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    margin-left: max(-8.42vw, -160px);
    margin-right: max(-4.94vw, -94px);
}

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

.commitment-item:nth-of-type(odd) {
    gap: 0 2rem;
}

.commitment-item:nth-of-type(even) {
    flex-direction: row-reverse;
    gap: 0 1.25rem;
}

.commitment-item:nth-of-type(2) {
    margin-top: max(-3.89vw, -74px);
}

.commitment-item:nth-of-type(1) .commitment-item-image {
    width: min(28.62vw, 544px);
}

.commitment-item:nth-of-type(2) .commitment-item-image {
    width: min(27.15vw, 516px);
}

.commitment-item:nth-of-type(3) .commitment-item-image {
    margin-top: max(-3.68vw, -70px);
    width: min(30.52vw, 580px);
}

.commitment-item:nth-of-type(4) .commitment-item-image {
    width: min(32vw, 608px);
}

.commitment-item-subheading {
    font-size: 1.875rem;
    margin-bottom: 0.53em;
}

.commitment-item-desc {
    font-family: var(--font-gothic);
    font-weight: 500;
    letter-spacing: -0.01em;
}

@media only screen and (max-width: 47.9375em) {
    .features {
        background: linear-gradient(
            to left,
            #b8f0fa 0%,
            #dff7fd 40%,
            #ffffff 80%,
            #e8f8fc 100%
        );
        padding-block: var(--space-y);
    }

    .cis-box {
        padding: 3.2rem var(--space-x) 2rem;
    }

    .cis-title {
        width: 72%;
    }

    .cis-image {
        display: none;
    }

    .loop02 {
        margin-block: var(--space-y);
    }

    .power-list {
        flex-direction: column;
        gap: 1.6rem;
        margin-bottom: var(--space-y);
    }

    .power-item {
        padding-top: 1.6rem;
        padding-bottom: 2rem;
        width: 100%;
    }

    .power-item-title {
        font-size: 1.75rem;
    }

    .power-item-desc {
        font-weight: 500;
    }

    .power-image {
        display: none;
    }

    .commitment-body {
        padding: 3.2rem var(--space-x) 2.4rem;
    }

    .commitment-desc {
        margin-bottom: 3.2rem;
    }

    .commitment-list {
        gap: 4rem 0;
        margin-inline: 0;
    }

    .commitment-item:nth-of-type(odd),
    .commitment-item:nth-of-type(even) {
        flex-direction: column;
        gap: 1.2rem 0;
    }

    .commitment-item:nth-of-type(2) {
        margin-top: 0;
    }

    .commitment-item:nth-of-type(1) .commitment-item-image {
        width: 80.74%;
    }

    .commitment-item:nth-of-type(2) .commitment-item-image {
        width: 76.29%;
    }

    .commitment-item:nth-of-type(3) .commitment-item-image {
        margin-top: 0;
        width: 85.93%;
    }

    .commitment-item:nth-of-type(4) .commitment-item-image {
        width: 90%;
    }

    .commitment-item-subheading {
        font-size: 1.7rem;
    }
}

/* ---------------------------------------- */
/*  プログラム */
/* ---------------------------------------- */

.program {
    background-color: #ffffff;
    padding-top: min(4.94vw, 94px);
    padding-bottom: min(7.36vw, 140px);
    position: relative;
}

.program::before {
    background: url(../images/bg_program_01.webp) no-repeat left top;
    background-size: 100%;
    content: "";
    height: min(41.78vw, 794px);
    display: block;
    position: absolute;
    top: max(-12.1vw, -230px);
    left: 0;
    width: min(41.78vw, 794px);
    z-index: 2;
}

.program-catch {
    margin-bottom: 3.125rem;
}

.program-list {
    display: flex;
    flex-wrap: wrap;
    gap: min(2.52vw, 48px) 3.75rem;
    margin: min(3.05vw, 58px) 0 0;
}

.program-item {
    background: url(../images/bg_program_item_01.jpg) no-repeat center;
    background-size: cover;
    border-radius: var(--radius-width);
    display: flex;
    flex-direction: column;
    padding: 2.66% 1.66% 1.66%;
    width: calc(50% - 3.75rem / 2);
}

.program-target {
    font-size: 1.875rem;
    font-weight: var(--mincho-weight);
    line-height: 1.3;
    margin: 0 0 0.66em;
}

.program-body {
    background-color: #ffffff;
    border-radius: var(--radius-width);
    display: flex;
    flex: 1;
    flex-direction: column;
    font-family: var(--font-gothic);
    font-weight: 500;
    padding: 3.39% 0 5.28%;
}

.program-item-heading {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 0.42em;
}

.program-item-heading span {
    display: block;
    font-size: 1.375rem;
    margin-bottom: 0.18em;
}

.program-item-desc {
    font-weight: 500;
    margin: 4.52% 7.54% 3.01%;
}

.program-item-button {
    margin-top: auto;
}

@media only screen and (max-width: 47.9375em) {
    .program {
        padding-block: var(--space-y);
    }

    .program::before {
        content: none;
    }

    .program-catch {
        overflow-wrap: anywhere;
        word-break: keep-all;
    }

    .program-list {
        flex-direction: column;
        gap: 3.2rem 0;
        margin-top: 4rem;
    }

    .program-item {
        display: block;
        padding: 2.4rem 1.2rem 1.2rem;
        width: 100%;
    }

    .program-target {
        line-height: 1.5;
    }

    .program-body {
        display: block;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .program-item-heading {
        margin-bottom: 1.2rem;
    }

    .program-item-desc {
        margin: 1.6rem var(--space-x) 2rem;
    }
}

/* ---------------------------------------- */
/*  その他プログラム */
/* ---------------------------------------- */

.program-other {
    background: url(../images/bg_other_program_01.jpg) no-repeat center;
    background-size: cover;
    padding-top: min(3.15vw, 60px);
    padding-bottom: min(5.78vw, 110px);
    position: relative;
}

.program-other::before,
.program-other::after {
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: block;
    position: absolute;
    right: 0;
}

.program-other::before {
    background-image: url(../images/bg_other_program_02.webp);
    height: min(27.36vw, 520px);
    top: max(-7.36vw, -140px);
    width: min(32.63vw, 620px);
}

.program-other::after {
    background-image: url(../images/bg_other_program_03.webp);
    height: min(47.15vw, 896px);
    bottom: max(-9.94vw, -170px);
    width: min(49.47vw, 940px);
}

/* 各種レッスン */
.lessons {
    margin: 0 0 min(7.36vw, 140px);
}

.lessons-body {
    align-items: center;
    background-color: #c7edfb;
    border-radius: var(--radius-width);
    display: flex;
    gap: 0 1.5rem;
    padding: 3.33% 0 2.33%;
}

.lessons-image {
    margin-left: -8%;
    width: 45.33%;
}

/* メッセージ */
.message {
    position: relative;
    z-index: 1;
}

.message-text {
    position: absolute;
    top: min(16.89vw, 321px);
    left: 50%;
    transform: translateX(-50%);
    width: min(44.36vw, 843px);
}

.message-images {
    align-items: flex-start;
    display: flex;
    gap: 0 min(9.68vw, 184px);
    justify-content: center;
}

.message-images img {
    width: min(36.1vw, 686px);
}

@media only screen and (max-width: 47.9375em) {
    .program-other {
        background: linear-gradient(
            to top,
            #b8f0fa 0%,
            #ffffff 70%,
            #e8f8fc 100%
        );
        padding-block: var(--space-y);
    }

    .program-other::before,
    .program-other::after {
        content: none;
    }

    .lessons {
        margin-bottom: var(--space-y);
    }

    .lessons-body {
        flex-direction: column-reverse;
        gap: 0.8rem 0;
        padding: 3.2rem var(--space-x) 2rem;
    }

    .lessons-image {
        margin-bottom: -4rem;
        margin-inline: auto;
        width: 100%;
    }

    .message-text {
        top: 21%;
        width: 95%;
    }

    .message-images {
        gap: 0;
        margin-inline: calc(var(--space-x) / 2);
    }

    .message-images img {
        width: 100%;
    }
}

/* ---------------------------------------- */
/*  ワンコイン体験 */
/* ---------------------------------------- */

.trial {
    background-color: #ffffff;
    padding-top: min(6.31vw, 120px);
    padding-bottom: min(5.78vw, 110px);
    position: relative;
    z-index: 1;
}

.trial-body {
    background: url(../images/bg_trial_01.jpg) no-repeat center;
    background-size: cover;
    border-radius: var(--radius-width);
    overflow: hidden;
    padding: 7.33% 4% 4%;
}

.trial-heading {
    margin-inline: auto;
    margin-bottom: 4.89%;
    width: 39.36%;
}

.trial-list {
    display: flex;
}

.trial-item {
    border-left: 1px solid currentColor;
    color: #ffffff;
    flex: 1;
    font-family: var(--font-gothic);
    font-size: 1.5rem;
    line-height: 1.3;
    padding: 0.5em 0;
    text-align: center;
}

.trial-item:last-of-type {
    border-right: 1px solid currentColor;
}

.trial-button {
    margin-top: 3.33%;
}

@media only screen and (max-width: 47.9375em) {
    .trial {
        padding-block: var(--space-y);
    }

    .trial-body {
        background-size: auto 100%;
        padding: 3.2rem var(--space-x) 2.4rem;
    }

    .trial-heading {
        margin-bottom: 2.4rem;
        width: 70%;
    }

    .trial-list {
        flex-direction: column;
        margin-inline: auto;
        width: fit-content;
    }

    .trial-item {
        border-left: none;
        border-top: 1px solid;
        flex: 0 0 100%;
        padding: 0.8em 2rem;
    }

    .trial-item:last-of-type {
        border-right: none;
        border-bottom: 1px solid;
    }

    .trial-item br {
        display: none;
    }

    .trial-button {
        margin-top: 2.4rem;
    }
}

/* ---------------------------------------- */
/*  最後 */
/* ---------------------------------------- */

.closing {
    position: relative;
}

.closing-text {
    position: absolute;
    top: min(16vw, 304px);
    left: min(16vw, 304px);
    width: min(37.36vw, 710px);
}

@media only screen and (max-width: 47.9375em) {
    .closing > img {
        aspect-ratio: 2 / 1;
        object-fit: cover;
        object-position: left center;
    }

    .closing-text {
        top: 20%;
        left: 6%;
        width: 88%;
    }
}

/* ---------------------------------------- */
/*  フッター */
/* ---------------------------------------- */

.footer {
    background-color: #ffffff;
}

.footer-inner {
    background-color: #ffffff;
    margin: 0 auto;
    padding: min(3.9vw, 50px) 0 min(6.25vw, 80px);
    width: min(100%, 1280px);
}

.footer-logo {
    display: flex;
    gap: 0 50px;
    justify-content: center;
}

.footer-logo-item {
    width: 17.96%;
}

.footer-logo-item:hover img {
    opacity: 0.8;
    transform: translateY(0);
}

/* From lp/aquaexersize2 (Adjusted) */
.foot_btn {
    position: fixed;
    bottom: -50%;
    left: 0;
    width: 100%;
    background: rgba(6, 46, 128, 0.85);
    z-index: 10;
    padding: 20px 0;
    transition: all 0.5s;
}

.foot_btn.active {
    bottom: 0;
    transition: all 0.5s;
}

.foot_btn ul {
    max-width: 1000px;
    margin: auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media screen and (max-width: 1000px) {
    .foot_btn ul {
        width: 95%;
    }
}

.foot_btn ul li {
    background: #fff;
    border-radius: 5px;
    text-align: center;
}

.foot_btn ul li:nth-child(2) {
    background: #4bb0a5;
}

.foot_btn ul li:nth-child(3) {
    background: #f0883c;
}

.foot_btn ul li img {
    width: 100%;
}

.foot_btn ul li a {
    display: block;
    font-size: 0;
    line-height: 1;
    padding: 15px 15px 15px 90px;
}

.foot_btn p {
    font-family: var(--font-gothic);
    color: #fff;
    text-align: center;
    padding: 0 0.9em;
    line-height: 1.5;
}

.foot_btn p br.sp {
    display: none;
}

@media only screen and (max-width: 47.9375em) {
    .foot_btn ul {
        width: 95%;
    }

    .foot_btn {
        padding: 15px 0;
    }

    .foot_btn ul li a {
        padding: 15px;
    }

    .foot_btn p {
        font-size: 1rem;
    }

    .foot_btn p br.sp {
        display: block;
    }
}