/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #777575;
    font-family: 'Inter', sans-serif;
    padding-bottom: 68px;
    position: relative;
}

html,
body {
    min-height: 100%;
}

body {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: #777575;
}

section {
    width: 90vw;
    margin: 0 auto 80px;
}



/* =========================
   COMMON
========================= */

.wrap {
    padding: 0 10px;
}

.center-btn {
    width: fit-content;
    margin: 50px auto 0;
    text-align: center;
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 47px;
    margin: 0 auto 30px;

    background: #8ecfce;
    color: #fff;

    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

@media (min-width: 769px) {
    .section-title {
        width: 600px;
        height: 60px;
        margin-bottom: 50px;
        font-size: 24px;
    }
}

.section-sub_title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60vw;
    height: 35px;
    margin: 0 auto 30px;
    background: #8ecfce;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

@media (min-width: 769px) {
    .section-sub_title {
        width: 400px;
        height: 40px;
        margin-bottom: 50px;
        font-size: 20px;
    }
}

.sub_heading {
    position: relative;
    width: fit-content;
    margin: 30px auto 30px;
    color: #8ecfce;
    font-size: 20px;
    font-weight: 600;
}

.sub_heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;

    width: 130%;
    height: 3px;

    background: #8ecfce;

    transform: translateX(-50%);
}

.sub_heading.spacious {
    margin: 60px auto 30px;
}


/* =========================
   HEADER
========================= */

header {
    width: 100%;
    height: 56px;
    background: #a8d8d8;
}

/* =========================
   SP HEADER
========================= */

@media (min-width: 1024px) {
    .sp_header {
        display: none;
    }
}

/* ハンバーガーボタン */

.menu-btn {
    position: fixed;
    top: 20px;
    right: 30px;

    width: 40px;
    height: 20px;

    background: none;
    border: none;
    cursor: pointer;

    z-index: 1100;
}

.menu-btn span {
    position: absolute;
    left: 0;

    width: 100%;
    height: 7px;

    background: #07567A;

    transition: 0.4s;
}

.menu-btn span:nth-child(1) {
    top: 0;
}

.menu-btn span:nth-child(2) {
    bottom: 0;
}

/* active */

.menu-btn.active span:nth-child(1) {
    top: 6.5px;
    transform: rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    bottom: 6.5px;
    transform: rotate(-45deg);
}

/* メニュー */

.menu-panel {
    position: fixed;
    top: 0;
    right: -100%;

    width: 100%;
    height: 100vh;

    background: #83C5C6;

    display: flex;
    justify-content: center;

    transition: 0.5s ease;

    z-index: 900;
}

.menu-panel.active {
    right: 0;
}

.menu-panel ul {
    margin-top: 10vh;
    list-style: none;
}

.menu-panel li {
    margin: 25px 0;
}

.menu-panel a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 4rem;
}

/* =========================
   PC HEADER
========================= */

.pc_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: clamp(70px, 5vw, 100px);

    background: #98cfd0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 3vw;

    z-index: 1000;
}

@media (max-width: 1023px) {
    .pc_header {
        display: none;
    }
}

.header_logo img {
    width: 25vw;
    max-width: 300px;
}

.header_nav ul {
    display: flex;
    align-items: center;
    gap: 3vw;

    list-style: none;
}

.header_nav a {
    color: #1e7b7e;

    font-size: clamp(14px, 1.2vw, 20px);
    font-weight: 500;

    transition: 0.3s;
}

.header_nav a:hover {
    opacity: 0.7;
}

/* =========================
   HERO
========================= */

