:root {
    --base-color: #cecac9;
    --color-white: #fff;
    --color-gray:#444;
    --color-red: #e73236;
    --color-blue: #4478bc;
    --color-yellow: #f5ee5a;
    --header-h: 0px;
}
header {
    background-color: var(--color-white);
}
@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;
    margin-top: 0;
}
@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;
    }
}
a:hover {
	transition: all 0.5s ease;
	opacity: 0.8;
}
.fadeIn {
    opacity: 0;
    transform: translateY(1%);
    transition:
        opacity 1.5s ease,
        transform 1.5s ease;
}
.fadeIn.is-show {
    transform: translateY(0);
    opacity: 1;
}
.fadeIn-delay {
    opacity: 0;
    transform: translateY(1%);
    will-change: opacity, transform;
}

.fadeIn-delay.is-show {
    animation: fadeIn-Delay 1.8s cubic-bezier(.25, .46, .45, .94) forwards;
    animation-delay: var(--delay, 0.5s);
}
@keyframes fadeIn-Delay {
    from {
        opacity: 0;
        transform: translateY(1%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.img_frame {
    display: block;
    overflow: hidden;
}
.fadeIn-scale {
    display: block;
    max-width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(1%) scale(1.05);
    transition: opacity 1.5s ease, transform 1.5s ease;
}
.img_frame.is-show .fadeIn-scale {
    opacity: 1;
    transform: translateY(0) scale(1);
}
video {
    filter: drop-shadow(0px 0px rgba(0,0,0,0));
    outline: none;
    border: none;
    width: 100%;
}
.concept,
.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,
.area_14,
.area_15 {
    p,
    a {
        font-size: clamp(0.7rem, 0.671rem + 0.14vw, 0.8rem);
        font-family: "indivisible", sans-serif;
        font-weight: 400;
        font-style: normal;
        letter-spacing: 0.05rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}
.splide__slide img {
    height: auto;
    width: 100%;
}

.pin-section {
    position: relative;
    min-height: 450vh;
}
.pin-section__inner {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    --img-height: 80vh;
}
.stackGallery__image {
    position: relative;
    inset: auto;
    display: block;
    height: auto;
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.stackGallery__image.is-visible {
    opacity: 1;
    transform: rotate(0deg);
}
.stackGallery__text {
    opacity: 0;
    transform: translateY(-1%);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.stackGallery__text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 楕円設定 */
.visual__ellipses {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}
.visual__ellipse {
    position: absolute;
    top: var(--top, 0);
    left: var(--left, 0);
    width: var(--width, 100%);
    height: var(--height, 100%);
    color: var(--color, var(--color-white));
    overflow: visible;
    transform:
        translate(
        var(--translate-x, 0),
        var(--translate-y, 0)
        )
        rotate(var(--rotate, 0deg))
}

/* FV */
.fv_layout {
    display: grid;
    grid-template-areas: "stack";
    width: 100%;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}
.fv_logo {
    position: absolute;
    top: 4.5%;
    right: 7%;
    margin: 0;
    width: 25%;
    z-index: 10;
}
.fv_scroll {
    position: absolute;
    top: 7.5%;
    right: 7%;
    z-index: 10;
}
.fv_scroll-border {
    position: relative;
    top: 7.5%;
    right: 7%;
    width: 1px;
    height: 60px;
    overflow: hidden;
}
.fv_scroll-border::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 60px;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    animation: scrollbar 2.0s ease-in-out infinite;
    margin: auto;
}
@keyframes scrollbar {
    0% {
        height: 0;
        top: 0;
    }
    30% {
        height: 100%;
    }
    100% {
        top: 100%;
    }
}
.fv_left,
.fv_right {
    grid-area: stack;
    width: 100%;
}
.fv_left {
    z-index: 3;
    transition: transform 1.5s ease, opacity 1.5s ease;
    background-color: var(--color-white);
}
.fv_layout.is-left-hide .fv_left {
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
}
.fv_right {
    position: relative;
    z-index: 2;
}
.fv_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fv_movie_wrapper {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fv_right_video,
.fv_thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fv_right_content {
    --copy-right: 7.5%;
    --text-width: min(13vw, 170px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.fv_right_content p { 
    margin: 0;
    color: var(--color-white);
}
.group-top-left {
    position: absolute;
    top: 5%;
    left: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.group-bottom-right {
    position: absolute;
    bottom: 10%;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.fv_main-copy {
    margin: 0;
    font-size: clamp(2rem, 0.514rem + 3.1vw, 3.3rem);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    letter-spacing: 0.1rem;
    line-height: 1.2;
    --delay: 0.4s;
}
.fv_sub-copy {
    width: auto;
    margin: 0;
    font-size: clamp(2rem, 0.514rem + 3.1vw, 3.3rem);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0.1rem;
    --delay: 0.8s;
}
.fv_description {
    margin: 0;
    font-size: clamp(0.7rem, 0.671rem + 0.14vw, 0.8rem);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 2.1;
    --delay: 1.2s;
    }
.fv_brand {
    margin-left: 1rem!important;
    font-size: 0.8rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    writing-mode: vertical-rl;
    --delay: 1.6s;
}
.fv_collection {
    margin-left: 1rem!important;
    font-size: 0.8rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    writing-mode: vertical-rl;
    --delay: 2s;
}
.fv_scroll-link {
    width: 7rem;
    height: 2.5rem;
    color: #fff;
    text-decoration: none;
    --delay: 2.4s;
    display: grid;
    place-content: center;
    margin-left: auto;
}
.fv_scroll-link_line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}
.fv_hd{
    stroke-dasharray:775 777;
    stroke-dashoffset:776;
    animation:fv_hd_draw 1000ms linear 2500ms forwards;
}
@keyframes fv_hd_draw{
    100%{stroke-dashoffset:0;}
}
.fv_scroll-link_text {
    position: absolute;
    top: 20%;
    left: 10%;
    z-index: 2;
    font-size: 0.65rem;
    color: var(--color-white);
}
.FadeInDelay {
    opacity: 0;
    transform: translateY(1%);
    animation: FadeInDelay 1.8s cubic-bezier(.25, .46, .45, .94) forwards;
    animation-delay: calc(2.3s + var(--delay, 0s));
    will-change: opacity, transform;
}
.fv_layout.is-left-hide .FadeInDelay {
    animation-play-state: running;
}
@keyframes FadeInDelay {
    from {
        opacity: 0;
        transform: translateY(1%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (min-width: 768px) {
    .fv_layout {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: none;
        background-color: var(--color-white);
        min-height: auto;
    }
    .fv_layout,
    .fv_logo,
    .fv_scroll {
        padding-top: 10rem;
    }
    .fv_logo {
        top: 2vw;
        right: 2vw;
        width: 10%;
    }
    .fv_scroll {
        top: 5vw;
        right: 2vw;
    }
    .fv_right,
    .fv_left {
        grid-area: auto;
    }
    .fv_left {
        transition: none;
        background-color: transparent;
    }
    .fv_layout.is-left-hide .fv_left {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }
    .FadeInDelay {
        animation-play-state: running;
        animation-delay: var(--delay);
    }
    .group-top-left {
        left: 3vw;
    }
    .fv_brand,
    .fv_collection {
        margin-left: 2rem!important;
    }
}

/* concept */
.concept {
    width: 100%;
    padding: 5vw 0;
    margin: 0 auto;
    background: url("../images/concept_bg_sp.jpg") center / cover no-repeat;
}
.concept_wrapper {
    --space-top: 0;
    --space-bottom: 80vw;
    position: relative;
    width: min(100%, 1440px);
    margin-inline: auto;
}
.concept_image {
    padding-top: var(--space-top);
    padding-bottom: var(--space-bottom);
    width: min(33vw, 310px);
    margin: 0 auto;
    text-align: center;
    --delay: 0.3s;
}
.concept_season,
.concept_lead-copy,
.concept_description,
.concept_japanese-copy,
.concept_bottom-copy {
    z-index: 2;
    color: var(--color-white);
}
.concept_season,
.concept_lead-copy,
.concept_description,
.concept_japanese-copy,
.concept_bottom-copy {
    position: absolute;
    margin: 0;
}
.concept_season {
    top: 0;
    right: 2%;
}
.concept_season {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    --delay: 0.3s;
}
p.concept_season_text {
    margin: 0;
    font-size: clamp(0.9rem, 0.786rem + 0.57vw, 1.3rem);
    writing-mode: vertical-rl;
}
.concept_season_line {
    width: 0.5rem;
    height: 6.5rem;
}
.concept_hd_1 {
    stroke-dasharray:783 785;
    stroke-dashoffset:784;
    animation:concept_hd_1_draw 1000ms linear 1000ms forwards;
}
@keyframes concept_hd_1_draw {
    100%{stroke-dashoffset:0;}
}
.concept_lead-copy {
    top: 3%;
    left: 10%;
}
.concept_lead-copy {
    width: fit-content;
    --delay: 0.55s;
}
p.concept_lead-copy_text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(0.9rem, 0.814rem + 0.43vw, 1.2rem);
    line-height: 1.7;
}
.concept_lead-copy_emphasis {
    position: relative;
    display: inline-block;
    padding-inline: 0.7rem;
}
.concept_lead-copy_circle {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
}
.concept_hd_2 {
    stroke-dasharray:1313 1315;
    stroke-dashoffset:1314;
    animation:concept_hd_2_draw 1000ms linear 1500ms forwards;
}
@keyframes concept_hd_2_draw {
    100%{stroke-dashoffset:0;}
}
.concept_description {
    top: 48%;
    left: 40%;
}
.concept_description {
    margin-left: auto;
    --delay: 0.9s;
}
.concept_description p {
    line-height: 1.7;
    margin: 0;
    font-size: clamp(0.6rem, 0.543rem + 0.29vw, 0.8rem);
}
.concept_japanese-copy {
    bottom: 35vw;
    --width: min(90vw, 500px);
    width: var(--width);
    max-width: max-content;
    left: calc(50% - var(--width) / 2 + 0.8rem);
}
.concept_japanese-copy {
    margin-bottom: 0;
    --step: 0.5rem;
    --delay: 1.55s;
}
.concept_japanese-copy span {
    font-size: clamp(0.7rem, 0.614rem + 0.43vw, 1rem);
    line-height: 2;
    letter-spacing: 0.05rem;
    font-style: italic;
    text-align: center;
    margin: 0 auto;
    display: inline;
    margin-left: calc(var(--line) * var(--step) * -1);
}
.concept_japanese-copy span:nth-child(1) {
    --line: 0;
}
.concept_japanese-copy span:nth-child(3) {
    --line: 1;
}
.concept_japanese-copy span:nth-child(5) {
    display: block;
}
.concept_japanese-copy span:nth-child(2)::after,
.concept_japanese-copy span:nth-child(4)::after {
    content: "";
    display: block;
}
.concept_bottom-copy {
    right: 10%;
    bottom: 5vw;
}
.concept_bottom-copy {
    width: min-content;
    max-width: 100%;
    margin-left: auto;
    --delay: 1.25s;
}
p.concept_bottom-copy_text {
    margin: 0;
    font-size: clamp(0.9rem, 0.843rem + 0.29vw, 1.1rem);
    line-height: 1.5;
    letter-spacing: 0.1rem;
    white-space: nowrap;
}
.concept_bottom-copy_underline {
    display: block;
    width: 55%;
    margin-left: auto;
}
.concept_hd_3 {
    stroke-dasharray:908 910;
    stroke-dashoffset:909;
    animation:concept_hd_3_draw 1000ms linear 1500ms forwards;
}
@keyframes concept_hd_3_draw {
    100%{stroke-dashoffset:0;}
}
@media (min-width: 768px) {
    .concept {
        padding: 0;
        background: url("../images/concept_bg_pc.jpg") center / cover no-repeat;
    }
    .concept_wrapper {
        --space-top: 5vw;
        --space-bottom: 8vw;
    }
    .concept_image {
        width: clamp(190px, 15.5vw, 265px);
    }
    .concept_season,
    .concept_lead-copy,
    .concept_bottom-copy,
    .concept_description,
    .concept_japanese-copy {
        position: absolute;
        margin: 0;
    }
    .concept_season {
        top: 6%;
        right: 18%;
    }
    .concept_season_line {
        height: 8rem;
    }
    .concept_lead-copy {
        top: 17%;
        left: 30%;
    }
    .concept_description {
        top: 60%;
        left: 55%;
    }
    .concept_description p {
        line-height: 1.5;
    }
    .concept_japanese-copy {
        left: 17%;
        bottom: 5.5%;
    }
    .concept_japanese-copy span {
        display: block;
        text-align: left;
    }
    .concept_japanese-copy span:nth-child(1) {
        --line: 0;
    }
    .concept_japanese-copy span:nth-child(2) {
        --line: 1;
    }
    .concept_japanese-copy span:nth-child(3) {
        --line: 2;
    }
    .concept_japanese-copy span:nth-child(4) {
        --line: 3;
    }
    .concept_japanese-copy span:nth-child(5) {
        --line: 4;
    }
    .concept_japanese-copy span::after {
        content: none;
    }
    .concept_bottom-copy {
        right: 26%;
        bottom: 3%;
    }
    .concept_bottom-copy_underline {
        width: 53%;
    }
}
.fadeIn-delay .vivus-draw path {
    animation-play-state: paused !important;
}
.fadeIn-delay.is-show .vivus-draw path {
    animation-play-state: running !important;
}

.area_top,
.area_bottom {
    position: relative;
}
.bg-image-clip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: -1;
}
.bg-image-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}
.area_top .bg-image-fixed {
    background-image: url("../images/area_top_bg.jpg");
    z-index: -2;
}
.area_bottom .bg-image-fixed {
    background-image: url("../images/area_bottom_bg.jpg");
    z-index: -1;
    opacity: 0;
}
.area_bottom-deco {
    background:
    url("../images/area_bottom_deco-1.png") right -18vw center / 70% no-repeat,
    url("../images/area_bottom_deco-2.png") left bottom 10vw / 25% no-repeat;
}

/* area 01 */
.area_01 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10vw 0;
}
.area_01_wrapper {
    position: relative;
    width: 100%;
}
.area_01_left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 50vw;
}
.area_01_parenthesis {
    z-index: 3;
    width: 70%;
    margin: 0 auto;
}
.area_01_image {
    z-index: 2;
}
.area_01_image img {
    width: 90%;
    display: block;
    margin: 0;
    object-fit: cover;
}
.area_01_image p {
    text-align: center;
}
.area_01_bg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    margin-left: auto;
}
.area_01_bg img {
    width: 90%;
    margin-right: inherit;
}
@media (min-width:960px) {
    .area_01_wrapper {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: end;
    }
    .area_01_left {
        flex-direction: row;
        align-items: center;
        position: absolute;
        left: 5%;
        padding: 0;
        width: 50%;
    }
    .area_01_parenthesis {
        width: auto;
    }
    .area_01_image {
        width: 70%;
        margin-top: 10%;
    }
    .area_01_image p {
        text-align: left;
    }
    .area_01_image img {
        width: 100%;
    }
    .area_01_bg {
        position: static;
        margin-left: auto;
        width: 55%;
    }
    .area_01_bg img {
        width: 100%;
        margin-right: inherit;
    }
}
@media (min-width:1200px) {
    .area_01_left {
        /* top: 12%; */
        left: 13%;
        width: 40%;
    }
    .area_01_image {
        width: 100%;
    }
}
.message-sequence {
    position: absolute;
    top: 17%;
    right: 10%;
    width: 70%;
    aspect-ratio: 668 / 273;
    margin-inline: auto;
    overflow: visible;
    color: var(--color-white);
}
@media (min-width:960px) {
    .message-sequence {
        width: 100%;
        max-width: 300px;
    }
}
.message-text {
    position: absolute;
    z-index: 2;
    margin: 0;
    font-size: clamp(1rem, 0.886rem + 0.57vw, 1.4rem);
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0.05rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-1%);
}
.message-gentle {
    left: 0;
    bottom: 0;
}
.message-strength {
    top: 0;
    left: 40%;
}
.message-soul {
    top: 50%;
    right: 25%;
    left: auto;
    transform: translateY(-1%);
}
@media (min-width:960px) {
    .message-strength {
        top: 0;
        left: 54%;
    }
    .message-soul {
        right: 0;
    }
}
.message-line {
    --line-angle: 0deg;
    position: absolute;
    z-index: 1;
    display: block;
    height: 1px;
    background-color: currentColor;
    opacity: 0;
    transform-origin: left center;
    transform: rotate(var(--line-angle)) scaleX(0);
}
.message-line-first {
    --line-angle: -44.5deg;
    top: 75%;
    left: 11%;
    width: 30%;
}
.message-line-second {
    --line-angle: 29deg;
    top: 25%;
    left: 56%;
    width: 13%;
}
@media (min-width:960px) {
    .message-line-first {
        --line-angle: -37.5deg;
        top: 76%;
        left: 18%;
        width: 38%;
    }
    .message-line-second {
        --line-angle: 29deg;
        top: 22%;
        left: 79%;
        width: 13%;
    }
}

.message-sequence.is-show .message-text {
    animation: messageTextFade 0.5s ease forwards;
}
.message-sequence.is-show .message-line {
    animation: messageLineDraw 0.5s ease forwards;
}
.message-sequence.is-show .message-gentle {
    animation-delay: 0.5s;
}
.message-sequence.is-show .message-line-first {
    animation-delay: 1.0s;
}
.message-sequence.is-show .message-strength {
    animation-delay: 1.5s;
}
.message-sequence.is-show .message-line-second {
    animation-delay: 2.0s;
}
.message-sequence.is-show .message-soul {
    animation-delay: 2.5s;
}
@keyframes messageTextFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes messageSoulFade {
    from {
        opacity: 0;
        transform: translateY(-50%) translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}
@keyframes messageLineDraw {
    from {
        opacity: 0;
        transform:
        rotate(var(--line-angle))
        scaleX(0);
    }
    to {
        opacity: 1;
        transform:
        rotate(var(--line-angle))
        scaleX(1);
    }
}
@media (min-width: 960px) {
    .message-sequence {
        max-width: 15vw;
        aspect-ratio: 3 / 4;
    }
    p.message-text {
        font-size: 1.2rem;
    }
    .message-gentle {
        top: 0;
        bottom: auto;
        left: 0;
    }
    .message-strength {
        top: 55%;
        right: 20%;
        left: auto;
    }
    .message-soul {
        top: auto;
        right: 19.5%;
        bottom: 0;
        left: auto;
    }
    .message-line-first {
        --line-angle: 57.3deg;
        top: 13.5%;
        left: 20%;
        width: 60%;
    }
    .message-line-second {
        --line-angle: 105.5deg;
        top: 70%;
        right: 0;
        left: auto;
        width: 23%;
    }
}

/* area 02 */
.area_02 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10vw 0 0;
    box-sizing: border-box;
    display: grid;
    place-content: center;
}
.area_02_wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    gap: 1rem;
}
.area_02_item p {
    text-align: left;
}
@media (min-width: 768px) {
    .area_02 {
        padding: 0;
    }
    .area_02_wrapper {
        flex-direction: row;
        width: 100%;
        max-width: 800px;
    }
    .area_02_item:last-child p {
        text-align: right;
    }
}

/* area 03 */
.area_03 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.area_03 .area_03_main {
    position: absolute;
    top: 10vh;
    left: 50%;
    height: var(--img-height);
    width: 100%;
    transform: translateX(-50%);
}
.area_03 .img01 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.area_03 .img02 {
    width: auto;
    height: 70%;
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-4deg);
    object-fit: contain;
}
.area_03 .img03 {
    width: auto;
    height: 70%;
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(7deg);
    object-fit: contain;
}
.area_03 .txt01 {
    width:auto;
    position: absolute;
    left: 11%;
    top: 43%;
    z-index: 2;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: 0.7rem;
    margin: 0;
}
.area_03 .txt01 span {
    color: var(--color-white);
    font-size: clamp(0.9rem, 0.843rem + 0.29vw, 1.1rem);
    font-style: italic;
    display: block;
    width: 1.5rem;
    flex: 0 0 auto;
    white-space: nowrap;
    transform: rotate(80deg);
    transform-origin: top left;
}
.area_03 .txt02 {
    width:auto;
    position: absolute;
    left: 15%;
    bottom: 8%;
    width: min-content;
    max-width: 100%;
    z-index: 2;
}
.area_03 .txt02 p {
    color: var(--color-white);
    font-size: clamp(0.8rem, 0.714rem + 0.43vw, 1.1rem);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0;
    white-space: nowrap;
}
.area_03_underline {
    display: block;
    width: 45%;
    margin-left: auto;
}
.area_03_hd {
    stroke-dasharray:908 910;
    stroke-dashoffset:909;
}
.area_03 .txt02.is-visible .area_03_hd {
    animation:area_03_hd_draw 1000ms linear 1000ms forwards;
}
@keyframes area_03_hd_draw {
    100%{stroke-dashoffset:0;}
}
.area_03 .p-info {
    position: absolute;
    margin-top: 0.5rem;
    left: 1rem;
    top: 100%;
}
@media (min-width:768px) {
    .area_03 .area_03_main {
        aspect-ratio: 1798 / 2325;
        width: auto;
    }
    .area_03 .txt01 {
        left: 8%;
    }
    .area_03 .txt02 {
        left: 25%;
    }
    .area_03 .p-info {
        left: 0;
    }
}

/* area 04 */
.area_04 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10vw 0;
    box-sizing: border-box;
    display: grid;
    place-content: center;
}
.area_04_wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.area_04_item {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}
.fade-image {
    display: block;
    opacity: 0;
}
.area_04_item > .img_frame:nth-child(2),
.area_04_item > .img_frame:nth-child(3) {
    flex: 1 1 auto;
}
.area_04_image02,
.area_04_image03 {
    display: block;
    width: auto;
    height: 100%;
}
.area_04_item > .img_frame:first-child {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 80%;
    transform: translate(-50%, -50%);
}
.area_04_image01 {
    display: block;
    width: 100%;
    height: auto;
}
.area_04_item.is-show .fade-image {
    opacity: 1;
}
.area_04_item.is-show .area_04_image03 {
    transition-delay: 0s;
}
.area_04_item.is-show .area_04_image02 {
    transition-delay: .3s;
}
.area_04_item.is-show .area_04_image01 {
    transition-delay: .6s;
}
.area_04 p {
    margin-left: 1rem;
}
@media (min-width: 768px) {
    .area_04 {
        padding: 0;
    }
    .area_04_item {
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }
    .area_04_item > .img_frame:first-child {
        position: static;
        width: auto;
        transform: none;
    }
    .fade-image {
        width: auto;
        height: 500px;
    }
    .area_04 p {
        margin-left: 0;
    }
}

/* area_05 */
.area_05 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.area_05_wrapper {
    width: 100%;
    max-width: 900px;
    margin: 1rem auto;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 4rem;
    grid-template-areas:
        "main top"
        "right right"
        "bottom bottom"
        "bottomText bottomText";
    gap: 2rem 1rem;
    margin-inline: auto;
    padding-block: 2rem;
}
.area_05__main,
.area_05__right,
.area_05__bottom {
    overflow: hidden;
}
.area_05__main {
    grid-area: main;
    width: 95%;
}
.area_05__main p {
    text-align: left;
    margin-left: 1rem;
}
.area_05__right {
    grid-area: right;
    width: 70%;
    margin-left: auto;
}
.area_05__right p {
    text-align: left;
}
.area_05__bottom {
    grid-area: bottom;
    width: 80%;
    margin: 0 auto;
}
.area_05__text {
    height: min-content;
    max-height: 100%;
}
.area_05__text p {
    margin: 0 5% 0 0;
    color: #78c1c4;
    font-size: clamp(0.8rem, 0.686rem + 0.57vw, 1.2rem);
    line-height: 1.5;
    letter-spacing: 0.05rem;
    white-space: nowrap;
}
.area_05_underline {
    display: block;
    width: 150%;
    margin-top: 80%;
    margin-right: -15%;
    transform: rotate(90deg);
}
.area_05_hd {
    stroke-dasharray:908 910;
    stroke-dashoffset:909;
    
}
.area_05__text--top.is-show .area_05_hd {
    animation:area_05_hd_2_draw 1000ms linear 1000ms forwards;
}
@keyframes area_05_hd_draw {
    100%{stroke-dashoffset:0;}
}
.area_05__text--top {
    grid-area: top;
    writing-mode: vertical-rl;
}
.area_05__text--bottom {
    grid-area: bottomText;
    text-align: left;
    margin: 0 auto;
    width: 80%;
}
.area_05_emphasis {
    position: relative;
    display: inline-block;
    padding-inline: 0.7rem;
}
.area_05_circle {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
}
.area_05_hd_2 {
    stroke-dasharray:1313 1315;
    stroke-dashoffset:1314;
}
.area_05__text--bottom.is-show .area_05_hd_2 {
    animation:area_05_hd_2_draw 1000ms linear 1500ms forwards;
}
@keyframes area_05_hd_2_draw {
    100%{stroke-dashoffset:0;}
}
@media (min-width: 768px) {
    .area_05_wrapper {
        grid-template-columns: 1.4fr 1fr;
        grid-template-areas:
        "main top"
        "main right"
        "bottom bottomText";
        gap: 0 4rem;
        align-items: start;
        padding-block: 5vw;
        margin: 0 auto;
    }
    .area_05__main {
        width: 90%;
        margin-top: 5%;
    }
    .area_05__main p {
        margin-left: 0;
    }
    .area_05__right {
        margin-top: 7vw;
        width: 85%;
    }
    .area_05__right p {
        text-align: right;
    }
    .area_05__text {
        width: min-content;
        max-width: 100%;
    }
    .area_05__text--top {
        writing-mode: horizontal-tb;
    }
    .area_05_underline {
        width: 40%;
        margin-top: 0;
        margin-right: 0;
        margin-left: 17%;
        transform: rotate(0deg);
    }
    .area_05__bottom {
        width: 90%;
        margin-left: 20%;
    }
    .area_05__text--bottom {
        align-self: end;
        text-align: left;
        margin-left: -9rem;
        margin-bottom: -3rem;
        z-index: 2;
    }
}

/* area_06 */
.area_06 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10vw 0;
    box-sizing: border-box;
    display: grid;
    place-content: center;
}
.area_06_wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.area_06_slide p {
    text-align: center;
    margin: 0.5rem 0 0;
}
@media (min-width: 768px) {
    .area_06 {
        padding: 5vw 0;
    }
    .area_06-slider_list {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        width: 100% !important;
        transform: none !important;
    }
    .area_06-slider_list .splide__slide {
        width: 100% !important;
    }
    .area_06_slide p {
        text-align: left;
    }
}

/* area_07 */
.area_07 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10vw 0;
}
.area_07_wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0 auto;
}
.area_07_image {
    position: absolute;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.area_07_parenthesis {
    width: 45%;
    margin: 0 auto;
}
.area_07_parenthesis img {
    width: 100%;
}
.area_07_image img {
    width: 100%;
    display: block;
    margin: 0;
}
.area_07_image-top {
    order: 1;
    margin-bottom: 2rem;
}
.area_07_image-center {
    order: 2;
}
.area_07_image-bottom {
    order: 4;
}
.area_07_bg {
    width: 80%;
}
.area_07_bg img {
    margin: 0;
}
.area_07_image-txt {
    order: 3;
    margin-top: 1vw;
}
.area_07_image-txt,
.area_07_image-txt a {
    color: var(--color-white);
}
@media (min-width:960px) {
    .area_07 {
        padding: 0;
    }
    .area_07_wrapper {
        max-width: 1440px;
        align-items: end;
    }
    .area_07_image {
        right: 11%;
        margin-top: 5vw;
        width: 55%;
    }
    .area_07_image-bottom {
        order: 3;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .area_07_image-txt {
        order: 4;
    }
    .area_07_image-txt,
    .area_07_image-txt a {
        color: var(--color-gray);
    }
    .area_07_bg {
        width: 45%;
    }
}
@media (min-width:1200px) {
    .area_07_txt {
        padding: 0 0 0 5rem;
    }
}

/* area_08 */
.area_08 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10vw 0;
}
.area_08_wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}
.area_08_left {
    grid-area: 1 / 1;
    z-index: 2;
    width: 90%;
    margin-inline: auto;
    align-self: start;
    margin-top: 137%;
}
.area_08_ellipses {
    position: relative;
    z-index: 3;
}
.visual__ellipses--area01 {
    top: 0;
    left: -35%;
    width: 94%;
    aspect-ratio: 265 / 83;
}
.visual__ellipses--area01 .visual__ellipse--01 {
    --top: -50%;
}
.visual__ellipses--area01 .visual__ellipse--02 {
    --top: 20%;
}
.area_08_left img {
    width: 100%;
    display: block;
    margin: 0;
    position: relative;
    z-index: 4;
}
.area_08_left p {
    text-align: left;
	line-height: 1.7;
    color: var(--color-white);
}
.area_08_left p a {
	color: var(--color-white);
}
.area_08_right {
    grid-area: 1 / 1;
    width: 100%;
}
.area_08_right-bg {
    width: 100%;
    object-fit: cover;
    display: block;
}
.visual-copy {
    position: relative;
}
.visual-copy > img {
    display: block;
    width: 100%;
    height: auto;
}
.visual-copy__texts {
    position: absolute;
    inset: 0;
}
.visual-copy__texts span {
    width: min-content;
    max-width: 100%;
    color: var(--color-white);
    font-size: clamp(0.8rem, 0.686rem + 0.57vw, 1.2rem);
    letter-spacing: 0.05rem;
    position: absolute;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(1%);
}
.visual-copy.is-show .visual-copy__texts span {
    animation: messageTextFade 0.5s ease forwards;
    
}
.area_08_emphasis {
    position: relative;
    display: inline-block;
    padding-inline: 0.7rem;
}
.area_08_circle {
    position: absolute;
    top: 27%;
    left: 0;
    z-index: -1;
    width: 250%;
    height: auto;
}
.area_08_hd {
    stroke-dasharray:1313 1315;
    stroke-dashoffset:1314;
}
.area_08_underline {
    display: block;
    width: 120%;
    margin-left: -10%;
}
.area_08_hd_2 {
    stroke-dasharray:908 910;
    stroke-dashoffset:909;
}

