:root {
    --ink: #0f2a5f;
    --muted: #5b6f90;
    --line: #22b36c;
    --blue: #4f86c6;
    /* Point/Q&A背景 */
    --blueDeep: #016BA0;
    --card: #ffffff;
    --pale: #d8e8f7;
    /* About/Presentの淡い水色 */
    --stroke: #e6eef8;
    --shadow: 0 10px 22px rgba(15, 42, 95, .08);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
}

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

.container {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

/* ===== Header ===== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.pc-left__brand {
    position: fixed;
    top: 20px;
    left: 20px;
}

@media(max-width:1100px) {
    .pc-left__brand {
        left: -0px;
    }
}


.pc-left__brand,
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 900;
    width: 200px;
}

.brand img {
    width: 100%;
}

.brand__mark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--blueDeep);
    border-radius: 6px;
    transform: rotate(45deg);
}

.brand__name {
    font-size: 18px;
}


/* headerはそのまま */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}

.header__inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand img {
    height: 34px;
    width: auto;
    display: block;
}

/* ===== ハンバーガー → × ===== */
.hamburger {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #16375f;
    margin: 4px auto;
    border-radius: 999px;
    transition: transform .2s ease, opacity .2s ease;
}

/* 開いたとき×になる */
.hamburger.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ===== 黒いオーバーレイ ===== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 90;
}

/* ===== メニュー（上から出る） ===== */
.sp-menu {
    position: absolute;
    top: 0;
    /* ヘッダーの高さに合わせる */
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .08);
    z-index: 95;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
}

.sp-menu__nav {
    width: 100%;
    margin: 0 auto;
    padding: 14px 16px 18px;
    display: grid;
    gap: 10px;
}

.sp-menu__nav a {
    font-weight: 900;
    color: #16375f;
    text-decoration: none;
    padding: 12px 12px;
    border-radius: 12px;
    background: #f6f8fb;
}

.sp-menu__nav hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, .08);
    margin: 8px 0;
}

.sp-menu__cta {
    text-align: center;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, .12);
}

.sp-menu__cta--line {

    border: none !important;
    color: #fff !important;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    z-index: 1;
}

.hero__inner {
    padding: 18px 0 0;
    display: grid;
    gap: 12px;
    position: relative;
}

.hero__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #4d88c4;
    clip-path: polygon(0 58%, 100% 38%, 100% 100%, 0 100%);

    border-radius: 0;
    z-index: -2;
}

.hero__copy {
    padding: 16px;
}

.hero__badge {
    margin: 0 0 6px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}

.hero__title {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: .02em;
    font-weight: 900;
}

.hero__title-strong {
    color: var(--blueDeep);
}

.hero__lead {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    position: relative;
    padding-top: 10px;
    color: #223756;
    font-weight: bold;
}

.hero__lead::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 60%;
    border-top: 2px dotted #223756;
}

.hero__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    margin: 80px 0 60px;
    border-radius: 12px;
    display: grid;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
}

.hero__list li {
    border: solid 1px #fff;
    border-radius: 3px;
    color: #fff;
    width: fit-content;
    font-size: 17px;
    padding: 4px 8px;
    margin-bottom: 4px;
}

.hero__list li:nth-child(2) {
    background: #fff;
    color: #0b6fb5;
    border: 0;

}

.hero__visual {
    overflow: hidden;
    width: 200px;
    position: absolute;
    right: 0;
    bottom: 40px;
    z-index: -1;
}

.hero__visual img {
    width: 100%;
    height: auto;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 73px;
    transform: translateX(-50%);
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-weight: 800;
    letter-spacing: .06em;
    font-size: 14px;
    opacity: .95;
    z-index: 5;
}

.scroll-indicator__text {
    display: block;
}

/* 下向き矢印（V） */
.scroll-indicator__arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-top: 0px;
    border-right: 2px solid rgba(255, 255, 255, .9);
    border-bottom: 2px solid rgba(255, 255, 255, .9);
    transform: rotate(45deg);
    /* これで「∨」 */
    animation: scrollBounce 1.3s ease-in-out infinite;
}

