:root {
    --base-color-g1: #f6ebde;
    --base-color-g2: #fff6e9;
    --highlight-color-g1: #d2101a;
    --highlight-color-g2: #e8440a;
    --text-color-1: #68202a;
    --text-color-2: #bd0000;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
p, h1, h2, h3, h4, h5, h6, a, button {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 1.0;
}
img {
    display: block;
}
a {
    text-decoration: none;
    transition: 0.1s;
}
a:hover {
    opacity: 0.7;
    transition: 0.2s;
}
a:active {
    filter: none;
    box-shadow: none;
}
.shippori-mincho-b1 {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
}
.sans {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.bold {
    font-weight: bold;
}
.line-1 {
    line-height: 1.0;
}

/* ----- 共通css ----- */
.position {
    width: 600px;
    margin: 0 auto 0 auto;
}
.content-image {
    width: 100%;
}

.site-container {
  width: 100%;
  min-height: 100vh;
}


.wrapper {
    background-image: 
    linear-gradient(#5f1313, #39070099), 
    url(../images/huyu2238.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
}
.main-outer {
    position: relative;
  z-index: 2;
}

@media screen and (max-width:600px) {
    .position {
        width: 100%;
    }
    .bg-marquee {
        display: none;
    }
    .header-inner {
        width: 100%;
    }

}

@media (min-width: 600px) {
    .bg-marquee {
        display: block;
        position: fixed;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        z-index: 1;
        pointer-events: none;
    }
    .bg-marquee-track {
        display: inline-flex;
        width: max-content;
        white-space: nowrap;
        animation: bg-loop 30s linear infinite;
    }
    .bg-marquee span {
        font-size: 9rem;
        font-weight: 700;
        font-family: 'Cinzel', 'Times New Roman', 'serif';
        letter-spacing: 0.05em;
        color: rgba(212, 175, 55, 0.15);
    }
}

@keyframes bg-loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* ----- ヘッダー ----- */
.headerFollow {
    display: block;
    position: fixed;
    top: 0;
    z-index: 1000;
    height: 50px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 600px;
    padding: 20px 0 0 15px;
}
.logo {
    width: clamp(160px, 54vw, 250px);
    line-height: 1px;
}
.logo-link {
    display: block;
}
.logo-image {
    max-width: 100%;
    vertical-align: bottom;
}

@media screen and (max-width:600px) {
    .headerFollow {
        left: 0;
    }
}


/* ----- 予約促進セクション ----- */
.reservation-inner {
    background: linear-gradient(90deg, #f6ebde,#fff6e9,#f6ebde);
}
.reservation-group {
    padding: 0 0 2rem 0;
}
.reservation-text {
    margin: 1rem 1rem 2rem 1rem;
    color: var(--text-color-1);
    font-size: clamp(16px, 4vw, 28px);
    text-align: center;
}
.reservation-pickup {
    color: var(--text-color-2);
}
.confirmation-content {
    width: 90%;
    margin: 0 auto 0 auto;
    padding: 1.5rem 1rem;
    text-align: center;
    background-color: #bd000033;
    border-radius: 10px;
}
.confirmation-text {
    margin: 0 0 1rem 0;
    color: var(--text-color-2);
    font-size: clamp(16px, 4vw, 24px);
    line-height: 1.3;
}
.confirmation-botton {
    display: flex;
    gap: 0.5rem;
    justify-content: space-around;
    width: clamp(260px, 65vw, 400px);
    margin: 0 auto;
    padding: 1.2rem 1rem;
    color: #ffffff;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 600;
    background-color: #343c6b;
    border-radius: 30px;
    filter: drop-shadow(0 2px 3px #777777);
}
.arrow {
    margin: clamp(3px, 1vw, 5px) 0 0 0;
    width: clamp(10px, 2vw, 14px);
    height: clamp(10px, 2vw, 14px);
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
}

.reservation-content-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 80%;
    margin: 3rem auto 0 auto;
    padding: 0.8rem;
    color: var(--text-color-2);
    text-align: center;
    border-radius: 10px 10px 0 0;
    border-top: 2px solid var(--text-color-2);
    border-left: 2px solid var(--text-color-2);
    border-right: 2px solid var(--text-color-2);
}
.reservation-heading-text {
    font-size: clamp(24px, 7vw, 36px);
    font-weight: 800;

    white-space: nowrap;
}
.sparkle-image {
    width: 7%;
    height: auto;
    display: block;
}
.reservation-tell {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;

    padding: 1rem;
    color: #ffffff;
    background: linear-gradient(90deg, #d2101a, #e8440a, #d2101a);
}
.tell-icon {
    width: clamp(24px, 7vw, 36px);
}
.tell-number {
    margin: 0 0 0.2rem 0;
    font-size: clamp(24px, 11vw, 60px);
    letter-spacing: 0.1rem;
}
.reservation-time {
    width: 80%;
    margin: 0 auto 3rem auto;
    padding: 1rem;
    color: var(--text-color-2);
    text-align: center;
    border-radius: 0 0 10px 10px;
    border-bottom: 2px solid var(--text-color-2);
    border-left: 2px solid var(--text-color-2);
    border-right: 2px solid var(--text-color-2);
}
.reservation-time-text {
    font-size: clamp(16px, 6vw, 28px);
}


/* ----- アクセス ----- */
#access {
    border-top: 2px solid var(--text-color-1);
}
.access-outer {
    padding: 3rem 30px 3rem 30px;
    color: var(--text-color-1);
    background: linear-gradient(90deg, #f6ebde, #fff6e9, #f6ebde);
}
.section-heading {
    margin: 0 0 2rem 0;
    font-weight: bold;
    text-align: center;
}
.section-title{
    font-family: 'Cinzel', 'Times New Roman', 'serif';
    font-size: clamp(36px, 12vw, 60px);
}
.section-subtitle {
    margin: 1.0rem 0 0 0;
    font-size: clamp(20px, 4vw, 24px);
}
.access-inner {
    text-align: center;
}
.access-map-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.access-map-container {
    transition: 0.1s;
    position: relative;
    cursor: pointer;
}
.access-map-container::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    background: url(../images/plus.png) no-repeat center center #fff;
    background-size: 30px;
    right: -3%;
    bottom: -3%;
    transition: .5s;
    transform: scale(1);
    border-radius: 100px;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.08), 0 0 1em rgba(0, 0, 0, 0.08);
}
.access-map-container:hover {
    opacity: 0.7;
}
.access-map-image {
    width: 100%;
    max-width: 550px;
}
.access-map-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
.access-map-modal img {
    max-width: 90vh;
    max-height: 90vh;
}
.access-map-modal.active {
    display: flex;
}
.access-map-close-btn {
    color: rgb(210, 210, 210);
    background-color: transparent;
    cursor: pointer;
    position: fixed;
    background: url(../images/close.png) no-repeat center center;
    text-indent: -1000px;
    width: 100px;
    height: 100px;
    top: 2%;
    right: 2%;
    padding: 6px;
    display: block;
    overflow: hidden;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    z-index: 99;
}
.access-map-link {
    background: url(../images/target.png) no-repeat right center;
    margin: 1rem 0 0 0;
    padding: 10px 30px 10px 0;
    width: auto;
    display: inline-block !important;
    border-bottom: 1px solid var(--text-color1);
    vertical-align: middle;
    color: var(--text-color1);
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 700;
    position: relative;
    border-bottom: 2px solid var(--text-color-1);
}
.access-about {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.access-car,
.access-boat {
    padding: 0.8rem 0;
    color: #ffffff;
    font-family: sans-serif;
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 400;
    background-color: var(--text-color-1);
    border-radius: 30px;
}
.access-car-unit {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 1.2rem 0 2rem 0;
}
.access-car-item1 {
    width: 90%;
    margin: 0 auto 0 auto;
    padding: 6px 10px;
    font-family: sans-serif;
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 600;
    line-height: 1.5;
    background-color: #67474720;
}

.access-car-item2 {
    width: 90%;
    margin: 0 auto;
    padding: 0.8rem;
    color: var(--text-color-1);
    font-family: sans-serif;
    font-size: clamp(24px, 6vw, 28px);
    font-weight: 500;
    background-color: #fffdf7;
}
.access-mg {
    margin: 0 0 0 15px;
    color: var(--text-color-1);
    font-size: clamp(18px, 5vw, 24px);
}
.access-details {
    margin: 3rem 0 0 0;
}
.access-boat-item {
    margin: 1rem 0 0 0;
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 600;
    line-height: 1.5;
}
.access-boat-memo {
    margin: 0.8rem 0 1rem 0;
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 600;
    line-height: 1.4;
}
.boat-timetable-btn {
    margin: 20px 0;
}
.boat-timetable-btn-link {
    border: 1px solid var(--text-color-1);
    width: 100%;
    padding: 15px 30px;
    color: var(--text-color-1);
    font-weight: 700;
    text-align: center;
    background: url(../images/arrow.png) no-repeat center right 5%;
    background-color: #ffffff;
    display: inline-block;
    position: relative;
    letter-spacing: 0;
    background-size: 15px;
    font-size: clamp(18px, 4vw, 20px);
    line-height: 1.2;
}
.boat-timetable-btn-link::before {
    content: "";
    position: absolute;
    width: 101%;
    height: 100%;
    right: -8px;
    border-bottom: 1px solid var(--text-color-1);
    border-right: 1px solid var(--text-color-1);
    bottom: -8px;
    margin: 8px 0 0;
}
@media screen and (min-width:480px)  {
    .boat-timetable-btn-link br,
    .access-car-item1 br {
        display: none;
    }
}


/* ----- フッター ----- */
.footer-outer {
    background-color: var(--text-color-1);
}
.footer-link-block {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #7D7D7D;
}
.footer-logo-link {
    display: inline-block;
    margin: 0 auto 0 auto;
}
.footer-logo {
    width: clamp(160px, 54vw, 250px);
}
.sns-icon {
    margin: 1rem 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.sns-icon-link,
.footer-logo-link {
    filter: drop-shadow(0px 4px 2px #00000044);
}
.sns-icon-link:active,
.footer-logo-link:active {
    filter: none;
}
.x-icon {
    width: clamp(20px, 6vw, 32px);
}
.i-icon {
    width: clamp(25px, 7vw, 38px);
}
.y-icon {
    width: clamp(35px, 10vw, 50px);
}
.footer-tie-block {
    padding: 10px 0;
    border-top: 1px solid #7D7D7D;
}
.footer-tie-group {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}
.footer-nav-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 0.8rem;
    row-gap: 0.5rem;
    margin: 0 30px;
    line-height: 1.0;
}
.footer-nav-item {
    list-style: none;
}
.copyright,
.footer-nav-item-link {
    font-family: "noto sans JP", sans-serif;
    font-size: 0.8rem;
}
.footer-nav-item-link {
    color: var(--text-color1);
    font-size: 0.8rem;
    font-weight: 600;
}



/* -----  ----- */
/* -----  ----- */