/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本スタイル */
body {
    font-family: 'Shippori Mincho', serif !important;
    line-height: 1.6;
    color: #333;
    background-color: #FFF8F0;
}

/* フォント優先順位の強化 */
body * {
    font-family: inherit !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
a,
button,
input,
textarea,
select,
td,
th,
li,
dt,
dd,
label,
caption,
figcaption {
    font-family: 'Shippori Mincho', serif !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    position: relative;
    height: 227px;
    background-image: url('/og_images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(139, 69, 19, 0.7) 0%, rgba(139, 69, 19, 0.8) 100%);
    z-index: 1;
}


.header-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    line-height: 50px;
}

.header-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.9;
}



/* テイクアウトセクション */
.takeout-section {
    background-color: #FEFBF3;
    padding: 80px 60px;
}

.takeout-header {
    text-align: center;
    margin-bottom: 60px;
}

.icon-title {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.takeout-icon {
    width: 64px;
    height: 64px;
    background-color: #C4841D;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.takeout-icon img {
    width: 64px;
    height: 64px;
}

.title-group h2 {
    font-size: 48px;
    color: #1A0F08;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.subtitle {
    font-size: 16px;
    color: #8B6914;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.decoration-line-gradient {
    width: 400px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37 0%, #8B6914 50%, #D4AF37 100%);
    border-radius: 1.5px;
    margin: 32px auto 0;
}

.takeout-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.takeout-image {
    flex: 0 0 480px;
    height: 320px;
    background-color: #F5F1E8;
    border-radius: 20px;
    border: 2px solid #E8DCC6;
    overflow: hidden;
    position: relative;
}

.takeout-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.takeout-text {
    flex: 1;
    max-width: 480px;
}

.takeout-subtitle h3 {
    font-size: 28px;
    color: #1A0F08;
    margin-bottom: 16px;
    font-weight: 700;
}

.small-decoration-line {
    width: 120px;
    height: 2px;
    background-color: #E8DCC6;
    margin-bottom: 32px;
}

.takeout-description {
    margin-bottom: 32px;
}

.takeout-description p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #1A0F08;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #C4841D 0%, #8B6914 100%);
    color: white;
    padding: 20px 60px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Shippori Mincho', serif !important;
    text-decoration: none;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.145);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
}

/* SNSセクション */
.sns-section {
    background-color: #613131;
    padding: 40px;
}

.sns-content {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sns-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 11px 0;
}

.sns-header h3 {
    font-size: 36px;
    color: white;
    margin: 0;
    font-weight: 700;
    line-height: 0.467;
    letter-spacing: 0.02em;
}

.sns-decoration-line {
    width: 399px;
    height: 1px;
    background-color: #D8D8D8;
    border-radius: 1px;
}

.sns-subtitle {
    font-size: 16px;
    color: white;
    font-weight: 700;
    margin: 0;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.sns-icons-wrapper {
    padding: 17px 0;
}

.sns-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.line-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.125);
    background-color: #00C300;
}

.line-icon span {
    color: white;
    font-family: 'Noto Sans', sans-serif !important;
    font-weight: 800;
    font-size: 16px;
    line-height: 0.9;
}

.instagram-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.125);
    overflow: hidden;
}

.instagram-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sns-image {
    width: 294px;
    height: 164px;
    overflow: hidden;
    border-radius: 4px;
}

.sns-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 新SNSフォロー歓迎セクション */
.social-follow-section {
    background-color: #613131;
    padding: 40px 20px;
}

.social-follow-container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-follow-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 11px 0;
}

.social-follow-title {
    font-size: 36px !important;
    color: white !important;
    margin: 0 !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    font-family: 'Shippori Mincho', serif !important;
}

.social-follow-divider {
    width: 399px;
    height: 1px;
    background-color: #D8D8D8;
    border-radius: 1px;
}

.social-follow-text {
    font-size: 16px !important;
    color: white !important;
    font-weight: 700 !important;
    margin: 0 !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    font-family: 'Shippori Mincho', serif !important;
}

