 
/* 
Theme Name: 開花屋太郎
Author: 開花屋太郎
Author URI: https://kaikaya-taro.jp/
Version: 1.0
*/
@charset "UTF-8";
/* CSS Document */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    width: 100%;
    height: 100%;
    font-size: 1.6em;
    line-height: 1.75;
}
*,
*:before,
*:after {
    box-sizing:border-box;
}
/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}
.taR {
    text-align: right;
}
.fw600 {
    font-weight: 600;
}
.fwB {
    font-weight: bold;
}
.space {
    margin-top: 128px;
}


/* ------------------------------------- /
/   inner
/* ------------------------------------- */
.inner {
    width: min(100%, calc(1400px + (6% * 2)));
    margin: 0 auto;
    padding: 0 6%;
}
@media screen and (max-width:600px){
.inner {
    padding: 0 4%;
}
}

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

/* ------------------------------------- /
/   サイトカラー、フォント
/* ------------------------------------- */
body {
    padding: 90px 0 0;
    background-color: var(--color-dark);
    font-family: "Noto Serif JP", sans-serif;
    font-weight: bold;
    color: #fff;
}
main {
    overflow: hidden;
}
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
::selection {
    background: #fff;
    color: var(--color-navy);
}
:root {
    --color-dark: #000619;
    --color-navy: #0F1834;
}
.bg-dark {background-color: var(--color-dark);}
.bg-navy {background-color: var(--color-navy);}
.bg-white {background-color: #fff;}
.color-dark {color: var(--color-dark);a{color: var(--color-dark);}}
.color-navy {color: var(--color-navy);a{color: var(--color-navy);}}
.color-white {color: #fff;a{color: #fff;}}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 5.21%;
    background-color: var(--color-dark);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.header_title {
    display: block;
    width: max(min(12.21%, 210px), 140px);
    min-height: 80px;
    text-indent: 100%;
    white-space: nowrap;
    background-image: url('../img/top/logo_header.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    transition-duration: 0.2s;
}
    .header_title p {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
    }

.header_title:hover {
    opacity: 0.5;
}
.header_menu {
    width: min(75%, 900px);
}
.header_menu_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
    .header_menu_inner li:not(:last-child):not(.home) a {
        display: inline-block;
        font-size: 2.0rem;
        transition-duration: 0.2s;
        border-bottom: 1px transparent solid;
    }
    .header_menu_inner li:not(:last-child):not(.home) a:hover {
        border-color: #fff;
    }
    .header_menu_inner a:hover {
        text-decoration: none;
    }
    .header_menu .home {
        display: none;
    }
    .header_menu_inner li:has(.header_contact) {
        width: min(100%, 296px);
        width: min(100%, 320px);
    }
.header_contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    text-align: center;
}
.header_contact_tel {
    width: 100%;
    font-size: 2.0rem;
    white-space: nowrap;
    line-height: 1.2;
    text-align: left;
}
    .header_contact_tel a {
        font-size: 1.385em;
        font-size: 1.2em;
    }
    .header_contact_tel a:hover {
        border:none;
        opacity: 0.5;
    }
.header_contact_time {
    font-size: 1.3rem;
    line-height: 1.4;
}
    .header_contact_time br {
        display: none;
    
    }
.header_contact_close {
    font-size: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 1200px) {
header {
    padding: 5px 4%;
}
    .header_menu_inner li:not(:last-child):not(.home) a {
        font-size: 1.6rem;
    }
    .header_menu_inner li:has(.header_contact) {
        /*width: min(100%, 286px);*/
    }
.header_contact_tel {
    font-size: 2.0rem;
}
}

@media (max-width: 1000px) {
    .header_menu_inner li:has(.header_contact) {
        width: min(100%, 210px);
        width: min(100%, 235px);
    }
.header_contact {
    justify-content: flex-end;
    text-align: right;
}
.header_contact_tel {
    font-size: 1.6rem;
    text-align: right;
}
.header_contact_time {
    width: 100%;
}
    .header_contact_time span {
        display: none;
    }
    .header_contact_time br {
        /*display: inline;*/
    }
.header_contact_close {
    width: 100%;
}

}

@media (max-width: 768px) {
body {
    padding: 70px 0 0;
}
.header_title {
    min-height: 60px;
}
.header_menu {
    width: min(100%, 400px);
    height: 100vh;
    background-color: var(--color-navy);
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    transition-duration: 0.8s;
    transition-delay: 0.4s;
    transform: translateX(100%);
}
.header_menu.active {
    transform: translateX(0);
    z-index: 100;
    transition-delay: 0s;
}
.header_menu_inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: calc(100vh - 20px - 4vh - 20px - 40px - 60px);
    margin: 20px 0 0;
    padding: 0 0 40px 0;
    opacity: 0;
    transition-duration: 0.4s;
}
    .header_menu.active .header_menu_inner {
        transition-delay: 0.8s;
        opacity: 1;
    }

    .header_menu li {
        width: 80%;
        border-top: 1px #d0d0d0 solid;
    }
    .header_menu_inner li:has(.header_contact) {
        width: 80%;
    }
    .header_menu_inner li:not(:last-child):not(.home) a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 2vh 0;
        font-size: 1.8rem;
        color: #fff;
    }
    .header_menu .home {
        display: block;
        width: 60%;
        border: none;
    }
    .header_menu .home + li {
        border: none;
        margin: 20px 0 0;
    }
        .header_menu .home a {
            width: min(100%, 200px);
            margin: 0 auto;
        }
        .header_menu .home img {
            display: block;
            width: 100%;
        }
.header_contact {
    justify-content: space-between;
    text-align: center;
    padding: 4vh 0 0;
    row-gap: 10px;
}
.header_contact_tel {
    text-align: center;
}
}

