@charset "UTF-8";

/*共通
-------------------------------------------*/
html {
    font-size: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #f5f5f5;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
.wrapper {
    max-width: 1120px;
    margin: auto;
    padding: 0 1.5rem;
}
.align-center {
    text-align: center;
}
.font-english {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}

/*セクション共通
-------------------------------------------*/
.section-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #c8a96e;
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
.section-desc {
    color: #555;
    line-height: 2;
}

/*ボタン
-------------------------------------------*/
.btn {
    display: inline-block;
    background-color: #c8a96e;
    color: #fff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: background-color 0.3s;
    width: 230px;
    white-space: nowrap;
}
.btn:hover {
    background-color: #a8864e;
}
.btn-outline {
    background-color: transparent;
    border: 1px solid #2a2a2a;
    color: #2a2a2a;
    margin-top: 3rem;
}
.btn-outline:hover {
    background-color: #2a2a2a;
    color: #fff;
}

/*ヘッダー
-------------------------------------------*/
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 24px;
    width: 100%;
}
.logo a{
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.1em;
}
.logo {
    font-size: 2rem;
    letter-spacing: 0.1em;
}
.main-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
}
.main-nav a {
    color: #fff;
    transition: color 0.3s;
}
.main-nav a:hover {
    color: #c8a96e;
}

/*ハンバーガーメニュー
-------------------------------------------*/
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
    position: fixed;
    top: 2rem;
    right: 2rem;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

/* ×ボタンに変化 */
.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* メニュー本体 */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: #1a1a1a;
    z-index: 99;
    transition: right 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav.open {
    right: 0;
}
.nav .main-nav {
    flex-direction: column;
    gap: 2.5rem;
    font-size: 1.5rem;
    text-align: center;
}

/*ヒーロー
-------------------------------------------*/
.hero {
    background-image: url(images/hero.jpg);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}
.hero .page-header {
    position: relative;
    z-index: 1;
}
.hero-text {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1.5rem 6rem;
    max-width: 1120px;
    margin: auto;
    width: 100%;
}
.hero-sub {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: #c8a96e;
    margin-bottom: 1rem;
}
.hero-title {
    font-size: 2.5rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2.5rem;
}

/*コンセプト
-------------------------------------------*/
.concept {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.concept-text {
    flex: 1;
}
.concept-image {
    flex: 1;
}
.concept-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/*メニュー
-------------------------------------------*/
.menu-section {
    background-color: #fff;
    padding: 6rem 0;
    text-align: center;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.menu-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.3s;
}
.menu-card img:hover {
    transform: scale(1.05);
}
.menu-card-text {
    padding: 1.25rem 0;
    text-align: left;
}
.menu-card-text h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.menu-card-text p {
    font-size: 0.875rem;
    color: #777;
    margin-bottom: 0.75rem;
}
.price {
    color: #c8a96e;
    font-weight: bold;
    font-size: 0.95rem;
}

/*フッター
-------------------------------------------*/
.page-footer {
    background-image: url(images/footer.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}
.footer-inner {
    position: relative;
    z-index: 1;
    padding-top: 6rem;
    padding-bottom: 4rem;
}
.footer-logo {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
}
.info {
    border-spacing: 0;
}
.info th,
.info td {
    color: #fff;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    text-align: left;
}
.info th {
    font-weight: normal;
    color: #c8a96e;
    width: 120px;
}
.copyright {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 1.5rem 0;
    color: #aaa;
    font-size: 0.875rem;
}

/*レスポンシブ
-------------------------------------------*/
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }
    .concept {
        flex-direction: column;
        gap: 2rem;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/*サブページ共通
-------------------------------------------*/
.sub-header {
    background-color: #2a2a2a;
}
.sub-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.sub-header .logo a {
    color: #fff;
}
.sub-header .hamburger {
    position: relative;
    top: auto;
    right: auto;
}
.sub-hero {
    text-align: center;
    padding: 5rem 0;
}
.sub-title {
    font-size: 2.5rem;
    color: #fff;
}

/*メニュー一覧
-------------------------------------------*/
.menu-list {
    padding-top: 5rem;
    padding-bottom: 2rem;
}
.menu-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e0e0e0;
}
.menu-item:last-child {
    border-bottom: none;
}
.menu-item img {
    width: 40%;
    aspect-ratio: 4/3;
    object-fit: cover;
    flex-shrink: 0;
}
.menu-item-text {
    flex: 1;
}
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}
.menu-item-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
}
.menu-item-text p {
    color: #555;
    line-height: 2;
}

/*レスポンシブ追加*/
@media (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    .menu-item img {
        width: 100%;
    }
}

/*ニュース一覧
-------------------------------------------*/
.news-list {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.news-item {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}
.news-item:last-child {
    border-bottom: none;
}
.news-item img {
    width: 35%;
    aspect-ratio: 16/9;
    object-fit: cover;
    flex-shrink: 0;
}
.news-item-text {
    flex: 1;
}
.news-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}
.news-meta time {
    font-size: 0.875rem;
    color: #888;
}
.news-cat {
    font-size: 0.75rem;
    background-color: #c8a96e;
    color: #fff;
    padding: 0.25rem 0.75rem;
}
.news-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.news-item-text p {
    font-size: 0.9rem;
    color: #555;
    line-height: 2;
}

/*レスポンシブ追加*/
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    .news-item img {
        width: 100%;
    }
}

/*コンタクト
-------------------------------------------*/
.contact-contents {
    max-width: 680px;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.contact-lead {
    text-align: center;
    color: #555;
    line-height: 2;
    margin-bottom: 3rem;
}
.form-group {
    margin-bottom: 2rem;
}
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.required {
    font-size: 0.75rem;
    background-color: #c8a96e;
    color: #fff;
    padding: 0.15rem 0.5rem;
    margin-left: 0.5rem;
    font-weight: normal;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fff;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c8a96e;
}