@charset "UTF-8";

html {
    scroll-behavior: smooth;
}
html:has(main) {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body:has(main) {
    width: 100%;
    height: 100%;
    font-size: 1.6em;
    line-height: 1.6;
    position: relative;
    background-color: #000;
}
main {
    overflow: hidden;
}
*,
*:before,
*:after {
    box-sizing:border-box;
}
/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}
.taR {
    text-align: right;
}
.fwM {
    font-weight: 500;
}
.fwSB {
    font-weight: 600;
}
.fwB {
    font-weight: 700;
}
img {
    display: block;
    width: 100%;
}


/* ------------------------------------- /
/   index_inner
/* ------------------------------------- */
.index_inner {
    width: min(100%, 1400px);
    margin: 0 auto;
    padding: 0 min(6%, calc((1400px - 1340px) / 2));
}
@media screen and (max-width:768px){
.index_inner {
    padding: 0 2.5%;
}
}

/* ------------------------------------- /
/   pc-none、sp-none
/* ------------------------------------- */
.pc-none {
    display: none;
}
.pc-none768 {
    display: none;
}
.pc-none500 {
    display: none;
}
.pc-none__inline {
    display: none;
}
.pc-none__inline768 {
    display: none;
}
.pc-none__inline1200 {
    display: none;
}
@media (max-width: 1200px) {
.pc-none__inline1200 {
    display: inline;
}
}
@media (max-width: 768px) {
.pc-none768 {
    display: block;
}
.pc-none__inline768 {
    display: inline;
}
.sp-none768 {
    display: none !important;
}
}
@media (max-width: 600px) {
.pc-none {
    display: block;
}
.pc-none__inline {
    display: inline;
}
.sp-none {
    display: none !important;
}
}
@media (max-width: 500px) {
.sp-none500 {
    display: none !important;
}
.pc-none500 {
    display: block;
}
}

/* ------------------------------------- /
/   サイトカラー、フォント
/* ------------------------------------- */
body:has(main) {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-weight: normal;
    color: var(--color-black);
}
body:has(main) a {
    color: var(--color-black);
    text-decoration: underline;
}
body:has(main) a:hover {
    text-decoration: none;
}
::selection {
    background: var(--color-black);
    color: #fff;
}
:root {
    --color-black: #000000;
    --font-jp: "Hiragino Kaku Gothic StdN", "Inter", sans-serif;
    --font-en: "Maison Neue", "Inter", sans-serif;
}
.bg-black {
    background-color: var(--color-black);
}
.bg-white {
    background-color: #fff;
}
.color-black {
    color: var(--color-black);
}
.color-white {
    color: #fff;
}
.color-white a {
    color: #fff;
}
.font-jp {
    font-family: var(--font-jp);
}
.font-en {
    font-family: var(--font-en);
}


/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 2.4%;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-weight: normal;
    line-height: 1.6;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    /*
    mix-blend-mode: difference;
    */
    font-size: 12pt;
}
.header_logo {
    display: block;
    width: min(100%, 187px);
    margin: 10px 0;
    transition-duration: 0.3s;
    animation-name: header_logo;
    animation-delay: calc(0.5s);
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    opacity: 0;
}
body:has(main) .header_logo {
    animation-delay: calc(3.5s);
}
@keyframes header_logo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.header_logo:hover {
    opacity: 0.5;
}
.header_logo h1 {
    display: block;
    width: 100%;
}
.header_nav_wrapper {
    width: min(100%, 460px);
}
.header_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0 20px 20px;
    font-weight: bold;
}
.header_nav_column {
    display: flex;
    align-items: center;
    position: relative;
}
    .header_nav_column > a {
        display: inline-block;
        color: #fff;
        text-decoration: none;
        line-height: 1.3;
        position: relative;
    }
    .header_nav_column > a::before {
        content: '';
        display: block;
        width: 0;
        height: 1px;
        background-color: #fff;
        position: absolute;
        left: 0;
        bottom: 0;
        transition-duration: 0.2s;
    }
    .header_nav_column > a:hover::before {
        width: 100%;
    }
