@charset "UTF-8";


/* -------------------------------------------
   Unique Styles for Concept Page
------------------------------------------- */

/* Page Header */
.page-header {
    background-color: #fdf2f0;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}
.page-header h1 {
    font-size: 1.8rem;
    color: #5a4a42;
    margin-bottom: 10px;
}
.page-header span {
    color: #e8a798;
    font-size: 1rem;
    font-weight: normal;
    letter-spacing: 0.1em;
}

/* Concept Lead */
.concept-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}
.concept-lead h2 {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #5a4a42;
}
.concept-lead p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 30px;
}
.highlight {
    background: linear-gradient(transparent 60%, #ffe0da 60%);
    font-weight: bold;
    padding: 0 5px;
}

/* Greeting Section */
.greeting-section {
    background-color: #fff;
    border-radius: 50px;
    padding: 80px 20px;
    margin-bottom: 80px;
}
.greeting-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
@media (min-width: 768px) {
    .greeting-container {
        flex-direction: row;
        align-items: flex-start;
    }
}
.greeting-img-area {
    width: 100%;
    max-width: 350px;
    flex-shrink: 0;
}
.greeting-img {
    width: 100%;
    height: auto;
    border-radius: 30px; /* 角丸の写真 */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.greeting-content {
    flex: 1;
}
.greeting-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-left: 5px solid #e8a798;
    padding-left: 15px;
    color: #5a4a42;
}
.greeting-text {
    margin-bottom: 30px;
    text-align: justify;
}
.profile-box {
    background-color: #fcf9f4;
    padding: 25px;
    border-radius: 20px;
    border: 2px dashed #eaddd3;
}
.profile-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #5a4a42;
}
.profile-list li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    font-size: 0.95rem;
}
.profile-list li::before {
    content: "●";
    color: #e8a798;
    font-size: 0.6em;
    position: absolute;
    left: 0;
    top: 0.5em;
}

/* Philosophy / Origin */
.origin-section {
    text-align: center;
    margin-bottom: 80px;
}
.origin-box {
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 25px rgba(232, 167, 152, 0.2);
    position: relative;
}
/* 円形の装飾 */
.origin-box::before {
    content: "";
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border: 1px dashed #e8a798;
    border-radius: 50%;
    animation: spin 60s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

.origin-title {
    font-size: 1.5rem;
    color: #e8a798;
    margin-bottom: 10px;
    font-weight: bold;
}
.origin-desc {
    font-size: 1rem;
    line-height: 1.8;
}

/* Facility (Atmosphere) */
.facility-section {
    margin-bottom: 80px;
}
.facility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .facility-grid { grid-template-columns: repeat(2, 1fr); }
}
.facility-item img {
    border-radius: 20px;
    margin-bottom: 15px;
}
.facility-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #e8a798;
}