/*
Theme Name: Lightning Child Sample
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.1
*/

/*RESET*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

.breadcrumb-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*RESET*/

@media screen and (min-width:769px) {
  .sp_only {
    display: none!important;
  }
}

@media screen and (max-width:768px) {
  .pc_only {
    display: none!important;
  }
}

#comments {
  display: none;
}

/*CSSハック*/

.entry-title--post-type--page, h2:where(:not(.wp-block-post-title)) {
  border: none!important;
}

a:link {
  text-decoration: none;
}

.site-body {
  padding: 0!important;
}

.site-header-logo {
  display: none;
}

/* サイドバー（アーカイブ・カテゴリー等）を完全に消す */
#side-section, 
.sub-section {
    display: none !important;
}

/* フッター上のウィジェットエリアを消す */
.site-footer-before {
    display: none !important;
}


@media screen and (min-width:769px) {
/* コンテンツの最大幅制限を解除して100%にする */
.site-body .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* メインコンテンツ周りの余白（パディング）を消す */
.site-body-main {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* 記事全体の上下余白も不要ならリセット */
.entry-body {
    padding: 0 !important;
    margin: 0 !important;
}
}

/*固定ページ　ご挨拶*/
.main-section--col--two {
  width: 100%!important;
  max-width: 1200px!important;
  margin: 0 auto!important;
  float: none!important;
}
/*固定ページ　ご挨拶*/
/*headerスタイル*/
/* ナビゲーションを横並びにする */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.nav-links a {
  margin-right: 20px;
  text-decoration: none;
}

/* 全画面メニューの初期状態（隠す） */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  color: #fff;
  display: none; /* 通常は非表示 */
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* activeクラスがついたら表示する */
.fullscreen-menu.active {
  display: flex;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  cursor: pointer;
}

/* ヘッダー全体のコンテナ */
.header-inner {
  display: flex;
  align-items: center; /* 上下中央揃え */
  padding: 10px 4%;   /* 左右の余白は % で指定するとレスポンシブで綺麗です */
}

/* ロゴの右側に自動で余白を作ることで、それ以降の要素を右端に押し出す */
.site-logo {
  margin-right: auto; 
}
.site-logo img {
  width: 100px;
  height: auto;
}

/* 右側に寄った要素たちのスタイル */
.nav-links {
  display: flex;
  gap: 20px; /* 要素間の余白 */
}

.nav-links a, .contact-btn {
  text-decoration: none;
  color: #fff;
}

/* お問い合わせボタンの装飾例 */
.contact-btn {
  background-color: #fcd884;
  color: #222222;
  padding: 8px 20px;
  border-radius: 5px;
  margin-left: 20px;
}

/* ハンバーガーメニュー（スマホ以外では隠す場合） */
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

/* ==========================================
   共通・PCスタイルの基本
   ========================================== */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 4%;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  margin-right: auto; /* ロゴを左端に固定し、他を右へ */
  font-weight: bold;
  font-size: 1.5rem;
}

/* デスクトップ用ナビゲーション */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.contact-btn {
  background: #fcd884;
  color: #222;
  padding: 10px 20px;
  text-decoration: none;
  margin-left: 25px;
  border-radius: 4px;
}

/* PCではハンバーガーメニューと全画面メニューを隠す */
.hamburger, .fullscreen-menu {
  display: none;
}

/* ==========================================
   スマホ・タブレット用スタイル (991px以下)
   ========================================== */
@media (max-width: 991px) {
  /* PC用ナビとお問い合わせボタンを非表示にする */
  .nav-links, .contact-btn {
    display: none;
  }

  /* ハンバーガーメニューを表示する */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
  }

  .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #000;
    transition: 0.3s;
  }

  /* 全画面メニューを有効化 */
  .fullscreen-menu.active {
    display: flex; /* JSでactiveクラスがついた時だけ表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .fullscreen-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
  }

  .fullscreen-menu ul li {
    margin: 20px 0;
  }

  .fullscreen-menu ul li a {
    font-size: 20px;
    text-decoration: none;
    color: #333;
  }
}


/*footer*スタイル*/
/* フッター全体の背景色や文字色 */
.site-footer {
  background-color: #f8f8f8;
  padding: 60px 20px 20px;
  color: #333;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* スマホで縦に並ぶように */
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
}

/* コピーライト */
.copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

/* スマホ用調整 */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    margin-top: 30px;
  }
}


