html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    word-break: normal;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4
}

*,
::before,
::after {
    background-repeat: no-repeat;
    box-sizing: inherit
}

::before,
::after {
    text-decoration: inherit;
    vertical-align: inherit
}

* {
    padding: 0;
    margin: 0
}

hr {
    overflow: visible;
    height: 0;
    color: inherit
}

details,
main {
    display: block
}

summary {
    display: list-item
}

small {
    font-size: 80%
}

[hidden] {
    display: none
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

a {
    background-color: rgba(0, 0, 0, 0)
}

a:active,
a:hover {
    outline-width: 0
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace
}

pre {
    font-size: 1em
}

b,
strong {
    font-weight: bolder
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

table {
    border-color: inherit;
    text-indent: 0
}

iframe {
    border-style: none
}

input {
    border-radius: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

textarea {
    overflow: auto;
    resize: vertical
}

button,
input,
optgroup,
select,
textarea {
    font: inherit
}

optgroup {
    font-weight: bold
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
    cursor: pointer
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    outline: 1px dotted ButtonText
}

button,
html [type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button
}

button,
input,
select,
textarea {
    background-color: rgba(0, 0, 0, 0);
    border-style: none
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline-width: 0
}

select {
    -moz-appearance: none;
    -webkit-appearance: none
}

select::-ms-expand {
    display: none
}

select::-ms-value {
    color: currentColor
}

legend {
    border: 0;
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal;
    max-width: 100%
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    color: inherit;
    font: inherit
}

[disabled] {
    cursor: default
}

img {
    border-style: none
}

progress {
    vertical-align: baseline
}

[aria-busy=true] {
    cursor: progress
}

[aria-controls] {
    cursor: pointer
}

[aria-disabled=true] {
    cursor: default
}

li {
    list-style: none
}

html {
    font-size: 16px;
    line-height: 1.6
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Arial", sans-serif;
    font-weight: 700;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* @media screen and(max-width:768px) {
    body {
        overflow-x: scroll;
    }
} */

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    /* スクロールを滑らかに */
}

img {
    width: 100%
}

a {
    text-decoration: none;
    color: #000;
    transition: .4s all
}

a:hover {
    opacity: .7;
}

h1,
h2,
h3,
h4 {
    line-height: 1.5;
}

.pc {
    display: block
}

@media screen and (max-width: 540px) {
    .pc {
        display: none
    }
}

.sp {
    display: none
}

@media screen and (max-width: 540px) {
    .sp {
        display: block
    }
}

@media (max-width: 768px) {
    .tb {
        display: none;
    }
}

/* 改行コントロール用の共通設定 */
br.sp,
br.tb {
    display: none;
    /* デフォルトでは改行させない */
}

/* 768px以下で改行させる設定 */
@media screen and (max-width: 768px) {
    br.tb {
        display: block;
        /* タブレットサイズ以下で改行を有効化 */
    }
}

/* 540px以下で改行させる設定 */
@media screen and (max-width: 540px) {
    br.sp {
        display: block;
        /* スマホサイズ以下で改行を有効化 */
    }
}


.container {
    max-width: 1100px;
    margin: auto;
}

@media screen and (max-width: 768.8px) {
    .container {
        max-width: auto;
        width: 100%;
        padding: 0 16px;
    }
}

/* 文字の途中で改行させないための指定 */
p span.pc {
    display: inline !important;
}

@media screen and (max-width: 540px) {
    p span.pc {
        display: none !important;
    }
}

/* ダークモード対策 */
:root {
    color-scheme: light;
}

body {
    background-color: #ffffff !important;
    /* 強制的に白にする */
    color: #000000 !important;
    /* 文字も強制的に黒にする */
}

/* ダークモード対策 */


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0 50px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            /* 上端：黒（不透明度80%） */
            rgba(0, 0, 0, 0) 100%
            /* 下端：完全な透明 */
        );
}

.logo-img {
    width: 160px;
    display: block;
    margin-right: 10px;
}

.logo-img img {
    width: 100%;
}

.logo-text {
    color: #fff;
    font-size: 12px;
    margin-top: 5px;
}

.logo-flex {
    display: flex;
    align-items: center;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 45px;
    border-radius: 50px;
    transition: opacity 0.3s;
}

.cta-btn:hover {
    opacity: 0.8;
}

.cta-btn::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 10px;
    flex-shrink: 0;
    background-image: url('../images/download-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


@media (max-width: 768px) {
    header {
        height: 100px;
        padding: 0 30px;
    }

    .logo-img {
        width: 120px;
    }

    .logo-text {
        font-size: 10px;
    }

    .logo-flex {
        display: flex;
        align-items: center;
    }

    .cta-btn-header {
        display: none;
    }
}

@media (max-width: 540px) {
    header {
        padding: 10px 20px;
        height: 70px;
    }

    header img {
        width: 100px;
    }
}



.kv {
    height: 860px;
    padding: 140px 24px 100px;
    background-image: url(../images/bg-hero.png);
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    margin-bottom: 150px;
}

.kv-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.kv-toptext-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-img {
    width: 210px;
}

.btn-img img {
    width: 100%;
}

.kv-toptext {
    font-size: 30px;
}

.kv h1 {
    display: block;
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.kv-text {
    font-size: 50px;
}

.kv-img {
    width: 85%;
    max-width: 1000px;
    margin: 0 auto;
}

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


@media (max-width: 1000px) {
    .kv {
        height: 700px;
    }

    .kv h1 {
        font-size: 35px;
    }

    .btn-img {
        width: 150px;
    }

    .kv-toptext {
        font-size: 24px;
    }

}


@media (max-width: 768px) {
    .kv {
        height: 550px;
        padding: 110px 24px 100px;
        margin-bottom: 100px;
    }

    .btn-img {
        width: 120px;
    }

    .kv-toptext {
        font-size: 20px;
    }

    .kv h1 {
        font-size: 30px;
    }
}

@media (max-width: 540px) {
    .kv {
        height: 440px;
        padding: 90px 24px 100px;
        margin-bottom: 80px;
    }

    .kv-toptext-flex {
        gap: 5px;
        margin-bottom: 5px;
    }

    .btn-img {
        width: 110px;
    }

    .kv-toptext {
        font-size: 14px;
    }

    .kv h1 {
        font-size: 25px;
    }
}

@media (max-width: 430px) {
    .kv {
        height: 400px;
        padding: 90px 24px 100px;
        margin-bottom: 70px;
    }
}

@media (max-width: 390px) {
    .kv {
        height: 380px;
    }
}


.trouble {
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 120px), 50% 100%, 0 calc(100% - 120px));
    position: relative;
    z-index: 2;
    padding: 50px 24px 150px;
}

.trouble-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.trouble-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.trouble-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.trouble-left {
    flex: 1;
}

.trouble-title {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
    text-align: left;
}

.trouble-img {
    width: 60%;
}

.trouble-img img {
    height: auto;
}

.trouble-right {
    flex: 1.2;
}

.trouble-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trouble-item {
    background-color: #f7f7f7;
    padding: 30px;
    margin-bottom: 24px;
    border-radius: 4px;
    text-align: left;
}

.trouble-item:last-child {
    margin-bottom: 0;
}

.trouble-item-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.trouble-item-text {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 600;
    color: #777;
}



@media (max-width: 768px) {
    .trouble {
        padding: 20px 24px 160px;
    }

    .trouble-flex {
        display: block;
    }

    .trouble-title {
        font-size: 30px;
        text-align: center;
    }

    .trouble-item-title {
        font-size: 24px;
    }

    .trouble-item-text {
        font-size: 18px;
    }

}


@media (max-width: 540px) {
    .trouble {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
        padding: 0 24px 90px;
    }

    .trouble-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .trouble-item-title {
        font-size: 18px;
    }

    .trouble-item-text {
        font-size: 14px;
    }
}

.function {
    background: linear-gradient(90deg, #468ef0 0%, #7358cc 50%, #da5d10 100%);
    color: #fff;
    padding: 180px 24px 100px;
    margin-top: -120px;
    text-align: center;
}

.function-inner {
    max-width: 1100px;
    margin: 0 auto;
    /* 左右中央寄せ */
    text-align: center;
}

.function-toptext {
    font-size: 20px;
    margin-bottom: 5px;
}

.function h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
}

.function-card {
    background-color: #fff;
    padding: 60px;
    color: #333;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.function-card-title {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.function-card-text {
    width: 50%;
    position: relative;
    z-index: 2;
    /* テキストを画像より上に表示 */
}

.function-card-text p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 0;
}