.visual-copy__texts span:nth-child(1) {
    top: 7%;
    left: 40%;
}
.visual-copy__texts span:nth-child(2) {
    top: 18%;
    left: 60%;
}
.visual-copy__texts span:nth-child(3) {
    top: 24%;
    left: 57%;
}
.visual-copy__texts span:nth-child(4) {
    top: 31%;
    left: 12%;
}
.visual-copy__texts span:nth-child(5) {
    top: 36%;
    left: 60%;
}
.visual-copy__texts span:nth-child(6) {
    top: 39%;
    left: 25%;
}
.visual-copy__texts span:nth-child(7) {
    top: 44%;
    left: 55%;
}
.visual-copy__texts.is-show span:nth-child(1) {
    animation-delay: 0.3s;
}
.visual-copy__texts.is-show span:nth-child(2) {
    animation-delay: 0.6s;
}
.visual-copy__texts.is-show span:nth-child(3) {
    animation-delay: 0.9s;
}
.visual-copy__texts.is-show span:nth-child(4) {
    animation-delay: 1.2s;
}
.visual-copy__texts.is-show span:nth-child(5) {
    animation-delay: 1.5s;
}
.visual-copy__texts.is-show span:nth-child(6) {
    animation-delay: 1.8s;
}
.visual-copy__texts.is-show span:nth-child(7) {
    animation-delay: 2.1s;
}
.visual-copy.is-show .area_08_hd {
    animation: area_08_hd_draw 1000ms linear 2800ms forwards;
}
@keyframes area_08_hd_draw {
    100%{stroke-dashoffset:0;}
}
.visual-copy.is-show .area_08_hd_2 {
    animation: area_08_hd_2_draw 1000ms linear 2500ms forwards;
}
@keyframes area_08_hd_2_draw {
    100%{stroke-dashoffset:0;}
}
@media (min-width:960px) {
    .area_08_wrapper {
        position: relative;
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: end;
    }
    .area_08_left {
        width: 45%;
        position: absolute;
        left: 5%;
        z-index: 2;
        margin-bottom: -14%;
        align-self: end;
        margin-top: auto;
    }
    .visual__ellipses--area01 {
        left: 0;
    }
    .visual__ellipses--area01 .visual__ellipse--01 {
        --top: -150%;
    }
    .visual__ellipses--area01 .visual__ellipse--02 {
        --top: -80%;
    }
    .area_08_left img {
        display: block;
        margin: 0;
        z-index: 2;
    }
    .area_08_right {
        width: 65%;
    }
    .visual-copy {
        position: relative;
    }
    .visual-copy > img {
        display: block;
        width: 100%;
        height: auto;
    }
    .visual-copy__texts {
        position: absolute;
        inset: 0;
    }
    .visual-copy__texts span {
        color: var(--color-white);
        font-size: 1.2rem;
        letter-spacing: 0.1rem;
        position: absolute;
    }
    .area_08_circle {
        top: 25%;
        left: -40%;
        width: 400%;
    }
    .visual-copy__texts span:nth-child(1) {
        top: 16%;
        left: 28%;
    }
    .visual-copy__texts span:nth-child(2) {
        top: 42%;
        left: 59%;
    }
    .visual-copy__texts span:nth-child(3) {
        top: auto;
        bottom: 40%;
        left: 56%;
    }
    .visual-copy__texts span:nth-child(4) {
        top: auto;
        bottom: 36%;
        left: 27%;
    }
    .visual-copy__texts span:nth-child(5) {
        top: auto;
        bottom: 30%;
        left: 54%;
    }
    .visual-copy__texts span:nth-child(6) {
        top: auto;
        bottom: 23%;
        left: 35%;
    }
    .visual-copy__texts span:nth-child(7) {
        top: auto;
        bottom: 5%;
        left: 60%;
    }
}
@media (min-width:1200px) {
    .area_08_txt {
        padding: 0 0 0 5rem;
    }
}

