@charset "utf-8";

/* 基本リセットとフォント設定 */
body {
    font-family:  "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #fff9f9;
        line-height: 1.6;
}
*, *::before, *::after {
    box-sizing: border-box;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #ff98ba;
    text-decoration: underline;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 5px 10px -6px rgba(0,0,0,.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

 .menu-list-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
    
    

.header-logo {
  line-height: 1.2;
  letter-spacing: .05em;
  flex-shrink: 0;
}

.header-logo a {
  color: #554236;
}
.header-logo a:hover {
  color: #ddcd77;
}

.gnav-list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  gap: 40px;
  width: 100%;
}

.gnav-item a {
  position: relative;
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
  padding: 5px 0;
  transition: .3s;
  letter-spacing: .05em;
  color: #ff6699;
  font-family: "Meirio" , serif;
}
.gnav-item2 a {
  position: relative;
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
  padding: 5px 0;
  transition: .3s;
  letter-spacing: .05em;
  color: #ff6699;
}
.gnav-item a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  content: "";
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ff98ba;
}
.gnav-item2 a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  content: "";
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ff98ba;
}

.gnav-item a:hover:after {
  width: 100%;
}
.gnav-item2 a:hover:after {
  width: 100%;
}

/* 固定ヘッダー用の調整（特定のページのみ） */
.page-with-fixed-header main {
    padding-top: 95px;
}


/* カラー変数 (Coffee Breakと統一) */
:root {
    --color-pink-light: #ffb6c1; /* 薄いピンク */
    --color-pink-main: #f26ba0;
 /* アクセントカラー */
    --color-text: #f26ba0;
}

/* 共通スタイル */
h1 {
    text-align: center;
    color: #fff;
}

h2, h3 {
    text-align: center;
    color: var(--color-text);
}

section {
margin: 0;
padding: 60px 0 !important; /* ★★★ !important を追加して強制的に適用 ★★★ */
}

/* コンテンツの最大幅と中央寄せを定義 */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%; /* 左右に最低限の余白を確保（sectionのpaddingと重複しないよう調整） */
}

/* 見出しのスタイル：Coffee Breakのスタイルを継承 */
h2 {
    font-size: 28px;
    margin-bottom: 40px;
}
.pink-line {
    border-bottom: 4px solid var(--color-pink-main); /* 薄いピンクの下線 */
    padding-bottom: 5px;
}

/* ① メインビジュアル */
.hero-section {
    background-image: url(assets/images/siteweb_main.jpg);
    /* 歪ませずにコンテナを覆う最適な設定に戻す */
    background-size:  contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
/* 修正: 固定ピクセル(400px)ではなく、画面の高さに対する割合(vh)で指定 */
    /* 画面の高さの約40%をセクションの高さとする (この数値は調整可) */
    height: 35vh !important;
    padding: 0 !important; /* セクションの共通パディングを0にリセット */
    margin-top: 105px;
    position: relative;
    text-align: center; /* ←中央寄せにしたい場合。左寄せなら left に変更 */

    /* ★★★ 重要な変更: 余白を埋めるための背景色 ★★★ */
    background-color: #F8B4C0 !important; /* 画像外の余白をピンク色（画像のピンクに近い色
}

