@charset "utf-8";
/* CSS Document */
body{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    margin: 0px;
	overflow-x: hidden;
}
/**** common  **********************/
.noto-serif-<uniquifier> {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-family: "Noto Serif", serif;
  font-variation-settings:
    "wdth" 100;
}

.noto{
	font-family: "Noto Serif", serif;
}

.ita{
	font-family: "Noto Serif", serif;
	font-optical-sizing: auto;
	font-size: 55px;
	font-style: italic;
	font-weight: normal;
	color: #e6e6e6;
}

.txc {
	margin: 0 auto;
	display: block;
}

.center{
	text-align: center;
}

.tl{text-align: left}
.tr{text-align: right}

.fs30{font-size: 30px; font-weight: bold;}


.topics-list {
  max-height: 100px; /* 1件あたりの高さが約80pxなら3件分 */
  overflow-y: auto; /* 縦方向にスクロール表示 */
  border: 1px solid #ccc; /* 枠線（任意） */
  padding: 10px;
}

/* オプション：スクロールバーを細く・目立たなく */
.topics-list::-webkit-scrollbar {
  width: 6px;
}
.topics-list::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 3px;
}
.topics-list::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

/**** common↑  **********************/

.popup-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 画像部分のスタイル */
.popup-below-image {
  margin-top: 20px;
  text-align: center;
}

.popup-below-image img {
  max-width: 100%;
  border-radius: 8px;
}

/* ポップアップの背景（画面いっぱい） */
/*.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/popup.webp') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}*/

.popup {
  position: fixed;
  inset: 0; /* top, right, bottom, left を一括で */
  width: 100%;
  height: 100%;
  background: url('images/popup.webp') no-repeat center center / cover;
  z-index: 1000;
  overflow-y: auto;          /* ← スクロール可能にする */
  padding: 40px 20px;        /* 上部にも余白をつける */
  box-sizing: border-box;
  display: block;            /* ← flexを解除して高さの制限をやめる */
}


/* ポップアップの内容（中央のボックス） */
.popup-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  margin: 0 auto 30px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.popup-content02{
	padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    width: 90%;
}

/************************************************************/

/* ポップアップ背景全体 */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100); /* ← これが超重要 */
  background: url('images/popup.webp') no-repeat center center / cover;
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* 中央ボックスの外枠 */
.popup-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* 中央の白いボックス */
.popup-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  margin: 0 auto 30px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}



/* ボタンデザイン */
button {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

/* 18歳以上のボタン */
#over18 {
    background: #c29348;
    color: white;
    font-weight: bold;
}

/* 18歳未満のボタン */
#under18 {
    background: transparent;
    color: black;
    text-decoration: underline;
}