/* ------------------------------------- /
/   menu_trigger
/* ------------------------------------- */
.menu_trigger {
    display: none;
    width: 38px;
    height: 34px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
.menu_trigger span {
    display: inline-block;
    width: 38px;
    height: 3px;
    background-color: #fff;
    border-radius: calc(3px / 2);
    position: absolute;
    left: calc(50% - (38px / 2));
    transition-duration: 0.6s;
}
.menu_trigger.active span {
    background-color: #fff;
}
.menu_trigger span:nth-of-type(1) {
    top: calc(50% - 10px);
}
.menu_trigger.opend span:nth-of-type(1) {
    animation-name: menu-close_01;
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu_trigger.active span:nth-of-type(1) {
    animation-name: menu-open_01;
}
@keyframes menu-open_01 {
    0% {
        top: calc(50% - 10px);
        transform: rotate(0deg);
    }
    50% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
}
@keyframes menu-close_01 {
    0% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
    50% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 10px);
        transform: rotate(0deg);
    }
}
.menu_trigger span:nth-of-type(3) {
    top: 50%;
}
.menu_trigger.opend span:nth-of-type(3) {
    animation-name: menu-close_03;
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu_trigger.active span:nth-of-type(3) {
    animation-name: menu-open_03;
}
@keyframes menu-open_03 {
    0% {
        width: 38px;
        left: calc(50% - (38px / 2));
    }
    50% {
        width: 38px;
        left: calc(50% - (38px / 2));
    }
    100% {
        width: 0;
        left: calc(50% - 0px);
    }
}
@keyframes menu-close_03 {
    0% {
        width: 0;
        left: calc(50% - 0px);
    }
    50% {
        width: 0;
        left: calc(50% - 0px);
    }
    100% {
        width: 38px;
        left: calc(50% - (38px / 2));
    }
}
.menu_trigger span:nth-of-type(2) {
    top: calc(50% + 10px);
}
.menu_trigger.opend span:nth-of-type(2) {
    animation-name: menu-close_02;
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu_trigger.active span:nth-of-type(2) {
    animation-name: menu-open_02;
}
@keyframes menu-open_02 {
    0% {
        top: calc(50% + 10px);
        transform: rotate(0deg);
    }
    50% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
}
@keyframes menu-close_02 {
    0% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
    50% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 10px);
        transform: rotate(0deg);
    }
}
@media (max-width: 768px) {
.menu_trigger {
    display: block;
}
}


