@charset "UTF-8" ;
/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f4eb;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1 {
    margin-top: 20px;
    font-size: 2em;
    color: #444;
}
.a img{
    height: 700px;
    width: 1400px;
}

.d{
    width: 60%;
    height: 60%;
    margin: 0 auto;
}
 
.map{
    display: flex;
    justify-content: space-evenly;
}

.map img{
    height: 60%;
    width: 60%;
}


.map p{
    text-align: left;
    font-size: 35px;
    margin: 5%;
}





/* Main Image */
.main-image {
    width: 80%;
    margin: 20px auto;
    border-radius: 10px;
}

/* Menu Section */
.menu-container {
    margin: 20px auto;
    max-width: 1200px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-table {
    border: 1px solid #ddd;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
}

.menu-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-table li {
    margin: 10px 0;
    font-size: 1em;
    display: flex;
    justify-content: space-between;
}

.menu-icons {
    margin-right: 10px;
}

/* Menu Images */
.menu-images {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.menu-images img {
    width: 45%;
    height: auto;
    object-fit: cover;
}

.menu-images img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.logo img{
    width: 20%;
    height: 20%;
}

/* Staff Section */
.staff-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px auto;
    max-width: 1200px;
}

.staff-card {
    margin: 10px;
    padding: 10px;
    width: 150px;
    text-align: center;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.staff-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.staff-card .name {
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 5px;
}

.staff-card .name.male {
    color: #1e90ff;
}

.staff-card .name.female {
    color: #ff69b4;
}

.staff-card .description {
    font-size: 0.9em;
    color: #666;
}

/* Home Icon */
.home-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.home-icon img {
    width: 30px;
    height: 30px;
}
body {
    font-family: "Arial", "Helvetica", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f4e9; /* ページの背景色 */
    color: #333;
    line-height: 1.6;
}

/* コンテナ全体 */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダーセクション */
.header {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 2rem;
    margin: 0;
    color: #333;
}

.home-icon {
    top: 10px;
    right: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    color: #333;
}

/* メインコンテンツ */
.main-content {
    text-align: center;
}
.main-content img{
    height: 303px;
    width: 827px;
}

.cat-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.text-content {
    text-align: c;
    padding: 10px 20px;
}

.text-content section {
    margin-bottom: 20px;
}

.text-content h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #444;
}

.text-content p {
    font-size: 1rem;
    color: #555;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFEF5;
    padding: 20px;
}

/* ヘッダー */
header {
    background: #FFFEF5;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #FFFEF5;
}


header h1 {
    font-size: 2em;
    color: #741818;
    margin-bottom: 10px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.2em;
    padding: 5px 10px;
    transition: color 0.3s, border-bottom 0.3s;
}

header nav ul li a:hover {
    color: #b22222;
    border-bottom: 2px solid #b22222;
}

/* メインセクション */
main {
    margin: 20px 0;
}

/* セクションA - ヒーローイメージ */
section.a {
    text-align: center;
    background-color: #FFFEF5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

section.a figure img {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

section.a h1 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

section.a p {
    font-size: 1.2em;
    color: #666;
}

/* セクションB - 説明文 */
section.b {
    text-align: center;
    background: #FFFEF5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
}

/* セクションC - 営業情報 */
section.c {
    text-align: center;
    background: #FFFEF5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

section.c h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

section.c p {
    font-size: 1.2em;
    color: #666;
}

/* セクションD - 料金表 */
section.d {
    background: #5B7FB1;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

section.d h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

section.d h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

section.d ul {
    list-style: none;
    padding: 0;
}

section.d ul li {
    font-size: 1.2em;
    margin-bottom: 5px;
}

/* セクションE - おやつ */
section.e {
    text-align: center;
    background: #FFFEF5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

section.e h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

section.e p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 5px;
}

/* セクションF - 連絡先 */
section.f {
    background: #faf9f6;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

section.f h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

section.f p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 5px;
}

/* フッター */
footer {
    background: #FFFEF5;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
    border-top: 2px solid #ccc;
}
.question-title a{
    color: green;
    font-size: 30px;
}
.question-title {
    font-size: 22px;
}


        


/* Responsive Design */
@media (max-width: 768px) {
    .menu-table {
        width: 90%;
    }

    .menu-images {
        flex-direction: column;
        width: 90%;
    }
}

.a img{
    width: 100%;
    height: 100%;
}
.b img{
   width: 100%;
   height: 100%;
}
.d img{
    width: 100%;
    height: 100%;
}

.f{
    aspect-ratio: 16/9;
    max-width: 900px;
    width: 100%;
    height: auto;
}
.main-content img{
    width: 100%;
    height: 100%;
}

.main-image img{
    width: 100%;
    height: 100%;
}


@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    .menu-table li {
        font-size: 0.9em;
    }

    .gmap{
        position: absolute;
        width: 100%;
        height: 0;
        padding-top: 56.25%;
    }

    .gmap iframe{
        position: absolute;
        top: 0;
        left: 0;
        width: 80%;
        height: 100%;
    }
    .body{
        text-align: center;
        margin: auto;
    }

    .map p{
        font-size: 90%;
    }
}