/* 注意文 */
.notice {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

/* ヘッダー全体 */
.site-header {
    background: #000;
    border-bottom: 0px solid #ddd;
    padding: 0;
}

/* ヘッダーのコンテナ */
.header-container {
    width: 100％; /* 最大幅 */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

/* ロゴとテキストを横並びにする */
.header-left {
    display: flex;
    align-items: center;
}

/* ロゴ */
.header-logo img {
    height: 50px; /* ロゴの高さ */
    width: auto;
    margin-right: 15px; /* テキストとの間隔 */
}

/* ロゴ横のテキスト */
.header-text {
    font-size: 16px;
    color: #685d01; /* テキストカラーを指定 */
    line-height: 1.5;
    font-weight: bold;
}

/* グローバルメニュー */
.header-nav .nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.header-nav .nav-menu li {
    display: inline-block;
}

.header-nav .nav-menu li a {
    text-decoration: none;
    color: #685d01; /* メニューの文字色 */
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.header-nav .nav-menu li a:hover {
    color: #a89d30; /* ホバー時に少し明るい色に変更 */
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
    }

    .header-left {
        flex-direction: column;
        text-align: center;
        margin-bottom: 10px;
    }

    .header-text {
        margin-top: 5px;
    }

    .header-nav .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


.mainv{
	margin: 0 auto;
}


.col2 {
    display: flex; /* 横並びにする */
    align-items: center; /* 縦方向の中央揃え */
    gap: 20px; /* アイテムの間隔 */
    max-width: 1280px; /* 横幅を最大1280pxに */
    margin: 0 auto; /* 中央寄せ */
    padding: 20px;
}

.item01 {
    flex: 1; /* 画像のエリアを均等に */
}

.item01 img {
    width: 100%; /* 画像を親要素の幅に合わせる */
    height: auto;
    max-width: 500px; /* 画像の最大幅 */
}

.item02 {
    flex: 1; /* テキストエリアの幅 */
    color: #333; /* テキストカラー */
    font-size: 16px;
    line-height: 1.8;
}

.item02 h2{
	font-size: 21px;
	color:#685d01;
}

.item02 p{
	font-size: 16px;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

/* レスポンシブ対応（スマホ時は縦並び） */
@media screen and (max-width: 768px) {
    .col2 {
        flex-direction: column; /* 縦並びにする */
        text-align: center;
    }

    .item01 img {
        max-width: 100%; /* スマホでは画像を画面幅に調整 */
    }
}


/* ボタンを中央に配置する */
.btn-container {
    text-align: center; /* 中央寄せ */
    margin-top: 60px; /* 上の余白（調整可） */
}

/* ボタンのスタイル */
.btn-apply {
    display: inline-block;
    background-color: #000; /* 背景色：黒 */
    color: #fff; /* 文字色：白 */
    padding: 12px 50px; /* ボタンの余白 */
    font-size: 16px;
    font-weight: normal;
    border-radius: 30px; /* 角を丸く */
    text-decoration: none;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3); /* 影をつける */
    transition: all 0.3s ease;
}

/* ホバー時（マウスを乗せたとき） */
.btn-apply:hover {
    background-color: #333; /* 少し明るい黒 */
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.5); /* 影を強調 */
}

/* フッター */
footer a{
	font-size: 18px;
	text-decoration: none;
	padding-top: 20px;
	color:#fff;
}


/* トピックス全体のレイアウト */

.secB{
	background-color:#f3eae9;
	margin: 0 auto;
}


.topics-container {
    display: flex;
    align-items: flex-start; /* 上端で揃える */
    max-width: 1280px;
	width: 100%;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
	background-color: #f3eae9;
	padding-top: 60px;
    padding-bottom: 60px;
}

/* 左側の「TOPICS」 */
.topics-title {
    font-size: 24px;
    font-weight: bold;
    color: #888;
    min-width: 120px; /* 固定幅 */
    text-align: left;
}

/* 右側のニュース一覧 */
.topics-list {
    flex: 1;
}

/* ニュース項目（上端を揃える） */
.topics-item {
    display: flex;
    align-items: flex-start; /* 上端揃え */
    gap: 15px;
    margin-bottom: 10px;
}

/* 日付（上端揃え） */
.topics-date {
    font-size: 16px;
    font-weight: bold;
    color: #b79667;
    min-width: 90px; /* 幅を統一 */
    text-align: right;
    line-height: 1.6; /* 行間調整 */
}

/* お知らせ */
.topics-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    word-break: break-word;
	margin: 0;
	padding-left: 50px;
}






/* セクション全体 */
.secC {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
    align-items: flex-start;
	margin-top: 100px;
}

/* h2を縦書きにする */
.vertical-title {
    writing-mode: vertical-rl; /* 右から左の縦書き */
    text-orientation: upright;
    font-size: 24px;
    font-weight: bold;
    color: #685d01;
    min-width: 50px;
}

/* 説明文＋女性紹介を囲む */
.content-wrapper {
    flex: 1;
}

/* 説明文エリア */
.intro-text {
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    padding: 20px;
}

/* 飾り画像（pの右上） */
.decor-img {
    position: absolute;
    top: -20px;
    right: -100px;
    width: 186px;
    height: auto;
}

/* 女性紹介リスト（2行×3列） */
.female-wrapper {
    position: relative; /* 装飾画像を配置するために relative を追加 */
}

.female-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列 */
    gap: 20px;
}