.function-card-img-pc {
    width: 100%;
    margin-top: -40px;
    /* テキストの領域に少し食い込ませる（入り込ませる） */
    position: relative;
    z-index: 1;
    text-align: right;
    /* 画像を右側に寄せる */
}

.function-card-img-pc img {
    width: 100%;
    height: auto;
    display: inline-block;
}


@media (max-width: 768px) {
    .function {
        padding: 180px 24px 100px;
    }

    .function-toptext {
        font-size: 30px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .function h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .function-card {
        padding: 40px;
    }

    .function-card-title {
        font-size: 20px;
    }

    .function-card-text p {
        font-size: 16px;
        margin-bottom: 40px;

    }
}


@media (max-width: 540px) {
    .function {
        padding: 180px 24px 60px;
    }

    .function-toptext {
        font-size: 22px;
    }

    .function h2 {
        font-size: 14px;
    }

    .function-card {
        padding: 40px 20px;
    }

    .function-card-title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
    }

    .function-card-title span {
        font-size: 14px;
    }

    .function-card-text {
        width: 100%;
    }
        .function-card-text p {
        margin-bottom: 10px;

    }

}

.cta {
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cta-box {
    position: relative;
    background-image: url(../images/bg-hero.png);
    background-size: cover;
    background-position: center;
    padding: 110px 60px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}


.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}