/* ------------------------------------- /
/   index_mv
/* ------------------------------------- */
.index_mv {
    width: min(100%, 1920px);
    height: max(100vh, 985px);
    height: max(calc(100vh - 90px), 40vw);
    margin: 0 auto;
    position: relative;
}
.index_mv::before {
    content: '';
    display: block;
    width: 50.78%;
    height: 102.23%;
    background-image: url('../img/top/mv_03.webp');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -6.88%;
    top: -21.32%;
}
.index_mv::after {
    content: '';
    display: block;
    width: 50.78%;
    height: 102.23%;
    background-image: url('../img/top/mv_04.webp');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -5.57%;
    top: -21.32%;
}
    .index_mv h1 {
        position: relative;
        display: block;
        width: 35.89%;
        background-image: url('../img/top/logo.svg');
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        left: calc(50% - (35.89% / 2));
        top: 22.34%;
        z-index: 1;
        overflow: hidden;
    }
    .index_mv h1::before {
        content: '';
        display: block;
        padding-top: 101.043%;
    }
    .index_mv span {
        display: block;
        width: 100%;
        white-space: nowrap;
        position: absolute;
        left: 100%;
        top: 100%;
        background-color: #f008;
    }

@media (max-width: 768px) {
.index_mv {
    height: 51.30vw;
    height: max(calc(100vh - 70px), 570px);
}
.index_mv::before {
    width: 100%;
    height: 45%;
    left: 0;
    top: -10%;
}
.index_mv::after {
    width: 100%;
    height: 45%;
    right: 0;
    top: auto;
    bottom: 3%;
}
    .index_mv h1 {
        width: min(90%, max(50%, 330px));
        left: calc(50% - (min(90%, max(50%, 330px)) / 2));
        top: calc(50% - (max(50vw, 330px) / 2));
    }
}


/* ------------------------------------- /
/   index_h2
/* ------------------------------------- */
.index_h2 {
    font-size: clamp(3.5rem, 6.0vw, 8.0rem);
}
.index_h2.news {
    font-size: clamp(3.0rem, 6.0vw, 3.5rem);
}

/* ------------------------------------- /
/   index_moew
/* ------------------------------------- */
.index_more {
    width: min(100%, 340px);
    margin: 0 auto;
}
    .index_more a {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 80px;
        font-size: clamp(1.8rem, 3.0vw, 2.0rem);
        border: 2px #fff solid;
        transition-duration: 0.2s;
        position: relative;
    }
    .index_more a:hover {
        background-color:#fff;
        color: var(--color-dark);
        text-decoration: none;
    }
    .index_more a::before {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        border-width: 0 2px 2px 0;
        border-color: #fff;
        border-style: solid;
        position: absolute;
        right: 7.6%;
        top: 50%;
        transform: translateY(-50%) rotateZ(-45deg);
        transition-duration: 0.2s;
    }
    .index_more a:hover::before {
        border-color: var(--color-dark);
    }
@media (max-width: 600px) {
    .index_more a {
        min-height: 70px;
    }
}

/* ------------------------------------- /
/   index_news
/* ------------------------------------- */
.index_news_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 5.00%;
    row-gap: max(5vw, 20px);
    width: min(100%, 768px);
    margin: 0 auto;
}
.index_news_column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    font-size: clamp(1.6rem, 1.5vw, 1.6rem);
}
.index_news_date {
    width: min(100%, 180px);
}
.index_news_title {
    width: calc(100% - 180px);
}
.index_news_title:first-child:last-child {
    width: 100%;
}
@media (max-width: 768px) {
}


/* ------------------------------------- /
/   index_movie
/* ------------------------------------- */
    .index_movie iframe {
        display: block;
        width: 100%;
        height: min(49.5283vw, 788px);
    }