/* 女性キャストのアイテム */
.female-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: left;
}

/* サムネイル画像 */
.female-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* カテゴリ */
.category {
    display: inline-block;
    background: #685d01;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}

/* 紹介文 */
.desc {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

/* 左下に装飾画像 */
.decor-bottom {
    position: absolute;
    bottom: -80px; /* リストの下に配置 */
    left: -100px; /* 左端に配置 */
    width: 186px;
    height: auto;
}

/* レスポンシブ対応（スマホでは1列） */
@media screen and (max-width: 768px) {
    .secC {
        flex-direction: column;
        align-items: center;
    }

    .female-list {
        grid-template-columns: repeat(2, 1fr); /* タブレットでは2列 */
    }

    .vertical-title {
        writing-mode: horizontal-tb; /* 横書き */
        text-align: center;
        min-width: 100%;
    }

    .decor-img {
        width: 60px;
    }
}

@media screen and (max-width: 480px) {
    .female-list {
        grid-template-columns: repeat(1, 1fr); /* スマホでは1列 */
    }
}


/* コンセプトセクション */

.secD{
	margin-top: 100px;
}

.concept-section {
    display: flex;
    max-width: 1408px;
    margin: 0 auto;
    padding: 20px;
    align-items: flex-start; /* 上揃え */
    gap: 50px; /* 左右の間隔 */
}

/* h2を縦書きにして上に配置 */
.concept-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 上寄せ */
}

.vertical-title {
    writing-mode: vertical-rl; /* 右から左の縦書き */
    text-orientation: upright;
    font-size: 32px;
    font-weight: bold;
    color: #685d01;
    min-width: 50px;
}

/* 右側の画像 */
.concept-image img {
    width: 1408px;
    height: auto;
    max-width: 100%;
    display: block;
}

/* レスポンシブ対応（スマホでは縦並び） */
@media screen and (max-width: 768px) {
    .concept-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .vertical-title {
        writing-mode: horizontal-tb; /* スマホでは横書き */
        text-align: center;
    }
}

.secE{
	margin: 0 auto;
}

.ttl01{
	width: 500px;
	font-size: 18px;
	font-weight: normal;
	margin: 0 auto;
}

.ttlp01{
	width: 800px;
	font-size: 16px;
	font-weight: normal;
	color:#747474;
	font-family: "Noto Sans JP", serif;
}

.sec800{
	width: 800px;
	margin: 0 auto;
	margin-bottom: 100px;
}


.secF {
    position: relative;
    display: flex;
    justify-content: center; /* 画像を中央に配置 */
    align-items: center; /* 縦方向も中央に配置（必要なら） */
    height: 600px; /* 適当な高さを設定 */
}

.gray-box {
    position: absolute;
    top: -100px;
    left: 0;
    width: 500px;  /* 四角の幅 */
    height: 500px; /* 四角の高さ */
    background-color: #f4eeed; /* グレーの色 */
    z-index: 0; /* 画像の背面に配置 */
}

.txc {
    position: relative;
    z-index: 1; /* 画像を前面に */
}

/* 右上に装飾画像を配置 */
.secF::after {
    content: "";
    position: absolute;
    top: -150px; /* 上からの距離 */
    right: 183px; /* 右からの距離 */
    width: 186px;  /* 装飾画像のサイズ */
    height: 100px; /* 装飾画像のサイズ */
    background-image: url('images/icon01.png'); /* 装飾画像のパス */
    background-size: cover; /* 画像のサイズを調整 */
    background-position: center;
    z-index: 2; /* 画像がコンテンツより上に配置 */
}

/* secF1 を画像の右下に配置 */

.secF1 {
    position: absolute;
    bottom: -200px;
    right: 200px;
    background-color: white;f
    padding: 20px;
    width: 600px;
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
    z-index: 2;
    /* border-radius: 8px; */
}

.ttl02{
	width: 500px;
	font-size: 18px;
	font-weight: normal;
	margin: 0 auto;
	padding-left: 20px;
	padding-top: 20px;
}

.ttlp01{
	width: 800px;
	font-size: 16px;
	font-weight: normal;
	color:#747474;
	font-family: "Noto Sans JP", serif;
}

.ttlp02{
	padding: 30px;
	width: 600px;
	font-size: 16px;
	font-weight: normal;
	color:#747474;
	font-family: "Noto Sans JP", serif;
}


.ttl03{
	width: 500px;
	font-size: 18px;
	font-weight: normal;
}

.secG {
    width: 800px;
    margin: 0 auto;
    margin-top: 250px;
    margin-left: 400px;
}

.ttl03,
.ttlp03 {
    text-align: left; /* h3 と p を左揃え */
}


.ttlp03{
	width: 800px;
	font-size: 16px;
	font-weight: normal;
	color:#747474;
	font-family: "Noto Sans JP", serif;
}



.btn02-container {
    position: relative; /* btn02-container 内で絶対位置を使用できるようにする */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* 適宜調整 */
}

.btn02 {
    display: inline-block;
    background-color: #b29700;
    padding: 12px 100px;
    border-radius: 30px;
    text-align: center;
}

.btn02 a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: block;
}