.social-icons-area {
    padding: 17px 0;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.social-line-btn,
.social-instagram-btn {
    width: 74px;
    height: 74px;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-line-btn img,
.social-instagram-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-unagi-photo {
    width: 294px;
    height: 164px;
    overflow: hidden;
    border-radius: 4px;
}

.social-unagi-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* メニューヘッダー */
.menu-header-section {
    background-color: #1A0F08;
    padding: 80px 60px;
}

.menu-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.menu-header h2 {
    font-size: 48px;
    color: white;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.menu-subtitle-gold {
    font-size: 16px;
    color: #D4AF37;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.menu-decoration-line {
    width: 300px;
    height: 3px;
    background-color: #D4AF37;
    border-radius: 1.5px;
}

/* メニューセクション */
.menu-section {
    background-color: #FFFFFF;
    padding: 25px 0;
    border: none;
}

.menu-title {
    text-align: center;
    margin-bottom: 35px;
}

.menu-title h3 {
    font-size: 40px;
    color: #1A0F08;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.menu-subtitle {
    font-size: 16px;
    color: #8B6914;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.menu-title .decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #C4841D 0%, #D4AF37 50%, #C4841D 100%);
    border-radius: 1px;
    margin: 0 auto;
}

.menu-image {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.menu-image img {
    max-width: 840px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 12px rgba(26, 15, 8, 0.08);
}

.menu-list {
    max-width: 500px;
    margin: 0 auto;
    padding: 32px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 12px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 18px;
}

.menu-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.menu-item.with-description {
    flex-direction: column;
    align-items: stretch;
}

.menu-item.with-description>div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.item-name {
    color: #1A0F08;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.item-name small {
    font-size: 15px;
    color: #8B6914;
    margin-left: 4px;
    font-weight: 400;
    opacity: 0.9;
}

.item-price {
    color: #C4841D;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 20px;
}

.item-price.center {
    display: block;
    text-align: center;
    width: 100%;
}

.item-description {
    font-size: 13px;
    color: #8B6914;
    line-height: 1.7;
    opacity: 0.9;
}

.note {
    font-size: 13px;
    color: #8B6914;
    margin-top: 15px;
    padding: 0 32px;
    line-height: 1.7;
    opacity: 0.9;
}

/* 店舗情報セクション */
.store-info-section {
    background-color: #240808;
    padding: 48px;
}

.store-info-container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.store-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.store-subtitle {
    font-size: 14px;
    color: white;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin: 0;
    line-height: 16.8px;
}

.store-header h2 {
    font-size: 32px;
    color: white;
    font-weight: 700;
    margin: 0;
    line-height: 38.4px;
}

.store-decoration-line {
    width: 221px;
    height: 2px;
    background-color: white;
    border-radius: 1px;
}

.store-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.store-name {
    width: 100%;
    text-align: center;
}

.store-name p {
    font-size: 20px;
    color: white;
    font-weight: 600;
    margin: 0;
    line-height: 24px;
}

.store-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
}

.info-title {
    font-size: 16px;
    color: white;
    font-weight: 600;
    margin: 0;
    line-height: 19.2px;
    text-align: center;
}

.hours-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
}

.hours-detail p {
    font-size: 18px;
    color: white;
    font-weight: 500;
    margin: 0;
    line-height: 21.6px;
}

.hours-note {
    font-size: 14px !important;
    line-height: 16.8px !important;
    margin-top: 4px;
}

.store-holiday {
    width: 100%;
    text-align: center;
}

.store-holiday p {
    font-size: 16px;
    color: white;
    font-weight: 600;
    margin: 0;
    line-height: 19.2px;
}

.store-phone {
    width: 100%;
    text-align: center;
}

.store-phone p {
    font-size: 20px;
    color: white;
    font-weight: 500;
    margin: 0;
    line-height: 24px;
}

.store-address {
    width: 100%;
    text-align: center;
}

.address-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.postal-code {
    font-size: 16px;
    color: white;
    font-weight: 500;
    margin: 0;
    line-height: 19.2px;
}

.address {
    font-size: 18px;
    color: white;
    font-weight: 500;
    margin: 0;
    line-height: 21.6px;
}

/* レスポンシブデザイン - タブレット */
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }

    /* テイクアウトセクション */
    .takeout-section {
        padding: 60px 30px;
    }

    .takeout-content {
        flex-direction: column;
        gap: 40px;
    }

    .takeout-image {
        flex: none;
        width: 100%;
        max-width: 480px;
        height: 280px;
    }

    .takeout-text {
        text-align: center;
        width: 100%;
    }

    .small-decoration-line {
        margin: 16px auto 24px;
    }

    .title-group h2 {
        white-space: nowrap;
    }

    .menu-title h3 {
        font-size: 38px;
    }

    .menu-list {
        padding: 20px;
    }
}