/* ------------------------------------- /
/   index_profile
/* ------------------------------------- */
.index_profile .index_h2 {
    padding: max(min(15.00vw, 210px), 90px) 0 max(min(5.71vw, 80px), 35px);
    background-image: url('../img/top/h2_bg.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.index_profile_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: max(10vw, 40px);
    width: min(100%, 1000px);
    margin: 0 auto;
}
.index_profile_left {
    width: calc(100% - min(60%, 600px));
}
    .index_profile_left iframe {
        display: block;
        width: 100%;
        height: 700px;
    }
.index_profile_right {
    width: min(55%, 600px);
}
    .index_profile_right h3 {
        font-size: clamp(2.0rem, 2.5vw, 2.4rem);
    }
.index_profile_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 5px;
    margin: 25px auto 40px;
    font-size: clamp(1.8rem, 2.0vw, 2.0rem);
}
.index_profile_list dt {
    width: min(100%, 150px);
}
.index_profile_list dd {
    width: calc(100% - 150px);
}
.index_profile_list span {
    display: inline-block;
}
    .index_profile_right iframe {
        display: block;
        width: 100%;
        height: 363px;
    }
    .index_profile_right img {
        width: min(100%, 438px);
        margin: 0 auto;
    }
.index_profile_wrapper + iframe {
        display: block;
        width: 100%;
        height: max(min(40vw, 400px), 250px);
}

@media (max-width: 768px) {
.index_profile_wrapper {
    flex-direction: column-reverse;
}
.index_profile_left {
    width: 100%;
}
    .index_profile_left iframe {
        height: 92vw;
    }
.index_profile_right {
    width: 100%;
}
    .index_profile_right h3 {
    }
.index_profile_list {
    font-size: clamp(1.6rem, 3.5vw, 1.8rem);
}
.index_profile_list dt {
    width: min(100%, 100px);
}
.index_profile_list dd {
    width: calc(100% - 100px);
}
}


/* ------------------------------------- /
/   index_menu
/* ------------------------------------- */
.index_menu_wrapper {
    position: relative;
}
.index_menu_wrapper::before {
    content: '';
    display: block;
    width: 76.46%;
    width: min(82.39vw, calc(580px + 46%));
    height: 86.96%;
    background-color: var(--color-navy);
    position: absolute;
    right: 0;
    top: 0;
}
.index_menu_inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    position: relative;
}
    .index_menu_wrapper h3 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 20%;
        min-height: min(30vw, 483px);
        padding: 40px 0;
    }
        .index_menu_wrapper h3 span {
            display: block;
            writing-mode: vertical-rl;
            font-size: clamp(4.0rem, 5.0vw, 6.0rem);
            letter-spacing: 0.05em;
        }
    
.index_menu_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 20%);
}
.index_menu_column {
    width: min(33%, 340px);
    font-size: clamp(2.0rem, 2.5vw, 2.4rem);
}
    .index_menu_column img {
        transition-duration: 0.4s;
        transition-timing-function: ease;
    }
    .index_menu_column img:hover {
        transform: scale(1.15,1.15);
    }

/*かつぶし太郎*/
.index_menu_wrapper:nth-child(2n+1)::before {
    right: auto;
    left: 0;
}
.index_menu_wrapper:nth-child(2n+1) .index_menu_inner {
    flex-direction: row;
}

@media (max-width: 768px) {
.index_menu_inner {
    align-items: flex-start;
}
    .index_menu_wrapper h3 {
        min-height: 0;
    }
        .index_menu_wrapper h3 span {
            font-size: clamp(3.0rem, 8.0vw, 4.0rem);
        }
.index_menu_list {
    flex-direction: column;
    justify-content: center;
}
.index_menu_column {
    width: min(100%, 300px);
}
}

/* ------------------------------------- /
/   index_commitment
/* ------------------------------------- */
.index_commitment_header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
    .index_commitment_header .index_h2 {
        width: 40%;
    }