.btn02:hover {
    background-color: #8a7500;
}

/* 左下に装飾画像を配置 */
.btn02-container::after {
    content: "";
    position: absolute;
    bottom: -150px; /* 下からの距離 */
    left: 250px; /* 左からの距離 */
    width: 183px; /* 装飾画像のサイズ */
    height: 186px; /* 装飾画像のサイズ */
    background-image: url('images/icon02.png'); /* 装飾画像のパス */
    background-size: cover; /* 画像をボックスに合わせる */
    background-position: center;
    z-index: 1; /* ボタンより上に配置 */
}


.secH{
	width: 100%;
	margin: 0 auto;
	margin-top: 200px;
	padding-bottom: 200px;
	background-color: #f7f5f4;
	font-family: "Noto Sans JP", serif; 
}

.priceicon{
	padding-top: 50px;
}

.pricebg{
	margin: 0 auto;
	background-image: url('images/price01.png'); /* 背景画像のパス */
	background-position: top center;
	width: 1201px;
	height: 676px;
	margin-top: 50px;
}

.pttl01{
	width: 100%;
	margin: 0 auto;
}

.pttl01 h3{
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	color: #b29700;
	padding-top: 30px;
	
}

.pttl01 p{
	font-size: 24px;
}

.pricing-table {
    display: flex;
    flex-direction: column; /* 縦並びに配置 */
    width: 400px; /* 適宜調整 */
    margin: 0 auto;
}

.pricing-item {
    display: flex;
    justify-content: space-between; /* 左右に分ける */
    padding: 30px 0;
	font-size: 24px;
    border-bottom: dotted 1px;
    border-bottom-color: #ccc;
}
}

.time {
    text-align: left; /* 時間を左寄せ */
}

.price {
    text-align: right; /* 値段を右寄せ */
}

.Imain {
	width: 1212px;
	margin: 0 auto;
}

.secI{
	margin: 0 auto;
	padding-bottom: 200px;
}
.secI h2 {
	font-size: 34px;
	margin: 50px auto;
	text-align: center;
}

.cast01{
	margin: 0 auto;
	width: 800px;
	text-align: left;
}

.cast01 p{
	font-size: 18px;
	line-height: 1.8;
}

.secJ{
	margin: 0 auto;
	background-image: url('images/bg01.png'); /* 背景画像のパス */
	background-position: top center;
	background-repeat: no-repeat;
	width: 1920px;
	height: 600px;
	padding-top: 20px;
}

.mainj {
    background-color: rgba(0, 0, 0, 0.7); /* ← ここをopacityではなく rgba に */
    width: 950px;
    height: 500px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    position: relative; /* ← 追加 */
}

.mainj h2{
	padding-top: 10px;
	font-size: 36px;
	font-weight: bold;
}

.mainj p{
	font-size: 16px;
	font-weight: normal;
	line-height: 2;
}
.mainj img {
    position: relative;
    z-index: 2;
}



