@charset "UTF-8";

/*!
Theme Name: naru Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: ken
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){
  /*必要ならばここにコードを書く*/
}


body{
 color:#333333;
}

h1,h2,h3{
 color:#222222;
}

.price{
 color:#c79a6b;
}

.box-menu {
 /* border-radius: 50%;*/ /* 正円にする */
  /*aspect-ratio: 1 / 1;*/ /* 縦横比を1:1に固定 */
  /*display: flex;*/
	display: inline-flex;
  align-items: center;
  justify-content: center;
    background: #fff;
  background-image: url("https://www.beauty-narumi.com/wp-site/wp-content/uploads/2026/03/9b230ac3e83cd9cff7600da8a1e26625.png");
  background-size: cover;
	background-repeat: no-repeat;
    background-size: 20px; /* 植物の大きさ */
    background-position: bottom 5px right 5px; /* 右下から10pxの位置 */
	
  border: 1px solid #ccc; /* 枠線 */
    min-height: 10px;
    cursor: pointer;
    width: auto;
  
	width: 160px; 
    height: 20px;
}

.box-menu-icon {
    display: none;
}

html { scroll-behavior: smooth; }
:target::before {
    content: "";
    display: block;
    height: 100px; /* ヘッダーの高さ＋少しの余裕分 */
    margin-top: -100px;
    visibility: hidden;
    pointer-events: none;
}

.gray-box
{
	background-color:#faf9f8;
	border-radius: 10px;
	border-color:#928982;
	border:1px solid;
}

.course-card{
 background:#fff;
 border-radius:12px;
 padding:25px;
 box-shadow:0 6px 20px rgba(0,0,0,0.08);
 transition:0.3s;
	text-align:center;
	border-color:#928982;
}

.course-card:hover{
 transform:translateY(-5px);
 box-shadow:0 10px 25px rgba(0,0,0,0.15);
	border-color:#928982;
}

.course-card img{
 border-radius:8px;
 margin-bottom:15px;
	text-align:center;
}

.course-card h3{
 font-size:22px;
 margin-bottom:10px;
}

.course-card .price{
 font-size:20px;
 font-weight:700;
 color:#c79a6b;
 margin:10px 0;
}

/* 基本設定（スマホ：縦に並べる） */
.wp-block-latest-posts li {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    margin-bottom: 15px;    /* 記事ごとの間隔 */
    list-style: none;
}

/* 日付のスタイル（スマホ：タイトルの上に置く） */
.wp-block-latest-posts__post-date {
    font-size: 0.8em;
    color: #999;
    margin-bottom: 3px;     /* 日付とタイトルの間の少しの隙間 */
}

/* タイトルのスタイル */
.wp-block-latest-posts__post-title {
    display: block;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    color: #333;
}

/* PC・タブレット用の設定（横幅が600px以上の場合） */
@media screen and (min-width: 600px) {
    .wp-block-latest-posts li {
        flex-direction: row-reverse; /* 日付を左、タイトルを右に入れ替え */
        justify-content: flex-end;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px;
    }
    
    .wp-block-latest-posts__post-date {
        margin-bottom: 0; /* PCでは下の隙間を消す */
    }

    /* 日付の後に「：」を付ける（PCのみ） */
    .wp-block-latest-posts__post-date::after {
        content: "：";
    }
}