.index_commitment_right {
    width: 60%;
    font-size: clamp(2.0rem, 2.5vw, 2.4rem);
}
.index_commitment_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.index_commitment_inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 31.25vw;
    margin: 0 10px;
    padding: 40px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.index_commitment_inner::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    left: 0;
    top: 0;
}
.index_commitment_column.kodawari_01 .index_commitment_inner {
    background-image: url('../img/top/kodawari_01.webp?3');
}
.index_commitment_column.kodawari_02 .index_commitment_inner {
    background-image: url('../img/top/kodawari_02.webp?3');
}
.index_commitment_column.kodawari_03 .index_commitment_inner {
    background-image: url('../img/top/kodawari_03.webp?3');
}
.index_commitment_column.kodawari_04 .index_commitment_inner {
    background-image: url('../img/top/kodawari_04.webp');
}
.index_commitment_column.kodawari_05 .index_commitment_inner {
    background-image: url('../img/top/kodawari_05.webp');
}
.index_commitment_column.kodawari_06 .index_commitment_inner {
    background-image: url('../img/top/kodawari_06.webp');
}
    .index_commitment_inner h3 {
        margin: 0 10px;
        font-size: clamp(4.0rem, 3.5vw, 6.8rem);
        position: relative;
    }
.index_commitment_text {
    width: min(80%, 530px);
    margin: 0 auto;
    font-size: clamp(1.8rem, 2.0vw, 2.0rem);
    position: relative;
}
@media (max-width: 600px) {
.index_commitment_header {
    row-gap: 30px;
}
    .index_commitment_header .index_h2 {
        width: 100%;
    }
.index_commitment_right {
    width: 100%;
    font-size: clamp(1.6rem, 3.5vw, 2.0rem);
}
.index_commitment_inner {
    margin: 0 5px;
    padding: 30px 0;
}
    .index_commitment_inner h3 {
        font-size: clamp(3.0rem, 8.0vw, 4.0rem);
    }
.index_commitment_text {
    font-size: clamp(1.6rem, 3.5vw, 1.8rem);
}
}

/* ------------------------------------- /
/   index_youtube_link
/* ------------------------------------- */
.index_youtube_link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    background-color: #fff;
}
.index_youtube_link:hover {
    text-decoration: none;
}
.index_youtube_link::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.index_youtube_link::after {
    content: '';
    display: block;
    width: 96%;
    height: 87%;
    border: 3px #A51616 solid;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition-duration: 0.4s;
}
    .index_youtube_link img {
        width: calc(100% - min(60%, 626px));
        object-fit: cover;
        position: relative;
    }
.index_youtube_inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: min(60%, 626px);
    padding: min(5vw, 20px) min(5vw, 20px) min(8vw, 30px) min(5vw, 20px);
    background-color: var(--color-navy);
    transition-duration: 0.4s;
}
.index_youtube_link:hover .index_youtube_inner {
    background-color: #fff;
    color: #A51616;
}
.index_youtube_link:hover::after {
}

    .index_youtube_inner h2 {
        font-size: clamp(4.0rem, 4.0vw, 5.8rem);
    }
    .index_youtube_inner p {
        font-size: clamp(1.8rem, 2.0vw, 2.0rem);
    }
@media (max-width: 768px) {
.index_youtube_link::after {
    border: 2px #A51616 solid;
}
    .index_youtube_inner h2 {
        font-size: clamp(3.0rem, 5.0vw, 4.0rem);
    }
    .index_youtube_inner p {
        font-size: clamp(1.6rem, 2.5vw, 1.8rem);
    }
}
@media (max-width: 600px) {
.index_youtube_link::after {
    height: 96%;
}
    .index_youtube_link img {
        width: 100%;
        height: 50vw
    }
.index_youtube_inner {
    width: 100%;
}
}

/* ------------------------------------- /
/   footer_link
/* ------------------------------------- */
.footer_link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer_link a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    min-height: min(27vw, 517px);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-size: clamp(3.5rem, 6.0vw, 8.0rem);
    position: relative;
}
.footer_link a:first-child {
    background-image: url('../img/top/footer_01.webp');
}
.footer_link a:last-child {
    background-image: url('../img/top/footer_02.webp');
}
.footer_link a:hover {
    text-decoration: none;
}
.footer_link a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    top: 0;
    transition-duration: 0.3s;
}
.footer_link a:hover::before {
    opacity: 0;
}
.footer_link span {
    position: relative;
}
@media (max-width: 600px) {
.footer_link a {
    width: 100%;
    min-height: 200px;
    font-size: 3.0rem;
}
}