.hero-section h1 {
    font-size: 36px;
    color: white; /* 背景色に合わせて文字色を調整 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.hero-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: white;
}


/* 2. .hero-content を追加し、コンテンツの幅を制御 */
.hero-content {
    /* NEW RELEASEなどと同じ最大幅に設定 */
    max-width: 1200px;
    /* 中央寄せ */
    margin: 0 auto;
    /* 左右に余白を確保 */
    padding: 0 5%;

    /* ★★★ 修正箇所：コンテンツをセクション中央に配置 ★★★ */
    /* position: absolute; を使ってコンテンツを上下中央に配置する手法に切り替えます */
    position: absolute; /* 親要素 .hero-section に position: relative; があることを前提 */
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    
    /* テキストを中央寄せにする場合は追加: */
    text-align: center;
}


/* プライマリボタン (一番目立つボタン) */
.btn-primary {
    /* display: inline-block;*/
    background-color: #ffb6c1; /* 背景色を透明に */
    border: 2px solid #f26ba0; /* 白い枠線を追加 */
    color: #f26ba0; 
    padding: 10px 20px; 
    text-decoration: none;
    font-weight: normal;
    border-radius: 5px;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: #f26ba0;; 
    border: 2px solid var(--color-pink-main);
    color: #fff;
}

/* ★★★ ロゴ入りボタンの個別スタイル（画像サイズ調整） ★★★ */
.hero-logo-btn {
    /* ボタン全体のパディングを広げ、ロゴとテキストを収めやすくします */
    padding: 10px 20px !important;
    /* ★★★ 横幅を強制的にコンテンツサイズに合わせる設定を維持 ★★★ */
    display: inline-flex !important; 
    width: fit-content !important;
    
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    line-height: 1.2;
}

.hero-logo-btn img {
    /* 画像の幅をボタンに合わせて調整します */
    width: 150px; /* ★★★ この数値を調整して大きさを決めてください ★★★ */
    margin: 0 0 3px 0;
    max-width: 100%; /* スマホ対応のために必須 */
    height: auto;
}

/* ② サービス紹介セクション */
.reason-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 60px;
}
.reason-item {
    flex-basis: 30%;
    text-align: center;
    padding: 5px;
    border: 1px solid #eee;
    border-radius: 8px;
}
.reason-item p{
    margin: 5px 0px;
}

.reason-item h3{
    margin: 5px 0px;
}

.reason-item img {
    width: 190px; /* アイコンサイズ */
    height: 100px;
}

/* --- reason-item (aタグ) のスタイル調整 --- */
a.reason-item {
    text-decoration: none; /* リンクの下線を削除 */
    color: inherit;        /* 文字色を親要素から継承し、青色化を防ぐ */
    display: block;        /* ブロックとして振る舞わせる (divと同じ) */
    
    /* ホバー時の変化 (任意) */
    transition: opacity 0.3s; /* マウスオーバー時の変化を滑らかに */
}

a.reason-item:hover {
    opacity: 0.7; /* カーソルを合わせたときに少し薄くする */
}

/* パッケージカード */
.package-list {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* --- 1. リンク化されたカード全体 (a.package-card) の共通設定 --- */

a.package-card {
    /* (削除したルールの再定義) */
    flex-basis: 45%;
    border: 2px solid var(--color-pink-light);
    border-radius: 10px;
    padding: 10px;
    margin: 10px; /* 縦方向のマージンもここで制御 */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);

    /* リンク化のための必須設定 */
    text-decoration: none; 
    color: inherit;       
    display: block;       
    transition: all 0.3s;
}
a.package-card:hover {
    opacity: 0.9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
    transform: translateY(-2px); 
}

.package-card h3 {
    border-radius: 8px 8px 0 0;
    color: #333;
}
.price-tag {
    font-size: 15px;
    color: var(--color-pink-main);
}
.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.package-card li {
    padding: 8px 0;
    border-bottom: 1px dotted #eee;
}


.check-mark {
    color: var(--color-pink-main);
    font-weight: bold;
    margin-right: 8px;
}
.btn-secondary {
    display: block;
    text-align: center;
    background-color: white;
    color: var(--color-pink-main);
    border: 1px solid var(--color-pink-main);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}
.btn-secondary:hover {
    background-color: var(--color-pink-main);
    color: white;
}



/* メニューリストセクション */
/* メニューリストセクションの背景ラッパー */
.content-bg-wrapper {
    background-color: #f7f7f7; /* 背景色を親要素に移動 */
    /* ↓↓ NEW RELEASEと同じ幅に背景色を合わせるための設定 ↓↓ */
    max-width: 1060px; /* NEW RELEASEと同じ最大幅 */
    margin: 0 auto; /* 中央寄せ */
    border-radius: 10px;
}

/* メニューリストセクション本体のスタイルを調整 */
.menu-list-section {
/* section のパディングをそのまま利用し、content-wrapper 内に配置することで幅を制限 */
    /* ここは特に変更せず、content-wrapper の効果に頼る */
    padding-top: 60px; /* section の padding を利用 */
    padding-bottom: 60px; /* section の padding を利用 */
    padding-left: 0; /* section の padding: 5% を打ち消す */
    padding-right: 0; /* section の padding: 5% を打ち消す */
}

