@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap');

/* --------- common --------- */
:root {
    --font-outfit: 'Outfit', 'Noto Sans JP', sans-serif;
    --text-color: #465059;
    --light-blue: #6B9CDE;
    --bg-yellow: #FFEF8A;
    --bg01: #EAF5FE;
}
#container {
    width: 100%;
    margin: 0;
    background: linear-gradient(to bottom, #A5CCEE 10%, #BBE0F4 30%, #ECBF77 60%, #E0A0A1 75%, #204880 100%);
    color: var(--text-color);
    font-family: 'Noto Sans JP', sans-serif;
}
#container img {
    display: block;
    width: 100%;
    height: auto;
}
#container [data-animate="fadeUp"] {
    opacity: 0;
    translate: 0 32px;
    transition: opacity 1s ease-in,translate 1s cubic-bezier(.4,0,.3,1);
}
#container .js-animate--active[data-animate="fadeUp"] {
    opacity: 1;
    translate: 0;
}
#container [data-animate="blur"] {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1s ease-in,filter 1s cubic-bezier(.4,0,.3,1);
}
#container .js-animate--active[data-animate="blur"] {
    opacity: 1;
    filter: blur(0);
}
/* --------- content-outer --------- */
#container .content-outer {
    display: grid;
    grid-template-columns: 1fr 480px 1fr;
}
/* ------ content-bg ------ */
#container [class^="content-bg"] {
    position: fixed;
    mix-blend-mode: screen;
    animation: fuwafuwa 20s infinite ease-in-out alternate-reverse;
    pointer-events: none;
    user-select: none;
    transition: opacity .3s;
}
#container [class^="content-bg"].hidden {
    opacity: 0;
}
#container .content-bg--left {
    width: calc(calc(calc(100% - 480px) / 2) - 35px);
    left: 9px;
    bottom: 15.6571vh;
}
#container .content-bg--right {
    width: calc(calc(calc(100% - 480px) / 2) - 55px);
    right: 0;
    top: 20.5714vh;
}
@keyframes fuwafuwa {
	0% {
		translate: 0 0;
	}
	25% {
		translate:  24px;
	}
	50% {
		translate: 0 0;
	}
	75% {
		translate: 0 -40px;
	}
	100% {
		translate: 0 0;
	}
}
/* ------ side-column ------ */
#container .side-column {
    height: 100vh;
    position: sticky;
    top: 0;
}
#container .left-column__inner {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    height: 100%;
    margin-inline: auto;
    padding-top: 17.5vh;
    position: relative;
    justify-content: space-between;
}
#container .left-column__img {
    margin-bottom: 6.85714vh;
}
#container .left-column__btn {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: .07em;
    text-align: center;
    padding-block: 9px;
    border: 1px solid #fff;
    border-radius: 10vh;
    transition: background-color .3s;
    margin-bottom: 42.74285vh;
}
#container .left-column__btn:hover {
    background: rgb(255 255 255/.3);
}
#container .left-column__copyrights {
    color: #fff;
    font-size: 12px;
    font-family: var(--font-outfit);
    line-height: 2;
    letter-spacing: .07em;
    text-align: center;
    margin-bottom: 76px;
}
#container .right-column {
    display: flex;
    align-items: end;
}
#container .toc {
    display: grid;
    grid-template-columns: 100%;
    gap: min(2.62857vh, 23px);
    max-width: 339px;
    margin: 0 auto 13.37142vh;
}
#container .toc__link {
    display: flex;
    width: fit-content;
    gap: 15px;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .07em;
    text-decoration: none;
    padding-bottom: 2px;
    background: linear-gradient(to right, #fff 0%, #fff 100%) no-repeat left bottom/0 1px;
    transition: background-size .3s;
}
#container .toc__link:hover {
    background-size: 100% 1px;
}
#container .toc__number {
    font-family: var(--font-outfit);
    opacity: .5;
}
/* ------ content ------ */
#container .content {
    background: #fff;
    overflow: hidden;
}
/* --- content-label --- */
#container .content-label {
    display: grid;
    place-content: center;
    width: 279px;
    height: 66px;
    margin: 25px auto -30px;
    background: url(/ja/campaign/737-8/images/bg_label01.svg) no-repeat center/cover;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .07em;
    text-align: center;
    position: relative;
    z-index: 1;
}
#container .mv {
    margin: 0 0 70px 30px;
}
#container .mv__img {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
#container.loaded .mv__img {
    opacity: 1;
}