/* ぴょこぴょこ */
@keyframes scrollBounce {

    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
        opacity: .9;
    }

    50% {
        transform: rotate(45deg) translate(0, 5px);
        opacity: 1;
    }
}

.fv-down {
    text-align: center;
    margin: auto;
    padding: 6px 6% 30px;
    border-radius: 40px 40px 0 0px;
    position: relative;
    bottom: 40px;
    background: #fff;
    border-bottom: 2px solid #5189C7;
    margin-bottom: -20px;
}

/* CTA box */
.hero__cta {
    padding: 14px 0 18px;
}

.cta-box {
    border-top: 1px solid var(--stroke);
    padding-top: 14px;
    text-align: center;
}

.cta-box__note {
    margin: 0 0 10px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 999px;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, .06);
}

.btn__arrow {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

.btn--line:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.btn--wide {
    width: min(520px, 100%);
}

.cta-box__fine {
    margin: 10px 0 0;
    font-size: 11px;
    color: var(--muted);
}

/* ===== Section common ===== */
.section {
    padding: 26px 0 40px 0;
}

.section-title {
    text-align: center;
    margin: 0 0 14px;
}

.section-title__en {
    display: block;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--blueDeep);
}

.section-title__jp {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--blueDeep);
    margin-top: 2px;
    text-align: center;
    margin-bottom: 34px;
}

.section-title--white .section-title__en,
.section-title--white .section-title__jp {
    color: #fff;
}

/* card */
.card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.card--pale {
    background: var(--pale);
    border-color: transparent;
    box-shadow: none;

}

.hl {
    background: linear-gradient(transparent 62%, #F9ECA7 62%);
    font-weight: 900;
}

/* ===== About ===== */
.about .card {
    padding: 18px 18px 16px;
    margin-bottom: -100px;
}

.about__text {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

.about__ph {
    border-radius: 30px 0 0 0;
    overflow: hidden;
    background: #cfd6e2;
    position: relative;
    top: 50px;
    left: 38px;
    width: auto;
}

.about__ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Point ===== */
.point {
    background: var(--blue);
    padding: 150px 0 28px 0;
}

.point__frame {
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: 18px;
    padding: 18px 14px 16px;
}

.point__grid {
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

.point-item {
    position: relative;
    border-radius: 18px;
    padding: 5px;
    background: transparent;
}

.point-item__num {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    opacity: .9;
}

.point-item__media {
    /* border-radius: 26px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08); */
}

.point-item__media img {
    width: 100%;
    object-fit: cover;
}

.point-item__caps {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding-left: 6px;
    position: relative;
    bottom: 20px;
    left: 50px;
}

.chip {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    background: #1f355a;
    color: #fff;

}

.chip--ghost {
    background: #fff;
    color: #1f355a;
}

/* ===== Flow ===== */
.flow {
    background: #fff;
}

.flow__list {
    display: grid;
    gap: 24px;
    margin-top: 8px;
}

.flow-step {
    position: relative;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 2px solid #548BC8;
    border-radius: 22px;
    padding: 14px 14px;
    box-shadow: 3px 3px 0 #548BC8;
    /* ←ここが影 */
}

.flow-step::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -35px;
    width: 2px;
    height: 35px;
    background: rgba(47, 102, 180, 0.961);
    transform: translateX(-50%);
}

.flow-step:last-child::after {
    display: none;
}

.flow-step__body {
    padding: 12px 0;
}

.flow-step__icon {
    height: 60px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--blueDeep);
    font-weight: 900;
    background: #f7fbff;
}

.flow-step__icon img {
    width: auto;
    height: 60px;
}

.flow-step__tag {
    margin: 0;
    display: inline-block;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    background: #548BC8;
    padding: 4px 8px;
    border-radius: 16px 16px 0 16px;
    width: max-content;
}

.flow-step__ttl {
    margin: 6px 0 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--ink);
}