/* ------------------------------------- /
/   footer_wrapper
/* ------------------------------------- */
.footer_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: min(6vw, 60px);
}
.footer_left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: min(70%, 800px);
}
.footer_logo {
    width: min(calc(100% - 520px), 262px);
    transition-duration: 0.2s;
}
.footer_logo:hover {
    opacity: 0.5;
}
.footer_profile {
    width: min(100%, 500px);
}
    .footer_profile > a {
        font-size: 2.0rem;
    }
    .footer_profile a {
        transition-duration: 0.2s;
    }
    .footer_profile a:hover {
        opacity: 0.5;
        text-decoration: none;
    }
.footer_profile_list {
    font-size: 1.8rem;
}
    .footer_profile_list span {
        display: none;
    }
.footer_right {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: min(30%, 300px);
}
.footer_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 1.8rem;
}
    .footer_nav a {
        display: inline-block;
        border-bottom: 1px transparent solid;
        transition-duration: 0.2s;
    }
    .footer_nav a:hover {
        text-decoration: none;
        border-color: #fff;
    }
.footer_copyright {
    margin-bottom: 30px;
}
@media (max-width: 1200px) {
.footer_copyright {
    margin-bottom: 0;
}
}
@media (max-width: 1000px) {
.footer_wrapper {
    justify-content: center;
}
.footer_left {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
}
.footer_logo {
    width: min(50%, 262px);
}
.footer_profile {
    text-align: center;
}
.footer_profile_list {
    text-align: left;
    font-size: clamp(1.5rem, 3.0vw, 1.6rem);
}
.footer_right {
    width: min(100%, 300px);
}
.footer_copyright {
    text-align: center;
    margin: 40px auto 0;
}
}
@media (max-width: 450px) {
.footer_profile_list {
    width: min(100%, 250px);
    margin: 0 auto;
}
    .footer_profile_list span {
        display: inline;
    }
}


/* ------------------------------------- /
/   page_header
/* ------------------------------------- */
.page_header {
    position: relative;
}

.page_header::before {
    content: '';
    display: block;
    width: 36.88vw;
    height: 44.69vw;
    position: absolute;
    right: -2.6vw;
    top: 40%;
    transform: translateY(-50%);
    background-image: url('../img/top/h2_bg.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.page_h1 {
    font-size: clamp(3.5rem, 6.0vw, 8.0rem);
}
.page_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}
.page_nav_column {
    position: relative;
    padding: 0 25px 0 0;
}
.page_nav_column:not(:has(p))::after {
    content: '>';
    display: block;
    position: absolute;
    right: 7px;
    top: 0;
}


/* ------------------------------------- /
/   news_list
/* ------------------------------------- */
.news_list {
    position: relative;
}
@media (max-width: 768px) {
    .news_list .index_news_list {
        column-gap: 4%;
        width: 100%;
    }
    .news_list .index_news_column {
        width: 48%;
    }
}
@media (max-width: 500px) {
    .news_list .index_news_list {
        width: min(100%, 300px);
    }
    .news_list .index_news_column {
        width: 100%;
    }
}


.pagination-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 3.86%;
    width: min(100%, 440px);
    margin: 0 auto;
    font-size: 1.8rem;
}

.pagination-list .previous {
    margin: 0 auto 0 0;
}
.pagination-list .next {
    margin: 0 0 0 auto;
}
.pagination-list .previous a,
.pagination-list .next a {
    display: block;
    width: 30px;
    height: 30px;
    background-image: url('../img/top/arrow_white.svg');
    background-position: center;
    background-size: 16px auto;
    background-repeat: no-repeat;
    transition-duration: 0.2s;
    position: relative;
    overflow-hidden;
}
.pagination-list .previous a {
    transform: rotateZ(180deg);
}
.pagination-list .previous a:hover,
.pagination-list .next a:hover {
    opacity: 0.5;
}
.pagination-list .previous span,
.pagination-list .next span {
    position: absolute;
    left: 100%;
    top: 100%;
}
.pagination-list .current span,
.pagination-list .num a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    min-height: 60px;
    line-height: 1.2;
    border: 2px transparent solid;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    transition-duration: 0.2s;
}
.pagination-list .current span {
    border-color: #fff;
}
.pagination-list .num a:hover {
    border-color: #fff;
    text-decoration: none;
}
@media (max-width: 600px) {
.pagination-list .current span,
.pagination-list .num a {
    width: 32px;
    min-height: 38px;
}
}