/* 2カラムレイアウトのコンテナ設定（Flexboxを使用） */
.menu-item-wrapper {
    display: flex;
    flex-wrap: wrap; /* 画面幅に応じて折り返す */
    gap: 30px; /* アイテム間の隙間 */
    justify-content: space-between; /* 【追記】もし親要素で幅が制限されていた場合でも、
             可能な限りコンテンツを横に並べられるようにする */
             max-width: none;
}

/* 各コンテンツカードの設定 */
.menu-item {
    /* 2カラムを実現するための幅設定 */
    width: calc(50% - 15px); /* 50% - (gap/2) */
    /* width: calc(50% - 15px); を flex-basis で上書き */
    flex-basis: calc(50% - 15px);

    /* 【追記】アイテムが小さくならないようにする */
    flex-shrink: 0;
    
    /* カード内でバナーとテキストを縦並びにするための設定 */
    display: flex; 
    flex-direction: column; /* 縦並びの指定 */
    
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden; 
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* バナー（上部）のスタイル */
.menu-banner {
    flex-grow: 0; /* 高さの自動調整をしない */
    flex-shrink: 0;
    min-height: 120px; /* バナーの最低高さを確保（画像がないため） */
    
    color: #333;
    padding: 20px;
    /* バナー内のテキスト中央寄せ */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}
.menu-banner h3 {
    margin: 0 0 5px;
    font-size: 18px;
}
.menu-banner p {
    margin: 0;
    font-weight: normal;
}

/* 説明文（下部）のスタイル */
.menu-text {
    flex-grow: 1; /* 残りの高さいっぱい使う（すべてのカードの高さを揃える効果） */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.menu-text p {
    margin-top: 0;
    font-size: 14px;
}
.read-more {
    color: var(--color-pink-main);
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start;
    border-bottom: 1px solid var(--color-pink-main);
    padding-bottom: 2px;
}
.read-more:hover {
    opacity: 0.7;
}

/* 新しいコンテンツカードのカスタムスタイル */
.package-card.content-card-style {
    /* 縦並びの設定（重要） */
    display: flex;
    flex-direction: column;
    padding: 0; /* package-cardのデフォルトパディングをリセット */
    border: none; /* package-cardのデフォルト枠線をリセット */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 上部のバナー部分の調整 */
.package-card.content-card-style .menu-banner {
    /* package-cardのデフォルトh3スタイルを打ち消す */
    margin: 0; 
    border-radius: 8px 8px 0 0; /* 角丸を上部のみに適用 */
    min-height: 70px; /* バナーの高さを確保 */
}

/* 下部のテキスト部分の調整 */
.package-card.content-card-style .menu-text {
    flex-grow: 1; /* 残りのスペースを埋める */
    padding: 20px;
}

/* --- 2. 矢印アイコンのスタイル --- */

/* h3の親要素をrelativeにし、矢印スペースを確保 */
.package-card h3 {
    position: relative; 
    padding-left: 20px; /* 矢印スペースを確保 */
}

/* 矢印アイコンの基本スタイル */
.package-card .arrow-icon {
    display: flex; 
    justify-content: center;
    align-items: center;

    /* 丸い背景のデザインを強調 */
    background-color: #f26ba0; /* ★★★ 丸をメインのピンクに ★★★ */
    border-radius: 50%;
    width: 30px; 
    height: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    position: absolute;
    left: -20px; 
    top: 50%;
    transform: translateY(-50%); 
    
    /* 矢印（中身: →）のスタイル */
    color: #fff; /* ★★★ 矢印を白に ★★★ */
    font-size: 18px; 
    font-weight: bold;
    line-height: 1; 
    
    transition: all 0.3s ease-out;
}

/* ホバーアニメーション */
a.package-card:hover .arrow-icon {
    transform: translate(5px, -50%); 
    background-color: #ffb6c1; /* ホバー時に濃いピンク */
    color: #fff; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* ★★★ フッター上のCTAセクション ★★★ */
.cta-section {
    background-color: #fff9f9;
    padding: 80px 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    color: #414040;
}

.cta-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.cta-col {
    text-align: center;
}

.cta-logo {
    height: 150px;
    margin-bottom: 15px;
}

.cta-btn {
    display: inline-block;
    background-color: #E889A1;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.cta-btn:hover {
    background-color: #A25B8E;
}

.cta-banner {
    max-width: 250px;
}

/* --- PDF閲覧注意書きエリアのスタイル --- */
.pdf-notice-area {
    /* ページのコンテンツ幅に合わせるための設定 */
    max-width: 1050px; 
    margin: 40px auto 0px auto; /* 上下に余白を設定し、中央寄せ */
    padding: 20px;
    
    /* 背景色を薄いグレーなどに設定し、目立たせすぎないようにする */
    background-color: #f7f7f7; 
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.pdf-notice-area p {
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* リンクテキストを強調 */
.pdf-highlight {
    font-weight: bold;
    color: #444;
}

/* ダウンロードボタン/画像リンクのスタイル */
.adobe-download-link img {
    /* 画像サイズはHTMLのstyleで設定していますが、こちらで調整も可能です */
    transition: opacity 0.3s;
}

.adobe-download-link:hover img {
    opacity: 0.8; /* ホバーで少し透明度を変える */
}

/* --- margin を使って余白を作る場合 --- */
.footer-logo-banner {
    margin-top: 80px; 
    margin-bottom: 40px;
    text-align: center;
}

.footer-logo-banner p{
    font-size: 10px;
    margin-top: -2px;
}


/* ★★★ フッター ★★★ */
.footer {
    background-color: #f26ba0;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    font-size: 0.8em;
}

/* トップへ戻るボタン */
#page-top {
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #f26ba0;
    padding: 0 0 0 35px;
    border-top: solid 1px;
    z-index: 1000;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}

/* レスポンシブ対応 (スマートフォン用) */
@media (max-width: 768px) {
    /* 既存のレスポンシブ設定はそのまま残しつつ、
       menu-item の設定を上書き */
    
    .menu-item-wrapper {
        gap: 20px; /* スマホでは少し隙間を小さく */
    }
    .menu-item {
        width: 100%; /* スマホではフル幅（1カラム）表示 */
        flex-direction: column;
    }

    /* 1. メインビジュアルの高さと余白の調整 */
    .hero-section {
        /* スマホでは高さを少し大きくしてコンテンツを見やすくする */
        height: 60vh !important; 
        /* PCで105px設定を上書きし、スマホのヘッダー高さに合わせる */
        margin-top: 60px; 
    }
    
    /* 2. 全体のパディング調整 */
    section {
        /* スマホでは上下のパディングを調整 */
        padding: 40px 0 !important;
    }
    
    /* 3. 横並びコンテンツを縦並びにする */
    .reason-list, 
    .package-list {
        flex-direction: column; /* 横並びを縦並びへ */
        gap: 20px;
        /* 縦並びのとき、中のアイテム（カード）を水平方向の中央に寄せる */
        align-items: center; /* ★★★ これを追記 ★★★ */
    }
    
    /* 4. 文字サイズの調整 */
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    p {
        font-size: 14px;
    }

    .hero-content {
    top: 55%;
}


   /* 1. ヘッダーの要素全体を調整 */
    header .container {
        /* 上下左右のパディングを極限まで減らす */
        padding: 5px 10px !important; 
    }

    /* 2. ロゴ画像をスマホで小さくする */
    .header-logo img {
        /* ロゴの高さをさらに小さく */
        height: 20px !important; 
        width: auto;
    }
    
    /* 3. メニューの文字を小さくして折り返しを防ぐ */
    .nav-menu a {
        /* フォントサイズを極限まで小さく */
        font-size: 10px !important; 
        margin-left: 5px !important; 
        /* 強制的に折り返しを防ぎ、縦並びをきれいに見せる */
        white-space: nowrap; 
    }

    /* 4. メインビジュアルの余白を調整 (ヘッダーの高さ変更に対応) */
    .hero-section {
        /* スマホでのヘッダーの高さに合わせて調整 */
        margin-top: 50px !important; 
        height: 60vh !important; /* メインビジュアルの高さを調整 */
    }

    /* 5. その他のセクションの調整 */
    section {
        padding: 40px 0 !important; /* 全体の上下パディングを調整 */
    }
    
    .reason-list, 
    .package-list {
        flex-direction: column; 
    gap: 20px;
    /* 縦並びのとき、中のアイテム（カード）を水平方向の中央に寄せる */
    align-items: center; /* ★★★ これを追記 ★★★ */
    }
    
    .reason-item,
    .package-card {
        width: 90%; /* カードの幅を親要素より小さく制限 */
        margin: 0px auto; /* ★★★ ブロック要素を中央寄せ ★★★ */
    }

}