.sub_hero {
    position: relative;
    width: 100%;
    height: 60vw;
    overflow: hidden;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

@media (min-width: 769px) {
    .sub_hero {
        height: 40dvh;
    }
}

.sub_hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

/* image 1 */

.img1 {
    background-image: url("../img/sub_hero_pc.png");
    background-size: cover;
    background-position: center top;
}


.sub_hero-inner {
    position: relative;
    z-index: 2;
}

.sub_hero small {
    position: absolute;
    top: 16vw;
    left: 50%;
    transform: translateX(-50%);

    display: block;
    width: fit-content;

    font-size: 11px;
    letter-spacing: .2em;
}

.sub_hero small img {
    width: 21vw;
    max-width: 200px;
}

@media (min-width: 769px) {
    .sub_hero small {
        top: 16vh;
    }

    .sub_hero small img {
        width: 150px;
    }
}

/* =========================
   CTA
========================= */

.cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    z-index: 100;

    height: 68px;

    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }

    .cta {
        width: 400px;
        left: auto;
        right: 0;
        bottom: 0;
    }
}

.cta a {
    padding: 20px 0;

    color: #fff;
    text-align: center;
    font-size: 20px;
}

.cta a:first-child {
    background: #e1c066;
}

.cta a:last-child {
    background: #0f5970;
}

/* =========================
   ABOUT
========================= */

.about_us {
    margin: 0 auto 0;
    background-image: url(../img/about_us_back.png);
    background-size: cover;
    background-repeat: repeat;
    background-position: center 30%;
    width: 90%;
    max-width: 800px;
    padding: 0px 20px;
}

.about_us p {
    max-width: 480px;
    margin: 0 auto;
    line-height: 2.2;
    font-size: 16px;
}

.fade_up {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 1s ease,
        transform 1s ease;
}

.fade_up.show {
    opacity: 1;
    transform: translateY(0);
}

.about_us p strong {
    color: #F4AE22;
    font-weight: 600;
    font-size: 20px;

}

/* =========================
   MENU-TITLE
========================= */
.menu-title {
    margin: 0 auto 20px;
}

.menu-title .section-title {
    margin-bottom: 0px;
}

.menu_btn_wrap {
    width: 90vw;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin: 0 auto;
    position: sticky;
    top: 50px;
    z-index: 100;
    margin-bottom: 30px;
}

@media (min-width: 1024px) {
    .menu_btn_wrap {
        max-width: 800px;
        grid-template-columns: repeat(4, 1fr);
        top: clamp(80px, 5.5vw, 110px);
    }
}

.menu_btn {
    position: relative;
    display: block;
    aspect-ratio: 13 / 8;
    overflow: hidden;
}

.menu_btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* 半透明の膜 */
.menu_btn .overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 127, 129, 0.50);
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* 文字 */
.menu_btn .menu_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    font-size: clamp(16px, 3.5vw, 20px);
    font-weight: 600;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .menu_btn .menu_text {
        font-size: 20px;
    }
}

/* hover時 */
.menu_btn:hover .overlay {
    opacity: 0.5;
}

.menu_btn:hover img {
    transform: scale(1.05);
}

#soup_curry,
#drinks,
#foods,
#kids {
    scroll-margin-top: 130px;
}

@media (min-width: 769px) {

    #soup_curry,
    #drinks,
    #foods,
    #kids {
        scroll-margin-top: clamp(250px, 9vw, 300px);
    }

    ;
}

/* =========================
   SOUP CURRY
========================= */
.curry_items_wrap {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: auto;
    justify-items: center;
    justify-content: center;

}



