@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/*
Theme Name: Cocoon Child
Template: cocoon-master
*/

/* 関内URAKI整体院用カスタムスタイル */

/* 特定のページにのみ適用する場合は、body.page-id-XXX を使用 */
/* ページIDは管理画面で確認してください */

.uraki-seitai-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', sans-serif;
}

/* ヒーローセクション */
.uraki-hero {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    padding: 3rem 1rem;
    text-align: center;
    margin: -2rem -1rem 2rem;
}

.uraki-hero h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.uraki-catchphrase {
    font-size: 1.2rem;
    color: #e91e63;
    font-weight: bold;
    margin-bottom: 2rem;
}

/* クリニック情報カード */
.uraki-clinic-info {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.uraki-clinic-info h2 {
    color: #e91e63;
    margin-bottom: 1rem;
}

/* 情報グリッド */
.uraki-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.uraki-info-item strong {
    color: #1976d2;
    display: inline-block;
    min-width: 80px;
}

/* 電話番号 */
.uraki-phone {
    font-size: 2rem;
    color: #e91e63;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
}

/* 予約ボタン */
.uraki-booking-btn {
    background-color: #1976d2;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.uraki-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
    color: white !important;
}

/* 営業時間 */
.uraki-hours {
    background-color: #f0f4f8;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.uraki-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.uraki-hours-item {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

/* 料金カード */
.uraki-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.uraki-price-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.uraki-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.uraki-price-card h3 {
    color: #e91e63;
    margin-bottom: 1rem;
}

.uraki-price {
    font-size: 2rem;
    font-weight: bold;
    color: #1976d2;
}

/* スタッフプロフィール */
.uraki-staff {
    background-color: #f0f4f8;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.uraki-staff h3 {
    color: #e91e63;
    margin-bottom: 1rem;
}

/* FAQ */
.uraki-faq-item {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.uraki-faq-q {
    font-weight: bold;
    color: #e91e63;
    margin-bottom: 0.5rem;
}

/* ボタン共通 */
.uraki-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    margin: 0.5rem;
}

.uraki-btn-primary {
    background-color: #e91e63;
    color: white !important;
}

.uraki-btn-secondary {
    background-color: #1976d2;
    color: white !important;
}

.uraki-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .uraki-hero h1 {
        font-size: 2rem;
    }
    
    .uraki-phone {
        font-size: 1.5rem;
    }
    
    .uraki-price-grid {
        grid-template-columns: 1fr;
    }
}