/* area_09 */
.area_09 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10vw 0 0;
}
.area_09_wrapper {
    width: 90%;
    max-width: 650px;
    height: auto;
    margin: 0 auto;
    display: grid;
    place-content: center;
}
.area_09_item {
    width: 100%;
}
.area_09 p,
.area_09 p a {
    text-align: center;
    color: var(--color-white);
}
@media (min-width: 768px) {
    .area_09 p,
    .area_09 p a {
        text-align: left;
    }
}

/* area_10 */
.area_10 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.area_10_wrapper {
    width: 80%;
    max-width: 550px;
    height: auto;
    margin: 10vw auto;
    display: grid;
    place-content: center;
    position: relative;
}
.area_10_top-message {
    color: var(--color-white);
    font-size: clamp(0.8rem, 0.6rem + 1vw, 1.5rem);
    font-style: italic;
    display: flex;
    justify-content: start;
    flex-direction: row-reverse;
    gap: clamp(0.5rem, 0.271rem + 1.14vw, 1.3rem);
    position: absolute;
    top: 17%;
    right: -1.5rem;
    z-index: 2;
}
.area_10_top-message span {
    display: block;
    width: 1rem;
    flex: 0 0 1rem;
    white-space: nowrap;
    transform: rotate(80deg);
    transform-origin: top left;
}
.area_10_bottom-message {
    color: var(--color-white);
    font-size: clamp(0.8rem, 0.629rem + 0.86vw, 1.4rem);
    letter-spacing: 0.05rem;
    width: 100%;
    max-width: min-content;
    position: absolute;
    bottom: 5.5%;
    right: 1%;
    z-index: 2;
    white-space: nowrap;
}
.area_10_bottom-message span {
    white-space: nowrap;
}
.area_10_underline {
    display: block;
    width: 60%;
    margin-left: auto;
}
.area_10_hd {
    stroke-dasharray:908 910;
    stroke-dashoffset:909;
    animation:area_10_hd_draw 1000ms linear 1500ms forwards;
}
@keyframes area_10_hd_draw {
    100%{stroke-dashoffset:0;}
}
.area_10_image p,
.area_10_image a {
    color: var(--color-white);
}
@media (min-width: 768px){
    .area_10_wrapper {
        margin-bottom: 5vw;
    }
    .area_10_top-message {
        top: -9%;
        left: -10%;
    }
    .area_10_top-message span {
        width: clamp(1rem, 0.714rem + 1.43vw, 2rem);
    }
    .area_10_image {
        width: 70%;
    }
    .area_10_image p,
    .area_10_image a {
        color: var(--color-white);
    }
    .area_10_bottom-message {
        bottom: 22.5%;
        left: 50%;
        right: auto;
    }
    .area_10_underline {
        width: 50%;
    }
}

