/* ===============================
    202508追記 header-footer用
================================= */
/* ==== ここは “ヘッダー/フッター専用” のミニリセット（この中だけ適用） ==== */
body {
    margin: initial;
}

.header *,
.footer * {
    box-sizing: border-box;
}

.header,
.footer :where(p) {
    margin: 0;
}

header img,
footer img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.header,
.footer,
.header__nav,
.header__nav-list,
.header__dropdown,
.sp-nav :where(ul, ol, li) {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ==== 実際のデザイン ==== */

.header nav ul li a {
    /* margin: initial;
    padding: initial; */
    color: #333333;
}

.footer nav ul li a {
    margin: initial;
    padding: initial;
    color: #FFFFFF;
}

.header__dropdown li {
    margin: initial;
    padding: initial;
    list-style: none;
}

.footer__nav-list,
.footer__nav-col ,
.footer__link-list,
.footer__child-list {
    list-style: none;
    padding: initial;
}

.footer__hours-list,
.footer__hours-row,
.footer__hours-note {
    margin: initial;
}

/*   ボタンタグ設定   */
.header button {
    -webkit-appearance: none;
    /* 1 */
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit;
    /* 2 */
    position: initial;

}

/* addressタグ リセット */
address {
    font-style: normal;
}

/* pc幅での電話発信しない */
@media (any-hover: hover) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

/* aタグのスタイルリセット*/
a {
    text-decoration: none;
}

a[href^="tel:"] {
    text-decoration: none;
}

/* 横スクロール防止 */
html,
body {
    overflow-x: clip;
}

/* 基本
***************************************************************/
.header,
.footer {
    font-size: 16px;
    color: #333333;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}

@media screen and (max-width: 767px) {
    html {
        font-size: 4.2666666667vw;
    }
}

/* コンテンツ幅
***************************************************************/
.inner {
    max-width: 83.3333333333vw;
    margin-inline: auto;
    width: calc(100% - 40px);
}

@media screen and (max-width: 767px) {
    .inner {
        padding-inline: 4vw;
        width: 100%;
        max-width: initial;
    }
}

@media screen and (min-width: 1441px) {
    .inner {
        max-width: 1200px;
    }
}

/* PC・SP 非表示
  ***************************************************************/
.sp-only {
    display: none;
}

@media screen and (max-width: 767px) {
    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }
}

/* aタグ/tel:/addressタグ スタイルリセット
  ***************************************************************/
a {
    text-decoration: none;
}

a[href^="tel:"] {
    text-decoration: none;
}

address {
    font-style: normal;
}


/* マウスホバーがあるデバイスでのみアニメーション
***************************************************************/
@media (any-hover: hover) {
    a {
        transition: opacity, 0.3s ease;
    }

    .btn {
        transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }

    a:hover {
        opacity: 0.7;
    }

    .btn:hover {
        background: #FFFFFF;
    }
}

/* ===============================
    202508追記 既存のcssを上書き
================================= */
#wrap {
    margin-top: 5.5555555556vw;
}

@media screen and (max-width: 767px) {
    #wrap {
        margin-top: 12vw;
    }
}

@media screen and (min-width: 1441px) {
    #wrap {
        margin-top: 80px;
    }
}

/* セクション間の余白
***************************************************************/
.section-layout {
    padding-top: 5.5555555556vw;
    padding-bottom: 5.5555555556vw;
}

@media screen and (max-width: 767px) {
    .section-layout {
        padding-top: 13.3333333333vw;
        padding-bottom: 13.3333333333vw;
    }
}