.header_nav_submenu {
    width: 200px;
    padding: 15px 15px 10px;
    position: absolute;
    left: 0;
    top: 40px;
    background-color: #fff;
}
.header_nav_submenu:not(.active) {
    opacity: 0;
    z-index: -1;
}
.header_nav_submenu_column {
    padding: 0 0 0 12px;
    position: relative;
    line-height: 1.2;
}
.header_nav_submenu_column:not(:first-child) {
    margin-top: 10px;
}
.header_nav_submenu_column::before {
    content: '';
    display: block;
    width: 6px;
    aspect-ratio: 1/1;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-90%);
}
    .header_nav_submenu_column a {
        color: var(--color-black);
        text-decoration: none;
    }
    .header_nav_submenu_column a:hover {
        text-decoration: underline;
    }
.header_nav_logo {
    display: none;
}
.header_nav_sns {
    display: none;
}
.header_nav_trigger {
    display: none;
}

@media screen and (max-width:768px){
header {
    display: block;
    padding: 20px 0;
}
.header_logo {
    width: max(min(25%, 200px), 102px);
    margin: 0 auto;
    animation-delay: calc(0.6s);
}
.header_nav_wrapper {
    width: 100vw;
    height: 100vh;
    background-color: #000;
    position: absolute;
    right: 0;
    top: -100vh;
    transition-duration: 0.5s;
}
.header_nav_wrapper.active {
    top: 0;
}
.header_nav_inner {
    width: min(100%, 334px);
    max-height: 100vh;
    overflow: auto;
    margin: 0 auto;
    padding: 25px 18px;
}
.header_nav_logo {
    display: block;
    width: min(100%, 102px);
    margin: 0 0 0 4px;
}
.header_nav {
    display: block;
    margin: 8px 0 0;
    padding: 0;
    font-weight: normal;
}
.header_nav_column {
    display: block;
    padding: 14px 0;
    border-bottom: 1px #fff solid;
}
    .header_nav_column > a {
        display: block;
        padding: 16px 0;
    }
    .header_nav_column > a::before {
        display: none;
    }
.header_nav_submenu {
    width: 100%;
    height: 0;
    overflow: hidden;
    background: none;
    padding: 0;
    position: relative;
    top: 0;
    transition-duration: 0.2s;
}
.header_nav_submenu:not(.active) {
    opacity: 1;
    z-index: 0;
}
.header_nav_submenu_column {
    padding: 0 0 0 22px;
    /*font-size: 1.4rem;*/
    font-size: 0.9em;
}
.header_nav_submenu_column::before {
    background-color: #fff;
    left: 6px;
    transform: translateY(-70%);
}
    .header_nav_submenu_column a {
        color: #fff;
    }
    .header_nav_submenu_column a:hover {
        text-decoration: none;
    }
.header_nav_sns {
    display: block;
    color: #fff;
    margin: 30px 0;
    padding: 0 5px;
    /*font-size: 1.4rem;*/
    font-size: 0.9em;
}
.header_nav_sns_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 18px;
    margin: 8px 0 0;
}
.header_nav_sns_column.sns_instagram {
    width: min(100%, 22px);
}
.header_nav_sns_column.sns_x {
    width: min(100%, 23px);
}
.header_nav_sns_column.sns_line {
    width: min(100%, 25px);
}
.header_nav_sns_column.sns_tiktok {
    width: min(100%, 22px);
}
    .header_nav_sns_column a {
        display: block;
        width: 100%;
    }
.header_nav_trigger {
    display: block;
    width: 67px;
    height: 37px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../images/top_2025/sp_menu_open.svg');
    background-position: center;
    background-size: 47px auto;
    background-repeat: no-repeat;
}
.header_nav_wrapper.active + .header_nav_trigger {
    background-image: url('../images/top_2025/sp_menu_close.svg');
}
}