/* area_11 */
.area_11 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.area_11_wrapper {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 5vw auto;
}
.area_11_slide {
    width: 70%;
    margin-left: auto;
    margin-bottom: 2rem;
}
.area_11_image {
    width: 85%;
}
.area_11 p,
.area_11 a {
    color: var(--color-white);
}
.area_11_image p,
.area_11_image a {
    text-align: left;
    margin-left: auto;
    width: max-content;
}

@media (min-width: 768px){
    .area_11_wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        margin: 0 auto 10vw;
    }
    .area_11_slide {
        width: 35%;
        margin: 0;
    }
    .area_11_image {
        width: 50%;
        margin-top: 14vw;
    }
    .area_11_image p,
    .area_11_image a {
        text-align: left;
        margin-left: 0;
    }
}

/* area_12 */
.area_12 {
    width: 100%;
    margin: 0 auto;
    padding: 5vw 0;
    box-sizing: border-box;
}
.area_12_wrapper {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    gap: 1rem;
}
.area_12_item {
    width: 100%;
    min-width: 0;
    margin-bottom: 2rem;
}
.area_12 .splide {
    width: 100%;
    min-width: 0;
}
.area_12 .splide__track {
    width: 100%;
}
.area_12 .splide__slide img {
    display: block;
    width: 100%;
    height: auto;
}
.area_12 p {
    text-align: left;
    color: var(--color-white);
}
.area_12 a {
    color: var(--color-white);
}
@media (min-width: 768px) {
    .area_12 {
        padding: 0;
    }
    .area_12_wrapper {
        flex-direction: row;
        width: 100%;
        max-width: 900px;
    }
    .area_12_item {
        width: 50%;
        min-width: 0;
        margin: 0;
    }
    .area_12_slide-b p {
        text-align: right;
    }
}