/* レスポンシブデザイン - スマートフォン */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    /* ヘッダー */
    .header {
        height: 227px;
    }

    .header h1 {
        font-size: 34px;
        line-height: 40px;
    }

    .header-subtitle {
        font-size: 14px;
    }

    /* テイクアウトセクション */
    .takeout-section {
        padding: 48px 20px;
    }

    .takeout-header {
        margin-bottom: 40px;
    }

    .takeout-icon {
        width: 48px;
        height: 48px;
    }

    .takeout-icon img {
        width: 48px;
        height: 48px;
    }

    .title-group h2 {
        font-size: 36px;
        white-space: nowrap;
    }

    .subtitle {
        font-size: 14px;
    }

    .decoration-line-gradient {
        width: 100%;
        max-width: 327px;
        height: 2px;
    }

    .takeout-content {
        flex-direction: column;
        gap: 32px;
        padding: 0;
    }

    .takeout-image {
        flex: none;
        width: calc(100% + 40px);
        height: 240px;
        margin: 0 -20px;
        border-radius: 16px;
    }

    .takeout-text {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .takeout-subtitle h3 {
        font-size: 24px;
    }

    .small-decoration-line {
        width: 200px;
        height: 1px;
        margin: 12px auto 24px;
    }

    .takeout-description p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .cta-button {
        width: 280px;
        max-width: 100%;
        padding: 18px 40px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
    }

    /* SNSセクション */
    .sns-section {
        padding: 40px 20px;
    }

    .sns-content {
        gap: 16px;
    }

    .sns-header h3 {
        font-size: 28px;
    }

    .sns-decoration-line {
        width: 100%;
        max-width: 320px;
        height: 1px;
    }

    .sns-subtitle {
        font-size: 14px;
    }

    .sns-image {
        width: 100%;
        max-width: 294px;
        height: 164px;
    }

    /* 新SNSフォロー歓迎セクション */
    .social-follow-section {
        padding: 30px 20px;
    }

    .social-follow-container {
        gap: 16px;
    }

    .social-follow-title {
        font-size: 28px !important;
    }

    .social-follow-divider {
        width: 100%;
        max-width: 320px;
    }

    .social-follow-text {
        font-size: 14px !important;
    }

    .social-line-btn,
    .social-instagram-btn {
        width: 56px;
        height: 56px;
    }

    .social-unagi-photo {
        width: 100%;
        max-width: 294px;
    }

    /* メニューヘッダー */
    .menu-header-section {
        padding: 60px 20px;
    }

    .menu-header h2 {
        font-size: 36px;
    }

    .menu-subtitle-gold {
        font-size: 14px;
    }

    .menu-decoration-line {
        width: 260px;
    }

    /* メニューセクション */
    .menu-section {
        padding: 20px 0;
    }

    .menu-title h3 {
        font-size: 32px;
    }

    .menu-subtitle {
        font-size: 14px;
    }

    .menu-title .decoration-line {
        width: 60px;
        height: 2px;
    }

    .menu-image {
        margin: 0 -20px 30px;
    }

    .menu-list {
        padding: 20px 0;
    }

    .menu-item {
        font-size: 16px;
        padding: 10px 0;
        margin-bottom: 20px;
    }

    .item-name small {
        font-size: 13px;
    }

    .item-price {
        font-size: 18px;
    }

    .item-description {
        font-size: 12px;
        line-height: 1.6;
    }

    .note {
        font-size: 12px;
        padding: 0 20px;
    }

    /* 店舗情報セクション */
    .store-info-section {
        padding: 48px 20px;
    }

    .store-info-container {
        gap: 32px;
    }

    .store-header h2 {
        font-size: 32px;
        line-height: 38.4px;
    }

    .store-subtitle {
        font-size: 14px;
        line-height: 16.8px;
    }

    .store-decoration-line {
        width: 221px;
    }

    .store-info-list {
        gap: 24px;
    }

    .store-name p {
        font-size: 20px;
        line-height: 24px;
    }

    .info-title {
        font-size: 16px;
        line-height: 19.2px;
    }

    .hours-detail p {
        font-size: 18px;
        line-height: 21.6px;
    }

    .hours-note {
        font-size: 14px !important;
        line-height: 16.8px !important;
    }

    .store-holiday p {
        font-size: 16px;
        line-height: 19.2px;
    }

    .store-phone p {
        font-size: 20px;
        line-height: 24px;
    }

    .postal-code {
        font-size: 16px;
        line-height: 19.2px;
    }

    .address {
        font-size: 18px;
        line-height: 21.6px;
    }
}