footer{
	background-color: #ccaf81;
	width: 100%;
	margin: 0 auto;
	height: 185px;
	text-align: center;
	margin-top: -35px;
	padding-top: 20px;
}

.copy{
	font-size: 15px;
	padding:60px 0;
}




/***スマホ **************************************************************************************************************************************/
/* ハンバーガーメニュー */
/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu span {
    background: #fff;
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px;
    transition: all 0.3s ease-in-out; /* ハンバーガーのアニメーション */
}

/* スマホ対応 */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .header-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-text {
        font-size: 16px;
        margin-top: 5px;
    }

    /* メニューの開閉アニメーション */
    .header-nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        text-align: center;
        opacity: 0;
        transform: translateY(-20px); /* 初期状態で少し上に */
        transition: opacity 0.5s ease, transform 0.5s ease;
        visibility: hidden; /* 非表示時にクリックできなくする */
    }

    /* メニューが開いたとき */
    .header-nav.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-menu li {
        padding: 30px 0;
    }

    .nav-menu li a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
    }

    .hamburger-menu {
        display: flex;
    }
}

/****スマホ*******************************************************/	
@media (max-width: 768px) {	
	.mainv img{
		width: 100%!important;
}

	
	.col2 {
        flex-direction: column;
        text-align: center;
    }

    .item01 img {
        max-width: 100%;
    }

    .item02 h2 {
        font-size: 20px;
    }

    .item02 p {
        font-size: 14px;
    }

    .btn-apply {
        width: 80%;
        font-size: 16px;
        padding: 15px;
        display: block;
        margin: 0 auto;
    }
	
	.topics-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .topics-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .topics-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 15px 0;
		padding-right: 10px;
    }

    .topics-date {
        font-size: 12px;
    }

    .topics-text {
        font-size: 14px;
    }
	
	
	.pricebg {
        padding: 0px;
    }

    .pttl01 h3 {
        font-size: 20px;
    }

    .pricing-item {
        flex-direction: column;
        text-align: center;
        padding: 8px 0;
    }

    .time {
        font-size: 14px;
		padding-left: 50px;
    }

    .price {
        font-size: 16px;
        margin-top: 5px;
    }
	
	
	.sec800 {
    margin: 0 auto;
    margin-bottom: 100px;
    width: 100%;
}
	
	.secF::after {
    display: none;
}
	
    .secE, .secF, .secG {
        text-align: left;
    }

    .ttl01, .ttl02, .ttl03 {
        font-size: 18px;
    }

    .ttlp01, .ttlp02, .ttlp03 {
        font-size: 14px;
    }

    .txc {
        max-width: 100%;
    }

	.pricebg {
    margin: 0 auto;
    background-image: url(images/price01.png);
    background-position: top center;
    /* width: 1201px; */
    height: 676px;
    margin-top: 50px;
    width: 100%;
}
	.pricing-table {
    display: flex;
    flex-direction: column;
    /* width: 400px; */
    margin: 0 auto;
    width: 100%;
}
	.pricing-item {
        flex-direction: column;
        padding: 8px 0;
        text-align: left;
    }
	    .price {
        font-size: 16px;
        margin-top: 5px;
        text-align: center;
    }
	
	.Imain {
    /* width: 1212px; */
    margin: 0 auto;
    width: 100%;
}
	.Imain img{
		width: 100%;
	}
	
	.cast01 p {
    font-size: 18px;
    line-height: 1.8;
	padding-left: 10px;
	padding-right: 10px;
}
	.cast01 {
    margin: 0 auto;
    /* width: 800px; */
    text-align: left;
    width: 100%;
	padding: 0px;
}
	.secJ {
    margin: 0 auto;
    background-image: url(images/bg01.png);
    background-position: top center;
    background-repeat: no-repeat;
    /* width: 1920px; */
    height: 600px;
    padding-top: 0px;
    width: 100%;
}
	.mainj {
    background-color: #000;
    opacity: 0.6;
    /* width: 950px; */
    height: 500px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    width: 100%;
}
	.topics-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    word-break: break-word;
    margin: 0;
    padding-left: 0px;
}
	.topics-date {
    font-size: 16px;
    font-weight: bold;
    color: #b79667;
    min-width: 0px;
    text-align: right;
    line-height: 1.6;
}
	
	.gray-box {
    display: none;
}
	    .sec800 {
        margin: 0 auto;
        margin-bottom: 0px;
        width: 100%;
    }
	.secF {
    position: relative;
    display: flex
;
    justify-content: center;
    align-items: center;
    height: 300px;
}
	.ttlp01 {
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    color: #747474;
    font-family: "Noto Sans JP", serif;
}
	
	.ttlp02 {
    padding: 0px;
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    color: #747474;
    font-family: "Noto Sans JP", serif;
}
	.secF1 {
    position: absolute;
    bottom: -200px;
    right: 0px;
    background-color: white;
    width: 100%;
	box-sizing: border-box;
	padding: 20px;
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
    z-index: 2;
    /* border-radius: 8px; */
}
	.ttl02 {
    width: 100%;
    font-size: 18px;
    font-weight: normal;
    margin: 0 auto;
    padding-left: 0px;
    /* padding-top: 20px; */
}
	.ttlp03 {
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    color: #747474;
    font-family: "Noto Sans JP", serif;
}
	.secG {
    width: 100%;
	max-width: 100%;
    margin: 0 auto;
    margin-top: 250px;
    margin-left: 0px;
	box-sizing: border-box;
}
	
	.btn02-container::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: 0px;
    width: 183px;
    height: 186px;
    background-image: url(images/icon02.png);
    background-size: cover;
    background-position: center;
    z-index: 1;
}
	.pricebg {
        margin: 0 auto;
        background-image: url(images/price01.png);
        background-position: top center;
        /* width: 1201px; */
        height: auto;
        margin-top: 50px;
        width: 100%;
    }
	.fs30 {
    font-size: 22px;
    font-weight: bold;
}
	.secI {
    margin: 0 auto;
    padding-bottom: 0px;
	width: 100%;
}
	    .mainj {
        background-color: #000;
        opacity: 0.6;
        /* width: 950px; */
        height: 0px;
        margin: 0 auto;
        text-align: center;
        color: #fff;
        width: 100%;
		height: 565px;
    }
	
	
	.ttl01 {
    font-size: 18px;
    font-weight: normal;
    margin: 0 auto;
    width: 100%;
}
	.decor-img {
        width: 60px;
        display: none;
    }
	
	 .topics-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%!important;
    }
	
	.topics-container {
    display: flex;
    align-items: flex-start;
    /* max-width: 1280px; */
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    gap: 0px;
    background-color: #f3eae9;
    padding-top: 60px;
    padding-bottom: 60px;
	box-sizing: border-box;
	padding-left: 10px;
}
	.ttl01, .ttl02, .ttl03 {
        font-size: 18px;
        width: 100%;
    }
	.secE, .secF, .secG {
        text-align: left;
        width: 100%;
        box-sizing: border-box;
        padding: 20px;
    }
	
	.secH {
    width: 100%;
    margin: 0 auto;
    margin-top: 200px;
    padding-bottom: 100px;
    background-color: #f7f5f4;
    font-family: "Noto Sans JP", serif;
}
	
	.concept-image img {
    /* width: 1408px; */
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}
	
	.header-left {
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
    gap: 10px; /* ロゴとテキストの間隔 */
}

    .header-left {
        display: flex;
        flex-direction: row; /* 横並びを維持 */
        justify-content: flex-start; /* 左寄せ（必要なら center に変更） */
    }

    .header-logo img {
        width: 100px; /* スマホ用に少し小さめ */
    }

    .header-text p {
        font-size: 14px; /* スマホ用にフォントサイズ調整 */
}
.popup-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.popup {
  width: 100%;
  overflow-x: hidden;
}
	
}


@media screen and (max-width: 768px) {
  .popup {
    padding-top: 60px; /* スマホでは上に余裕を持たせる */
  }
}