/* ------------------------------------- /
/   news_single
/* ------------------------------------- */
.single_wrapper {
    padding: min(10vw, 130px) min(15vw, 200px);
}
.single_date {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}
.single_title {
    font-size: clamp(2.2rem, 5.0vw, 4.0rem);
    border-bottom: 3px #fff solid;
}
.single__thumb {
    width: 80%;
    margin: 0 auto;
}
.single_detail p {
    font-size: clamp(1.6rem, 2.2vw, 2.0rem);
    margin: 20px 0;
}
.single_detail h2 {
    font-size: clamp(3.0rem, 4.5vw, 4.0rem);
    margin: 40px 0 20px;
}
.single_detail h3 {
    font-size: clamp(2.6rem, 4.0vw, 3.6rem);
    margin: 40px 0 20px;
}
.single_detail h4 {
    font-size: clamp(2.4rem, 3.5vw, 3.0rem);
    margin: 40px 0 20px;
}
.single_detail h5 {
    font-size: clamp(2.0rem, 2.8vw, 2.4rem);
    margin: 40px 0 15px;
}
.single_detail h6 {
    font-size: clamp(1.6rem, 2.3vw, 2.0rem);
    margin: 40px 0 10px;
}
@media (max-width: 1000px) {
.single_wrapper {
    padding: max(6vw, 30px) 5vw;
}
}
@media (max-width: 600px) {
.single_title {
    border-bottom: 1px #fff solid;
}
}

/* ------------------------------------- /
/   single_pagenation
/* ------------------------------------- */
.single_pagenation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.single_return {
    width: min(100%, 340px);
    margin: 0 auto;
}
    .single_return a {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 80px;
        font-size: clamp(1.8rem, 3.0vw, 2.0rem);
        border: 2px #fff solid;
        transition-duration: 0.2s;
        position: relative;
    }
    .single_return a:hover {
        background-color:#fff;
        color: var(--color-dark);
        text-decoration: none;
    }
    .single_return a::before {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        border-width: 0 2px 2px 0;
        border-color: #fff;
        border-style: solid;
        position: absolute;
        left: 7.6%;
        top: 50%;
        transform: translateY(-50%) rotateZ(135deg);
        transition-duration: 0.2s;
    }
    .single_return a:hover::before {
        border-color: var(--color-dark);
    }
.single_previous {
    display: block;
    padding: 5px 10px 5px 25px;
    font-size: clamp(1.8rem, 3.0vw, 2.0rem);
    position: relative;
    line-height: 1.2;
}
.single_previous::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-width: 0 2px 2px 0;
    border-color: #fff;
    border-style: solid;
    position: absolute;
    left: 7.6%;
    top: 50%;
    transform: translateY(-50%) rotateZ(135deg);
}
.single_next {
    display: block;
    padding: 5px 25px 5px 10px;
    font-size: clamp(1.8rem, 3.0vw, 2.0rem);
    position: relative;
    line-height: 1.2;
}
.single_next::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-width: 0 2px 2px 0;
    border-color: #fff;
    border-style: solid;
    position: absolute;
    right: 7.6%;
    top: 50%;
    transform: translateY(-50%) rotateZ(-45deg);
}
@media (max-width: 768px) {
.single_pagenation {
    padding: 0 0 120px 0;
}
.single_return {
    position: absolute;
    left: calc(50% - (min(100%, 340px) / 2));
    bottom: 0;
}
}
@media (max-width: 600px) {
    .single_return a {
        min-height: 70px;
    }
}