.strong-shadow {
    color: #ffffff !important;
    font-weight: bold !important;
    /* text-shadow: 0px(横移動) 0px(縦移動) 15px(ぼかし) 色; */
    /* 移動を0にすることで、文字の周り全体がふわっと暗くなり、視認性が上がります */
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7), 0 0 5px rgba(0, 0, 0, 0.5);
}

/* ヒーローセクション全体 */
@media screen and (min-width:769px) {
.hero {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

hero.-split-section {
    position: relative;
    width: 100%;
    min-height: 80vh; /* PCでは画面の8割程度の高さ */
    /* 背景画像の設定 */
  background-image: url(https://cynops-dog.com/wp-content/themes/lightning-child-sample-master/assets/images/top_section_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* コンテンツを右寄せ・上下中央にするためのFlexbox */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* 内側のコンテナ */
.hero-split-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end; /* コンテンツを右側に寄せる */
}

/* 白透過のコンテンツボックス */
.hero-split-content {               /* 内側の余白 */
    border-radius: 15px;           /* 角丸（画像に合わせて調整してください） */  
    max-width: 600px; /* ボックスの横幅 */
    box-sizing: border-box;
    padding: 50px 80px;
}


} 

@media screen and (max-width:769px) {
  .hero-split-section {
    position: relative;
    width: 100%;
    /* 背景画像の設定 */
  background-image: url(https://cynops-dog.com/wp-content/themes/lightning-child-sample-master/assets/images/top_section_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* コンテンツを右寄せ・上下中央にするためのFlexbox */
}

/* 内側のコンテナ */
.hero-split-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end; /* コンテンツを右側に寄せる */
}

/* 白透過のコンテンツボックス */
.hero-split-content {
             /* 内側の余白 */
    border-radius: 15px;           /* 角丸（画像に合わせて調整してください） */  
    max-width: 600px; /* ボックスの横幅 */
    padding: 0 15px;
}

}



.bgfff{
  background-color: rgba(255, 255, 255, 0.85); /* 0.85が読みやすさと透明感のバランスが良いです */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); /* 非常に薄い影をつけて立体感を出す */
  backdrop-filter: blur(5px);    /* 背景自体を少しぼかす（高級感が出る最新の手法） */
    -webkit-backdrop-filter: blur(5px); /* Safari用 */
    border: 1px solid rgba(255, 255, 255, 0.3); /* 薄い白枠で境界をはっきりさせる */
}

.hero-split-content h2 {
    color: #76a461; /* テーマカラーの緑 */
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: center;
  padding:15px;
}

.hero-split-content .description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
}