/* ===== Band ===== */
.band {
    padding: 42px 0;
    background: linear-gradient(135deg, #0c6aa7, #5cc2a6 40%, #cf3a84);
    color: #fff;
}

.line-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    letter-spacing: .06em;
    white-space: nowrap;
    font-size: 20px;
}

/* 左右の線（高さを持たせる） */
.line-title::before,
.line-title::after {
    content: "";
    flex: 1;
    height: 14px;
    /* ←縦線の高さ */
    opacity: .75;
}

/* 左側： ┤ の形（右端に縦線） */
.line-title::before {
    background:
        /* 横線（中央に1px） */
        linear-gradient(#fff, #fff) left center / 100% 1px no-repeat,
        /* 縦線（右端に14px） */
        linear-gradient(#fff, #fff) right center / 1px 14px no-repeat;
}

/* 右側： ├ の形（左端に縦線） */
.line-title::after {
    background:
        linear-gradient(#fff, #fff) left center / 100% 1px no-repeat,
        linear-gradient(#fff, #fff) left center / 1px 14px no-repeat;
}

/* 線を短めにしたい時（任意） */
.line-title::before,
.line-title::after {
    max-width: 180px;
}


.band__inner {
    text-align: center;
    display: grid;
    gap: 10px;
}

.band__text {
    margin: 0 0 20px;
    font-weight: 500;
    font-size: 14px;
    opacity: .95;
    line-height: 2;

}

.band__badge {

    padding: 10px 12px;

}

.band__b1,
.band__b2 {
    font-weight: 900;
}

.band__x {
    font-weight: 900;
    opacity: .7;
}

/* ===== Present ===== */
.present__text {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    text-align: center;
}


.present__sheet img {
    width: 100%;
    height: auto;
}

.present__checks {
    list-style: none;
    padding: 0;
    margin: 14px 0 20px;
    display: grid;
    gap: 10px;
}

.present__checks li {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    padding: 12px 12px;
    font-weight: 800;
    font-size: 16px;
    color: #203a63;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 70px;
}

/* ===== Photo CTA ===== */
.photo-cta {
    position: relative;
    padding: 30px 0;
    display: grid;
    align-items: center;
    color: #fff;
}

.photo-cta__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(95, 52, 15, 0.55), rgba(95, 52, 15, .55)),
        url("../img/cta_back.jpg") center/cover no-repeat;
    background-position: right 20% center;
    /* 左寄せ＋縦中央 */
}

.photo-cta__inner {
    position: relative;
    padding: 34px 0;
    text-align: center;
}

.photo-cta__ttl {
    margin: 0 0 8px;
    font-size: 20px;
    margin-bottom: 20px;
}

.photo-cta__sub {
    margin: 0 0 14px;
    font-size: 14px;
    opacity: .95;
    line-height: 2;
}

.photo-cta__sub.note {
    text-align: left;
    display: inline-block;
    font-size: 12px;
}

/* ===== Q&A ===== */
.qa {
    background: var(--blue);
    padding: 28px 0 32px;
}

.qa__list {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.qa-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .06);
    overflow: hidden;
}

.qa-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qa-item summary::-webkit-details-marker {
    display: none;
}

.qa-item__q {
    color: var(--blueDeep);
}

.qa-item__icon {
    margin-left: auto;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: #edf3ff;
    color: var(--blueDeep);
    font-weight: 900;
    flex: 0 0 26px
}

.qa-item[open] .qa-item__icon {
    transform: rotate(45deg);
}

.qa-item__a {
    padding: 0 14px 14px;
    color: #16375f;
    font-size: 14px;
    line-height: 1.4;
    padding-top: 12px;
}

.qa-item__a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background:
        radial-gradient(circle, rgba(24, 55, 95, .35) 2px, transparent 1.6px) left center / 10px 2px repeat-x;
    /* ← 12pxを大きくすると間隔が広がる */
}

/* もともと .qa-item__a に padding があるなら、そのままでOK */