.cta-toptext-flex {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-toptext-btn {
    width: 152px;
}

.cta-toptext-btn img {
    width: 100%;
}

.cta-toptext {
    color: #fff;
    font-size: 20px;
}

.cta-title {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.5;
    flex: 1;
    text-align: left;
}

.cta-action {
    text-align: center;
}

.cta-message {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta .cta-btn {
    white-space: nowrap;
    /* ボタン内で改行されないように */
}


@media (max-width: 768px) {
    .cta {
        padding: 0 24px;
    }

    .cta-content {
        display: block;
    }

    .cta-btn {
        width: 320px;
        margin: 0 auto;
        text-align: center;
    }

    .cta-box {
        padding: 80px 60px;
    }
}


@media (max-width: 540px) {
    .cta {
        padding: 0;
    }

    .cta-box {
        padding: 50px 10px;
    }

    .cta-btn {
        width: 260px;
        font-size: 16px;
    }
}

.effect {
    padding: 110px 24px;
}

.effect-inner {
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
}

.effect-toptext {
    font-size: 20px;
    margin-bottom: 20px;
}

.effect-inner h2 {
    color: #000;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.4;
}

.effect-img-pc {
    max-width: 900px;
    margin: 0 auto 50px;
}

.effect-img-pc img {
    width: 100%;
    height: auto;
}

.effect-cards-top {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.effect-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.effect-card {
    flex: 1;
    background-color: #fff;
    padding: 50px 40px;
    border: solid 1px #ddd;
}

.effect-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
    background: linear-gradient(90deg, #468ef0 0%, #7358cc 50%, #da5d10 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.effect-card-img {
    margin-bottom: 5px;
}

.effect-card-img img {
    width: 100%;
    height: auto;
}

.effect-logo-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.effect-logo {
    width: 100px;
    height: auto;
}

.effect-card p {
    font-size: 16px;
    font-weight: 500;
}


@media (max-width: 768px) {
    .effect {
        padding: 80px 24px;
    }

    .effect-inner h2 {
        font-size: 30px;
    }

    .effect-cards-top {
        font-size: 20px;
    }

    .effect-logo-flex {
        gap: 10px;
    }

    .effect-logo {
        width: 80px;
        margin: 0 auto;
    }

    .effect-card p {
        font-size: 14px;
    }

    .effect-card {
        padding: 30px 20px;
    }

    .effect-card h3 {
        font-size: 18px;
    }

}

@media (max-width: 540px) {
    .effect {
        padding: 50px 24px;
    }

    .effect-toptext {
        font-size: 22px;
        line-height: 1.4;
    }

    .effect-inner h2 {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .effect-cards-top {
        font-size: 18px;
    }

    .effect-cards {
        display: block;
        margin: 0 auto;
    }

    .effect-card {
        padding: 30px 20px;
        margin: 0 0 15px;
    }

    .effect-card h3 {
        font-size: 18px;
    }

    .effect-card p {
        text-align: left;
    }
}


/* --- FAQセクション全体の背景 --- */
.faq {
    background-color: #f7f7f7;
    padding: 100px 24px;
}

.faq-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* --- タイトル部分（左側） --- */
.faq-title {
    flex: 1;
    /* 幅の比率 */
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: left;
    margin: 0;
}

/* --- アコーディオンコンテナ（右側） --- */
.faq-container {
    flex: 2;
    /* タイトルより少し広めに確保 */
}

.faq-item {
    border-bottom: 1px solid #333;
    /* 見本のような細い黒線 */
}

/* --- 質問部分（クリックエリア） --- */
.faq-question {
    padding: 30px 0;
    cursor: pointer;
    list-style: none;
    /* デフォルトの矢印を消す */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* ブラウザ独自の矢印を非表示にする（Safari対策） */
.faq-question::-webkit-details-marker {
    display: none;
}

/* --- 矢印アイコンのデザイン --- */
.icon::after {
    content: "";
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    /* 下矢印にする */
    display: block;
    transition: transform 0.3s;
    margin-right: 10px;
}

/* 開いている時に矢印を上に向ける */
details[open] .icon::after {
    transform: rotate(-135deg);
    margin-top: 5px;
}

/* --- 回答部分 --- */
.faq-answer {
    padding: 0 0 30px;
    /* 閉じた時に不自然な余白が出ないよう調整 */
    line-height: 1.8;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}

/* --- レスポンシブ（768px以下） --- */
@media (max-width: 768px) {
    .faq-inner {
        flex-direction: column;
        /* 縦並びにする */
    }

    .faq-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .faq-container {
        width: 100%;
    }

    .faq-question {
        font-size: 16px;
    }
}

@media (max-width: 540px) {
    .faq {
        padding: 60px 24px;
    }

    .faq-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

}



.download {
    padding: 100px 24px;
    background-color: #fff;
}

.download-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.download-title {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #468ef0 0%, #7358cc 50%, #da5d10 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* --- 2カラムレイアウト --- */
.download-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.download-info {
    flex: 1;
    text-align: left;
}

.download-lead {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
    color: #333;
}


.document-img img {
    width: 100%;
    margin-bottom: 40px;
}

.user-logos-area {
    text-align: center;
}

.user-logos img {
    width: 100%;
}

/* --- フォームのデザイン --- */
.download-form-container {
    flex: 1;
}

.download-form {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    /* 柔らかな影 */
    text-align: left;
}

.privacy-note {
    font-size: 12px;
    font-weight: 400;
}

.privacy-note a {
    color: #0066ff;
    /* 見本のような鮮やかな青 */
    text-decoration: underline;
    /* 下線を引く */
}

@media (max-width: 768px) {
    .download-title {
        font-size: 30px;
        color: transparent;
    }

    .download-inner {
        max-width: 500px;
    }

    .download-flex {
        display: block;
    }

    .user-logos-area {
        display: none;
    }
}


@media (max-width: 540px) {
    .download {
        padding: 60px 24px;
    }

    .download-title {
        font-size: 26px;
    }

    .download-lead {
        font-size: 16px;
        line-height: 1.5;
    }

    .download-form {
        padding: 10px;
    }


}

.p-footer {
    position: relative;
    background: #000;
    z-index: 20;
    color: #fff;
    padding: 8.5625rem 6.25rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto
}

@media screen and (max-width: 768.8px) {
    .p-footer {
        padding: 67px 20px 40px 20px
    }
}

.p-footer a:not(.c-btn) {
    transition: opacity .3s
}

.p-footer_data {
    margin-bottom: 40px;
    margin-right: auto
}

@media screen and (max-width: 768.8px) {
    .p-footer_data {
        margin-bottom: 0
    }
}

.p-footer_data p {
    letter-spacing: .8px;
    padding-left: 11px
}

@media screen and (max-width: 768.8px) {
    .p-footer_data p {
        line-height: 1.7;
        font-size: 14px;
        padding-left: 4px
    }
}

.p-footer_logo {
    padding-top: 3px;
    margin-bottom: 29px
}

@media screen and (max-width: 768.8px) {
    .p-footer_logo {
        margin-bottom: 10px
    }
}

.p-footer_bottom {
    margin-top: 73px;
    width: 100%;
    height: 145px;
    border-top: solid 1px rgba(255, 255, 255, .2);
    display: flex;
    justify-content: flex-start;
    align-items: center
}

@media screen and (max-width: 1119.8px) {
    .p-footer_bottom {
        border-top: none;
        flex-wrap: wrap;
        align-content: flex-start
    }
}

@media screen and (max-width: 768.8px) {
    .p-footer_bottom {
        margin-top: 30px
    }
}

.p-footer_sns {
    display: flex;
    justify-content: space-between;
    width: 70px
}

@media screen and (max-width: 768.8px) {
    .p-footer_sns {
        width: 65px
    }
}

.p-footer_sns a {
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto
}

.p-footer_sns a svg {
    fill: #fff
}

.p-footer_small {
    margin-left: 40px;
    font-family: Roboto, Arial, sans-serif;
    font-size: 13px;
    letter-spacing: .1px
}

@media screen and (max-width: 768.8px) {
    .p-footer_small {
        font-size: 10.5px;
        margin-left: auto;
        margin-right: 0
    }
}

.p-footer_terms {
    position: absolute;
    top: auto;
    left: auto;
    right: 61px;
    bottom: auto;
    font-size: 12px;
    line-height: 1;
    display: flex;
    width: 630px;
    justify-content: space-between
}

@media screen and (max-width: 1119.8px) {
    .p-footer_terms {
        margin-top: 20px;
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        order: -1;
        margin-bottom: 47px;
        max-width: 400px;
        margin-right: calc(100% - 400px)
    }
}

@media screen and (max-width: 768.8px) {
    .p-footer_terms {
        margin-top: 25px;
        max-width: none;
        width: 100%;
        margin-right: 0;
        font-size: 10.3px;
        letter-spacing: .4px
    }
}

.l-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    color: inherit
}

.l-footer__nav li:first-child a {
    border-left: none
}

.l-footer__nav a {
    font-size: 12px;
    padding: 0 1em;
    display: block;
    color: #fff;
    border-right: 1px solid
}

@media screen and (max-width: 768.8px) {
    .l-footer__nav a {
        margin-bottom: 10px
    }
}

.l-footer__nav li:last-child a {
    border-right: none;
    padding-right: 0
}



/* --- 共通設定（PCでは非表示） --- */
.fixed-cta {
    display: none;
}

/* --- 768px以下のタブレット・スマホサイズ時 --- */
@media screen and (max-width: 768px) {
    .fixed-cta {
        display: block;
        /* 表示する */
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        padding: 20px 15px;
        z-index: 9999;
        text-align: center;
        transition: 0.3s ease-in-out;
    }

    /* JavaScriptで隠す際のクラス */
    .fixed-cta.is-hidden {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .fixed-cta-inner p {
        color: #fff;
        font-size: 14px;
        margin-bottom: 12px;
        font-weight: 500;
    }

    .fixed-cta .cta-btn {
        width: 100%;
        max-width: 280px;
        /* タブレットでも収まりの良い幅 */
        margin: 0 auto;
        padding: 15px 20px;
        font-size: 17px;
        justify-content: center;
        /* ボタン内のテキストを中央に */
    }
}

@media screen and (max-width: 540px) {
    .fixed-cta .cta-btn {
        max-width: 280px;
        /* スマホでは少しスリムに */
        font-size: 16px;
    }
}