/* 中画面用の調整 */
@media (max-width: 1024px) {
    .takeout-section {
        padding: 60px 40px;
    }

    .takeout-image {
        flex: 0 0 400px;
        height: 280px;
    }

    .takeout-content {
        gap: 40px;
    }
}

/* 大画面用の調整 */
@media (min-width: 1200px) {

    .takeout-section {
        padding: 80px 60px;
    }

    .takeout-content {
        gap: 60px;
    }
}

a.cta-button:hover {
    color: white;
}


.u-clearfix.u-custom-html.u-expanded-width.u-custom-html-1 {
    min-height: auto;
}


button#this_position {
    background: #9c0b0b;
    color: white;
    padding: 10px;
    text-align: center;
    width: 100%;
    font-weight: bold;
    font-size: 20px;
    border-radius: 5px;
    margin: 10px auto;
}

input#order-confirmation {
    display: block;
    width: 30px;
    height: 30px;
    display: block;
    margin: 0 auto;
}

label.u-label.u-block-5339-75 {
    text-align: center;
    margin: 0auto;
    display: inline-block;
}



#store_news .u-shortcode.u-shortcode-1 {
    border: none;
    background: #efefef;
    margin: 0 auto 37px auto;
}

#store_news h3.store_news_h3 {
    text-align: center;
    padding: 10px;
    font-size: 27px;
}

#store_news .store_news_content {
    padding: 20px 10px;
}



/* footer fix */

.footer-fix-sp3,
.footer-fix-pc3 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-fix-sp3 {
    display: flex;
}

.footer-fix-pc3 {
    display: none;
}

@media (min-width: 768px) {
    .footer-fix-sp3 {
        display: none;
    }

    .footer-fix-pc3 {
        display: block;
    }

    .footer-fix-pc3 .inner-wrapper {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
}

.tel {
    flex: 1;
    background: #471500;
    padding: 10px 0;
    border-radius: 5px;
    margin: 3px;
}

.tel a {
    display: block;
    color: #fff;
    text-decoration: none;
}

.tel-wrapper {
    text-align: center;

}

.tel-wrapper img {
    width: 24px;
    height: 24px;
}

.tel-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tel-wrapper span {
    font-size: 12px;
    display: block;
}

.tel-text {
    font-size: 18px;
    font-weight: bold;
}

.inner-wrapper {
    max-width: 660px;
    margin: 0 auto;
}
