@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
Version:    0.0.5
*/

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

/*見出しデザインリセット*/
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
	background-color:initial;/*背景色リセット*/
	border:initial;/*上下左右の枠線リセット*/
	border-radius:initial;/*角の丸みリセット*/
}


.article h1 {
  padding: 1.6rem 2rem;
  background-color: #0f1628; /* ミッドナイトブルー */
  color: #e6e9ef;  /* 淡いシルバーグレーで高見え */
  letter-spacing: 0.05em;
  font-weight: 500;
  border-radius: 2px;
  margin-bottom: 1.4em;
}


.article h2 {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 0.4em;
  margin-bottom: 1.2em;
  border-bottom: 2px solid #0f1628; /* ミッドナイトブルー */
  color: #101a2c;
  letter-spacing: 0.02em;
}

.article h3 {
  font-size: 20px;
  font-weight: 500;
  color: #14203a;
  padding-left: 0.6rem;
  border-left: 4px solid #0f1628; 
  margin-bottom: 1em;
}

.article h4 {
  font-size: 18px;
  font-weight: 500;
  color: #1c273f;
  border-bottom: 1px solid #b7bfd0;
  padding-bottom: 0.25em;
  margin-bottom: 0.8em;
}

.article h5 {
  font-size: 16px;
  font-weight: 500;
  color: #1a2235; /* 深いウルトラネイビー */
  padding-left: 0.6rem;
  border-left: 3px solid #6d7a95; /* 淡シルバー系ネイビー */
  margin-bottom: 0.9em;
  letter-spacing: 0.01em;
}

.article h6 {
  font-size: 14px;
  font-weight: 500;
  color: #2a3041; 
  padding-left: 0.5rem;
  border-left: 2px solid #c3cada; /* very light silver-blue */
  margin-bottom: 0.8em;
  letter-spacing: 0.01em;
}


/* ---- AERONAスタイル：箇条書き（ul） ---- */

.article ul {
  list-style: none !important;        /* 既存の黒ポチを消す */
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.article ul li {
  position: relative;
  padding-left: 1.4rem;               /* 左に余白を作る */
  margin-bottom: 0.5rem;              /* 行間ゆったり */
  line-height: 1.8;                   /* 読みやすい行間 */
  color: #111827;                     /* ダークネイビー系の文字色 */
}

/* ✧ AERONAポチ（淡銀ブルー） */
.article ul li::before {
  content: "✧";                       /* 星アイコン */
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.9rem;
  color: #c3cada;                     /* AERONAのシルバーブルー */
}

/* ---- ネストされたul（入れ子）対策 ---- */
/* 二段目以降は小さめ点にする（高見え・視認性UP） */

.article ul ul li::before {
  content: "•";                       /* 小さめドット */
  color: #9ca3af;                     /* 上品なグレー */
  font-size: 0.7rem;
  top: 0.4rem;
}

.article ul ul li {
  padding-left: 1.2rem;
  margin-bottom: 0.3rem;
}

.aerona-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 720px;
  margin: 32px auto;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 15.5px;
  letter-spacing: .02em;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,40,0.08);
}

/* ヘッダー */
.aerona-table th {
  background: linear-gradient(135deg, #0d1a2d 0%, #162030 100%);
  color: #e8eef7;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 14.8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* セル */
.aerona-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #eef1f5;
  color: #333;
}

/* 偶数行 */
.aerona-table tr:nth-child(even) td {
  background: #f8faff;
}

/* 最終行 */
.aerona-table tr:last-child td {
  border-bottom: none;
}

/* 右側カラム強調（価格など） */
.aerona-table td:last-child {
  text-align: right;
  color: #0d1a2d;
  font-weight: 600;
}


pre {
  background: rgba(242, 248, 255, 0.55); /* より柔らかく、薄い淡空色 */
  padding: 16px 18px;
  margin: 22px 0;
  color: #1f2530;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
  white-space: pre-wrap;
  border: 1px solid rgba(210, 220, 240, 0.45);
}

pre:after {
  content: "✴︎";
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 12px;
  color: rgba(140, 160, 210, 0.75); /* 可愛い・淡い・上品 */
}

/* 旅カメラスキンの上部ラインを完全に削除 */
body.skin-travel-camera::before {
  content: none !important;
  display: none !important;
}



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

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

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

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