/* ------------------------------------- /
/   menu
/* ------------------------------------- */
.menu_wrapper {
    position: relative;
}
.menu_wrapper::before {
    content: '';
    display: block;
    width: min(82.39vw, calc(580px + 46%));
    height: 90%;
    background-color: var(--color-navy);
    position: absolute;
    right: 0;
    top: 0;
}
.menu_inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    row-gap: 20px;
    width: 100%;
    position: relative;
}
    .menu_wrapper h2 {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        width: min(10%, 130px);
    }
        .menu_wrapper h2 span {
            display: block;
            writing-mode: vertical-rl;
            font-size: clamp(4.0rem, 5.0vw, 6.0rem);
            letter-spacing: 0.05em;
        }
    
.menu_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: calc((100% - (min(32%, 400px) * 3)) / 2);
    align-items: center;
    row-gap: max(min(6vw, 80px), 40px);
    width: calc(100% - 10%);
}
.menu_column {
    width: min(32%, 400px);
    font-size: clamp(1.8rem, 2.0vw, 2.4rem);
}
    .menu_column img {
        transition-duration: 0.4s;
        transition-timing-function: ease;
    }
    .menu_column img:hover {
        transform: scale(1.15,1.15);
    }


/*左右反転*/
.menu_wrapper:nth-child(2n+1)::before {
    right: auto;
    left: 0;
}
.menu_wrapper:nth-child(2n+1) .menu_inner {
    flex-direction: row;
}


/*つけ麺*/
.menu_wrapper:nth-child(3)::before {
    height: 72%;
}
.menu_wrapper:nth-child(3) .menu_inner {
    align-items: center;
}

/*サイドメニュー*/
.menu_wrapper:nth-child(5)::before {
    height: 82%;
}

@media (max-width: 768px) {
    .menu_wrapper h2 {
        width: 50px;
    }
        .menu_wrapper h2 span {
            font-size: 2.6rem;
        }
.menu_column {
    width: 48%;
    font-size: clamp(1.5rem, 3.0vw, 1.8rem);
}
.menu_list {
    column-gap: calc(100% - (48% * 2));
    width: calc(100% - 50px);
}
}

@media (max-width: 450px) {
    .menu_wrapper h2 {
        width: 100%;
    }
        .menu_wrapper h2 span {
            writing-mode: horizontal-tb;
        }
.menu_list {
    width: 100%;
}
}

/* ------------------------------------- /
/   menu_other
/* ------------------------------------- */
.menu_other_wrapper {
    border: 3px #fff solid;
    padding: min(11.43vw, 155px) min(10vw, 140px) min(8.57vw, 115px);
}
.menu_other_title {
    font-size: clamp(4.0rem, 5.0vw, 6.0rem);
    transform: translateY(50%);
}
    .menu_other_title span {
        display: inline-block;
    }
.menu_other_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: min(3vw, 35px);
    font-size: clamp(2.0rem, 2.0vw, 2.4rem);
}
.menu_other_list + .menu_other_list {
    margin: max(min(7.2vw, 95px), 40px) 0 0;
    padding: max(min(7.2vw, 95px), 40px) 0 0;
    border-top: 3px #fff solid;
}
    .menu_other_list li {
        width: min(33%, 340px);
    }
@media (max-width: 1000px) {
.menu_other_wrapper {
    padding-left: 5vw;
    padding-right: 5vw;
}
}
@media (max-width: 768px) {
.menu_other_title {
    font-size: 2.6rem;
}
.menu_other_wrapper {
    width: min(100%, 400px);
    margin: 0 auto;
    padding-top: 10vw;
    padding-bottom: 10vw;
}
.menu_other_list {
    row-gap: 10px;
     font-size: clamp(1.5rem, 3.0vw, 2.0rem);
}
    .menu_other_list li {
        width: 100%;
    }
}
@media (max-width: 600px) {
.menu_other_wrapper {
    border: 1px #fff solid;
}
.menu_other_list + .menu_other_list {
    border-top: 1px #fff solid;
}
}


/* ------------------------------------- /
/   index_instagram_wrapper
/* ------------------------------------- */
.index_instagram_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
    .index_instagram_wrapper img {
        width: calc((100% - 40px) / 4);
    }
@media (max-width: 768px) {
    .index_instagram_wrapper img {
        width: calc((100% - 20px) / 3);
    }
}
@media (max-width: 600px) {
    .index_instagram_wrapper img {
        width: calc((100% - 10px) / 2);
    }
}



