@charset "UTF-8";
/* CSSドキュメント */

/* 基本スタイル */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

/* ヘッダーセクション */
header {
    background-color: #ffffff;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	
	/* ▼ 25.11.20に追加 ▼ */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo img {
    display: inline-block;
    max-width: 150px;
    height: auto;
}

.header-list ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.header-list li {
    margin-right: 20px;
    font-weight: bold;
}

.header-list a {
    color: #333;
    transition: color 0.3s;
    text-decoration: none;
}

.header-list a:hover {
    color: #c9171e;
}

/* メインセクション */
.main {
    background-color: #c9171e;
    color: #ffffff;
    padding: 20px 0;
	padding-bottom: 110px; /* footerの高さ分の余白を確保 */
	
	/* ▼25.11.20に追加 ▼ */
	min-height: calc(100vh - 100px);
    box-sizing: border-box;
	
	margin-top: 100px;  /* ヘッダーの高さぶん下げる */
}



.main-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.main img {
    width: 100%;
}

hr {
    max-width: 100%;
    height: 2px;
    background-color: #ffffff;
    margin: 40px auto;
}

h2 {
    font-size: 50px;
    font-weight: bold;
}
@media screen and (max-width:1200px ){
	h2{
	font-size: clamp(1.875rem, 1.25rem + 2.5vw, 3.125rem)	
	}
}

.menu-images {
    display: flex;
    flex-wrap: wrap; /* 複数行に折り返す設定 */
	justify-content: space-between; /* 両端に配置 */
}

.image-container {
    width: calc(50% - 20px); /* 2つ並べるために幅を50%に調整（間隔分を引いています） */
	margin-bottom: 10px;
}

.image-label {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
}

/* ショップセクション */
.shop-images {
    display: flex;
	flex-wrap: wrap; /* 折り返しを有効に */
    justify-content: space-between; /* 両端に配置 */
}

.shop-info {
	font-size: 16px;
    text-align: center;	
}

@media screen and (max-width:1200px ){
	.shop-info{
	font-size: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
	/* 1200-400 16-12*/
	}
}	

.shop-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.shop-address,
.shop-phone {
    margin-bottom: 5px;
}

.shop-map {
    text-decoration: underline;
    cursor: pointer;
}

.shop-map:hover {
    color: #c9171e;
}

@media screen and (max-width:1200px ){
	.shop-name,.image-label{
	font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
	/* 1200-400 24-16 */
	}
}

@media screen and (max-width:1200px ){
	.shop-info{
	font-size: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
	/* 1200-400 */
	}

}

/*メニューセクション*/
.container {
	display: flex;
	justify-content: space-between;
	gap: 10px; /* 枠間の間隔 */
	margin-bottom: 40px;
}

.box {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px; /* 長方形の幅 */
	height: 50px; /* 長方形の高さ */
	border: 2px solid #333; /* 枠線 */
	background-color: #fff; /* 背景色 */
	color: #333; /* 文字色 */
	font-weight: bold; /* 文字の太さ */
}

@media screen and (max-width:1200px ){
	.box{
	font-size: clamp(0.813rem, 0.656rem + 0.63vw, 1.125rem)
	/* 1200-400 18-13*/
	}
}

.menu-images {
	display: flex;
	flex-wrap: wrap;
}

.menu-images-container{
	width: calc(33.33% - 20px); /* 3つ並べるために幅を33.33%に調整（間隔分を引く） */
	margin-bottom: 10px; /* 下の余白 */
}



/* レスポンシブデザイン */
@media (max-width: 400px) {
    header {
        height: auto;
        padding: 10px 5%;
    }

    .header-list ul {
        flex-direction: column;
        align-items: center;
    }

    .header-list li {
        margin: 5px 0;
        font-size: 13px;
    }
    
    .main-content {
        width: 100%;
        padding: 0 20px;
    }

    hr {
        margin: 10px auto;
    }

    .menu-title, 
    .shop-title {
        font-size: 28px;
        margin-top: 20px;
    }

    .menu-images,
    .shop-images {
        flex-direction: column;
    }

    .image-container {
        width: 100%;
        margin-bottom: 20px;
    }
	
	.menu-images-container{
		width: 100%;
	}
    
	}

/* UNDER CONSTRUCTION ページ用 */
.under-construction {
    text-align: center;
    padding: 80px 20px;
}

.uc-main {
    font-size: 18px;          /* 段落サイズくらいに */
    font-weight: normal;      /* 太字やめる（好みで） */
    letter-spacing: 0.02em;   /* もしくは 0 にする */
    line-height: 1.8;
    max-width: 900px;         /* 行幅を適度に制限 */
    margin: 0 auto;
    text-align: center;       /* センターにしたいなら */
}

.page-title {
    text-align: center;
}

/* Franchise ボタン横並び（PC） */
.franchise-btn-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

/* ボタン個別 */
.franchise-btn-wrap {
    text-align: center;
}

.franchise-btn {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 320px;
    background-color: #8b0000;
    padding: 25px 25px;
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    position: relative;
    transition: transform .2s, box-shadow .2s;
}

.franchise-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

/* テキスト部分 */
.btn-text {
    font-size: 20px;
    line-height: 1.4;
    text-align: left;
}

/* 右側矢印 */
.btn-arrow {
    width: 28px;
    height: 28px;
    background-color: white;
    color: #8b0000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-left: 20px;
}

/* 🔽 スマホでは縦並びに切り替える */
@media screen and (max-width: 600px) {

    .franchise-btn-container {
        flex-direction: column;    /* ← スマホで縦並び */
        align-items: center;
        gap: 25px;                /* ボタン間スペース調整 */
        margin-top: 30px;
    }

    .franchise-btn {
        width: 260px;
        padding: 20px;
    }

    .btn-text {
        font-size: 16px;
    }

    .btn-arrow {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}
/* フッダーセクション */