.qa-item__a {
    /* 初期状態（閉）に備えたアニメ準備 */
    overflow: hidden;
    transform-origin: top;
}

/* openになった瞬間だけアニメさせる */
.qa-item[open] .qa-item__a {
    animation: qaSlideDown .28s ease both;
}

/* summaryクリックの「波及」防止（任意：アイコン回転などするなら） */
.qa-item summary {
    cursor: pointer;
}

@keyframes qaSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* ===== Footer ===== */
.site-footer {
    background: #fff;
    padding: 24px 0 16px;
    border-top: 1px solid var(--stroke);
}

.footer__inner {
    text-align: center;
    display: grid;
    gap: 12px;
}

.footer__logo {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    width: 200px;
    margin: 40px auto 30px;
}

.footer__nav {
    display: flex;
    gap: 14px;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 420px;
    margin: auto;
}

.footer__nav a {
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
}

.footer__nav a:hover {
    text-decoration: underline;
}

.footer__btn {
    margin: 6px auto 0;
    width: min(420px, 100%);
    padding: 12px 14px;
    border: 1px solid var(--ink);
    text-decoration: none;
    color: var(--ink);
    background: #fff;
}

.footer__btn:hover {
    background: #f5f8ff;
}

.footer__thumbs {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.thumb {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    background: #f3f6fb;
}

/* ====== PC分割レイアウト ====== */
.pc-split {
    min-height: 100vh;
    max-height: 100%;
    display: grid;
    grid-template-columns: 420px 600px;
    /* 左 / 右 */
    /* 間 40px */
    column-gap: 20px;
    justify-content: center;
    background: #bcd1e2;
    justify-content: center;
}

/* 左：固定風（スクロールしても見える） */
.pc-left {
    max-width: 420px;
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    place-items: center;
    background: #bcd1e2;
    text-align: center;
    /* 画像の水色っぽい */
    margin: 0 auto;
    padding: 0 20px;
}

.pc-left__inner {
    width: min(520px, 100%);
    color: #0f2a5f;
    padding-top: 90px;
}

.pc-left__brand {
    width: 170px;
    font-weight: 900;
    letter-spacing: .04em;
    font-size: 28px;
    margin-bottom: 28px;
}

.pc-left__catch {
    margin: 0 0 0px;
    font-weight: 800;
    color: rgba(15, 42, 95, .85);
    font-size: 26px;
}

.pc-left .pc-left__catch {
    font-size: 27px;
}

.pc-left__title {
    margin: 0 0 18px;
    line-height: 1.1;
}

.pc-left .pc-left__title {
    transform: scale(1.1);
}

.pc-left__titleLine {
    display: block;
    font-weight: 700;
}

.pc-left__titleLine:first-child {
    color: #19b36a;
    font-size: 53px;
}

.pc-left__titleLine:last-child {
    font-size: 60px;
    color: #14345f;

}

.sp-page .pc-left__titleLine:last-child {
    margin-left: -34px;
}

.pc-left .pc-left__titleLine:last-child {
    position: relative;
    right: 10px;
}

.pc-left__desc {
    font-weight: 800;
    margin: 0 0 12px;
    color: rgba(15, 42, 95, .9);
    position: relative;
    padding: 0 30px;
    /* ←左右の装飾分の余白 */
}

/* 左の斜め線 */
.pc-left__desc::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 70%;
    width: 33px;
    height: 2px;
    background: #16375f;
    transform: translateY(-50%) rotate(60deg);
    /* 角度調整 */
    border-radius: 999px;
}

/* 右の斜め線 */
.pc-left__desc::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 70%;
    width: 33px;
    height: 2px;
    background: #16375f;
    transform: translateY(-50%) rotate(-60deg);
    border-radius: 999px;
}

.pc-right__desc {
    font-weight: 800;
    color: rgba(15, 42, 95, .9);
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.pc-right__desc::before,
.pc-right__desc::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    /* ← 長さ */
    height: 1px;
    /* 太さ */
    background: #16375f;
    border-radius: 999px;
    transform: translateY(-50%);
}

