@charset "UTF-8";

/* =====================
   Reset & Base
===================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

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

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

body {
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 1.6rem;
    font-weight: 400;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: #fff;
    background-color: #181818;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

/* =====================
   Container
===================== */
.container {
    max-width: 108.8rem;
    margin: 0 auto;
    padding: 0 2.4rem;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 2.4rem;
    }
}

.container-sm {
    max-width: 100rem;
    margin: 0 auto;
    padding: 0 2rem;
}

@media screen and (max-width: 768px) {
    .container-sm {
        padding: 0 1.6rem;
    }
}

/* =====================
   Common Section
===================== */
section {
    padding: 8rem 0;
}

@media screen and (max-width: 768px) {
    section {
        padding: 6rem 0;
    }
}

/* Section Title - Common */
.section-title {
    font-size: 3.2rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 6rem;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2.4rem;
        margin-bottom: 4rem;
    }
}

/* Text - Common */
.text-body {
    font-size: 1.6rem;
    line-height: 2;
    color: #ccc;
}

/* Inner Container */
.inner {
    max-width: 100rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =====================
   Hero
===================== */
.hero {
    padding: 0;
    position: relative;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* =====================
   Scroll Navigation
===================== */
.scroll-nav {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media screen and (max-width: 768px) {
    .scroll-nav {
        display: none;
    }
}

.scroll-nav__circle {
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    border: 0.1rem solid #fff;
    border-radius: 50%;
    background-color: transparent;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        background-color: transparent;
    }

    50% {
        background-color: #fff;
    }
}

@media screen and (max-width: 768px) {
    .scroll-nav__circle {
        width: 1rem;
        height: 1rem;
    }
}

.scroll-nav__text {
    writing-mode: vertical-rl;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .scroll-nav__text {
        font-size: 1rem;
    }
}

/* =====================
   Header
===================== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem;
}

@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem;
    }
}

/* =====================
   Hamburger Button
===================== */
.hamburger {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    z-index: 1002;
    position: relative;
    width: 4.4rem;
    justify-content: flex-end;
}

.hamburger span {
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.hamburger span:nth-child(1) {
    transform: translateX(-1.4rem);
}

.hamburger span:nth-child(2) {
    transform: translateX(-0.7rem);
}

.hamburger span:nth-child(3) {
    transform: translateX(0);
}

/* Open state - collapse to single dot */
.hamburger.is-open span:nth-child(1) {
    transform: translateX(0);
    opacity: 0;
}

.hamburger.is-open span:nth-child(2) {
    transform: translateX(0);
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateX(0);
}

.hamburger:hover span {
    background-color: #ccc;
}

.hamburger.is-dark span {
    background-color: #181818;
}

.hamburger.is-dark:hover span {
    background-color: #666;
}

/* =====================
   Fade In Up Animation
===================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   Navigation
===================== */
.nav {
    position: fixed;
    top: 6rem;
    right: 2rem;
    background-color: rgba(128, 128, 128, 0.95);
    z-index: 1001;
    padding: 3rem 4rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media screen and (max-width: 768px) {
    .nav {
        top: 5rem;
        right: 1.5rem;
        padding: 2rem 3rem;
    }
}

.nav.is-open {
    opacity: 1;
    visibility: visible;
}

.nav__list {
    text-align: right;
}

.nav__list li {
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .nav__list li {
        margin-bottom: 1.5rem;
    }
}

.nav__list li:last-child {
    margin-bottom: 0;
}

.nav__list a {
    font-size: 1.6rem;
    color: #fff;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 768px) {
    .nav__list a {
        font-size: 1.4rem;
    }
}

.nav__list a:hover {
    opacity: 0.7;
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* =====================
   About
===================== */
section.about {
    padding: 0;
}

.about__inner {
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

@media screen and (max-width: 768px) {
    .about__inner {
        flex-direction: column;
        gap: 3rem;
    }
}

.about__content {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .about__content {
        padding: 0;
    }
}

.about__title {
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 6rem;
}

@media screen and (max-width: 768px) {
    .about__title {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }
}

.about__text {
    font-size: 1.6rem;
    line-height: 2.25;
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .about__text {
        font-size: 1.4rem;
        line-height: 2;
    }
}

.about__text:last-child {
    margin-bottom: 0;
}

.about__image {
    flex-shrink: 0;
    width: 52rem;
}

@media screen and (max-width: 768px) {
    .about__image {
        width: 100%;
    }
}

.about__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =====================
   Producers (Association)
===================== */

@media screen and (max-width: 768px) {
    .producers {
        padding-bottom: 10rem;
    }
}

.producers__title {
    font-size: 3.6rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3.2rem;
}

@media screen and (max-width: 768px) {
    .producers__title {
        text-align: left;
        font-size: 2.4rem;
        margin-bottom: 2.4rem;
    }
}

.producers__intro {
    max-width: 100rem;
    margin: 0 auto 6rem;
}

@media screen and (max-width: 768px) {
    .producers__intro {}
}

.producers__intro p {
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.03em;
    color: #ccc;
}

@media screen and (max-width: 768px) {
    .producers__intro p {}
}

.producers__cards {
    display: flex;
    justify-content: center;
    gap: 7rem;
}

@media screen and (max-width: 768px) {
    .producers__cards {
        flex-direction: column;
        gap: 8rem;
    }
}

.producers__card {
    position: relative;
    flex: 1;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .producers__card {
        padding: 0 1.6rem;
    }
}

.producers__card+.producers__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -3.5rem;
    width: 1px;
    height: 100%;
    background-color: #626262;
}

@media screen and (max-width: 768px) {
    .producers__card+.producers__card::before {
        top: -4rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 1px;
    }
}

.producers__card-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    min-height: 15rem;
}

@media screen and (max-width: 768px) {
    .producers__card-images {
        gap: 1.5rem;
        margin-bottom: 2rem;
        min-height: auto;
    }
}

.producers__card-images img {
    max-width: 13.7rem;
    height: auto;
}

@media screen and (max-width: 768px) {
    .producers__card-images img {
        max-width: 10rem;
    }
}

.producers__card-title {
    display: flex;
    align-items: center;
    justify-self: center;
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 2.4rem;
    line-height: 1.5;
    min-height: 6.4rem;
}

@media screen and (max-width: 768px) {
    .producers__card-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 1.6rem;
        min-height: auto;
        justify-content: center;
    }
}

.producers__card-line {
    display: block;
    width: 5rem;
    height: 0.1rem;
    background-color: #666;
    margin: 0 auto 2rem;
}

@media screen and (max-width: 768px) {
    .producers__card-line {
        margin: 0 auto 1.5rem;
    }
}

.producers__card-subtitle {
    display: inline-block;
    min-height: 4rem;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .producers__card-subtitle {
        display: block;
        font-size: 1.8rem;
        min-height: auto;
        margin-bottom: 1.5rem;
    }
}

.producers__card-text {
    font-size: 1.6rem;
    line-height: 2;
    color: #ccc;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .producers__card-text {
        font-size: 1.5rem;
        text-align: left;
    }
}

/* =====================
   Separator
===================== */
.separator {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .separator {
        height: 21rem;
    }
}

.separator img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .separator img {
        object-fit: cover;
        object-position: 80%;
        width: 100%;
        height: 100%;
        display: block;
    }
}

/* =====================
   Voice
===================== */
.voice {
    padding-top: 14.4rem;
    padding-bottom: 16rem;
    background-color: #fff;
    color: #181818;
}

@media screen and (max-width: 768px) {
    .voice {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.voice__title {
    font-size: 3.6rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10.4rem;
}

@media screen and (max-width: 768px) {
    .voice__title {
        font-size: 2.4rem;
        margin-bottom: 4rem;
    }
}

.voice__item {
    position: relative;
    max-width: 108.8rem;
    margin: 0 auto 16rem;
    padding: 0 2.4rem;
}

@media screen and (max-width: 768px) {
    .voice__item {
        margin: 0 auto 10rem;
        padding: 0 2rem;
    }
}

.voice__item::before {
    content: "";
    position: absolute;
    left: 2.4rem;
    bottom: 0;
    width: 1.5px;
    height: calc(100% - 10.3rem);
    background-color: #000000;
}

@media screen and (max-width: 768px) {
    .voice__item::before {
        width: 1px;
        top: 24rem;
        left: 2.8rem;
        height: calc(100% - 24rem);
    }
}

.voice__item:last-child {
    margin-bottom: 0;
}

/* Even items - reverse layout */
.voice__item:nth-child(odd) .voice__header {
    flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
    .voice__item:nth-child(odd) .voice__header {
        flex-direction: column;
    }
}

.voice__item:nth-child(odd) .voice__info {
    text-align: left;
}

@media screen and (max-width: 768px) {
    .voice__item:nth-child(odd) .voice__info {
        text-align: left;
        padding-left: 0;
    }
}

.voice__header {
    display: flex;
    gap: 4rem;
    margin-bottom: 4.8rem;
    padding-left: 4rem;
}

@media screen and (max-width: 768px) {
    .voice__header {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2.4rem;
        padding-left: 0;
    }
}

.voice__info {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .voice__info {
        position: relative;
        padding-left: 10rem;
        text-align: right;
    }
}

.voice__label {
    position: relative;
    left: -5.1rem;
    top: -0.5rem;
    font-size: 1.8rem;
    font-weight: 300;
    color: #181818;
}

@media screen and (max-width: 768px) {
    .voice__label {
        position: absolute;
        left: 0.2rem;
        font-size: 1.4rem;
    }
}

.voice__number {
    position: relative;
    left: -5.1rem;
    top: -0.5rem;
    font-size: 4.4rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.3rem;
}

@media screen and (max-width: 768px) {
    .voice__number {
        position: absolute;
        left: 0;
        top: 2.4rem;
        font-size: 3.2rem;
        margin-bottom: 1.5rem;
    }
}

.voice__location {
    font-size: 2.2rem;
    line-height: 1.3;
}

@media screen and (max-width: 768px) {
    .voice__location {
        font-size: 1.6rem;
    }
}

.voice__company {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
    .voice__company {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
}

.voice__name {
    width: fit-content;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.56;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
    .voice__name {
        font-size: 2.4rem;
        margin-left: auto;
    }
}

.voice__name span {
    font-size: 2.4rem;
    font-weight: 500;
    margin-left: 1rem;
}

@media screen and (max-width: 768px) {
    .voice__name span {
        font-size: 1.6rem;
    }
}

.voice__name span.voice__position {
    display: block;
    text-align: left;
    font-size: 1.6rem;
    line-height: 1;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .voice__name span.voice__position {
        font-size: 1.4rem;
    }
}

.voice__main-image {
    width: 66rem;
}

@media screen and (max-width: 768px) {
    .voice__main-image {
        width: 100%;
        order: -1;
    }
}

.voice__main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.voice__content {
    margin-bottom: 4rem;
    padding-left: 4rem;
}

@media screen and (max-width: 768px) {
    .voice__content {
        margin-bottom: 2rem;
    }
}

.voice__text {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .voice__text {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.voice__text:last-child {
    margin-bottom: 0;
}

.voice__images {
    display: flex;
    padding-left: 4rem;
}

@media screen and (max-width: 768px) {
    .voice__images {
        flex-direction: column;
        gap: 1rem;
    }
}

.voice__images img {
    flex: 1;
    width: 50%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .voice__images img {
        width: 100%;
    }
}

.voice__item:nth-child(odd)::before {
    left: auto;
    right: 2.8rem;
}

.voice__item:nth-child(odd) .voice__header,
.voice__item:nth-child(odd) .voice__content,
.voice__item:nth-child(odd) .voice__images {
    padding-left: 0;
    padding-right: 4rem;
}

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

    .voice__item:nth-child(odd) .voice__header {
        padding-right: 0;
    }

}

@media screen and (max-width: 768px) {
    .voice__item:nth-child(odd) .voice__name {
        margin-left: 0;
    }
}

.voice__item:nth-child(odd) .voice__label {
    left: auto;
    right: -5.3rem;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .voice__item:nth-child(odd) .voice__label {
        right: 0.4rem;
    }
}

.voice__item:nth-child(odd) .voice__number {
    left: auto;
    right: -5.3rem;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .voice__item:nth-child(odd) .voice__number {
        right: 0;
    }
}


/* =====================
   Brand
===================== */
.brand {
    padding-top: 14.4rem;
    background-color: #181818;
}

@media screen and (max-width: 768px) {
    .brand {
        padding-top: 6rem;
    }
}

.brand__title {
    font-size: 3.6rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 6.4rem;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
    .brand__title {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }
}

.brand__list {
    max-width: 100rem;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .brand__list {
        overflow-x: auto;
    }
}

.brand__row {
    display: flex;
    align-items: center;
    border-bottom: 0.1rem solid #666666;
}

@media screen and (max-width: 768px) {
    .brand__row {
        min-width: 60rem;
    }
}

.brand__row--header {
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: solid 0.5px #666666;
}

.brand__row--header::after {
    content: "";
    position: absolute;
    bottom: 0.4rem;
    left: 0;
    width: 100%;
    height: 0.5px;
    background-color: #666666;
}

.brand__row--header .brand__col {
    text-align: center;
    font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
    .brand__row--header .brand__col {
        font-size: 1.4rem;
    }
}

.brand__row--line {
    padding-top: 0.4rem;
}

.brand__col {
    font-size: 1.6rem;
    padding: 2rem 1.6rem;
    line-height: 1.3;
}

@media screen and (max-width: 768px) {
    .brand__col {
        font-size: 1.4rem;
        padding: 1.5rem 1rem;
    }
}

.brand__col.-center {
    text-align: center;
}

.brand__col+.brand__col {
    border-left: solid 0.5px #666666;
}

.brand__col--type {
    width: 15%;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .brand__col--type {
        width: 18%;
    }
}

.brand__col--name {
    width: 30%;
    padding-left: 4.8rem;
}

@media screen and (max-width: 768px) {
    .brand__col--name {
        width: 28%;
        padding-left: 1.5rem;
    }
}

.brand__col--area {
    width: 45%;
    padding-left: 4.8rem;
}

@media screen and (max-width: 768px) {
    .brand__col--area {
        width: 44%;
        padding-left: 1.5rem;
    }
}

.brand__col--hp {
    width: 10%;
    text-align: center;
}

.brand__col--hp a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.brand__col--hp a:hover {
    opacity: 0.7;
}

.brand__col--hp img {
    opacity: 0.08;
    width: 2.4rem;
    height: auto;
}

.brand__col--hp a img {
    opacity: 1;
}

/* Brand Accordion (SP) */
.brand__accordion {
    max-width: 100rem;
    margin: 0 auto;
}

.brand__accordion .accordion__header {
    background-color: #181818;
    border-bottom: 0.2rem solid #ffffff;
}

.brand__accordion .accordion__header-text {
    color: #ffffff;
}

.brand__accordion .accordion__content {
    background-color: #181818;
}

.brand__accordion-item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 4rem 1.5rem 0;
    border-bottom: 1px solid #333333;
}

.brand__accordion-item:last-child {
    border-bottom: none;
}

.brand__accordion-name {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.brand__accordion-area {
    font-size: 1.5rem;
    color: #cccccc;
}

.brand__accordion-hp {
    position: absolute;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    text-align: center;
}

.brand__accordion-hp img {
    width: 2.4rem;
    height: auto;
    opacity: 0.08;
}

.brand__accordion-hp a img {
    opacity: 1;
}

/* =====================
   Restaurant
===================== */
.restaurant__title {
    font-size: 3.6rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 6.4rem;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
    .restaurant__title {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }
}

/* =====================
   Accordion
===================== */
.accordion {
    max-width: 100rem;
    margin: 0 auto;
}

.accordion__item {
    margin-bottom: 0;
}

.accordion__item+.accordion__item {
    margin-top: 3.2rem;
}

@media screen and (max-width: 768px) {
    .accordion__item+.accordion__item {
        margin-top: 2rem;
    }
}

.accordion__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    background: none;
    border: none;
    border-bottom: 0.2rem solid #ffffff;
    cursor: pointer;
    color: #ffffff;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .accordion__header {
        padding: 1.5rem 0;
    }
}

.accordion__header-text {
    font-size: 2.4rem;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
    .accordion__header-text {
        font-size: 1.8rem;
    }
}

.accordion__icon {
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico_arrow_down.png') no-repeat center center;
    background-size: contain;
    transition: transform 0.3s ease;
    margin-right: 1rem;
}

@media screen and (max-width: 768px) {
    .accordion__icon {
        width: 1.4rem;
        height: 1.4rem;
    }
}

.accordion__item.is-open .accordion__icon {
    transform: rotate(180deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion__item.is-open .accordion__content {
    max-height: 500rem;
}

.accordion__row {
    display: flex;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 0.1rem solid #333;
}

@media screen and (max-width: 768px) {
    .accordion__row {
        flex-wrap: wrap;
        padding: 2rem 0;
    }
}

.accordion__col {
    font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
    .accordion__col {
        font-size: 1.4rem;
    }
}

.accordion__col--name {
    width: 34.333%;
    font-size: 2rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-right: solid 1px #333333;
}

@media screen and (max-width: 768px) {
    .accordion__col--name {
        width: 100%;
        font-size: 1.8rem;
        padding: 0 0 0.4rem 0;
        border-right: none;
    }
}

.accordion__col--name small {
    display: block;
    font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
    .accordion__col--name small {
    }
}

.accordion__col--address {
    width: 50%;
    padding: 1rem 2rem;
    color: #ccc;
}

@media screen and (max-width: 768px) {
    .accordion__col--address {
        width: 60%;
        padding: 0;
    }
}

.accordion__col--tel {
    width: 25%;
    padding: 1rem 2rem;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .accordion__col--tel {
        width: 40%;
        padding: 0;
        font-size: 1.3rem;
    }
}

.restaurant__noto {
    font-size: 1.5rem;
    font-weight: 300;
    width: fit-content;
    margin: 4.8rem auto 0;
}

@media screen and (max-width: 768px) {
    .restaurant__noto {
        font-size: 1.2rem;
        margin: 3rem auto 0;
    }
}

/* =====================
   Report
===================== */
.report {
    background-color: #181818;
}

.report__title {
    font-size: 3.2rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 6rem;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
    .report__title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

.report__list {
    max-width: 100rem;
    margin: 0 auto;
}

.report__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0.1rem solid #444;
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .report__item {
        flex-direction: column;
        align-items: stretch;
    }
}

.report__item:last-child {
    margin-bottom: 0;
}

.report__info {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .report__info {
        padding: 1.5rem 0;
    }
}

.report__name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    padding: 0 1.8rem;
}

@media screen and (max-width: 768px) {
    .report__name {
        font-size: 1.6rem;
        padding: 0 1.5rem;
    }
}

.report__size {
    font-size: 1.4rem;
    padding: 0 1.8rem;
}

@media screen and (max-width: 768px) {
    .report__size {
        font-size: 1.4rem;
        padding: 0 1.5rem;
    }
}

.report__download {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #181818;
    background-color: #CDCDCD;
    padding: 3rem;
    transition: background-color 0.3s ease;
}

@media screen and (max-width: 768px) {
    .report__download {
        justify-content: center;
        padding: 1.5rem;
        gap: 1rem;
    }
}

.report__download:hover {
    background-color: #777;
}

.report__download span.report__download-txt {
    font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
    .report__download span.report__download-txt {}
}

.report__download span.report__download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    background-color: #ffffff;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .report__download span.report__download-icon {
        width: 3rem;
        height: 3rem;
    }
}

.report__download span.report__download-icon img {
    width: 1.4rem;
    height: auto;
}

@media screen and (max-width: 768px) {
    .report__download span.report__download-icon img {
        width: 1.2rem;
    }
}

/* =====================
   Contact
===================== */
.contact {
    padding-top: 6.4rem;
}

@media screen and (max-width: 768px) {
    .contact {
        padding-top: 4rem;
    }
}

.contact__box {
    max-width: 100rem;
    margin: 0 auto;
    background-color: #fff;
    color: #333;
    padding: 3.2rem 3.2rem 4rem;
    text-align: center;
    border-radius: 0.8rem;
}

@media screen and (max-width: 768px) {
    .contact__box {
        padding: 2rem 1.5rem 2.5rem;
        border-radius: 0.4rem;
    }
}

.contact__title {
    font-size: 2.6rem;
    font-weight: normal;
    margin-bottom: 1rem;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .contact__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

.contact__info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .contact__info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.contact__main {
    text-align: left;
}

@media screen and (max-width: 768px) {
    .contact__main {
        text-align: center;
    }
}

.contact__name {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
    .contact__name {
        font-size: 2rem;
    }
}

.contact__sub {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.56;
}

@media screen and (max-width: 768px) {
    .contact__sub {
        text-align: center;
        font-size: 1.3rem;
    }
}

.contact__tel {
    font-size: 2.8rem;
    letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
    .contact__tel {
        font-size: 2rem;
    }
}

/* =====================
   Footer
===================== */
.footer {
    border-top: solid 1px #333333;
}

.copyright {
    font-size: 1.2rem;
    text-align: center;
    padding: 1rem 0;
}

@media screen and (max-width: 768px) {
    .copyright {
        font-size: 1rem;
        padding: 1.5rem 1rem;
    }
}

/* =====================
   Utilities
===================== */

/* ----- Margin ----- */
.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 1rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

.mt-3 {
    margin-top: 3rem !important;
}

.mt-4 {
    margin-top: 4rem !important;
}

.mt-5 {
    margin-top: 5rem !important;
}

.mt-6 {
    margin-top: 6rem !important;
}

.mt-8 {
    margin-top: 8rem !important;
}

.mt-10 {
    margin-top: 10rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.mb-4 {
    margin-bottom: 4rem !important;
}

.mb-5 {
    margin-bottom: 5rem !important;
}

.mb-6 {
    margin-bottom: 6rem !important;
}

.mb-8 {
    margin-bottom: 8rem !important;
}

.mb-10 {
    margin-bottom: 10rem !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-1 {
    margin-left: 1rem !important;
}

.ml-2 {
    margin-left: 2rem !important;
}

.ml-3 {
    margin-left: 3rem !important;
}

.ml-4 {
    margin-left: 4rem !important;
}

.ml-auto {
    margin-left: auto !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-1 {
    margin-right: 1rem !important;
}

.mr-2 {
    margin-right: 2rem !important;
}

.mr-3 {
    margin-right: 3rem !important;
}

.mr-4 {
    margin-right: 4rem !important;
}

.mr-auto {
    margin-right: auto !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ----- Padding ----- */
.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 1rem !important;
}

.pt-2 {
    padding-top: 2rem !important;
}

.pt-3 {
    padding-top: 3rem !important;
}

.pt-4 {
    padding-top: 4rem !important;
}

.pt-5 {
    padding-top: 5rem !important;
}

.pt-6 {
    padding-top: 6rem !important;
}

.pt-8 {
    padding-top: 8rem !important;
}

.pt-10 {
    padding-top: 10rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 1rem !important;
}

.pb-2 {
    padding-bottom: 2rem !important;
}

.pb-3 {
    padding-bottom: 3rem !important;
}

.pb-4 {
    padding-bottom: 4rem !important;
}

.pb-5 {
    padding-bottom: 5rem !important;
}

.pb-6 {
    padding-bottom: 6rem !important;
}

.pb-8 {
    padding-bottom: 8rem !important;
}

.pb-10 {
    padding-bottom: 10rem !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pl-1 {
    padding-left: 1rem !important;
}

.pl-2 {
    padding-left: 2rem !important;
}

.pl-3 {
    padding-left: 3rem !important;
}

.pl-4 {
    padding-left: 4rem !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pr-1 {
    padding-right: 1rem !important;
}

.pr-2 {
    padding-right: 2rem !important;
}

.pr-3 {
    padding-right: 3rem !important;
}

.pr-4 {
    padding-right: 4rem !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 1rem !important;
}

.p-2 {
    padding: 2rem !important;
}

.p-3 {
    padding: 3rem !important;
}

.p-4 {
    padding: 4rem !important;
}

/* ----- Font Size ----- */
.fs-10 {
    font-size: 1rem !important;
}

.fs-12 {
    font-size: 1.2rem !important;
}

.fs-14 {
    font-size: 1.4rem !important;
}

.fs-16 {
    font-size: 1.6rem !important;
}

.fs-18 {
    font-size: 1.8rem !important;
}

.fs-20 {
    font-size: 2rem !important;
}

.fs-24 {
    font-size: 2.4rem !important;
}

.fs-28 {
    font-size: 2.8rem !important;
}

.fs-32 {
    font-size: 3.2rem !important;
}

.fs-36 {
    font-size: 3.6rem !important;
}

.fs-40 {
    font-size: 4rem !important;
}

.fs-48 {
    font-size: 4.8rem !important;
}

/* ----- Font Weight ----- */
.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* ----- Text Align ----- */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

/* ----- Display ----- */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-grid {
    display: grid !important;
}

/* PC only (hidden on SP) */
.d-pc {
    display: block !important;
}

@media screen and (max-width: 768px) {
    .d-pc {
        display: none !important;
    }
}

/* SP only (hidden on PC) */
.d-sp {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .d-sp {
        display: block !important;
    }
}

/* SP none */
@media screen and (max-width: 768px) {
    .d-sp-none {
        display: none !important;
    }
}

/* SP block */
@media screen and (max-width: 768px) {
    .d-sp-block {
        display: block !important;
    }
}

/* SP inline */
@media screen and (max-width: 768px) {
    .d-sp-inline {
        display: inline !important;
    }
}

/* SP inline-block */
@media screen and (max-width: 768px) {
    .d-sp-inline-block {
        display: inline-block !important;
    }
}

/* SP flex */
@media screen and (max-width: 768px) {
    .d-sp-flex {
        display: flex !important;
    }
}

/* SP inline-flex */
@media screen and (max-width: 768px) {
    .d-sp-inline-flex {
        display: inline-flex !important;
    }
}

/* SP grid */
@media screen and (max-width: 768px) {
    .d-sp-grid {
        display: grid !important;
    }
}

/* ----- Flexbox ----- */
.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.justify-start {
    justify-content: flex-start !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-between {
    justify-content: space-between !important;
}

.justify-around {
    justify-content: space-around !important;
}

.align-start {
    align-items: flex-start !important;
}

.align-end {
    align-items: flex-end !important;
}

.align-center {
    align-items: center !important;
}

.align-stretch {
    align-items: stretch !important;
}

.gap-1 {
    gap: 1rem !important;
}

.gap-2 {
    gap: 2rem !important;
}

.gap-3 {
    gap: 3rem !important;
}

.gap-4 {
    gap: 4rem !important;
}

.gap-5 {
    gap: 5rem !important;
}

/* ----- Width ----- */
.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

/* ----- Position ----- */
.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

/* ----- Visibility ----- */
.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

/* ----- Overflow ----- */
.overflow-hidden {
    overflow: hidden !important;
}

.overflow-auto {
    overflow: auto !important;
}

.overflow-scroll {
    overflow: scroll !important;
}

/* ----- Color ----- */
.text-white {
    color: #fff !important;
}

.text-black {
    color: #000 !important;
}

.text-gray {
    color: #ccc !important;
}

.text-dark-gray {
    color: #666 !important;
}

.text-gold {
    color: #c9a84b !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-black {
    background-color: #000 !important;
}

.bg-dark {
    background-color: #181818 !important;
}

.bg-dark-gray {
    background-color: #1a1a1a !important;
}