:root {
    --base-color: #cecac9;
    --color-white: #fff;
    --color-gray:#444;
    --color-red: #e73236;
    --color-blue: #4478bc;
    --color-yellow: #f5ee5a;
    --header-h: 0px;
}
@media only screen and (min-width:600px) {
    header {
        transition: 0.8s;
    }
    .js-animation {
        transform: translateY(-150px);
    }
}
main {
    overflow: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
.look-2026ss {
    background-color: var(--base-color);
}
a:hover {
	transition: all 0.5s ease;
	opacity: 0.8;
}
.fadeIn {
    opacity: 0;
    transform: translateY(1%);
    transition: all 2.5s ease;
}
.fadeIn.is-show {
    transform: translateY(0);
    opacity: 1;
}
.fadeIn-delay {
    opacity: 0;
    transform: translateY(1%);
    transition: all 2.5s ease;
    transition-delay: 1s;
}
.fadeIn-delay.is-show {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1s;
}
.fadeIn-slow {
    opacity: 0;
    transform: translateY(1%);
    transition: opacity 3.5s ease, transform 3.5s ease;
}
.fadeIn-slow.is-show {
    transform: translateY(0);
    opacity: 1;
}
.blur {
    filter: blur(1.5rem);
    transition: filter 1.5s linear;
}
.blur.is-show {
    filter: blur(0);
}
video {
    filter: drop-shadow(0px 0px rgba(0,0,0,0));
    outline: none;
    border: none;
    width: 100%;
}
.area_01,
.area_02,
.area_03,
.area_04,
.area_05,
.area_06,
.area_07,
.area_08,
.area_09,
.area_10,
.area_11,
.area_12,
.area_13 {
    p,
    a {
        font-size: clamp(0.7rem, 0.671rem + 0.14vw, 0.8rem);
        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-style: normal;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        color: var(--color-white);
    }
}
.splide_pagination-position {
    background-color: var(--color-white);
    opacity: 0.7;
    height: 1px;
    transition: .5s all;
    width: 2rem;
}
.splide_pagination-position.is-active {
    background-color: var(--color-white);
    opacity: 1;
    height: 1.5px;
}
.splide_pagination-style {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2rem;
}
.splide_pagination-style li {
    margin-left: 0.3rem;
    margin-right: 0.3rem;
}
.splide__slide img {
    height: auto;
    width: 100%;
}
figure {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgba(0,0,0,.5);
    box-sizing: border-box;
    width: 100%;
    height: auto;
    min-height: 4rem;
    padding: 0.5rem 1rem;
    margin: 0;
    text-align: right;
    color: var(--color-white);
    transform: translateY(100%);
    transition: all 1s ease;
    animation-delay: 0.5s;
    pointer-events: none;
    opacity: 0;
    font-size: clamp(0.7rem, 0.671rem + 0.14vw, 0.8rem);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-style: normal;
    color: var(--color-white);
    display: grid;
    align-items: center;
    justify-items: end;
}
figcaption.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.cap-inner {
    display: block;
    line-height: 1.7;
    text-align: right;
}
figcaption.is-visible a {
    cursor: pointer;
    pointer-events: auto;
    font-size: clamp(0.7rem, 0.671rem + 0.14vw, 0.8rem);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-style: normal;
}
.splide.is-caption-open .splide__pagination li {
    opacity: .25;
    transition: opacity .5s ease;
}
.splide.is-caption-open .splide__pagination li.is-active {
    opacity: 1;
}
.bar-toggle {
    position: absolute;
    left: 1.2rem;
    bottom: 1rem;
    width: auto; 
    height: 2.5rem;
    border: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    z-index: 5;
    color: var(--color-white);
    font-size: 0.8rem;
    letter-spacing: 0.05rem;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-style: normal;
}
.plus {
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, opacity .25s ease;
    flex-shrink: 0;
}
.plus::before,
.plus::after {
    content: "";
    position: absolute;
    background: var(--color-white);
    border-radius: 2px;
}
.plus::before {
    width: 10px;
    height: 1px;
}
.plus::after {
    width: 1px;
    height: 10px;
    transition: transform .25s ease, opacity .25s ease;
    transform-origin: center;
}
.bar-toggle.is-open .plus::after {
    transform: scaleY(0);
    opacity: 0;
}
/* FV */
.fv_wrapper {
    width: 100%;
    min-height: calc(100vh - var(--header-h));
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}
.fv_movie {
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    width: 100%;
    min-height: calc(100vh - var(--header-h));
    object-fit: cover;
    display: block;
}
.fv_movie.is-ready { opacity: 1; }
.fv_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s ease-out, visibility 2s;
    z-index: 2;
}
.fv_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fv_image.is-active {
    opacity: 1;
    visibility: visible;
}
.fv_delay {
    width: 100%;
    max-width: 1440px;
    min-height: calc(100vh - var(--header-h));
    margin: 0 auto;
    position: absolute;
}
.fv_title {
    position: absolute;
    left: 0;
    bottom: 3%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s ease-out, visibility 2s;
    transition-delay: 1s;
    z-index: 3;
}
.fv_title img {
    width: 100%;
    height: auto;
}
.fv_title.is-active {
    opacity: 1;
    visibility: visible;
}
@media (min-width:768px) {
    .fv_wrapper {
        height: auto;
        aspect-ratio: 640 / 347;
    }
    .fv_movie {
        height: auto;
    }
    .fv_title {
        top: 50%;
        transform: translateY(-50%);
        left: 5%;
        bottom: auto;
        width: 50%;
        max-width: 1440px;
    }
}
@media (min-width: 768px) and (max-aspect-ratio: 1/1) {
    .fv_image img {
        object-position: 80%;
    }
}
/* area 01 */
.area_01 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 5rem;
}
.area_01_wrapper {
    width: 90%;
    margin: 0 auto;
}
.area_01_image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.area_01_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left 70%;
    display: block;
}
.area_01_txt {
    background: url(../images/area_01_bg.jpg) center center no-repeat;
    background-size: cover;
    display: grid;
    align-content: center;
    padding: 3rem 2rem;
}
.area_01_txt p {
    font-size: 0.8rem;
    line-height: 1.7;
}
@media (min-width:768px) {
    .area_01_wrapper {
        width: 80%;
        max-width: 1440px;
        display: grid;
        grid-template-columns: 3fr 4fr;
        align-items: stretch;
        column-gap: 0;
        padding-top: 10vw;
    }
    .area_01_image {
        aspect-ratio: auto;
    }
    .area_01_image img {
        object-position: center;
    }
    .area_01_txt {
        padding: 0 0 0 2rem;
    }
}
@media (min-width:1200px) {
    .area_01_txt {
        padding: 0 0 0 5rem;
    }
}
/* area 02 */
.area_02 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10rem 0;
    box-sizing: border-box;
    background: url(../images/area_02_bg.png) center top no-repeat;
    background-size: cover;
    aspect-ratio: auto;
    display: grid;
    place-content: center;
}
.area_02_image {
    width: 80%;
    display: block;
    margin: 0 auto;
}
@media (min-width:768px) {
    .area_02 {
        aspect-ratio: 960 / 811;
    }
    .area_02_image {
        width: 90%;
        max-width: 500px;
    }
}
@media (min-width:1440px) {
    .area_02_image {
        max-width: 800px;
    }
}
/* area 03 */
.area_03 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    background-color: var(--color-white);
    display: grid;
    grid-template-columns: 1fr;
}
.area_03_left {
    display: grid;
    place-content: center;
    margin: 15% auto;
}
.area_03_left-inner {
    margin: 0 auto;
    width: 80%;
}
.area_03-slider { line-height: 0; } 
.area_03-slider img { display: block; }
.area_03-slider figure { margin: 0; }
.area_03-slider .splide__list { margin: 0; padding: 0; }
@media (min-width:768px) {
    .area_03 {
        grid-template-columns: 1fr 1fr;
    }
    .area_03_left {
        margin: 0 auto;
    }
    .area_03_left-inner {
        width: 75%;
    }
}
/* area 04 */
.area_green_bg {
    width: 100%;
    background: url(../images/area_green_bg.png) center top no-repeat;
    background-size: cover;
    margin: 0 auto 5rem;
}
.area_04 {
    width: 100%;
    margin: 0 auto;
}
.area_04_title {
    margin: 0 auto;
    padding: 15rem 0 5rem;
    width: 80%;
}
@media (min-width: 768px){
    .area_green_bg {
        margin: 0 auto 10rem;
    }
    .area_04_title {
        padding: 20vw 0 10vw;
        width: 35%;
    }
}
.area_04_item {
    width: 100%;
    height: auto;
    padding-bottom: 2rem;
}
.area_04_item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.area_04_item p {
    margin-left: 0.5rem;
}
@media (min-width: 768px){
    .area_04_item {
        padding-bottom: 10rem;
    }
}
/* area_05 */
.area_05 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.area_05_wrapper {
    width: 90%;
    margin: 1rem auto;
    border: 2px var(--color-white) solid;
    border-radius: 2rem;
    overflow: hidden;
}
.area_05_item {
    width: 100%;
    height: auto;
    display: block;
}
.area_05_item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media (min-width: 768px){
    .area_05_wrapper {
        width: 80%;
        max-width: 1440px;
        margin: 5rem auto;
    }
    .area_05-slider_list {
        display: flex!important;
        flex-direction: row;
    }
    .area_05_item {
        width: 50%;
    }
}
/* area_06 */
.area_txt-bg {
    background-image: url(../images/area_06_bg.svg), url(../images/area_txt_bg-01_sp.png);
    background-repeat: no-repeat, no-repeat;
    background-position: center top, right bottom;
    background-size: 115%, 80%;
    width: 100%;
    margin: 0 auto;
    padding-top: 14vw;
}
.area_06 {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
@media (min-width:768px) {
    .area_txt-bg {
        background-image: url(../images/area_06_bg.svg), url(../images/area_txt_bg-01.png);
        background-repeat: no-repeat, no-repeat;
        background-position: center top, right 60%;
        background-size: 100%, 80%;
    }
    .area_06 {
        width: 40%;
    }
}
/* area_07 */
.area_07 {
    width: 100%;
    height: auto;
    margin: 15rem auto 10rem;
}
.area_07_slide {
    width: 100%;
    margin: 0 auto;
    display: grid;
}
.area_07_slide-item {
    grid-area: 1 / 1;
    opacity: 0;
}
.area_07_slide-overlap {
    display: grid;
    align-items: center;
    position: relative;
}
.area_07_slide-overlap img{
    height: auto;
    display: block;
    margin: 0;
}
.area_07_slide-overlap .area_07_img-l {
    grid-area: 1 / 1;
    width: 78%;
    justify-self: start;
    z-index: 1;
}
.area_07_slide-overlap .area_07_img-r {
    grid-area: 1 / 1;
    width: 38%;
    justify-self: end;
    transform: translateX(0);
    z-index: 2;
}
@keyframes snap3 {
    0%, 33.333% { opacity: 1; }
    33.334%, 100% { opacity: 0; }
}
.area_07_slide-item {
    animation: snap3 6s steps(1,start) infinite;
}
.area_07_slide-item:nth-of-type(1){ animation-delay: 0s; }
.area_07_slide-item:nth-of-type(2){ animation-delay: 2s; }
.area_07_slide-item:nth-of-type(3){ animation-delay: 4s; }
.area_07_slide p {
    margin-left: 0.5rem;
}
.area_07_slide {
    p,a {
        color: var(--color-gray);
    }
}
@media (min-width:768px) {
    .area_07 {
        margin: 15vw auto 10vw;
    }
    .area_07_slide {
        width: 90%;
        max-width: 1920px;
    }
    .area_07_slide-overlap .area_07_img-l {
        width: 75%;
    }
    .area_07_slide-overlap .area_07_img-r {
        width: 25%;
        transform: translateX(-30%);
    }
    .area_07_slide p {
        margin-left: 0;
    }
}
.area_orange_bg {
    background-size: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}
.area_orange_bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/area_txt_bg-02_sp.png);
    background-repeat: no-repeat;
    background-position: left 22%;
    background-size: 100%;
    z-index: -1;
    pointer-events: none;
}
.area_orange_bg::after {
    content: "";
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/area_orange_bg.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 180%;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}
.area_orange_bg.is-active::after {
    opacity: 1;
}
@media (min-width:768px) {
    .area_orange_bg::before {
        background-image: url(../images/area_txt_bg-02.png);
        background-repeat: no-repeat;
        background-position: left 8%;
        background-size: 75%;
    }
    .area_orange_bg::after {
        background-size: 100%;
    }
}
@media (min-width:1440px) {
    .area_orange_bg::before {
        background-position: left 8%;
        background-size: 60%;
    }
}
/* area_08 */
.area_08 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.area_08 p {
    display: block;
    margin-left: 0.5rem;
}
.area_08 {
    p,a {
        color: var(--color-gray);
    }
}
@media (min-width:768px) {
    .area_08-slider_list {
        display: flex!important;
        flex-direction: row;
        gap: 1%;
    }
    .area_08-slider_list li {
        width: calc(100% / 3);
    }
}
/* area_09 */
.area_09 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.area_09_wrapper {
    width: 90%;
    height: auto;
    margin: 10rem auto;
    display: flex;
    flex-direction: column;
}
.area_09_item {
    width: 100%;
}
.imgSwap{
    position: relative;
    display: block;
    overflow: hidden;
}
.imgSwap img{
    display: block;
    width: 100%;
    height: auto;
}
.imgSwap__hover{
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .25s ease;
}
@media (hover:hover) and (pointer:fine){
    .imgSwap:hover .imgSwap__hover{ opacity: 1; }
}
.imgSwap.is-tap .imgSwap__hover{ opacity: 1; }
.area_09 {
    p,a {
        color: var(--color-gray);
    }
}
@media (max-width: 767px){
    .area_09_item:first-child{
        display: flex;
        flex-direction: column-reverse;
    }
    .area_09_item:first-child > p{
        text-align: right;
    }
}
@media (min-width: 768px){
    .area_09_wrapper {
        width: 60%;
        max-width: 1280px;
        height: auto;
        margin: 15vw auto 25vw;
        flex-direction: row;
        align-items: flex-start;
    }
    .area_09_item {
        width: 50%;
    }
    .area_09_item > p{
        text-align: left;
    }
}
/* area_10 */
.area_10 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.area_10_wrapper {
    width: 90%;
    height: auto;
    margin: 10rem auto 0;
}
.area_10_layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "one"
        "five"
        "four";
    gap: 0;
    border: 2px var(--color-white) solid;
    border-radius: 2rem;
    overflow: hidden;
}
.area_10_left {
    display: contents;
}
.area_10_c2, .area_10_c3 { display: none; }
.area_10_c1 { grid-area: one; }
.area_10_c4 { grid-area: four; }
.area_10_right { grid-area: five; }
@media (min-width: 768px){
    .area_10_wrapper {
        width: 80%;
        max-width: 1920px;
        margin: 0 auto;
    }
    .area_10_layout {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: none;
    }
    .area_10_left {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas: none;
    }
    .area_10_c2, .area_10_c3 { display: block; }
    .area_10_c1, .area_10_c4,.area_10_right { grid-area: auto; }
}
/* area_11 */
.area_11 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
@media (min-width: 768px){
    .area_11 {
        width: 80%;
        text-align: center;
    }
}
/* area_12 */
.area_12 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-image: linear-gradient(0deg, #f0eeec, #a3705021 70% 100%);
}
.area_12_layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "left"
        "right";
    gap: 0;
}
.area_12_left { grid-area: left; }
.area_12_right-wrap {
    width: 90%;
    margin: 5rem auto;
}
.area_12_right {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "three"
        "one"
        "four";
    border: 2px solid var(--color-white);
    border-radius: 2rem;
    overflow: hidden;
}
.area_12_c2 { display: none; }
.area_12_c1 { grid-area: one; }
.area_12_c3 { grid-area: three; }
.area_12_c4 { grid-area: four; }
@media (min-width: 768px){
    .area_12_layout {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "left"
            "right";
    }
    .area_12_right-wrap {
        width: 70%;
        display: grid;
        place-content: center;
        margin: 0 auto;
    }
    .area_12_right {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "one two"
            "three four";
        border: transparent;
    }
    .area_12_c2 { display: block; grid-area: two; }
}
/* area_13 */
.area_13 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.area_13_wrapper {
    width: 100%;
    margin: 0 auto;
}
.area_13_layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    grid-template-areas:
        "one"
        "four"
        "two";
}
.area_13_c1 { grid-area: one; }
.area_13_c4 { grid-area: four; }
.area_13_c2 { grid-area: two; }
.area_13_c3, .area_13_c5, .area_13_c6, .area_13_overlay-logo { display: none; }
@media (min-width: 768px){
    .area_13_wrapper {
        width: 70%;
        max-width: 1440px;
        margin: 10rem auto 0;
    }
    .area_13_layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, auto);
        grid-template-areas:
            "one   two"
            "three four"
            "five  six";
        position: relative;
    }
    .area_13_c3, .area_13_c5, .area_13_c6 { display: block; }
    .area_13_c3{ grid-area: three; }
    .area_13_c5{ grid-area: five; }
    .area_13_c6{ grid-area: six; }
    .area_13_overlay-logo {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 1.5rem;
        z-index: 2;
        width: 20%;
        height: auto;
        pointer-events: none;
    }
}
/* area_14 */
.area_14 {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 40vw 0;
    display: grid;
    align-content: center;
    overflow: hidden;
    z-index: 1;
}
.area_14::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(206, 202, 201, 1) 0%, rgba(255, 255, 255, 0) 100%), url(../images/area_14_bg.jpg) center top no-repeat;
    background-size: cover;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.8) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.8) 100%);
    -webkit-mask-size: cover;
    mask-size: cover;
}
.area_14_title {
    width: 40%;
    margin: 0 auto;
}
@media (min-width: 768px){
    .area_14 {
        padding: 15vw 0;
    }
    .area_14_title {
        width: 15%;
        margin: 0 auto;
    }
}
/* timeline */
.red {
    fill: var(--color-white);
}
.red.line_cls {
    fill: none;
    stroke: var(--color-white);
    stroke-miterlimit: 10;
    stroke-width: 5px;
}
.blue {
    fill: var(--color-white);
}
.blue.line_cls {
    fill: none;
    stroke: var(--color-white);
    stroke-miterlimit: 10;
    stroke-width: 5px;
}
.yellow {
    fill: var(--color-white);
}
.yellow.line_cls {
    fill: none;
    stroke: var(--color-white);
    stroke-miterlimit: 10;
    stroke-width: 5px;
}
.timeline .red,
.timeline .blue,
.timeline .yellow {
    opacity: 0;
    filter: blur(2.5rem);
    transform: translateY(1rem);
    will-change: opacity, filter, transform;
}
.timeline .red { --base-delay: 0ms; }
.timeline .blue { --base-delay: 250ms; }
.timeline .yellow { --base-delay: 400ms; }
.timeline.is-play .red,
.timeline.is-play .blue,
.timeline.is-play .yellow {
    animation: svgIn 900ms ease-in forwards;
    animation-delay: calc(var(--base-delay) + var(--random-delay, 0ms));
}
.timeline .red path:nth-child(3n+1),
.timeline .blue path:nth-child(3n+1),
.timeline .yellow path:nth-child(3n+1) { --random-delay: 30ms; }