/* area 13 */
.area_13 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
}
.area_13_wrapper {
    width: 100%;
}
.area_13 .pin-section {
    min-height: 400vh;
}
.area_13 .area_13_main {
    position: absolute;
    top: 10vh;
    left: 50%;
    height: var(--img-height);
    width: 100%;
    transform: translateX(-50%);
}
.area_13 .img01{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.area_13 .img02{
    width: auto;
    height: 45%;
    position: absolute;
    top: 3%;
    left: 5%;
    object-fit: contain;
    z-index: 3;
}
.area_13 .img03{
    width: auto;
    height: 50%;
    position: absolute;
    right: 4%;
    bottom: 7%;
    object-fit: contain;
    z-index: 2;
}
.area_13 .txt01 {
    width: min-content;
    max-width: 100%;
    position: absolute;
    right: 10%;
    top: 12%;
    z-index: 2;
    font-weight: 100;
}
.area_13 .txt01 p {
    color: var(--color-white);
    font-size: clamp(0.9rem, 0.843rem + 0.29vw, 1.1rem);
    line-height: 1.5;
    display: inline-block;
    margin: 0;
    white-space: nowrap;
}
.area_13_underline {
    display: block;
    width: 100%;
    margin-left: auto;
}
.area_13_hd {
    stroke-dasharray:908 910;
    stroke-dashoffset:909;
}
.area_13 .txt01.is-visible .area_13_hd  {
    animation:area_13_hd_draw 1000ms linear 1000ms forwards;
}
@keyframes area_13_hd_draw {
    100%{stroke-dashoffset:0;}
}
.area_13 .p-info {
    position: absolute;
    margin-top: 0.5rem;
    left: 1rem;
    top: 100%;
}
.area_13 .p-info,
.area_13 .p-info a {
    color: var(--color-white);
    width: max-content;
}
@media (max-width:399px) {
    .area_13 .txt01 {
        right: 15%;
    }
}
@media (min-width:768px) {
    .area_13 .area_13_main {
        aspect-ratio: 1024 / 1544;
        width: auto;
    }
    .area_13 .txt01 {
        right: 18%;
    }
    .area_13 .p-info {
        left: 0;
    }
}

/* area_14 */
.area_14 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.area_14_wrapper {
    display: grid;
    gap: 1rem;
}
.gallery__image {
    display: block;
    width: 85%;
    height: auto;
}
.gallery__image p,
.gallery__image a {
    margin-top: 0.5rem;
    color: var(--color-white);
}
.gallery__image--main {
    justify-self: start;
    width: 100%;
}
.gallery__image--main img {
    width: 85%;
    margin-left: 0;
}
.gallery__image--main p {
    text-align: right;
    margin-right: 15%;
}
.gallery__image--sub01,
.gallery__image--sub02 {
    justify-self: center;
}
@media (min-width: 768px) {
    .area_14_wrapper {
        grid-template-columns: 3fr 2fr;
        grid-template-rows: auto auto;
        align-items: center;
        width: 90%;
        max-width: 1000px;
        gap: 4rem;
        margin-left: auto;
        margin-right: auto;
    }
    .gallery__image {
        width: 100%;
    }
    .gallery__image--main {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: center;
        margin-top: 5%;
        width: 95%;
    }
    .gallery__image--main img {
        width: 100%;
    }
    .gallery__image--main p {
        text-align: right;
        margin-right: 0;
    }
    .gallery__image--sub01 {
        grid-column: 2;
        grid-row: 1;
    }
    .gallery__image--sub02 {
        grid-column: 2;
        grid-row: 2;
    }
}

/* area_15 */
.area_15 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.area_15_wrapper {
    width: 100%;
    margin: 10vw auto 0;
    padding-bottom: 20vh;
}
.area_15_visual {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: auto;
}
.visual__image--base {
    position: relative;
    margin-top: 10%;
    width: 96%;
    height: auto;
    z-index: 1;
}
.visual__image--front {
    position: absolute;
    right: 10%;
    top: 30%;
    width: 80%;
    height: auto;
    z-index: 2;
}
.visual__ellipses--area02 {
    top: -13%;
    right: 27%;
    z-index: 3;
    width: 20%;
    aspect-ratio: 166 / 530;
    transform: rotate(90deg);
}
.visual__ellipses--area02 .visual__ellipse--02 {
    --left: 12vw;
}
@media (min-width: 960px) {
    .area_15_wrapper {
        position: static;
    }
    .visual__image--base {
        width: 65%;
        margin-top: 15%;
    }
    .visual__image--front {
        /* top: 50%;
        width: 65%;
        transform: translate(-50%, -50%); */
        right: 25%;
        top: -10%;
        width: 45%;
        height: auto;
    }
    .visual__ellipses--area02 {
        top: 0;
        right: 18%;
        width: 11%;
        transform: rotate(0deg);
    }
    .visual__ellipses--area02 .visual__ellipse--01 {
        --left: -1vw;
    }
    .visual__ellipses--area02 .visual__ellipse--02 {
        --left: 5vw;
    }
}

/* footer */
footer {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: #bdc4c5;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    text-align: left;
}
@media (min-width: 768px){
    footer {
        min-height: 750px;
        background-image: url("../images/footer_bg.jpg");
        background-position: right top;
        background-size: contain;
        background-repeat: no-repeat;
        aspect-ratio: auto;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
}
@media (min-width: 1440px){
    footer {
        background-position: right 10% top;
    }
}
.area_footer_wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 2rem;
    flex: 1;
}
@media (max-width: 767px){
    .area_footer_wrapper::after {
        content: "";
        display: block;
        width: 100%;
        background: url("../images/footer_bg.jpg") center bottom / 100% auto no-repeat;
        aspect-ratio: 601 / 750;
        margin-bottom: 0;
    }
}
.area_footer_message {
    width: 100%;
    max-width: max-content;
    font-size: clamp(0.8rem, 0.714rem + 0.43vw, 1.1rem);
    font-style: italic;
    line-height: 2.3;
    margin: 0 0 2rem 13%;
    --step: 0.5rem;
    --delay: 0.75s;
}
.area_footer_message span {
    display: block;
    margin-left: calc(var(--line) * var(--step) * -1);
    opacity: 0;
    transform: translateY(-1%);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: calc(var(--line) * var(--delay));
}
.area_footer_message span:nth-child(1) {
    --line: 0;
}
.area_footer_message span:nth-child(2) {
    --line: 1;
}
.area_footer_message span:nth-child(3) {
    --line: 2;
}
.area_footer_message.is-show span {
    opacity: 1;
    transform: translateY(0);
}
.area_footer--abs {
    margin-bottom: 2rem;
}
.area_footer--abs,
.area_footer--staff {
    width: 100%;
    max-width: max-content;
}
.area_footer--abs,
.area_footer--staff {
    p,
    a {
        color: var(--color-white);
        font-size: clamp(0.6rem, 0.543rem + 0.29vw, 0.8rem);
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-style: normal;
    }
}
.area_footer--abs p,
.area_footer--staff p {
    margin-bottom: 1rem;
}
.area_footer-credit {
    align-content: center;
    width: 80%;
    margin: 0 auto 2rem;
}
.area_footer-credit li {
    list-style: none;
    margin-bottom: 0.3rem;
    font-size: clamp(0.6rem, 0.543rem + 0.29vw, 0.8rem);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
}
.area_footer_i-icon {
    display: inline-block;
    width: 0.9rem;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-left: 0.5rem;
    vertical-align: middle;
}
 p.cp {
    margin: -2rem auto 0;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    font-size: 0.8rem;
    position: relative;
    z-index: 10;
}
@media (min-width: 768px){
    .area_footer_wrapper {
        display: grid;
        padding-top: 3rem;
    }
    .area_footer_message {
        margin: auto 0 0 1.5rem;
    }
    .area_footer-credit {
        width: auto;
        margin: 0;
    }
    .area_footer--abs {
        margin-bottom: 3rem;
    }
    .area_footer--abs p,
    .area_footer--staff p {
        margin-bottom: 1.2rem;
    }
    p.cp {
        text-align: left;
        margin: 1rem auto;
    }
}