#container .mv__txt {
    width: fit-content;
    padding: 34px 20px 0 0;
    background: #fff;
    border-top-right-radius: 40px;
    margin-top: -98px;
    position: relative;
}
#container .mv__txt::before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: url(/ja/campaign/737-8/images/img_mv02.svg) no-repeat center/cover;
    position: absolute;
    bottom: calc(100% - 1px);
}
#container .mv__txt::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: url(/ja/campaign/737-8/images/img_mv03.svg) no-repeat center/cover;
    position: absolute;
    bottom: 76px;
    left: calc(100% - 1px);
}
#container .mv__txt img {
    display: inline-block;
}
#container .mv__txt__row {
    display: flex;
    align-items: center;
}
#container .mv__txt__row:first-child {
    margin-bottom: 14px;
}
#container .mv__txt__row:nth-child(2) {
    margin-bottom: 10px;
}
/***************************************************
 * Generated by SVG Artista
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
@keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 25.815353393554688px;
        stroke-dasharray: 25.815353393554688px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 25.815353393554688px;
    }
}
@keyframes animate-svg-stroke-2 {
    0% {
        stroke-dashoffset: 44.16551208496094px;
        stroke-dasharray: 44.16551208496094px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 44.16551208496094px;
    }
}
@keyframes animate-svg-stroke-3 {
    0% {
        stroke-dashoffset: 125.72808837890625px;
        stroke-dasharray: 125.72808837890625px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 125.72808837890625px;
    }
}
@keyframes animate-svg-stroke-4 {
    0% {
        stroke-dashoffset: 44.245933532714844px;
        stroke-dasharray: 44.245933532714844px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 44.245933532714844px;
    }
}
@keyframes animate-svg-stroke-5 {
    0% {
        stroke-dashoffset: 125.63337707519531px;
        stroke-dasharray: 125.63337707519531px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 125.63337707519531px;
    }
}
@keyframes animate-svg-stroke-6 {
    0% {
        stroke-dashoffset: 163.73968505859375px;
        stroke-dasharray: 163.73968505859375px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 163.73968505859375px;
    }
}
@keyframes animate-svg-stroke-7 {
    0% {
        stroke-dashoffset: 25.78921890258789px;
        stroke-dasharray: 25.78921890258789px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 25.78921890258789px;
    }
}
@keyframes animate-svg-stroke-8 {
    0% {
        stroke-dashoffset: 44.15290069580078px;
        stroke-dasharray: 44.15290069580078px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 44.15290069580078px;
    }
}
@keyframes animate-svg-stroke-9 {
    0% {
        stroke-dashoffset: 125.72759246826172px;
        stroke-dasharray: 125.72759246826172px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 125.72759246826172px;
    }
}
@keyframes animate-svg-stroke-10 {
    0% {
        stroke-dashoffset: 44.24053192138672px;
        stroke-dasharray: 44.24053192138672px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 44.24053192138672px;
    }
}
@keyframes animate-svg-stroke-11 {
    0% {
        stroke-dashoffset: 125.63105773925781px;
        stroke-dasharray: 125.63105773925781px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 125.63105773925781px;
    }
}
@keyframes animate-svg-stroke-12 {
    0% {
        stroke-dashoffset: 161.44801330566406px;
        stroke-dasharray: 161.44801330566406px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 161.44801330566406px;
    }
}
#container.loaded .mv__txt__infinity .svg-elem-1 {
    animation: animate-svg-stroke-1 1.5s ease-in-out 1.5s both;
}
#container.loaded .mv__txt__infinity .svg-elem-2 {
    animation: animate-svg-stroke-2 1.5s ease-in-out 1.5s both;
}
#container.loaded .mv__txt__infinity .svg-elem-3 {
    animation: animate-svg-stroke-3 1.5s ease-in-out 1.5s both;
}
#container.loaded .mv__txt__infinity .svg-elem-4 {
    animation: animate-svg-stroke-4 1.5s ease-in-out 1.5s both;
}
#container.loaded .mv__txt__infinity .svg-elem-5 {
    animation: animate-svg-stroke-5 1.5s ease-in-out 1.5s both;
}
#container.loaded .mv__txt__infinity .svg-elem-6 {
    animation: animate-svg-stroke-6 1.5s ease-in-out 1.5s both;
}
#container.loaded .mv__txt__eight .svg-elem-1 {
    animation: animate-svg-stroke-7 1.5s ease-in-out 4.5s both;
}
#container.loaded .mv__txt__eight .svg-elem-2 {
    animation: animate-svg-stroke-8 1.5s ease-in-out 4.5s both;
}
#container.loaded .mv__txt__eight .svg-elem-3 {
    animation: animate-svg-stroke-9 1.5s ease-in-out 4.5s both;
}
#container.loaded .mv__txt__eight .svg-elem-4 {
    animation: animate-svg-stroke-10 1.5s ease-in-out 4.5s both;
}
#container.loaded .mv__txt__eight .svg-elem-5 {
    animation: animate-svg-stroke-11 1.5s ease-in-out 4.5s both;
}
#container.loaded .mv__txt__eight .svg-elem-6 {
    animation: animate-svg-stroke-12 1.5s ease-in-out 4.5s both;
}
#container .mv__txt__01 {
    width: 207px;
    margin-left: 9px;
    opacity: 0;
    transition: opacity 1s ease-in-out 2.5s;
}
#container.loaded .mv__txt__01 {
    opacity: 1;
}
#container .mv__txt__02 {
    width: 296px;
    opacity: 0;
    transition: opacity 1s ease-in-out 3.5s;
}
#container.loaded .mv__txt__02 {
    opacity: 1;
}
#container .mv__txt__03 {
    width: 230px;
    margin-left: 9px;
    opacity: 0;
    transition: opacity 1s ease-in-out 5.25s;
}
#container.loaded .mv__txt__03 {
    opacity: 1;
}
/* --- lead-txt --- */
#container .lead-txt {
    font-size: 17px;
    line-height: 2;
    letter-spacing: .03em;
    margin: 0 30px 56px;
}
/* --- sec--kindness --- */
#container .sec--kindness {
    background: linear-gradient(to bottom, var(--bg01) 0%, var(--bg01) 100%) no-repeat top 125px left /100% calc(100% - 250px);
    padding-block: 125px;
    position: relative;
}
#container .sec--kindness::before,
#container .sec--kindness::after {
    content: '';
    display: block;
    width: 615px;
    height: 615px;
    background: var(--bg01);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    translate: -50%;
    z-index: 0;
    pointer-events: none;
}
#container .sec--kindness::before {
    top: 0;
}
#container .sec--kindness::after {
    bottom: 0;
}
#container .sec--kindness__ttl-wrapper {
    translate: 0 -46px;
}
#container .sec--kindness__bg-img-wrapper {
    width: 428px;
    position: relative;
}
#container .sec--kindness__bg-img--01 {
    width: 416px;
    opacity: 0;
}
#container .sec--kindness__bg-img-wrapper.js-animate--active .sec--kindness__bg-img--01 {
    opacity: 1;
}
/***************************************************
 * Generated by SVG Artista on 3/23/2026, 10:31:40 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@keyframes animate-svg-stroke-13 {
    0% {
        stroke-dashoffset: 877.810791015625px;
        stroke-dasharray: 877.810791015625px;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 877.810791015625px;
    }
}
@keyframes animate-svg-stroke-14 {
    0% {
        stroke-dashoffset: 588.0594482421875px;
        stroke-dasharray: 588.0594482421875px;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 588.0594482421875px;
    }
}
@keyframes animate-svg-stroke-15 {
    0% {
        stroke-dashoffset: 381.86865234375px;
        stroke-dasharray: 381.86865234375px;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 381.86865234375px;
    }
}
@keyframes animate-svg-stroke-16 {
    0% {
        stroke-dashoffset: 157.01385498046875px;
        stroke-dasharray: 157.01385498046875px;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 157.01385498046875px;
    }
}
@keyframes animate-svg-stroke-17 {
    0% {
        stroke-dashoffset: 880.5874633789062px;
        stroke-dasharray: 880.5874633789062px;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 880.5874633789062px;
    }
}
#container .sec--kindness__bg-img-wrapper.js-animate--active .sec--kindness__bg-img--01 .svg-elem-1 {
    animation: animate-svg-stroke-13 3s ease 0s both;
}
#container .sec--kindness__bg-img-wrapper.js-animate--active .sec--kindness__bg-img--01 .svg-elem-2 {
    animation: animate-svg-stroke-14 3s ease 0s both;
}
#container .sec--kindness__bg-img-wrapper.js-animate--active .sec--kindness__bg-img--01 .svg-elem-3 {
    animation: animate-svg-stroke-15 3s ease 0s both;
}
#container .sec--kindness__bg-img-wrapper.js-animate--active .sec--kindness__bg-img--01 .svg-elem-4 {
    animation: animate-svg-stroke-16 3s ease 0s both;
}
#container .sec--kindness__bg-img-wrapper.js-animate--active .sec--kindness__bg-img--01 .svg-elem-5 {
    animation: animate-svg-stroke-17 3s ease 0s both;
}
#container .sec--kindness__bg-img-wrapper.js-animate--active .sec--kindness__bg-img--02 {
    position: absolute;
    width: 32px;
    bottom: 14px;
    right: 0;
    opacity: 0;
    animation: animate-opacity-0 .5s ease 2.4s forwards;
}
@keyframes animate-opacity-0 {
    0% {
        opacity: 0;
        translate: -8px 4px;
    }
    100% {
        opacity: 1;
        translate: 0 0;
    }
}
#container .sec--kindness__ttl {
    width: 224px;
    position: absolute;
    top: 45px;
    left: 50%;
    translate: -50%;
}
#container .sec--kindness__list {
    display: grid;
    gap: 60px;
    padding-inline: 60px;
    position: relative;
    z-index: 1;
}
#container .sec--kindness__items {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 0 20px rgb(140 183 242/.15);
    padding: 0 30px 30px;
    position: relative;
}
#container .sec--kindness__items__head {
    margin-bottom: 25px;
}
#container .sec--kindness__items__head > span {
    display: block;
    line-height: 1;
    text-align: center;
}
#container .sec--kindness__items__num {
    width: 60px;
    height: 60px;
    background: linear-gradient(131.25deg, #8CB7F2 5.75%, #D1C4E2 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    font-family: var(--font-outfit);
    letter-spacing: .07em;
    padding-block: 15px;
    translate: 0 -30px;
    margin: 0 auto -10px;
}
#container .sec--kindness__items__ttl {
    color: var(--light-blue);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: .07em;
    margin-bottom: 15px;
}
#container .sec--kindness__items__subttl {
    width: fit-content;
    margin-inline: auto;
    color: var(--light-blue);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .07em;
    padding-inline: 50px;
    position: relative;
}
#container .sec--kindness__items__subttl::before,
#container .sec--kindness__items__subttl::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg,rgb(107 156 222/0) 0%, var(--light-blue) 100%);
    position: absolute;
    top: 50%;
    translate: 0 -50%;
}
#container .sec--kindness__items__subttl::before {
    left: 0;
}
#container .sec--kindness__items__subttl::after{
    right: 0;
    scale: -1 1;
}
#container .sec--kindness__items__txt {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .04em;
}
#container .sec--kindness__items__img {
    margin-top: 25px;
    border-radius: 15px;
}
.sec--kindness__items__deco {
    position: absolute;
}
#container .sec--kindness__list li:first-child .sec--kindness__items__deco {
    width: 46px;
    right: -39px;
    bottom: 78px;
    translate: -10px 80px;
    transition: translate 2s ease-out;
}
#container .sec--kindness__list li:first-child .sec--kindness__items.js-animate--active .sec--kindness__items__deco {
    translate: 0 0;
}
#container .sec--kindness__list li:nth-child(3) .sec--kindness__items__deco {
    width: 35px;
    left: -46px;
    top: 82px;
    translate: 10px 80px;
    transition: translate 2s ease-out;
}
#container .sec--kindness__list li:nth-child(3) .sec--kindness__items.js-animate--active .sec--kindness__items__deco {
    translate: 0 0;
}
#container .sec--kindness__list li:nth-child(4) .sec--kindness__items__deco {
    width: 44px;
    right: -60px;
    top: 62px;
    translate: 40px 80px;
    transition: translate 2s ease-out;
}
#container .sec--kindness__list li:nth-child(4) .sec--kindness__items.js-animate--active .sec--kindness__items__deco {
    translate: 0 0;
}
#container .sec--kindness__list li:nth-child(5) .sec--kindness__items__deco {
    width: 35px;
    top: -13px;
    right: 25px;
    translate: -20px 40px;
    transition: translate 2s ease-out;
}
#container .sec--kindness__list li:nth-child(5) .sec--kindness__items.js-animate--active .sec--kindness__items__deco {
    translate: 0 0;
}
#container .sec--kindness__list li:nth-child(7) .sec--kindness__items__deco {
    width: 54px;
    top: -6px;
    left: -24px;
    translate: 10px 80px;
    transition: translate 2s ease-out;
}
#container .sec--kindness__list li:nth-child(7) .sec--kindness__items.js-animate--active .sec--kindness__items__deco {
    translate: 0 0;
}

/* --- sec--introduce --- */
#container .sec--introduce {
    padding-block: 36px 80px;
}
#container .sec--introduce__ttl {
    width: 290px;
    margin: 0 auto 50px;
}
#container .sec--introduce__head {
    width: 420px;
    margin: 0 auto 60px;
    padding-block: 200px;
    position: relative;
    background: url(/ja/campaign/737-8/images/bg_introduce01.jpg) no-repeat left 6px top 40px/100% auto;
}
#container .sec--introduce__head__img {
    width: 360px;
    margin-left: 42px;
}
#container .sec--introduce__head__items {
    width: 266px;
    position: absolute;
}
#container .sec--introduce__head__items:first-of-type {
    top: 0;
    left: 0;
}
#container .sec--introduce__head__items:last-of-type {
    bottom: 0;
    right: 0;
}
#container .sec--introduce__head__items::before,
#container .sec--introduce__head__items::after {
    content: '';
    display: block;
    position: absolute;
}
#container .sec--introduce__head__items::before {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgb(107 156 222/.2) 0%, #6B9CDE 100%);
}
#container .sec--introduce__head__items::after {
    width: 10px;
    height: 10px;
    background: var(--light-blue);
    border-radius: 50%;
}
#container .sec--introduce__head__items:first-of-type::before {
    top: calc(100% - 2px);
    right: 82px;
    rotate: -24deg;
}
#container .sec--introduce__head__items:first-of-type::after {
    top: calc(100% + 45px);
    right: 65px;
}
#container .sec--introduce__head__items:last-of-type::before {
    bottom: calc(100% - 16px);
    right: 104px;
    rotate: 186deg;
}
#container .sec--introduce__head__items:last-of-type::after {
    bottom: calc(100% + 24px);
    right: 97px;
}
#container .sec--introduce__head__items__ttl {
    width: fit-content;
    margin-bottom: 12px;
    padding: 1px 9px;
    background: linear-gradient(90deg, #8CB7F2 7.27%, #D1C4E2 99.65%);
    border-radius: 10vh;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .04em;
}
#container .sec--introduce__head__items__txt {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .04em;
}
#container .sec--introduce__list {
    display: grid;
    grid-template-columns: 100%;
    gap: 60px;
    width: 412px;
    margin-left: 30px;
}
#container .sec--introduce__items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#container .sec--introduce__items:nth-child(even) {
    flex-direction: row-reverse;
}
#container .sec--introduce__items__inner {
    position: relative;
}
#container .sec--introduce__items__inner::before {
    content: '';
    display: block;
    width: 52px;
    height: 1px;
    background: linear-gradient(to left, rgb(107 156 222/.2) 0%, #6B9CDE 100%);
    position: absolute;
    top: 88px;
    right: calc(100% + 8px);
    rotate: -5deg;
}
#container .sec--introduce__items:nth-child(even) .sec--introduce__items__inner::before {
    right: auto;
    left: calc(100% + 8px);
    scale: -1 1;
    rotate: 5deg;
}
#container .sec--introduce__items:nth-child(3) .sec--introduce__items__inner::before {
    top: 106px;
}
#container .sec--introduce__items__inner::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: var(--light-blue);
    border-radius: 50%;
    position: absolute;
    top: 86px;
    right: calc(100% + 60px);
}
#container .sec--introduce__items:nth-child(even) .sec--introduce__items__inner::after {
    right: auto;
    left: calc(100% + 60px);
    scale: -1 1;
}
#container .sec--introduce__items:nth-child(3) .sec--introduce__items__inner::after {
    top: 104px;
}
#container .sec--introduce__items__img {
    width: 164px;
}
#container .sec--introduce__items__dtl {
    width: 200px;
    position: relative;
}
#container .sec--introduce__items__ttl {
    display: grid;
    grid-template-columns: 100%;
    margin-bottom: 10px;
}
#container .sec--introduce__items__ttl__en {
    color: #CEDFF6;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-outfit);
    line-height: 1.5;
    letter-spacing: .04em;
}
#container .sec--introduce__items__ttl__ja {
    color: var(--light-blue);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .04em;
}
#container .sec--introduce__items__ttl__ja small {
    font-size: 13px;
    letter-spacing: .04em;
}
#container .sec--introduce__items__txt {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: .04em;
}