@media screen and (min-width:769px) {
.message_area {
  position: relative;
    width: 100%;
    min-height: 80vh; /* PCでは画面の8割程度の高さ */
    /* 背景画像の設定 */
  background-image: url(https://cynops-dog.com/wp-content/themes/lightning-child-sample-master/assets/images/top_section_bg2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* コンテンツを右寄せ・上下中央にするためのFlexbox */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}}

@media screen and (max-width:768px) {

} 

.message_area_contents_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: right;
  align-items: center;
}

.message_area h2 span {
  display: block;
  font-size: 14px;
}

.message_btn {
  width: 100%;
}

/* ボタンのグループ */
.anchor-button-group {
  width: 100%;
    display: flex;
    gap: 15px;
    box-sizing: border-box;
    padding: 0 15px;
    margin-bottom: 30px;
}

.message_area .hero-split-content .content-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.message_area .hero-split-content .content-inner p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

a.anchor-btn {
  display: flex;
  width: 50%;
}

.anchor-btn img {
  width: 100%;
}

.anchor-btn:hover {
    transform: translateY(-2px);
}

/* ==========================================
   レスポンシブ対応（スマホ）
   ========================================== */
@media (max-width: 768px) {
    .hero-split-section {
        min-height: auto; /* スマホでは高さ固定を解除 */
        display: block; /* Flex解除 */
        background-position: top center; /* 画像の上部を見せる */
    }

    .hero-split-inner {
        padding: 0; /* 左右の余白をなくす */
    }

    .hero-split-content {
        width: 100%; /* 横幅いっぱいに */
        background-color: rgba(255, 255, 255, 0.95); /* スマホは文字を読みやすく不透明度を上げる */
        border-radius: 0; /* 角丸を解除して一体感を出す */
        box-shadow: none;
        padding: 0 15px;
    }
    
    .hero-split-content h2 {
        font-size: 22px;
        text-align: center;
    }
}

.top_overview {
      position: relative;
    width: 100%;
    min-height: 80vh; /* PCでは画面の8割程度の高さ */
    /* 背景画像の設定 */
  background-image: url(https://cynops-dog.com/wp-content/themes/lightning-child-sample-master/assets/images/top_section_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* コンテンツを右寄せ・上下中央にするためのFlexbox */
    display: flex;
    align-items: center;
    justify-content: flex-end;

}

/* セクション全体の横幅を100%に */
.split-section {
  width: 100%;
  overflow: hidden;
}

.split-container {
  display: flex;
  flex-wrap: wrap; /* スマホで折り返す設定 */
  width: 100%;
}

.split-container {
  display: flex;
  flex-wrap: wrap; /* スマホで折り返す設定 */
  width: 100%;
}


.split-container:nth-child(even) {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  width: 100%;
}

/* 左右のボックスを50%ずつに設定 */
.split-box {
  width: 50%;
  display: flex;
  align-items: center; /* 上下中央揃え */
}

.split-container:nth-child(odd) .split-box:nth-child(2) {
  background: #f7f5ef;
}

.split-container:nth-child(even) .split-box:nth-child(2) {
  background: #eae5d7;
}

@media screen and (min-width:769px) {

  .Photo_Plan {
  background: url(https://cynops-dog.com/wp-content/themes/lightning-child-sample-master/assets/images/LP_top_07.jpg);
  background-size: cover;
}
  
.Photo_Plan_img {
  width: 100%%;
  background: url(https://cynops-dog.com/wp-content/themes/lightning-child-sample-master/assets/images/LP_top_07.jpg);
  background-size: cover;
}

.Training_Plan_img {
  background: url(https://cynops-dog.com/wp-content/themes/lightning-child-sample-master/assets/images/LP_top_10.jpg);
  background-size: cover;
}
} 

/* 画像の設定 */
.image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* ボックスに合わせて綺麗に表示 */
}

/* テキストボックスの設定 */
.text-box {
  background-color: #ffffff; /* 背景色が必要な場合はここを変える */
  padding: 60px 5%; /* 内側の余白 */
}

.text-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}


.text-content h2 span {
  color: #69a151;
  display: block;
  font-size: 14px;
  text-align: center;
}

.text-content p {
  line-height: 1.8;
  margin-bottom: 30px;
}

/* 詳細リンクのボタン装飾 */
.detail-link {
  transition: opacity 0.3s;
}

.detail-link:hover {
  opacity: 0.8;
}

/* ==========================================
   スマホ用調整 (991px以下は縦並び)
   ========================================== */
@media (max-width: 991px) {
  .split-box {
    width: 100%; /* スマホでは横幅いっぱいに */
  }
  
  .text-box {
    padding: 40px 20px;
    text-align: center; /* スマホでは中央寄せにしても綺麗です */
  }
}



.news-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    display: table;
    margin-left: auto;
    margin-right: auto;
    color: #000;
}


.news-title span {
    font-size: 14px;
    display: block;
    color: #76a461;
}

/* タイトルの下線 */
.news-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 8px;
    background: #ccc;
    position: absolute;
    bottom: -5px;
    left: 0;
    z-index: -1;
}

.news-list {
    border-top: 1px solid #eee;
}

/* 各行の設定 */
.news-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
}
.news-item:hover {
    background-color: #f9f9f9;
}

.news-date {
    font-size: 14px;
    color: #666;
    min-width: 130px;
}

/* カテゴリーバッジ */
.news-badge {
    border: 1px solid #333;
    padding: 2px 15px;
    font-size: 13px;
    margin: 0 20px;
    min-width: 100px;
    text-align: center;
    background: #5e8a4a;
}
/* スラッグごとの色分け設定（例） */
.news-badge.cat-campaign { border-color: #d67b2a; color: #d67b2a; } /* キャンペーンはオレンジ */
.news-badge.cat-cruise { border-color: #2151a2; color: #2151a2; }   /* クルーズは青 */

.news-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* 長いタイトルを...で省略 */
    color: #2151a2; /* リンク色 */
}

/* 右矢印 */
.news-arrow {
    width: 10px;
    height: 10px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    margin-left: 20px;
}

/* もっと見るボタン */
.news-more-btn-wrap {
    text-align: center;
    margin-top: 30px;
}
.news-more-btn {
    display: inline-block;
    border: 1px solid #333;
    padding: 10px 80px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
}
.news-more-btn::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 15px;
}

/* ===================================================
   新着情報セクション：クリーム色背景・角丸バッジ版
   =================================================== */
.news-section {
    max-width: 980px;
    margin: 50px auto;
    background-color: #fff8e4; 
    /* 内側の余白を広めに設定 */
    padding: 50px 30px; 
    /* セクションの角を少し丸く（お好みで） */
    border-radius: 20px; 
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* タイトル：緑色で下線なし */
.news-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    /* 文字色を緑に変更 */
    margin-bottom: 40px;
    display: block;
}
/* 前回の太い下線を削除 */
.news-title::after {
    content: none;
}

.news-list {
    /* リスト上のボーダーを削除 */
    border-top: none; 
}

/* 各行の設定 */
.news-item {
    display: flex;
    align-items: flex-start; /* テキストが複数行になっても上端で揃える */
    padding: 15px 0;
    /* 行の下のボーダーを削除 */
    border-bottom: none; 
    text-decoration: none;
}

/* 日付は画像にないため非表示にします */
.news-date {
    display: none;
}

/* カテゴリーバッジ：角丸・塗りつぶし */
.news-badge {
  width: 20%;
    display: inline-block;
    /* 枠線をなくし、背景色を設定 */
    border: none;
    /* 文字色を白に */
    background: #5e8a4a;
    color: #fff; 
    /* 強い角丸をつける */
    border-radius: 50px; 
    padding: 8px 20px;
    font-size: 14px;
    margin-right: 25px;
    min-width: 130px; /* 幅を少し広めに */
    text-align: center;
    font-weight: bold;
    flex-shrink: 0;
}

.news-list .news-title {
  font-size: 15px;
  font-weight: 600;
}

/* --------- 重要：カテゴリーごとの色設定 --------- */
/* 実際のスラッグ名に合わせて、色を指定してください */

/* 例：「キャンペーン」スラッグが 'campaign' の場合 → オレンジ色 */
.news-badge.cat-campaign {
    background-color: #f5a623; 
}
/* 例：「クルーズ」スラッグが 'cruise' の場合 → 緑色 */
.news-badge.cat-cruise {
    background-color: #76a461; 
}
/* 例：「お知らせ」スラッグが 'news' の場合 → 同じく緑色 */
.news-badge.cat-news {
    background-color: #76a461; 
}
/* -------------------------------------------------- */


/* 記事テキスト：黒色 */
.news-text {
    flex-grow: 1;
    /* 黒色（少し濃いグレー）に変更 */
    color: #333; 
    font-size: 16px;
    line-height: 1.8; /* 複数行見やすいように行間を調整 */
}
/* ホバー時も下線を出さない */
.news-item:hover .news-text {
    text-decoration: none;
}

/* 右矢印アイコンを非表示に */
.news-arrow {
    display: none;
}

/* ==========================================
   もっと見るボタンのアレンジ
   全体の雰囲気に合わせて緑色の丸ボタンに変更します
   ========================================== */
.news-more-btn-wrap {
    text-align: center;
    margin-top: 40px;
}
.news-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* 背景を緑に */
    background-color: #76a461;
    /* 文字を白に */
    color: #fff!important;
    /* 枠線を削除 */
    border: none;
    border-radius: 50px;
    padding: 15px 80px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
}