/* ------------------------------------- /
/  index_mv
/* ------------------------------------- */
.index_mv {
    width: 100%;
    /*
    max-height: 100vh;
    */
    overflow: hidden;
    aspect-ratio: 1920/1080;
    /*
    background-image: url('../images/top_2025/mv_pc.webp');
    */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.index_mv_text {
    width: min(60%, 776px);
    position: absolute;
    left: 6%;
    top: min(75.83%, 750px);
    animation-name: index_mv_text;
    animation-delay: 2.4s;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    opacity: 0;
    filter: blur(100px);
}
@keyframes index_mv_text {
    0% {
        opacity: 0;
        filter: blur(100px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}
@media screen and (max-width:768px){
.index_mv {
    aspect-ratio: 390/650;
    /*
    background-image: url('../images/top_2025/mv_sp.webp');
    */
}
.index_mv_text {
    width: 62.5%;
    left: 2.56%;
    top: atuo;
    bottom: 15.1%;
}
}


.index_mv_parts {
    position: absolute;
}
.index_mv_parts.parts_01 {
    width: 37.19%;
    right: 0;
    top: 0;
    animation-name: parts_01;
    animation-delay: calc(0.6s);
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    opacity: 0;
    transform: translateX(5vw);
}
@keyframes parts_01 {
    0% {
        opacity: 0;
        transform: translateX(5vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.index_mv_parts.parts_02 {
    width: 38.33%;
    left: 0;
    bottom: 0;
    animation-name: parts_02;
    animation-delay: calc(0.8s);
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    opacity: 0;
    transform: translateX(-5vw);
}
@keyframes parts_02 {
    0% {
        opacity: 0;
        transform: translateX(-5vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.index_mv_parts.parts_03 {
    width: 27.73%;
    left: 38.33%;
    bottom: 0;
    animation-name: parts_03;
    animation-delay: calc(1.0s);
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    opacity: 0;
    transform: translateX(5vw);
}
@keyframes parts_03 {
    0% {
        opacity: 0;
        transform: translateX(5vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.index_mv_parts.parts_04 {
    width: 41.46%;
    left: 47.63%;
    top: 15.19%;
    animation-name: parts_04;
    animation-delay: calc(1.2s);
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    opacity: 0;
    transform: translateY(5vw);
}
@keyframes parts_04 {
    0% {
        opacity: 0;
        transform: translateY(5vw);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.index_mv_parts.parts_05 {
    width: 24.97%;
    left: 29.38%;
    top: 0;
    animation-name: parts_05;
    animation-delay: calc(1.6s);
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    opacity: 0;
    transform: translateX(-5vw);
}
@keyframes parts_05 {
    0% {
        opacity: 0;
        transform: translateX(-5vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.index_mv_parts.parts_06 {
    width: 34.56%;
    left: 13.05%;
    top: 37.73%;
    animation-name: parts_06;
    animation-delay: calc(1.4s);
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    opacity: 0;
    transform: translateY(-5vw);
}
@keyframes parts_06 {
    0% {
        opacity: 0;
        transform: translateY(-5vw);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width:768px){
.index_mv_parts.parts_01 {
    width: 92.69%;
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    animation-name: parts_06;
    animation-delay: calc(1.0s);
}
.index_mv_parts.parts_02 {
    width: 100%;
    left: 0;
    bottom: auto;
    top: 0;
    animation-delay: calc(1.2s);
}
.index_mv_parts.parts_03 {
    width: 70.51%;
    left: auto;
    right: 0;
    animation-delay: calc(1.4s);
}
.index_mv_parts.parts_04 {
    width: 52.69%;
    left: 0;
    top: 11.19%;
    animation-delay: calc(1.6s);
}
.index_mv_parts.parts_05 {
    width: 84.42%;
    left: 0;
    top: 47.73%;
    animation-delay: calc(1.8s);
}
}

/* ------------------------------------- /
/  index_h2
/* ------------------------------------- */
.index_h2 {
    font-size: 5.2rem;
    line-height: 1;
}
@media (max-width: 768px) {
.index_h2 {
    font-size: clamp(3.0rem, 7.0vw, 5.2rem);
}
}

/* ------------------------------------- /
/  index_item
/* ------------------------------------- */
.index_item {
    padding: 86px 0 109px;
    overflow: auto;
}
.index_item_header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.index_item_left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 524px);
}
.index_item_button {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 131px);
}
.index_item_prev,
.index_item_next {
    display: block;
    width: min(100%, 48px);
    aspect-ratio: 1/1;
    border: 1px #000 solid;
    background-image: url('../images/top_2025/arrow_left.svg');
    background-position: center;
    background-size: 22px auto;
    background-repeat: no-repeat;
}
.index_item_next {
    transform: rotateZ(180deg);
}
.index_item_more {
    display: flex;
    align-items: center;
    min-height: 25px;
    padding: 0 0 0 36px;
    line-height: 1.2;
    background-image: url('../images/top_2025/view_more.svg');
    background-position: left center;
    background-size: 25px auto;
    background-repeat: no-repeat;
    text-decoration: none;
    transition-duration: 0.3s;
}
.index_item_more:hover {
    opacity: 0.5;
}
.index_item_list {
    /*
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    column-gap: calc((100% - (18.75% * 5)) / 4);
    */
    width: 100%;
    margin: 52px auto 0;
}
.index_item_column {
    padding: 0 16px;
    /*
    width: 18.75%;
    */
}
.index_item_img {
    display: block;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    transition-duration: 0.3s;
}
.index_item_img:hover {
    opacity: 0.5;
}
.index_item_title {
    margin: 7px 0 0;
    line-height: 1.375;
}
    .index_item_title a {
        text-decoration: none;
    }
    .index_item_title a:hover {
        text-decoration: underline;
    }
.index_item_price {
    margin: 12px 0 0;
    line-height: 1.375;
}
@media (max-width: 768px) {
.index_item {
    padding: 36px 0 52px;
}
.index_item_more {
    width: min(100%, 80px);
    min-height: 14px;
    margin: 36px auto;
    padding: 0 0 0 21px;
    background-size: 14px auto;
    font-size: 1.2rem;
}
.index_item_list {
    /*
    column-gap: calc((100% - (19% * 5)) / 4);
    width: max(100%, 733px);
    */
    margin: 16px auto 0;
}
.index_item_column {
    /*
    width: 19%;
    */
    padding: 0 4px;
}
.index_item_title {
    margin: 6px 0 0;
    font-size: 1.4rem;
}
.index_item_price {
    margin: 6px 0 0;
    font-size: 1.4rem;
}
}

/* ------------------------------------- /
/  index_menu
/* ------------------------------------- */
.index_menu_header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.index_menu_header_link {
    width: 50%;
}
/*
.index_menu_header:has(.index_menu_header_link:nth-child(3):last-child) .index_menu_header_link {
    width: calc(100% / 3);
}
.index_menu_header:has(.index_menu_header_link:nth-child(4):last-child) .index_menu_header_link {
    width: calc(100% / 4);
}
.index_menu_header:has(.index_menu_header_link:nth-child(5)) .index_menu_header_link {
    width: calc(100% / 3);
}
*/
    .index_menu_header_link a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        aspect-ratio: 960/700;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        color: #fff;
        text-align: center;
        text-decoration: none;
        position: relative;
        transition-duration: 0.3s;
    }
    .index_menu_header_link.menu_01 a {
        background-image: url('../images/top_2025/menu_01.webp');
    }
    .index_menu_header_link.menu_01 a:hover {
        background-image: url('../images/top_2025/menu_01_hover.webp?2');
    }
    .index_menu_header_link.menu_02 a {
        background-image: url('../images/top_2025/menu_02.webp');
    }
    .index_menu_header_link.menu_02 a:hover {
        background-image: url('../images/top_2025/menu_02_hover.webp?2');
    }
    .index_menu_header_link a::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.52);
        position: absolute;
        left: 0;
        top: 0;
    }
    .index_menu_header_link img {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        filter: grayscale(100%);
        transition-duration: 0.3s;
    }
    .index_menu_header_link:has(a:hover) img {
        filter: grayscale(0%);
    }
.index_menu_header_wrapper {
    position: relative;
    z-index: 1;
}
.index_menu_header_link .fsS {
    display: block;
    margin: 4px 0 0;
    font-size: 2.0rem;
    line-height: 1.35;
}
@media (max-width: 1200px) {
/*
.index_menu_header:has(.index_menu_header_link:nth-child(4):last-child) .index_menu_header_link {
    width: 50%;
}
*/
}
@media (max-width: 1080px) {
.index_menu .index_h2 {
    font-size: 3.6rem;
}
}
@media (max-width: 768px) {
.index_menu_header_link {
    width: 100%;
    aspect-ratio: 390/284;
}
/*
.index_menu_header:has(.index_menu_header_link:nth-child(3):last-child) .index_menu_header_link,
.index_menu_header:has(.index_menu_header_link:nth-child(5)) .index_menu_header_link {
    width: 50%;
}
*/
.index_menu .index_h2 {
    font-size: clamp(3.0rem, 7.0vw, 5.2rem);
}
.index_menu_header_link .fsS {
    margin: 5px 0 0;
    font-size: 1.6rem;
}
}
@media (max-width: 600px) {
.index_menu_header:has(.index_menu_header_link:nth-child(3):last-child) .index_menu_header_link,
.index_menu_header:has(.index_menu_header_link:nth-child(4):last-child) .index_menu_header_link,
.index_menu_header:has(.index_menu_header_link:nth-child(5)) .index_menu_header_link {
    width: 100%;
}
}

/* ------------------------------------- /
/  index_concept
/* ------------------------------------- */
.index_concept {
    padding: 92px 0 170px;
    background-image: url('../images/top_2025/concept_bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.index_concept .index_h2 {
    text-align: center;
}
.index_concept_wrapper {
    margin: 68px 0 0;
    line-height: 1.35;
}
    .index_concept_wrapper .fsL {
        font-size: 3.0rem;
        margin: 0 0 24px;
    }
    .index_concept_wrapper .font-en {
        margin: 0 0 75px;
    }
    .index_concept_wrapper p:not(:first-child):not(:last-child):not(.font-en) {
        margin: 0 0 20px;
    }
    .index_concept_wrapper p:last-child {
        margin: 40px 0 0;
    }
@media (max-width: 768px) {
.index_concept {
    padding: 50px 0 210px;
    background-image: url('../images/top_2025/concept_bg_sp.webp');
}
.index_concept .index_h2 {
    text-align: left;
}
.index_concept_wrapper {
    margin: 40px 0 0;
}
    .index_concept_wrapper .fsL {
        font-size: 2.4rem;
        margin: 0 0 15px;
    }
    .index_concept_wrapper .font-en {
        font-size: 1.2rem;
        margin: 0 0 29px;
    }
}


/* ------------------------------------- /
/  index_bottom
/* ------------------------------------- */
.index_bottom {
    overflow: hidden;
}
.index_bottom_wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
.index_bottom_link {
    width: 50%;
    padding: 93px 0 94px;
    position: relative;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition-duration: 0.3s;
}
.index_bottom_link:last-child {
    width: 100%;
    padding: 93px 25% 94px;
}
.index_bottom_link:hover {
    opacity: 0.5;
}
.index_bottom_link::before {
    content: '';
    display: block;
    width: 50vw;
    height: 100%;
    background-image: url('../images/top_2025/menu_03.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 0;
}
.index_bottom_link:last-child::before {
    width: 100vw;
    right: 50%;
    transform: translateX(50%);
}
.index_bottom_right {
    width: 50%;
    padding: 93px 0 72px 38px;
}
.index_bottom_inner {
    position: relative;
}
    .index_bottom_inner index_h2 br {
        display: none;
    }
.index_bottom_inner .fsS {
    display: block;
    margin: 47px 0 0;
    line-height: 1.3125;
}
.index_information_list {
    margin: 26px 0 0;
}
.index_information_column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0 20px;
}
.index_information_column:not(:last-child) {
    border-bottom: 1px #000 solid;
}
.index_information_left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: min(100%, 216px);
}
.index_information_ymd {
    line-height: 1.375;
}
.index_information_date {
    margin: 0 0 0 6px;
    line-height: 1.375;
}
.index_information_new {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 57px);
    min-height: 16px;
    margin: 0 0 0 10px;
    padding: 3px 0 0;
    font-size: 1.2rem;
    line-height: 1;
}
.index_information_right {
    width: calc(100% - 216px);
}
@media (max-width: 1080px) {
    .index_bottom_inner index_h2 span {
        display: none;
    }
    .index_bottom_inner index_h2 br {
        display: inline;
    }
.index_information_right {
    width: 100%;
}
}
@media (max-width: 768px) {
.index_bottom_wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
.index_bottom_link {
    width: 100%;
    padding: 104px 0 80px;
}
.index_bottom_link::before {
    width: 100vw;
    background-image: url('../images/top_2025/menu_03_sp.webp');
    right: auto;
    right: 50%;
    transform: translateX(50%);
}
    .index_bottom_inner .index_h2 {
        text-align: center;
    }
.index_bottom_inner .fsS {
    margin: 14px 0 0;
    text-align: center;
}
.index_bottom_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 296px);
    min-height: 90px;
    margin: 46px auto 0;
    background-color: rgba(0, 0, 0, 0.78);
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
}
.index_bottom_button::after {
    content: '';
    display: block;
    width: 20px;
    aspect-ratio: 20/10;
    background-image: url('../images/top_2025/arrow_right.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 0 0 20px;
}
.index_bottom_right {
    width: 100%;
    padding: 57px 0 40px;
}
.index_information_ymd {
    font-size: 1.2rem;
}
.index_information_date {
    font-size: 1.2rem;
    margin: 0 0 0 3px;
}
.index_information_new {
    width: min(100%, 34px);
    min-height: 14px;
    margin: 0 0 0 5px;
    padding: 2px 0 0;
    font-size: 1.0rem;
}
.index_information_right {
    margin: 3px 0 0 0;
}
}


/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    position: relative;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 12pt;
    line-height: 1.6;
}
body:has(main) footer a {
    color: #fff;
    text-decoration: none;
    position: relative;
}
.footer_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 88px;
    padding: 72px 0 77px;
}
.footer_logo {
    display: block;
    width: min(100%, 187px);
    transform: translateX(-40px);
}
.footer_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: min(calc(100% - 187px - 88px), 710px);
}
.footer_nav {
    line-height: 1.5;
}
    .footer_nav a:hover {
        text-decoration: underline;
    }

.footer_nav.nav_left {
    width: min(100%, 135px);
}
.footer_nav_column:not(:first-child):not(.submenu) {
    margin-top: 21px;
}
.footer_nav_column.submenu {
    margin-top: 8px;
    padding: 0 0 0 16px;
    position: relative;
}
.footer_nav_column:not(.submenu) + .footer_nav_column.submenu {
    margin-top: 15px;
}
.footer_nav_column.submenu::before {
    content: '';
    display: block;
    width: 6px;
    aspect-ratio: 1/1;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-70%);
}
.footer_sns {
    width: min(100%, 210px);
    line-height: 1.5;
}
.footer_sns_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 26px;
    margin: 8px 0 0;
}
.footer_sns_column.sns_instagram {
    width: min(100%, 31px);
}
.footer_sns_column.sns_x {
    width: min(100%, 32px);
}
.footer_sns_column.sns_line {
    width: min(100%, 35px);
}
.footer_sns_column.sns_tiktok {
    width: min(100%, 31px);
}
    .footer_sns_column a {
        display: block;
        width: 100%;
    }
.footer_nav.nav_right {
    width: min(100%, 170px);
    /*font-size: 1.35rem;*/
    font-size: 0.85em;
}
.footer_nav.nav_right .footer_nav_column:not(:first-child):not(.submenu) {
    margin-top: 29px;
}
.footer_copyright {
    /*font-size: 1.2rem;*/
    font-size: 0.75em;
    position: absolute;
    right: 21px;
    bottom: 40px;
}

@media (max-width: 1440px) {
.footer_logo {
    transform: translateX(0px);
}
}
@media (max-width: 1080px) {
.footer_inner {
    width: min(100%, 710px);
    margin: 42px 0 0;
}
}

@media (max-width: 768px) {
.footer_wrapper {
    display: block;
    padding: 40px 0 0px;
}
.footer_logo {
    width: min(100%, 102px);
    margin: 0 auto;
}
.footer_inner {
    width: min(100%, 370px);
    margin: 42px auto 0;
}
.footer_nav.nav_left {
    width: 100%;
    padding: 0 0 34px;
    border-bottom: 1px #fff solid;
    /*font-size: 1.4rem;*/
    font-size: 0.9em;
}
.footer_nav_column:not(:first-child):not(.submenu) {
    margin-top: 8px;
}
.footer_nav_column.submenu {
    margin-top: 6px;
    /*font-size: 1.2rem;*/
    font-size: 0.85em;
}
.footer_nav_column:not(.submenu) + .footer_nav_column.submenu {
    margin-top: 6px;
}
.footer_nav_column.submenu + .footer_nav_column:not(.submenu) {
    margin-top: 15px;
}
.footer_sns {
    width: 100%;
    padding: 34px 0 36px;
    border-bottom: 1px #fff solid;
}
.footer_sns_list {
    column-gap: 18px;
}
.footer_sns_column.sns_instagram {
    width: min(100%, 22px);
}
.footer_sns_column.sns_x {
    width: min(100%, 23px);
}
.footer_sns_column.sns_line {
    width: min(100%, 25px);
}
.footer_sns_column.sns_tiktok {
    width: min(100%, 22px);
}
.footer_nav.nav_right {
    width: 100%;
    padding: 37px 0 42px;
    border-bottom: 1px #fff solid;
    /*font-size: 1.2rem;*/
    font-size: 0.8em;
}
.footer_nav.nav_right .footer_nav_column:not(:first-child):not(.submenu) {
    margin-top: 12px;
}
.footer_copyright {
    padding: 17px 0 18px;
    text-align: center;
    /*font-size: 1.0rem;*/
    position: relative;
    right: 0;
    bottom: 0;
}
}