/* --- sec--route --- */
#container .sec--route {
    padding-block: 45px 70px;
    background: var(--light-blue);
    color: #fff;
    border-radius: 40px 40px 0 0;
}
#container .sec--route__ttl-wrapper {
    margin-bottom: 40px;
}
#container .sec--route__ttl--en {
    color: #97BCEF;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .07em;
    text-align: center;
    margin-bottom: 15px;
}
#container .sec--route__ttl--ja__img {
    width: 221px;
    margin-inline: auto;
}
#container .sec--route__txt {
    font-size: 15px;
    line-height: 2;
    letter-spacing: .05em;
    text-align: center;
}
#container .sec--route__txt + .sec--route__txt {
    margin-top: 20px;
}
#container .sec--route__btn {
    display: block;
    width: 300px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 10vh;
    border: 1px solid #fff;
    padding: 14px 20px 14px 10px;
    color: var(--light-blue);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .07em;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
}
#container .sec--route__btn:hover {
    background: var(--light-blue);
    color: #fff;
}

/* --- sec--feature --- */
#container .sec--feature {
    padding-block: 60px 70px;
    background: linear-gradient(to bottom, #fff 0%, #E7F2FB calc(100% - 144px), #E7F2FB 100%) no-repeat top left /100%;
}
#container .sec--feature__ttl-wrapper {
    position: relative;
    z-index: 1;
}
#container .sec--feature__ttl--en {
    width: 211px;
    margin: 0 auto 10px;
}
#container .sec--feature__ttl--label {
    background: var(--bg-yellow);
    padding: 5px 10px;
    width: fit-content;
    margin: 0 auto 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .07em;
}
#container .sec--feature__ttl--ja__img {
    width: 416px;
    margin-inline: auto;
}
#container .sec--feature__splide {
    margin-inline: 20px;
    padding: 92px 20px 70px;
    background: #fff;
    border-radius: 200px;
    margin-block: -52px -30px;
}
#container .sec--feature__splide .splide__track {
    margin-bottom: 20px;
}
#container .sec--feature__splide .splide__slide__movie {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    margin-bottom: 13px;
    border: 0;
}
#container .sec--feature__splide .splide--slide__ttl {
    color: var(--text-color);
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: .07em;
}
#container .sec--feature__splide .splide__pagination {
    gap: 10px;
}
#container .sec--feature__splide .splide__pagination__page {
    display: block;
    width: 10px;
    height: 10px;
    border: 0;
    padding: 0;
    margin: 0;
    background: #D9D9D9;
    border-radius: 50%;
}
#container .sec--feature__splide .splide__pagination__page.is-active {
    background: var(--light-blue);
}
#container .sec--feature__btn {
    display: block;
    width: 300px;
    padding-block: 15px;
    background: #ff0000;
    border-radius: 10vh;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .07em;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-inline: auto;
    transition: background-color .3s;
}
#container .sec--feature__btn:hover {
    background: #ff9090;
}
#container .sec--feature__btn span {
    display: flex;
    gap: 15px;
    align-items: center;
    translate: -10px;
    justify-content: center;
}
#container .sec--feature__btn span::before {
    content: '';
    display: block;
    width: 35px;
    height: 25px;
    background: url(/ja/campaign/737-8/images/logo_youtube.svg) no-repeat center/cover;
}

