/* Blanket Donuts - Advanced Minimal Styles */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

@font-face {
    font-family: 'LINE Seed JP';
    src: url('../font/LINE_Seed_JP/LINESeedJP_OTF_Rg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;

}

@font-face {
    font-family: 'LINE Seed JP';
    src: url('../font/LINE_Seed_JP/LINESeedJP_OTF_Bd.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.font01 {
    font-family: 'LINE Seed JP', sans-serif;
}

:root {
    --text-color: #953126;
    --bg-color: #fff;
    --border-color: #eee;
    --accent-color: #777;
    --primary-btn: #000;
    --danger-btn: #e63946;
    --edit-btn: #457b9d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #953126;
}

@media only screen and (max-width: 767px){
    .sp_none {
        display: none!important;
    }
}


body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
}

.container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    position: relative;
    background-color: #EFE5D0;
}

.container .cont01,
.container .cont02 {
    width: calc((100% - 375px) / 2);
    height: 100vh;
    height: 100dvh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: 0;
}
.container .cont01 {
    left: 0;
    background-image: url(../img/bg01.jpg);
}
.container .cont02 {
    right: 0;
    background-image: url(../img/bg02.jpg);
}

.container .container_01 {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    z-index: 1;
}
@media only screen and (max-width: 767px){
    .container .container_01 {
        height: auto;
        overflow-y: visible;
    }
}

.container .container_01 .container_01_01 {
    width: 100%;
    max-width: 375px;
    min-width: 320px;
    margin: 0 auto;
    padding: 129px 27px 54px;
}

header {
    margin: 0 auto 100px;
    text-align: center;
}

.logo {
    max-width: 257px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.tagline {
    font-size: 0.8rem;
    color: var(--accent-color);
}


.search-section .text01 {
    display: block;
    font-size: 15px;
    margin: 0 auto 15px;
    text-align: center;
}

/* Form Elements */
select,
input,
button,
textarea {
    width: 100%;
    padding: 20px 28px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    border-radius: 32px;
    font-size: 1rem;
    font-family: inherit;
    color: #953126;
    background: white;
    -webkit-appearance: none;
    appearance: none;
}

select {
    background-image: url(../img/icon01.png);
    background-repeat: no-repeat;
    background-size: 16px auto;
    background-position: right 29px center;
    padding-right: 29px;
    font-size: 15px;
}

button {
    background: var(--primary-btn);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    opacity: 0.8;
}

button:disabled {
    background: #ccc;
}

/* Store Card In Search Page */
.store-group {
    margin-top: 56px;
    padding: 0 13px;
}
.store-group::after {
    content: "";
    display: block;
    width: 115px;
    height: 1px;
    background-color: #953126;
}

.prefecture-label {
    font-size: 13px;
    letter-spacing: 0.1em;
    margin-bottom: 48px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.prefecture-label::before {
    content: "■";
    margin-right: 5px;
    font-size: 8px;
}

.store-item {
    margin-bottom: 43px;
}

.store-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.store-detail {
    font-size: 0.85rem;
    color: #555;
    display: flex;
    gap: 12px;
    margin-bottom: 4px;
}

.detail-label {
    color: #BF9078;
    width: 45px;
    flex-shrink: 0;
}

/*.map-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 700;
    text-decoration: underline;
}*/

.map-link {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    font-size: 0.6rem;
    font-weight: 700;

    color: #fff;
    background-color: #953126;

    border-radius: 4px;
    text-decoration: none;

    transition: opacity 0.2s ease;
}

.map-link:hover {
    opacity: 0.85;
}

.store-announcement {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #8B4513;
    line-height: 1.6;
    font-weight: 500;
}

/* Admin Specific */
.admin-list-item {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
}

.admin-info {
    flex-grow: 1;
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.btn-small {
    width: auto;
    padding: 6px 12px;
    font-size: 0.75rem;
    margin-bottom: 0;
}

.btn-edit {
    background: var(--edit-btn);
}

.btn-danger {
    background: var(--danger-btn);
}

.nav-link {
    display: block;
    text-align: center;
    margin-top: 40px;
    font-size: 0.75rem;
    color: #999;
    text-decoration: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 管理画面内、打ち消し用 */
.container .container_01.kanri .container_01_01 {   
    max-width: 480px;
}
.kanri select,
.kanri input,
.kanri button,
.kanri textarea {
    border-radius: 6px;
}