.timeline .red path:nth-child(3n+2),
.timeline .blue path:nth-child(3n+2),
.timeline .yellow path:nth-child(3n+2) { --random-delay: 110ms; }

.timeline .red path:nth-child(3n+3),
.timeline .blue path:nth-child(3n+3),
.timeline .yellow path:nth-child(3n+3) { --random-delay: 50ms; }

.timeline .red path:nth-child(3n+4),
.timeline .blue path:nth-child(3n+4),
.timeline .yellow path:nth-child(3n+4) { --random-delay: 140ms; }

.timeline .red path:nth-child(3n+5),
.timeline .blue path:nth-child(3n+5),
.timeline .yellow path:nth-child(3n+5) { --random-delay: 10ms; }

.timeline .red path:nth-child(3n+6),
.timeline .blue path:nth-child(3n+6),
.timeline .yellow path:nth-child(3n+6) { --random-delay: 80ms; }

.timeline .red path:nth-child(3n+7),
.timeline .blue path:nth-child(3n+7),
.timeline .yellow path:nth-child(3n+7) { --random-delay: 120ms; }
@keyframes svgIn {
    0% {
        opacity: 0;
        filter: blur(2.5rem);
        transform: translateY(1rem) scale(1.02);
    }
    60% {
        opacity: 1;
        filter: blur(1rem);
        transform: translateY(0.3rem) scale(1.01);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}
/* footer */
footer {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.area_footer {
    background: url(../images/footer_bg_sp.png) center top no-repeat;
    background-size: cover;
    width: 100%;
    text-align: left;
}
@media (min-width: 768px){
    .area_footer {
        background: url(../images/footer_bg.png) center top no-repeat;
        background-size: cover;
    }
}
.area_footer_wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0 5rem;
}
@media (min-width: 768px){
    .area_footer_wrapper {
        padding: 2rem 0 1rem;
    }
}
.area_footer p,
.area_footer li {
    font-family: "minerva-modern", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #cecac9;
    font-size: 1rem;
}
.area_footer--abs {
    margin-bottom: 2rem;
}
.area_footer--abs p {
    margin-bottom: 1.5rem;
}
.area_footer--staff p {
    margin-bottom: 0;
}
.area_footer li {
    list-style: none;
    margin-bottom: 0;
}
.area_footer .cp {
    text-align: center;
    font-size: 0.8rem;
}