@media (min-width: 840px) {
    .curry_items_wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.curry_items {
    width: fit-content;
    display: flex;
    gap: 0px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {

    .curry_items:nth-child(even) {
        flex-direction: row-reverse;
    }

}

@media (min-width: 769px) {

    .curry_items:nth-child(4n+3),
    .curry_items:nth-child(4n+4) {
        flex-direction: row-reverse;
    }

}

.img_wrap {
    width: fit-content;
}

.img_wrap img {
    width: 40vw;
    height: auto;
    max-width: 200px;
    max-height: 150px;
    display: block;
}

.curry_items_body {
    text-align: center;
    padding: 20px;
    background: #FBF7DC;
    height: fit-content;
}

.curry_items_body p {
    font-size: 16px;
}


.curry_items.reverse {
    flex-direction: row-reverse;
}

.curry_guide {
    background: #FBF7DC;
    padding: 30px;
    width: 80vw;
    max-width: 534px;
    margin: auto;
    margin-bottom: 50px;
}

.curry_guide p {
    width: fit-content;
    margin: auto;
    font-size: 14px;

}

/* =========================
   TOPPINGS
========================= */

.topping_wrap {
    display: grid;
    width: 90vw;
    max-width: 360px;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0 auto 40px;
}

@media (min-width: 769px) {
    .topping_wrap {
        max-width: 570px;
        grid-template-columns: repeat(3, 1fr);
    }
}

.topping-card {
    background: #FBF7DC;
    height: fit-content;
    min-height: 200px;
    padding: 14px 10px;
    text-align: center;
}

.topping-price {
    color: #8ecfce;

    font-size: 20px;
    font-weight: 700;

    margin-bottom: 10px;
}

.topping-card__list {
    list-style: none;

    font-size: 14px;
    line-height: 1.7;
}

.is-other {
    margin-top: 20px;
}

.topping-guide {
    background: #FBF7DC;
    padding: 30px;
    width: 60vw;
    max-width: 300px;
    margin: auto;
    margin-bottom: 50px;
}

.topping-guide p {
    width: fit-content;
    margin: auto;
    font-size: 14px;

}

/* =========================
   FOODS
========================= */
.foods_menu {
    width: 80vw;
    max-width: 400px;
    margin: auto;
    background: #FBF7DC;
    padding: 30px;
}

.menu_table {
    max-width: 200px;
    margin: auto;
}

.menu_photo {
    width: 90%;
    max-width: 500px;

    margin: 30px auto 30px;

    display: block;
}

.menu_row {
    display: flex;
    justify-content: space-between;
}

.menu_row p {
    font-size: 14px;
    line-height: 2;
}

.menu_item span {
    display: block;
    line-height: 2;
    border-bottom: 2px solid #87c3c5;
}

.menu_item span:last-child {
    width: fit-content;
    margin-left: auto;
}

/* =========================
   KIDS MENU
========================= */

.kids_menu_body {
    width: 80vw;
    max-width: 400px;
    margin: auto;
    background: #FBF7DC;
    padding: 30px;
}

.kids_menu_table {
    max-width: 220px;
    margin: auto;
}

.kids_menu_row {
    display: flex;
    justify-content: space-between;
}

.kids_menu_row p {
    font-size: 14px;
    line-height: 2;
}

.kids_menu_item span {
    display: block;
    line-height: 2;
    border-bottom: 2px solid #87c3c5;
}

.kids_menu_item span:last-child {
    width: fit-content;
    margin-left: auto;
}

/* =========================
  Drinks Menu
========================= */

.drinks_menu {
    width: 80vw;
    max-width: 400px;
    margin: auto;
    background: #FBF7DC;
    padding: 30px;
}

.drink_menu_table {
    max-width: 200px;
    margin: auto;
}

.drink_menu_row {
    display: flex;
    justify-content: space-between;
}

.drink_menu_row p {
    font-size: 14px;
    line-height: 2;
}

.drink_menu_item span {
    display: block;
    line-height: 2;
    border-bottom: 2px solid #87c3c5;
}


/* =========================
  NEW TOPICS
========================= */
.topics {
    display: grid;
    gap: 24px;
    justify-content: center;
    justify-items: center;
    max-width: 1230px;
    margin: auto;

    grid-template-columns: 300px;
}

@media (min-width: 768px) {
    .topics {
        grid-template-columns: repeat(2, 300px);
    }

    .topics:has(.card_tp:only-child) {
        grid-template-columns: 300px;
    }
}

@media (min-width: 1024px) {
    .topics {
        grid-template-columns: repeat(auto-fit, 300px);
    }
}

.card_tp {
    width: 100%;

    background: #fbf7dc;
    overflow: hidden;

    aspect-ratio: 1 / 1;
}

.card_tp_link {
    display: block;
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card_tp_img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.card_tp_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card_tp_body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

.card_tp_title {
    font-weight: 600;
}


.card_tp_body p {
    font-size: 14px;
    line-height: 1.6;
}

.card_tp_excerpt {
    line-height: 1.7;
    color: #666;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.pagination {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 44px;
    height: 44px;

    margin: 0 4px;

    border: 1px solid #d8d8d8;
    border-radius: 50%;

    text-decoration: none;

    transition: .3s;
}

.pagination .page-numbers:hover {
    background: #0f5970;
    color: #fff;
}

.pagination .current {
    background: #0f5970;
    color: #fff;
    border-color: #0f5970;
}

.pagination .dots {
    border: none;
    width: auto;
}

/* ==========================
   Single Post
========================== */

.single-main {
    padding: 80px 20px;
}

.single-main article {
    max-width: 1000px;
    margin: 0 auto;
}

/* --------------------------
   Title & Meta
-------------------------- */

.content-Meta {
    max-width: 680px;
    margin: 0 auto 40px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;

    font-size: 0.9rem;
}

.content-Meta a {
    color: inherit;
    text-decoration: none;
}

.content-Meta a:hover {
    opacity: 0.7;
}

/* --------------------------
   EyeCatch
-------------------------- */

.content-EyeCatch {
    max-width: 900px;
    margin: 0 auto 60px;
}

.content-EyeCatch img {
    display: block;
    width: 100%;
    height: auto;
}

/* --------------------------
   Body
-------------------------- */

.content-Body {
    max-width: 680px;
    margin: 0 auto;

    line-height: 2;
    font-size: 1rem;
}

.content-Body p {
    margin: 0 0 1.8em;
}

.content-Body h2 {
    margin: 3em 0 1em;
    padding-bottom: 0.5em;

    font-size: 1.8rem;
    line-height: 1.5;

    border-bottom: 2px solid #ddd;
}

.content-Body h3 {
    margin: 2.5em 0 1em;

    font-size: 1.4rem;
    line-height: 1.5;
}

.content-Body h4 {
    margin: 2em 0 1em;

    font-size: 1.2rem;
    line-height: 1.5;
}

.content-Body ul,
.content-Body ol {
    margin-bottom: 1.8em;
    padding-left: 1.5em;
}

.content-Body li {
    margin-bottom: 0.5em;
}

.content-Body a {
    text-decoration: underline;
}

.content-Body img {
    display: block;
    max-width: 100%;
    height: auto;
}

.content-Body figure {
    margin: 2em 0;
}

.content-Body blockquote {
    margin: 2em 0;
    padding: 1.5em;

    background: #f8f8f8;
    border-left: 4px solid #ccc;
}

.content-Body table {
    width: 100%;
    margin: 2em 0;
    border-collapse: collapse;
}

.content-Body th,
.content-Body td {
    padding: 12px;
    border: 1px solid #ddd;
}

.content-Body th {
    background: #f5f5f5;
}

/* --------------------------
   WordPress
-------------------------- */

.aligncenter {
    display: block;
    margin: 2em auto;
}

.alignleft {
    float: left;
    margin: 0 2em 1em 0;
}

.alignright {
    float: right;
    margin: 0 0 1em 2em;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption img {
    display: block;
}

.wp-caption-text {
    margin-top: 0.5em;

    color: #666;
    font-size: 0.875rem;
    text-align: center;
}

/* --------------------------
   Footer
-------------------------- */

.content-Footer {
    max-width: 680px;
    margin: 80px auto 0;
    padding-top: 40px;

    border-top: 1px solid #ddd;
}

/* --------------------------
   Tags
-------------------------- */

.content-Tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin: 0 0 40px;
    padding: 0;

    list-style: none;
}

.content-Tags a {
    display: inline-block;
    padding: 8px 14px;

    background: #f5f5f5;
    border-radius: 999px;

    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
}

.content-Tags a:hover {
    opacity: 0.7;
}

/* --------------------------
   Prev Next
-------------------------- */

.content-Nav {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.content-Nav_Prev,
.content-Nav_Next {
    flex: 1;
}

.content-Nav_Next {
    text-align: right;
}

.content-Nav a {
    color: #777575;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.6;
}

.content-Nav a:hover {
    opacity: 0.7;
}

/* --------------------------
   Mobile
-------------------------- */

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

    .single-main {
        padding: 60px 16px;
    }

    .content-EyeCatch {
        margin-bottom: 40px;
    }

    .content-Nav {
        flex-direction: column;
        gap: 20px;
    }

    .content-Nav_Next {
        text-align: left;
    }

    .alignleft,
    .alignright {
        float: none;
        margin: 2em auto;
        display: block;
    }
}

/* =========================
　　ARCHIVE
========================= */

.archive-all {
    text-align: center;
}

.archive-all-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    padding: 12px 32px;
    border-radius: 999px;
    border: 1px solid #0f5970;
    transition: .3s;
    font-size: 14px;
}

.archive-all-btn:hover {
    background: #0f5970;
    color: #fff;
}

.archive-nav {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}

.archive-nav__block {
    margin-top: 20px;
}

.archive-nav__title {
    text-align: center;
    font-size: 14px;
    margin-bottom: 8px;
}

.archive-nav__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.archive-nav__links a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #0f5970;
    border-radius: 999px;
    transition: .3s;
    font-size: 14px;
}

.archive-nav__links a:hover {
    background: #0f5970;
    color: #fff;
}

.archive-nav select {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 12px 16px;
    border: 1px solid #0f5970;
    color: #777575;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;

}

.archive-nav select:hover {
    background: #0f5970;
    color: #fff;
}

.archive-nav select:focus {
    outline: none;
    border-color: #c9863b;
    box-shadow: 0 0 0 3px rgba(201, 134, 59, 0.2);
}

option {
    background: #fff;
    color: #777575;
    font-size: 16px;
}

/* =========================
　　SHOP_INFO
========================= */


.shop-name {
    margin-bottom: 20px;

    text-align: center;
    color: #e4a220;

    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 500;
}

.shop-table {
    width: 90vw;
    max-width: 400px;
    margin: 0 auto;

    border-collapse: separate;
    border-spacing: 0 12px;
}

.shop-table th {
    padding: 30px 15px;

    background: #ebe6ca;

    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
}

.shop-table td {
    width: clamp(200px, 60vw, 300px);
    padding-left: 15px;

    color: #666;
    line-height: 1.8;
    vertical-align: middle;
}

.hours-time {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}

.hours-box:not(:last-child) {
    margin-bottom: 16px;
}

.hours-title {
    display: inline-block;

    width: clamp(180px, 100%, 300px);

    margin-bottom: 8px;
    padding: 6px 12px;

    background: #ebe6ca;

    text-align: center;
    font-weight: 400;
}

.closed-days {
    text-align: center;
    font-size: 14px;

}

.tel {
    text-align: center;
    font-size: 14px;

}

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

.map {
    background: #fff;
}

.map p {
    width: fit-content;
    margin: 0 auto;
    font-size: 14px;
    text-align: left;
}

.map_img {
    display: block;

    width: 100%;
    max-width: 600px;

    margin: 0 auto 30px;
}

.map_btn {
    display: block;

    max-width: 200px;

    margin: 30px auto 0;
    padding: 15px 0;

    background: #0f5970;
    border-radius: 20px;

    color: #fff;
    text-align: center;
    font-size: 1rem;
}

.map-btn:hover {
    opacity: .8;
}


/* =========================
   404
========================= */

.error404_Body {
    width: 90vw;
    max-width: 400px;
    margin: 0 auto;

    text-align: center;
}

.error404_Body p {
    line-height: 1.8;
}


/* =========================
   FOOTER
========================= */

.footer {
    height: 320px;
    margin-top: 120px;
    padding-top: 24px;

    background: #87c3c5;

    color: #fff;
    text-align: center;
}

.footer_nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nav_row {
    display: flex;
    justify-content: center;
    gap: 28px;

    list-style: none;
}

.footer_nav a {
    color: #fff;
    font-size: 16px;
}

.footer_logo {
    width: fit-content;
    margin: auto;
}

.footer_address {
    margin: 20px 0 50px;

    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
}