@media screen and (min-width: 1441px) {
    .section-layout {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.section-layout--lg {
    padding-top: 8.3333333333vw;
}

@media screen and (max-width: 767px) {
    .section-layout--lg {
        padding-top: 16vw;
        padding-bottom: 16vw;
    }
}

@media screen and (min-width: 1441px) {
    .section-layout--lg {
        padding-top: 120px;
    }
}




/* header
***************************************************************/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(247, 255, 255, 0.9);
    z-index: 1000;
    height: 5.5555555556vw;
}

@media screen and (max-width: 767px) {
    .header {
        height: 12vw;
    }
}

@media screen and (min-width: 1441px) {
    .header {
        height: 80px;
    }
}

.header__inner,
.header__nav,
.header__nav-list,
.header__nav-item,
.header__nav-link {
    height: 100%;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    max-width: 14.7916666667vw;
    width: 100%;
    height: 4.1666666667vw;
}

.header__logo img {
    aspect-ratio: 213/60;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .header__logo {
        max-width: 28.2666666667vw;
        height: 8vw;
    }
}

@media screen and (min-width: 1441px) {
    .header__logo {
        max-width: 213px;
        height: 60px;
    }
}

.header__logo-link {
    display: block;
}

.header__nav-list {
    display: flex;
    gap: 2.7777777778vw;
    margin: initial;
    padding: initial;
}

@media screen and (min-width: 1441px) {
    .header__nav-list {
        gap: 40px;
    }
}

.header__nav-link {
    color: #333333;
    font-size: 1.1111111111vw;
    font-weight: 500;
    transition: color 0.3s ease;
    display: grid;
    place-content: center;
    position: relative;
    cursor: pointer;
    margin: initial;
    padding: initial;
}

@media screen and (min-width: 1441px) {
    .header__nav-link {
        font-size: 16px;
    }
}

.header__nav-link::after {
    content: "";
    position: absolute;
    bottom: 1.7361111111vw;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #0279B3;
    transition: width 0.3s ease;
}

@media screen and (min-width: 1441px) {
    .header__nav-link::after {
        bottom: 25px;
    }
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__nav-link:hover {
    color: #0279B3;
    opacity: 1;
}

.header__nav-item {
    position: relative;
}

/* ドロップダウンメニュー */
.header__dropdown {
    position: absolute;
    top: 85%;
    left: 0;
    background-color: #fff;
    padding: 1.25vw;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 51, 72, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: 9.5833333333vw;
    height: auto;
    min-height: 7.6388888889vw;
    z-index: 10;
}

@media screen and (min-width: 1441px) {
    .header__dropdown {
        padding: 18px;
        width: 138px;
        min-height: 110px;
    }
}

/* ホバー時（表示） */
.header__nav-item--has-child:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header__dropdown-link {
    color: #333333;
    font-size: 0.9722222222vw;
    font-weight: 500;
    line-height: 2.1;
    transition: color 0.3s ease;
    position: relative;
    width: 100%;
}

@media screen and (min-width: 1441px) {
    .header__dropdown-link {
        font-size: 14px;
    }
}

.header__dropdown-link:hover {
    color: #0279B3;
    opacity: 1;
}

/* ハンバーガーボタン */
@media screen and (max-width: 767px) {
    .header__hamburger {
        width: 9.3333333333vw;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.3333333333vw;
        padding: 0;
        z-index: 1000;
    }
}

@media screen and (max-width: 767px) {
    .header__hamburger-bar {
        display: block;
        width: 9.3333333333vw;
        height: 0.8vw;
        background: linear-gradient(91deg, #1F609C 0%, #0290D4 99.35%);
        border-radius: 5px;
        position: relative;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }
}

@media screen and (max-width: 767px) {
    .header__hamburger.is-open .header__hamburger-bar:nth-child(1) {
        transform: rotate(45deg);
        top: 2.4vw;
        left: 2.9333333333vw;
    }
}

@media screen and (max-width: 767px) {
    .header__hamburger.is-open .header__hamburger-bar:nth-child(2) {
        opacity: 0;
    }
}

@media screen and (max-width: 767px) {
    .header__hamburger.is-open .header__hamburger-bar:nth-child(3) {
        transform: rotate(-45deg);
        top: -1.6vw;
        left: 2.6666666667vw;
    }
}

/* SPナビ
  ***************************************************************/
@media screen and (max-width: 767px) {
    .sp-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100svh;
        background: #F7FFFF;
        z-index: 998;
        padding-top: 24vw;
        transform: translateX(100%);
        overflow-y: auto;
        overflow-x: hidden;
        transition: transform 0.3s 0s ease;
    }
}

@media screen and (max-width: 767px) {
    .sp-nav::before {
        content: "";
        position: absolute;
        top: 98.6666666667vw;
        left: -30.4vw;
        background-image: url("../../images/common/decoration-fish-b.svg");
        background-size: contain;
        background-repeat: no-repeat;
        width: 204.8vw;
        height: 79.2vw;
        z-index: -1;
    }
}

@media screen and (max-width: 767px) {
    .sp-nav.is-open {
        transform: translateX(0);
    }
}

@media screen and (max-width: 767px) {
    .sp-nav__list {
        display: grid;
        gap: 10.6666666667vw;
        width: 39.2vw;
        margin-inline: auto;
        white-space: nowrap;
    }
}

@media screen and (max-width: 767px) {
    .sp-nav__item {
        color: #333333;
        font-size: 4.2666666667vw;
        font-weight: 600;
        line-height: 1.5;
        display: block;
        transition: color 0.3s ease;
    }
}

@media screen and (any-hover: hover) and (max-width: 767px) {
    .sp-nav__item a:hover {
        color: #0279B3;
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {
    .sp-nav__dropdown {
        margin-top: 4.2666666667vw;
        padding-block: 4.2666666667vw;
        position: relative;
        margin-inline: calc(50% - 50vi);
    }
}

@media screen and (max-width: 767px) {
    .sp-nav__dropdown::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vi;
        height: 100%;
        transform: translate(-50%, -50%);
        background-color: #FFFFFF;
        z-index: -1;
    }
}

@media screen and (max-width: 767px) {
    .sp-nav__dropdown-item {
        transform: translateX(32.2666666667vw);
    }
}

@media screen and (max-width: 767px) {
    .sp-nav__dropdown-item:not(:first-child) {
        margin-top: 6.6666666667vw;
    }
}

@media screen and (max-width: 767px) {
    .sp-nav__dropdown-link {
        color: #333333;
        font-size: 3.7333333333vw;
        font-weight: 600;
        line-height: 1.5;
        padding-left: 3.7333333333vw;
    }
}

/* レストラン・ドロップダウンメニュー */
@media screen and (max-width: 767px) {
    .sp-nav__item-header {
        position: relative;
        cursor: pointer;
    }
}

@media screen and (max-width: 767px) {
    .sp-nav__item-content {
        display: none;
    }

    /* .sp-nav__item-header.open .sp-nav__item-content {
        display: block;
    } */
}

@media screen and (max-width: 767px) {
    .sp-nav__item-header::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 3.2vw;
        height: 3.2vw;
        background-image: url("../../images/common/icon-arrow-spnav-black.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: transform 0.3s ease, background-image 0.3s ease;
    }
}

@media screen and (max-width: 767px) {
    .sp-nav__item-header.open {
        color: #0279B3;
    }
}

@media screen and (max-width: 767px) {
    .sp-nav__item-header.open::after {
        transform: translateY(-50%) rotate(180deg);
        background-image: url("../../images/common/icon-arrow-spnav-blue.svg");
    }
}

/* ハンバーガーメニュー開いた時の×ボタン位置 */
@media screen and (max-width: 767px) {
    .header__hamburger.is-open {
        position: fixed;
        top: 4vw;
        right: 5.3333333333vw;
    }
}

/* ハンバーガーメニューのスクロール制御 - モーダルと同じ方式 */
@media screen and (max-width: 767px) {
    body.js-fixed {
        overflow: hidden;
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
        /* height: 100% は削除（不要） */
    }
}


/* ===============================
    footer フッター
================================= */
/* ベース */
.footer {
    position: relative;
    color: #FFFFFF;
    background-color: #082846;
    padding-block: 5.5555555556vw 5.5555555556vw;
    z-index: 1;
    margin-top: 4.1666666667vw;
}

@media screen and (min-width: 1441px) {
    .footer {
        margin-top: 60px;
        padding-block: 80px 80px;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        padding-top: 13.3333333333vw;
        padding-bottom: 10.6666666667vw;
        margin-top: 8.5333333333vw;
    }
}

.footer::before {
    content: "";
    position: absolute;
    bottom: 7%;
    right: 1%;
    width: 43.5416666667vw;
    aspect-ratio: 627/265;
    background-image: url(../../images/common/decoration-fish-i.svg);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

@media screen and (min-width: 1441px) {
    .footer::before {
        width: 627px;
    }
}

@media screen and (max-width: 767px) {
    .footer::before {
        aspect-ratio: 457/191;
        width: 121.8666666667vw;
        height: 50.9333333333vw;
        top: 13%;
    }
}

/* レイアウト */
.footer__inner {
    display: flex;
    gap: 12.5vw;
}

@media screen and (min-width: 1441px) {
    .footer__inner {
        gap: 180px;
    }
}

@media screen and (max-width: 767px) {
    .footer__inner {
        flex-direction: column;
        gap: initial;
    }
}

/* 左カラム */
.footer__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4305555556vw;
}

@media screen and (max-width: 767px) {
    .footer__brand {
        flex-direction: row;
        gap: 4.2666666667vw;
    }
}

.footer__logo {
    aspect-ratio: 146/193;
    max-width: 10.1388888889vw;
    width: 100%;
}

@media screen and (min-width: 1441px) {
    .footer__logo {
        max-width: 146px;
    }
}

@media screen and (max-width: 767px) {
    .footer__logo {
        max-width: 19.4666666667vw;
    }
}

.footer__logo img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 2.0833333333vw;
}

@media screen and (min-width: 1441px) {
    .footer__info {
        gap: 30px;
    }
}

@media screen and (min-width: 1441px) {
    .footer__info {
        gap: 16px;
    }
}

.footer__address {
    font-style: normal;
}

.footer__organization {
    font-size: 1.3888888889vw;
    font-weight: 500;
    line-height: 1;
}

@media screen and (min-width: 1441px) {
    .footer__organization {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .footer__organization {
        font-size: 4.8vw;
    }
}

.footer__addr {
    margin-top: 1.1111111111vw;
}

@media screen and (min-width: 1441px) {
    .footer__addr {
        margin-top: 16px;
    }
}

@media screen and (max-width: 767px) {
    .footer__addr {
        margin-top: 4.2666666667vw;
    }
}

.footer__addr,
.footer__tel,
.footer__tel a{
    font-size: 1.1111111111vw;
    font-weight: 500;
    line-height: 2;
    color: #FFFFFF;
}

@media screen and (min-width: 1441px) {

    .footer__addr,
    .footer__tel {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {

    .footer__addr,
    .footer__tel {
        font-size: 4vw;
        line-height: 1.6;
    }
}

/* 営業時間（dl） */
.footer__hours-list {
    display: grid;
    grid-template-columns: max-content 1fr;
    row-gap: 0.5555555556vw;
    align-items: baseline;
    color: #FFF;
    font-size: 1.1111111111vw;
    font-weight: 500;
    line-height: 1.8;
}

@media screen and (min-width: 1441px) {
    .footer__hours-list {
        row-gap: 8px;
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .footer__hours-list {
        row-gap: 1.6vw;
        font-size: 3.7333333333vw;
        margin-top: 13.3333333333vw;
        max-width: 66.6666666667vw;
        margin-inline: auto;
    }
}

/* 左カラム：dt（常に1列目） */
.footer__hours-label {
    grid-column: 1;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .footer__hours-label {
        white-space: normal;
    }
}

/* 右カラム：dd（全て2列目に固定） */
.footer__hours-row,
.footer__hours-note {
    grid-column: 2;
}

/* 下の案内文（枠の外に置く場合） */
.footer__hours-attn {
    margin-top: 0.5555555556vw;
    color: #FFF;
    font-size: 1.1111111111vw;
    font-weight: 500;
    line-height: 1.8;
}

@media screen and (min-width: 1441px) {
    .footer__hours-attn {
        margin-top: 8px;
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .footer__hours-attn {
        font-size: 3.4666666667vw;
        margin-top: 2.6666666667vw;
        text-align: center;
    }
}

/* 右カラム：ナビ */
@media screen and (max-width: 767px) {
    .footer__nav {
        /* 差分なし */
    }
}

.footer__nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.4722222222vw;
    color: #FFFFFF;
    font-size: 1.1111111111vw;
    font-weight: 500;
    line-height: 1.4375;
}

@media screen and (min-width: 1441px) {
    .footer__nav-list {
        font-size: 16px;
        gap: 50px;
    }
}

@media screen and (max-width: 767px) {
    .footer__nav-list {
        width: 45.3333333333vw;
        margin-inline: auto;
        grid-template-columns: 1fr;
        gap: 5.3333333333vw;
        font-size: 4vw;
        justify-items: center;
        margin-top: 13.3333333333vw;
    }
}

.footer__nav-col {
    display: grid;
    gap: 1.3888888889vw;
}

@media screen and (min-width: 1441px) {
    .footer__nav-col {
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .footer__nav-col {
        gap: 5.3333333333vw;
        justify-items: center;
        width: 100%;
    }
}

.footer__link-list {
    display: flex;
    flex-direction: column;
    gap: 1.3888888889vw;
}

@media screen and (min-width: 1441px) {
    .footer__link-list {
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .footer__link-list {
        gap: 5.3333333333vw;
        width: 100%;
    }
}

.footer__link-item {
    font-size: 1.1111111111vw;
}

@media screen and (min-width: 1441px) {
    .footer__link-item {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .footer__link-item {
        font-size: 4vw;
    }
}

.footer__link {
    transition: opacity 0.3s ease;
    position: relative;
    background-color: #082846;
}

@media screen and (max-width: 767px) {
    .footer__link {
        padding-inline: 2.6666666667vw;
    }
}

.footer__link::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #FFFFFF;
    transition: width 0.3s ease;
}

@media (any-hover: hover) {
    .footer__link:hover {
        opacity: 0.5;
    }

    .footer__link:hover::before {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .footer__link-item--has-child {
        padding-inline: 2.6666666667vw;
    }
}

.footer__child-list {
    padding-inline-start: 1.3888888889vw;
    margin-top: 0.6944444444vw;
    display: flex;
    flex-direction: column;
    gap: 0.6944444444vw;
}

@media screen and (min-width: 1441px) {
    .footer__child-list {
        padding-inline-start: 20px;
        margin-top: 10px;
        gap: 10px;
    }
}

@media screen and (max-width: 767px) {
    .footer__child-list {
        padding-inline-start: 6.1333333333vw;
        margin-top: 2.6666666667vw;
        gap: 2.6666666667vw;
    }
}

.footer__child-link {
    display: inline-block;
    font-size: 0.9722222222vw;
    line-height: 1.428;
    transition: opacity 0.3s ease;
    position: relative;
}

@media screen and (min-width: 1441px) {
    .footer__child-link {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .footer__child-link {
        font-size: 3.4666666667vw;
    }
}

.footer__child-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 4px;
    height: 1px;
    background-color: #FFFFFF;
}

@media screen and (max-width: 767px) {
    .footer__child-link::before {
        left: -8px;
    }
}

@media (any-hover: hover) {
    .footer__child-link:hover {
        opacity: 0.5;
    }
}

/* コピーライト */
.footer__copy {
    text-align: center;
    font-size: 0.9722222222vw;
    margin-block-start: 4.1666666667vw;
}

@media screen and (min-width: 1441px) {
    .footer__copy {
        font-size: 14px;
        margin-block-start: 60px;
    }
}

@media screen and (max-width: 767px) {
    .footer__copy {
        font-size: 3.2vw;
        margin-block-start: 10.6666666667vw;
    }
}