.news-more-btn:link, .news-more-btn:link{
    color: #fff!important;
}
.news-more-btn:hover {
    /* ホバー時に少し濃く */
    background-color: #5e8a4a;
    opacity: 1;
}
/* ボタン内の矢印を白に変更 */
.news-more-btn::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

/* ==========================================
   スマホ用調整
   ========================================== */
@media (max-width: 767px) {
    .news-section {
        padding: 30px 20px; /* スマホでの余白調整 */
        margin: 0 auto;
    }
    .news-item {
        flex-wrap: wrap; /* バッジとテキストを縦積みに */
        padding: 20px 0;
    }
    .news-badge {
        margin-right: 0;
        margin-bottom: 15px; /* バッジの下に余白 */
    }
    .news-text {
        width: 100%;
    }
    .news-more-btn {
        padding: 15px 40px;
        width: 90%; /* ボタン幅を広げる */
    }
}

.news-badge {
    display: inline-block;
    color: #fff !important;      /* 文字は白 */
    border: none;
    border-radius: 50px; 
    padding: 5px 15px;
    font-size: 13px;
    margin-right: 20px;
    min-width: 100px;
    text-align: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* --- カテゴリーごとの色分け --- */

/* 1. オレンジ色にしたいカテゴリー */
/* スラッグが「plan」の場合 */
.news-badge.cat-plan {
    background-color: #f5a623 !important;
}

/* 2. 緑色にしたいカテゴリー */
/* スラッグが「news」の場合 */
.news-badge.cat-news {
    background-color: #76a461 !important;
}

/* 3. その他（もし他にもあれば追加してください） */
.news-badge.cat-campaign {
    background-color: #f5a623 !important; /* キャンペーンもオレンジにする例 */
}

/* ==========================================
   スマホ用調整
   ========================================== */
@media (max-width: 767px) {
    .news-item {
        flex-wrap: wrap;
        position: relative;
    }
    .news-date {
        width: 100%;
        margin-bottom: 5px;
    }
    .news-badge {
        margin: 0 10px 0 0;
        font-size: 11px;
    }
    .news-text {
        font-size: 14px;
        width: calc(100% - 130px);
    }
    .news-arrow {
        position: absolute;
        right: 10px;
        top: 50%;
    }
}

/*固定ページ横幅*/
.Fix_page_wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.Fix_page h2 {
  text-align: center;
  color: #000;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.2;
}

.Fix_page h2 span {
  display: block;
  text-align: center;
  color: #69a151;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 20px;
}

/*固定ページ設定ここまで横幅*/


.massage_contents_inner ul {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (min-width:769px) {
  
.massage_contents_inner ul {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.massage_contents_inner ul li {
  width: 50%;
}


}


.massage_contents_inner ul li img {
  width: 100%;
}

.massage_contents_inner ul li:last-child {
  box-sizing: border-box;
  padding: 20px;
}

.Qualifications_area {
  margin-bottom: 60px;
}

.Qualifications_area ul {
  width: 100%;
}

.Qualifications_area ul li {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
}
@media screen and (min-width:769px) {
  
.Qualifications_area ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.Qualifications_area ul li {
  width: 50%;
  box-sizing: border-box;
  padding: 20px;
}
} 



.Qualifications_area h3 {
  color: #69a151;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  border-bottom: 1px solid #69a151;
}

.Qualifications_message{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Qualifications_message p, .Qualifications_message img{
  width: 50%;
}
.Qualifications_message p{
  box-sizing: border-box;
  padding: 20px;
}

.mame-and-me_area ul{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mame-and-me_area ul li{
  width: 100%;
  max-width: 1200px;
}

@media screen and (min-width:769px) {
  
.mame-and-me_area ul li{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mame-and-me_area ul li:nth-child(2){
  flex-direction: row-reverse;
}

.mame-and-me_area ul li div {
  width: 50%;
}

}

.mame_img img{
  width: 100%;
}

.mame_text {
padding: 20px;
box-sizing: border-box;
}

/*各種プランページ*/
/* --- 共通設定 --- */
@media screen and (min-width:769px) {
  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
}

@media screen and (max-width:768px) {
  
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}
}

.section-title {
    text-align: center;
    padding:0 0 40px;
}

.section-title .en {
    color: #76a461;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
}

/* --- ご挨拶 --- */
.section-message { padding-bottom: 80px; }
.message-flex { display: flex; gap: 50px; align-items: flex-start; }
.message-image { flex: 1; }
.message-image img { width: 100%; height: auto; }
.message-text { flex: 1; line-height: 2; font-size: 15px; }

/* --- トレーニングプラン (FV) --- */
.plan-fv {
    width: 100%;
    margin-bottom: 60px;
}
.plan-fv img {
    width: 100%;
    height: auto;
    display: block;
}
.plan-intro {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}
.plan-intro-image { flex: 0 0 350px; }
.plan-intro-image img { width: 100%; height: auto; }
.plan-intro-info h3 { color: #76a461; font-size: 24px; margin-bottom: 10px; }

/* --- トレーニングメニュー --- */
.menu-box {
    border-radius: 15px;
    padding-bottom: 40px;
    margin-bottom: 60px;
}

.menu-header {
    background-color: #c5d9b8; /* 薄緑の背景 */
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 20px;
    border-radius: 12px 12px 0 0;
}

.menu-list {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
    list-style: none !important;
    padding: 40px !important;
}

.menu-list li {
    margin-bottom: 30px;
    position: relative;
    padding-left: 25px;
}

/* 文頭の点（緑） */
.menu-list li::before {
    content: "●";
    color: #76a461;
    position: absolute;
    left: 0;
    top: 0;
}

.menu-item-title {
    color: #76a461;
    font-weight: bold;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

/* お問い合わせボタン */
.contact-area { text-align: center; margin-bottom: 80px; }
.btn-contact {
    display: inline-block;
    background-color: #d18d84; /* くすみピンク/赤系 */
    color: #fff !important;
    padding: 20px 60px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}
.btn-contact:hover { opacity: 0.8; transform: translateY(-3px); }
.btn-contact .arrow::after {
    content: "▶";
    font-size: 18px;
    margin-left: 15px;
}

/* コラージュエリア */
.collage-example {
    border: 3px solid #7cb4f5;
    padding: 40px;
    text-align: center;
    position: relative;
}
.blue-box {
    background-color: #b3d9ff;
    padding: 60px 20px;
    margin-top: 20px;
    color: #333;
}

/* --- レスポンシブ --- */
@media (max-width: 767px) {
    .message-flex, .plan-intro { flex-direction: column; }
    .plan-intro-image { flex: 0 0 auto; width: 100%; }
    .btn-contact { font-size: 18px; padding: 15px 30px; width: 100%; }
}

/*撮影プラン*/

/* --- 共通・レイアウト --- */
.lp-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.lp-container-1200 {
    max-width: 1200px; /* 指定：最大幅1200px */
    margin: 0 auto;
}

@media screen and (min-width:769px) {
  .lp-container-1200 {
    padding: 0 20px;
    box-sizing: border-box;
}
}

.lp-flex-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* タイトル装飾 */
.lp-section-title {
    text-align: center;
    margin-bottom: 40px;
}
.lp-section-title .en {
    color: #76a461;
    font-weight: bold;
    margin-bottom: 5px;
}
.lp-section-title h2 {
    font-size: 28px;
    font-weight: bold;
}
.lp-section-title h2.underline {
    display: inline-block;
    border-bottom: 2px solid #76a461;
    padding-bottom: 5px;
}

/* プレースホルダー（画像が入る場所） */
.img-placeholder { width: 100%;}
.dark-green { background-color: #4a5d45; }
.yellow { background-color: #ffffa1; }

/* --- トレーニングプラン --- */
.lp-fv-full {
    width: 100%;
    margin-bottom: 50px;
}
.lp-fv-full img {
    width: 100%;
    height: auto;
    display: block;
}
.green-text { color: #76a461; font-weight: bold; font-size: 24px; }
.lp-col-img { flex: 0 0 350px; }

/* --- トレーニングメニュー --- */
.lp-training-menu { padding: 60px 0; }
.menu-card {
    border: 1px solid #76a461;
    border-radius: 15px;
    overflow: hidden;
}
.menu-title-bar {
    background-color: #c5d9b8;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 18px;
}
.menu-list {
    list-style: none !important;
    padding: 30px !important;
    margin: 0 !important;
}
.menu-list li { margin-bottom: 25px; }
.item-title { color: #76a461; font-weight: bold; font-size: 18px; display: block; margin-bottom: 5px; }

/* ボタン設定 */
.cta-area { text-align: center; margin: 40px 0; }
.btn-cta {
    display: inline-block;
    background-color: #d18d84;
    color: #fff !important;
    padding: 15px 50px;
    border-radius: 12px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}
.btn-cta .arrow {
    background: #fff;
    color: #d18d84;
    border-radius: 50%;
    display: inline-block;
    width: 24px;
    height: 24px;
    font-size: 12px;
    line-height: 24px;
    margin-left: 10px;
}

/* コラージュボックス */
.collage-box {
    border: 2px solid #a1c4fd;
    padding: 30px;
    text-align: center;
}
.collage-inner {
  max-width: 600px;
  width: 100%;
    background-color: #e0f0ff;
    padding: 50px 20px;
    margin: 20px auto;
}

/* --- 撮影プラン (指定：H3 20px) --- */
.plan-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}
@media screen and (min-width:769px) {
  .plan-items {
    max-width: 1000px;
    margin: 0 auto;
}
}

.plan-item {
    display: flex;
    gap: 30px;
    align-items: center;
}

.plan-img {
  width: 40%;
}

.plan-info {
    width: 60%;
}

.plan-info h3 {
    font-size: 25px !important; /* 指定サイズ */
    color: #76a461;
    margin-bottom: 10px;
    text-align: left;
}

.plan-info p {
  font-size: 16px;
  text-align: left;
  margin-bottom: 10px;
}


.plan-info p.price {
  font-weight: bold; font-size: 25px; margin-bottom: 10px; 
}

.btn-detail {
  max-width: 500px;
  width: 100%;
    display: inline-block;
    background-color: #d18d84;
    color: #fff !important;
    padding: 8px 30px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
}

/* --- レスポンシブ --- */
@media (max-width: 767px) {
    .lp-flex-row, .plan-item { flex-direction: column; text-align: center; }
    .lp-col-img, .plan-img { flex: 0 0 auto; width: 100%; }
    .btn-cta { font-size: 18px; padding: 12px 30px; }
}

.sub-text {
  margin-bottom: 50px;
}

/*ブログ装飾*/

/* 個別記事（single）の中の、見出し2（h2）の色を変える */
h2.title_h2 {
  font-size: 24px;
    padding: 0.5em;/*文字周りの余白*/
  color: #494949;/*文字色*/
  background: #fffaf4;/*背景色*/
  border-left: solid 5px #e58115!important;/*左線（実線 太さ 色）*/
    margin-bottom: 30px;
}

h3.title_h3 {
  font-size: 20px;
  font-weight: 600;
    padding: 0.5em;/*文字周りの余白*/
  color: #69a151;/*文字色*/
  background: #fffaf4;/*背景色*/
  margin-bottom: 30px;
}

/* ====================================
   料金プラン表示用のCSSここから
   ==================================== */
:root {
    --pale-green-bg: #e6f4ea; /* ペールグリーンの背景色 */
    --pale-green-border: #a8d3b9; /* ペールグリーンの枠線色 */
    --pale-yellow-bg: #fffde7; /* ペールイエローの背景色 */
    --pale-yellow-border: #e9e3a5; /* ペールイエローの枠線色 */
    --text-color-soft: #555; /* 柔らかい文字色 */
}

/* 共通スタイル：カードの基本形 */
.plan-box {
  max-width: 500px;
  width: 100%;
    border-radius: 12px; /* 角を丸く */
    overflow: hidden;
    margin: 2em 0;
    color: var(--text-color-soft);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* ほんのり影 */
}
.plan-box h3.plan-title {
    margin: 0;
    padding: 1em;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: none; /* テーマの標準スタイルを打ち消し */
}
.plan-box .plan-content {
    padding: 1.5em;
    background: #fff;
    text-align: center;
}
.plan-box .price {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5em;
}
.plan-box .price span.unit {
    font-size: 0.6em;
    font-weight: normal;
}
.plan-box ul.features {
    text-align: left;
    display: inline-block; /* 中央寄せしつつリストは左揃え */
    margin: 1em 0 0 0;
    padding: 0;
    list-style: none;
}
.plan-box ul.features li {
    margin-bottom: 0.5em;
    padding-left: 1.5em;
    position: relative;
}
/* リストのチェックマーク */
.plan-box ul.features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--pale-green-border);
    font-weight: bold;
}

/* --- 案A：ふんわりカード型（緑・黄） --- */
/* 緑バージョン */
.plan-box.style-a-green {
    border: 2px solid var(--pale-green-bg);
}
.plan-box.style-a-green h3.plan-title {
    background: var(--pale-green-bg);
    color: #4a7a5a;
}