/* --- sec--campaign --- */
#container .sec--campaign {
    background: linear-gradient(to bottom, #E7F2FB 0%,#E7F2FB 144px,var(--bg-yellow) 144px,var(--bg-yellow) calc(100% - 144px),#fff 100%) no-repeat top /100%;
    padding-block: 144px;
    position: relative;
}
#container .sec--campaign::before {
    content: '';
    display: block;
    width: 615px;
    height: 615px;
    background: url(/ja/campaign/737-8/images/txt_campaign01.png) no-repeat top 23px center/400px,
                var(--bg-yellow);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50%;
    z-index: 0;
    pointer-events: none;
}

#container .sec--campaign__head {
    position: relative;
    margin-bottom: 47px;
}
#container [class^="sec--campaign__head__deco"]{
    position: absolute;
    top: 63px;
}
#container .sec--campaign__head__deco--01 {
    width: 91px;
    left: 9px;
}
#container .sec--campaign__head__deco--02 {
    width: 82px;
    right: 20px;
}
#container .sec--campaign__ttl {
    width: 300px;
    margin: 0 auto 30px;
}
#container .sec--campaign__txt {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: .05em;
    text-align: center;
}
#container .sec--campaign__list {
    display: grid;
    grid-template-columns: 100%;
    gap: 40px;
    margin: 0 50px 50px;
}
#container .sec--campaign__items {
    position: relative;
}
#container .sec--campaign__items__img-wrapper {
    position: relative;
    margin-bottom: 15px;
}
#container .sec--campaign__items__img-label {
    background: #FEDB00;   
    width: fit-content;
    padding: 7px 32px;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-outfit);
    line-height: 1;
    letter-spacing: .07em;
    position: absolute;
    top: -7px;
    left: 0;
}
#container .sec--campaign__items__num {
    background: #fff;
    width: fit-content;
    padding: 2px 8px;
    border-radius: 10vh;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .05em;
    margin: 0 auto 5px;
}
#container .sec--campaign__items__txt {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .05em;
    text-align: center;
}
#container [class^="sec--campaign__items__deco"]{
    position: absolute;
    mix-blend-mode: color-dodge;
}
#container .sec--campaign__items__deco--01 {
    width: 153px;
    top: 166px;
    right: -45px;
}
#container .sec--campaign__items__deco--02 {
    width: 114px;
    bottom: 51px;
    left: -29px;
}
#container .sec--campaign__items__deco--03 {
    width: 145px;
    top: 172px;
    left: -40px;
}
#container .sec--campaign__items__deco--04 {
    width: 66px;
    bottom: 68px;
    right: 3px;
}
#container .sec--campaign__info {
    margin-inline: 20px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 20px;
}
#container .sec--campaign__info__ttl {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: .07em;
    text-align: center;
    background: #FEDB00;
    padding-block: 3px;
    margin-bottom: 5px;
}
#container .sec--campaign__info__list__items {
    padding-block: 15px;
    border-bottom: 1px solid #F1F1F1;
}
#container .sec--campaign__info__list__ttl {
    color: var(--light-blue);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: .07em;
    margin-bottom: 5px;
}
#container .sec--campaign__info__list__txt {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: .05em;
}
#container .sec--campaign__info__list__txt a {
    color: inherit;
    text-underline-offset: 3px;
}
#container .sec--campaign__info__list__scroll-box {
    background: #f5f5f5;
    padding: 15px 20px 15px 15px;
    border-radius: 10px;
    max-height: 220px;
    overflow: scroll;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: .05em;
    scrollbar-width: none;
}
#container .sec--campaign__info__list__scroll-box::-webkit-scrollbar {
    display: none;
}
#container .sec--campaign__info__list__scroll-box .simplebar-track.simplebar-vertical {
    width: 6px;
    margin: 15px 5px 15px 0;
    background: #fff;
    border-radius: 10vh;
}
#container .sec--campaign__info__list__scroll-box .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    width: 6px;
    background: #D9D9D9;
    opacity: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* --- content-footer --- */
#container .content-footer {
    background: #fff;
    padding-block: 50px 10px;
}
#container .content-footer__inner {
    margin-inline: 30px;
}
#container .content-footer__ttl {
    width: 286px;
    margin-bottom: 30px;
}
#container .content-footer__img {
    border-radius: 20px;
    margin-bottom: 30px;
}
#container .content-footer__copyrights {
    font-size: 12px;
    line-height: 2;
    letter-spacing: .07em;
    text-align: center;
}

.topicPath {
    background-color: #fff;
    ol {
        max-width: 960px;
        margin: 0 auto;
        padding: 20px 0;
        margin-bottom: -20px;
    }
}
.pagetopBlock {
    background: #214880;
}