/* 左：\ の向き */
.pc-right__desc::before {
    left: 10px;
    transform: translateY(-50%) rotate(60deg);
}

/* 右：/ の向き */
.pc-right__desc::after {
    right: 10px;
    transform: translateY(-50%) rotate(-60deg);
}

.pc-left__lead {
    display: flex;
    position: relative;
    margin-top: 26px;
}

.pc-left__lead img {
    transform: rotate(16deg);
    width: 120px;
    position: absolute;
    top: 0;
    right: 20px;
    z-index: -1;
    object-fit: cover;
    object-position: top;
}

.pc-left__cta img:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.pc-left__note {
    margin: 18px 0 0;
    padding-left: 18px;
    color: rgba(15, 42, 95, .7);
    font-size: 12px;
    font-weight: 700;
    list-style: none;
    text-align: left;
    display: inline-block;
}

/* ====== 右：スマホ枠 ====== */
.pc-right {
    height: 100%;
    max-width: 600px;
    display: grid;
    place-items: center;
    padding: 0px 18px;
    background: #fff;
}

/* スマホ枠（iPhoneっぽい） */
.phone {
    width: 100%;
    /* スマホ幅 */
    /* 枠の高さ（お好みで） */
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);

    /* 重要：枠からはみ出さない */
}



/* 上のノッチっぽいバー（任意） */
.phone__bar {
    height: 12px;
    background: #f3f6fb;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}



/* ====== 中身（例） ====== */
.sp-page {
    background: #fff;
}

.sp-hero {
    padding: 14px 14px 18px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.sp-hero__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.sp-logo {
    font-weight: 900;
    color: #0f2a5f;
}

.sp-menu {
    font-weight: 900;
    color: #0f2a5f;
}

.sp-hero__h {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 900;
    color: #14345f;
}

.sp-hero__p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #4a6284;
}

.sp-sec {
    padding: 18px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.sp-sec h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 900;
    color: #2b66c6;
}

.sp-sec p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #3b567a;
    line-height: 1.8;
}

.sp-footer {
    padding: 20px 14px;
    text-align: center;
    color: #6a7e98;
    font-weight: 700;
}

/* ====== SPでは普通に1カラム（右だけスクロールは解除） ====== */
@media (max-width: 1080px) {
    .pc-split {
        grid-template-columns: 1fr;
    }

    .pc-left {
        position: relative;
        height: auto;
        padding: 18px;
        display: none;
    }

    .pc-right {
        height: auto;
        padding: 0;
        margin: auto;
    }

    .phone {
        width: 100%;
        height: auto;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .phone__bar {
        display: none;
    }

    .phone__scroll {
        height: auto;
        overflow: visible;
    }
}

.sp {
    display: none;
}

@media(max-width:767px) {
    .pc-right {
        max-width: 100%;
        ;
    }

    .pc-left__titleLine:last-child {
        font-size: 12vw;
    }

    .pc-left__titleLine:first-child {
        font-size: 10vw;
    }

    .pc-left__catch {
        font-size: 20px;
    }

    .pc-right__desc {
        font-size: 14px;
    }

    .flow-step__ttl {
        font-size: 16px;
    }

    .hero__list {
        font-size: 13px;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    .point-item__caps {

        left: 30px;
    }

    .pc-left__note {
        padding-left: 0;
    }
}

.sp-page {
    position: relative;
}

.sp-menu {
    position: absolute;
    left: 0;
    top: 64px;
    /* 画面右から少し余白 */
    overflow: hidden;
}

.sp-menu__nav {
    width: 100%;
    margin: 0;
    padding: 14px;
}

@media (min-width: 901px) {



    .menu-overlay {
        display: none;
    }
}

@media (min-width: 768px) {

    .about__text,
    .present__text,
    .photo-cta__sub,
    .band__text {
        font-size: 16px;
    }

    .chip {
        font-size: 22px;
    }

}