@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

/* ==========================================================================
   共通設定（フォント・カラー・サイズ）
   ========================================================================== */
body {
    font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "Open Sans", sans-serif;
    color: #51433C; 
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, .title { font-size: 35px; }
h2 { font-size: 28px; }
h3 { font-size: 16px; }
p, li { font-size: 16px; }

h2, h3 {
    text-align: center;
    font-weight: bold;
}

/* ==========================================================================
   メインビジュアル（FV）エリア
   ========================================================================== */

.main-visual {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;

    /* 共通sectionの影響を打ち消す */
    max-width: none;
    margin: 0;
    padding: 0;
}

/* 背景画像の設定 */
.MV-image,
.MV-image picture,
.MV-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.MV-image img {
    object-fit: cover;
    object-position: center center;
}

/* 中央のタイトル（白文字、中央揃え） */
.MV-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    text-align: center;
    width: 90%;
    z-index: 10;
}

.MV-title .title {
    margin: 0;
    font-size: 2.5rem;
    line-height: 1.2;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
}

/* SP向け設定（画面横幅が768px以上のとき自動切り替え） */
@media screen and (min-width: 768px) {
    .main-visual {
        height: 850px;
    }

    .MV-title .title {
        font-size: 4rem;
    }
}

/* ==========================================================================
   サービス内容
   ========================================================================== */
section {
    padding: 60px 20px;
    max-width: 900px; 
    margin: 0 auto;
}


.services-item picture {
    display: rounded-block; 
    width: 100%;
    max-width: 500px; 
    height: 300px;  
    margin: 20px auto;
    border: 2px solid #51433C;
    background-color: #f9f9f9; 
    position: relative;
}


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


/* ==========================================================================
私たちの想い & 訪問エリア
========================================================================== */

.concept  {
    text-align: center;
    padding: 80px 20px;
}
.concept, .area {
    text-align: center;
    padding: 60px 20px;
}

.concept img {
    width: 100%;
    max-width: 1200px; 
    height: 570px;    
    margin: 20px auto;
    border: 2px solid #51433C; 
    background-color: #f9f9f9; 
    position: relative;
    text-align: center;
}

.concept-text {
    line-height: 2.2;
    text-align: center;
    margin: 0;
}

.concept-signature {
    display: block;
    text-align: right; 
    margin: 0;
    padding-right: 10px;
}

.company-line {
    font-size: 1.1rem;     
    margin-bottom: 10px;
    margin: 0;
}

.name-line {
    font-size: 1.2rem;    
    letter-spacing: 0.1em;
    margin: 0;
}

.job-title {
    font-size: 0.9rem;       
    margin-right: 10px;      
}


.area .map {
    display: flex;           
    align-items: center;     
    justify-content: center;  
    gap: 12px;       
    margin-top: 20px;
}

.area .map img {
    width: 30px;            
    height: auto;
    margin: 0;            
    display: block;
}

.area .map p {
    margin: 0;              
    font-size: 18px;      
    font-weight: bold;    
    color: #51433C;        
}

.address {
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    height: 650px;
    overflow: hidden;
}

/* ==========================================================================
   ご利用方法
   ========================================================================== */
.usage {
    padding: 60px 20px;
    max-width: 700px; 
    margin: 0 auto;
}


.usage-item {
    background-color: #FCF4E5; 
    border-radius: 15px;     
    padding: 24px;
    margin-bottom: 20px;     
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 軽い影で上品に */
}

.usage-item h3.numbered-heading {
    color: #0077aa; 
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: left; 
}

.usage-item p {
    color: #51433C; 
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.6;
    text-align: left;
}


/* ==========================================================================
   料金（priceセクション）
   ========================================================================== */
.price {
    padding: 60px 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left; 
}

.price h2 {
    text-align: center; 
    margin-bottom: 24px;
}

.price p {
    color: #51433C;
    font-size: 16px;
    margin-bottom: 20px;
}

/* 料金のリスト部分 */
.price ul {
    list-content: none;
    padding-left: 0;
}

.price li {
    color: #51433C;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.5;
    position: relative;
    padding-left: 15px;
}

.price li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #51433C;
}

/* ==========================================================================
   スタッフ紹介セクション
   ========================================================================== */
.staff {
    padding: 60px 20px;
    text-align: center;
}

.staff-member {
    display: block;        
    text-align: center;   
    max-width: 450px;      
    margin: 0 auto 60px;   
}

.staff-member:last-child {
    margin-bottom: 0;
}

/* スタッフ画像 */
.staff-member img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 20px;
    border: 2px solid #51433C;
}

/* スタッフ名（h3） */
.staff-member h3 {
    text-align: center;
    color: #51433C;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* 経歴、メッセージ */
.staff-member p {
    font-size: 16px;
    line-height: 1.6;
    color: #51433C;
    margin-bottom: 10px;
    text-align: center;
}

.contact-btn {
    display: block;
    width: fit-content;
    margin: 0 auto 20px auto;
    background-color: #A4C99A;
    color: #51433C;
    font-size: 1.2rem;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


.contact-btn:hover {
    background-color: #b3d7a9; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    transform: translateY(2px); 
}

/* --- 各種情報リスト（住所・営業時間など） --- */
.footer-info-list {
    margin-bottom: 30px;
}

.footer-info-item {
    margin-bottom: 24px;
    text-align: center;
}

/* 項目タイトル（住所、営業時間などの見出し） */
.footer-info-item .info-title {
    display: block;
    color: #F07AA6;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 6px;
}

/* 各項目のテキスト内容 */
.footer-info-item .info-text {
    color: #51433C;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* メールアドレスのリンク色 */
.footer-info-item .info-text a {
    color: #51433C;
    text-decoration: none;
}
.footer-info-item .info-text a:hover {
    text-decoration: underline;
}

/* --- Instagramエリア --- */
.footer-sns {
    margin-bottom: 40px;
}

.instagram-icon {
    width: 45px;
    height: auto;
    transition: opacity 0.2s ease;
}

.instagram-icon:hover {
    opacity: 0.8;
}

/* --- コピーライト --- */
.footer-copyright {
    margin: 0;
}

.footer-copyright small {
    color: #51433C;
    font-size: 12px;
    letter-spacing: 0.02em;
}