@charset "utf-8";



/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Murecho:wght@100..900&display=swap');


/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #d19ab2;		/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの対となる色*/
	/*--global-bg-color: #f9f9f9; ---*/
	--global-space: 7vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*fadeInのキーフレーム設定（テキストのフェードインに使用）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}


/*slide1のキーフレーム設定（footer背景に使用）
---------------------------------------------------------------------------*/
@keyframes slide1 {
	0% {background-position: center bottom;}
	50% {background-position: 50px bottom;}
	100% {background-position: center bottom;}
}


/*spin（回転するキーフレーム）
---------------------------------------------------------------------------*/
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		html, body {
			font-size: 16px;	/*基準となるフォントサイズ。*/
		}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "Yu Mincho", "游明朝体", "MS PMincho", "ＭＳ Ｐ明朝", serif; /* フォント種類（明朝） */
	font-optical-sizing: auto;
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #8a9dc1;		/*文字色*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
	background-color: var(--global-bg-color);
}

/*トップページのヘッダー下の背景画像*/
body.home {
	background: #fff url("../images/bg_header.png") no-repeat center top / 100%;
}

/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
section + section {
	margin-top: var(--global-space);
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}


/*コンテナー（サイト全体を囲むブロック）
コンテンツ内容が少なくてもフッターが画面下に配置される為の指示なので変更不要。
---------------------------------------------------------------------------*/
#container {
	height: 100vh;
	display: flex;
	flex-direction: column;
}


/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	padding: 0 var(--global-space);	/*上下、左右へのコンテンツ内の余白。左右の余白についてはcss冒頭のglobal-spaceを読み込みます。*/
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	flex-shrink: 0;
	display: flex; /*flexボックスを使う指定*/
	align-items: center; /*垂直揃えの指定。天地中央に配置されるように。*/
	justify-content: space-between;
	height: 60px; /*ヘッダーの高さ*/
	padding: 0 var(--global-space); /*上下、左右へのヘッダー内の余白。左右の余白についてはcss冒頭のglobal-spaceを読み込みます。*/
	font-optical-sizing: auto;
	font-weight: 700; /*文字の太さ。100〜900で指定ができます。*/
	background: linear-gradient(90deg, #c8d4e3, #d19ab2); /* グラデーションの設定 */
	color: var(--primary-inverse-color); /*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
  }
  
  header a {
	color: inherit;
  }
  
  /*ロゴ*/
  .logo a {
	display: block;
	text-decoration: none;
  }
  .logo img {
	display: block;
  }
  .logo {
	margin: 0;
	margin-top: 25px;
	padding: 0;
	width: 140px; /*ロゴ画像の幅*/
	font-size: 1.5rem; /*ロゴをテキストで使用する場合の文字サイズ*/
	font-weight: 500; /*文字の太さ。100〜900で指定ができます。*/
	letter-spacing: 0.1em; /*文字間隔をほんの少しだけ広く*/
  }

  #menubar .logo {
	margin: 0px;
	height: 100px;
  }
  
  /*画面幅900px以上の追加指定*/
  @media screen and (min-width: 900px) {
  
	/*ヘッダーブロック*/
	header {
	  height: 120px; /*ヘッダーの高さ*/
	}
  
	/*ロゴ*/
	.logo {
	  width: 250px; /*ロゴ画像の幅*/
	}

	#menubar .logo {
		margin: 0px;
		height: auto;
	}
  
  } /*追加設定ここまで*/
  

  /* -------------------------------- */


  /*ロゴ*/
  .logo a {
	display: block;
	text-decoration: none;
  }
  .logo img {
	display: block;
	/* height: 112%; */
  }
  .logo {
	margin: 0;
	margin-top: 25px;
	padding: 0;
	width: 140px; /*ロゴ画像の幅*/
	font-size: 1.5rem; /*ロゴをテキストで使用する場合の文字サイズ*/
	font-weight: 500; /*文字の太さ。100〜900で指定ができます。*/
	letter-spacing: 0.1em; /*文字間隔をほんの少しだけ広く*/
  }

  #menubar .logo {
	margin: 0px;
	height: 100px;
  }
  
  /*画面幅900px以上の追加指定*/
  @media screen and (min-width: 900px) {
  
	/*ヘッダーブロック*/
	header {
	  height: 120px; /*ヘッダーの高さ*/
	}
  
	/*ロゴ*/
	.logo {
	  width: 250px; /*ロゴ画像の幅*/
	}

	#menubar .logo {
		margin: 0px;
		height: auto;
	}
  
  } /*追加設定ここまで*/

/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {display: none;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	/*メニューブロック全体の設定*/
	header > nav > ul {
		display: flex;		/*横並びにする*/
		font-size: 0.85rem;	/*文字サイズ。85%。*/
	}

	/*メニュー１個あたりの設定*/
	header nav li a {
		display: block;text-decoration: none;
		padding: 0.5rem 1rem;	/*メニュー内の余白。上下、左右へ。*/
	}
	
	}/*追加設定ここまで*/


/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
	position: absolute;z-index: 100;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
	background: var(--primary-inverse-color);	/*背景色。css冒頭のprimary-inverse-colorを読み込みます。*/
	color: var(--primary-color);				/*文字色。css冒頭のprimary-colorを読み込みます。*/
	padding: 0.3em 1em;							/*上下、左右へのメニュー内の余白*/
	margin-top: 4px;							/*上に空けるスペース。ドロップダウン同士の隙間です。*/
	border: 1px solid var(--primary-color);		/*枠線の幅、線種、varは色の事でcss冒頭のprimary-colorを読み込みます。*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {
	display: block;
	text-decoration: none;
}
#menubar img {
	/* height: 112%; */
}

h1.logo {
	width: 100px;	/*ロゴ画像の幅*/
	margin-top: 15px;	/*ロゴの上に空けるスペース*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

	h1.logo {
		margin-top: 25px;
		width: 140px; /*ロゴ画像の幅*/
	}

	#menubar img {
		max-width: 60%;
	}

}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 10vw 50px;				/*ブロック内の余白。上、左右、下への順番。*/
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	animation: animation1 0.2s both;		/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*子メニューの設定*/
.small-screen #menubar ul ul {
	margin: 2rem;	/*外側に空けるスペース。２文字分。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid var(--primary-inverse-color);	/*枠線の幅、線種、varは色の事でcss冒頭のprimary-inverse-colorを読み込みます。*/
	margin: 1rem 0;			/*メニューの外側に空けるスペース。上下、左右への順番。*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a {
	color: inherit;
	padding: 1rem 2rem;	/*メニュー内の余白。上下、左右へ。*/
}

/*マウスオン時*/
.small-screen #menubar a:hover {
	color: var(--primary-color);				/*文字色。css冒頭のprimary-colorを読み込みます。*/
	background: var(--primary-inverse-color);	/*背景色。css冒頭のprimary-inverse-colorを読み込みます。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 5px;		/*上からの配置場所*/
	right: 10px;	/*右からの配置場所*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	padding: 15px;	/*ブロック内の余白*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	background: var(--primary-color);	/*背景色。css冒頭のprimary-colorを読み込みます。*/
	border-radius: 50%;	/*円形にする。四角形がいいならこの１行を削除。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*３本バーを囲むブロック*/
	#menubar_hdr {
		top: 34px;		/*上からの配置場所*/
	}

	}/*追加設定ここまで*/


/*マウスオン時に120%にする*/
#menubar_hdr:hover {
	transform: scale(1.2);
}

/*×アイコンになった場合にサイズを大きくする*/
#menubar_hdr.ham {
	width: 80px;	/*幅*/
	height: 80px;	/*高さ*/
}

/*ここは変更不要*/
#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 2px;	/*線の太さ*/
	background-color: var(--primary-inverse-color);	/*線の色。css冒頭のprimary-inverse-colorを読み込みます。*/
	border-radius: 2px;		/*コーナーを少しだけ丸く*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {top: 50%;transform: translateY(-50%);}
#menubar_hdr div span:nth-child(3) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {opacity: 0;}
#menubar_hdr.ham div span:nth-child(3) {top: 50%;transform: translateY(-50%) rotate(-45deg);}


/*main
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
	padding: var(--global-space) 0;	/*上下、左右へのブロック内の余白。上下については、css冒頭のglobal-spaceを読み込みます。*/
}

/*h2(見出し)要素*/
main h2 {
	color: var(--primary-color);	/*文字色。css冒頭のprimary-colorを読み込みます。*/
	font-size: 1.0rem;	/*文字サイズ。180%。*/
	font-weight: 350;	/*文字の太さ。100〜900で指定ができます。*/
}

/*bg1背景上でのh2*/
main .bg1 h2 {
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	border-color: var(--primary-inverse-color);	/*線色をprimary-inverse-colorにします。*/
}

/*box1背景上でのh2*/
h2.box1 {
	font-size: 2.4rem;		/*文字サイズを240%*/
	letter-spacing: 0.2em;	/*文字間隔を広く*/
}

/*h2内の小文字*/
main h2 .small {
	display: block;
	font-weight: normal;	/*文字の太さを標準に。100〜900の数値での指定も可能です。*/
	font-size: 0.8rem;		/*文字サイズを80%*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広く*/
}

/*h3(見出し)要素*/
main h3 {
	font-weight: 500;	/*文字の太さ。100〜900で指定ができます。*/
}


/*box1
---------------------------------------------------------------------------*/
main .box1 {
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、varは色の事でcss冒頭のprimary-colorを読み込みます*/
	padding: 1vw;	/*ボックス内の余白。画面幅100% = 100vwです。*/
	margin-bottom: var(--global-space);	/*ボックスの下（外）に空けるスペース。css冒頭のglobal-spaceを読み込みます*/
}

/*box1の中にある最後のlist-freeの下マージンをなくす*/
.box1 .list-free:last-of-type {
	margin-bottom: 0;
}


/*style1（アクセント画像）
---------------------------------------------------------------------------*/
main .style1 {
	position: relative;
	font-weight: normal;	/*文字の太さを標準に。100〜900の数値での指定も可能です。*/
	margin-bottom: 2rem;	/*下に２文字分のスペース*/
}

main .style1::before {
	content: "";
	background: url("../images/bg2.svg") repeat-x left bottom / auto 6px;	/*アクセント用画像を指定。6pxは高さで、下のheightと数字を合わせます。*/
	display: block;
	position: absolute;
	left: 0px;
	top: 2em;		/*上から２文字分の所に表示。ここを0pxにしておくとテキストの上に出ます。*/
	width: 102px;	/*表示させる幅。お好みで変更して下さい。*/
	height: 6px;	/*高さ。上のbackgroundの最後の数字と合わせます。*/
}


/*pointアイコン
---------------------------------------------------------------------------*/
/*pointブロック全体*/
.point {
	order: -1;
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	width: 20vw;	/*幅*/
	height: 20vw;	/*高さ*/
	display: flex;

	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0.8rem;		/*文字サイズを80%*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広く*/
	line-height: 1.2;		/*行間を狭く*/
	position: relative;
	background: url("../images/bg1.svg") no-repeat center center / 100%;	/*アイコンの背景画像の読み込み。幅を100%に。*/
}

/*回転させる場合の指定*/
.point.spin::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url("../images/bg1.svg") no-repeat center center / 100%;	/*アイコンの背景画像の読み込み。幅を100%に。*/
	animation: spin 30s linear infinite;	/*30s（30秒）が１回転する速度です。お好みで変更して下さい。*/
}

/*テキストブロック*/
.point span {
	position: relative;z-index: 1;
}
/*大きな文字（1や2などの数字に使用）*/
.point span span {
	display: block;
	font-size: 2rem;	/*文字サイズを２倍*/
}
	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*pointブロック*/
	.point {
		width: 10vw;	/*幅を変更*/
		height: 10vw;	/*高さを変更*/
	}
	
	}/*追加設定ここまで*/


/*フッター
---------------------------------------------------------------------------*/
footer {
	font-size: 0.8rem;	/*文字サイズを80%*/
	border-top: 3px solid var(--primary-color);	/*上の線の幅、線種、varは色の事でcss冒頭のprimary-colorを読み込みます*/
	padding: var(--global-space);				/*フッター内の余白。css冒頭のglobal-spaceを読み込みます*/
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 3vw;
	color: var(--primary-color);	/*文字色。css冒頭のprimary-colorを読み込みます*/
	background: url("../images/bg_footer.png") no-repeat center bottom / 100%;	/*背景画像の読み込み。ブロックの中央下部に配置して幅を100%。*/
	animation: slide1 10s linear infinite;	/*アニメーション設定。10秒かけてcss冒頭のslide1を実行します。*/
}

footer a {
	text-decoration: none;
	color: inherit;
}

/*フッター内のnavメニュー*/
footer nav {
	display: flex;
	gap: 3vw;
	font-weight: bold;	/*文字を太字に。100〜900の数値での指定も可能です。*/
}
footer nav ul {
	flex: 1;
}
footer nav a {
	font-weight: normal;	/*文字の太さを標準に。100〜900の数値での指定も可能です。*/
}


/*画面幅600px以上の追加指定*/
@media screen and (min-width:601px) {
	footer nav ul li {
		width: 120px;
	}
}

/*画面幅600px以上の追加指定*/
@media screen and (max-width:600px) {
	footer nav ul li {
		width: 80px;
	}
}

/*著作部分*/
footer .pr {display: block;}
#copyright {width: 100%;}


/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
ul.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	gap: 1rem;	/*アイコン同士のマージン的な要素。１文字分。*/
}
.icons i {
	font-size: 30px;	/*アイコンサイズ*/
}


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.2s linear both;
}


/*list-grid1（４カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
	margin-bottom: var(--global-space);	/*下に空けるスペース*/
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を狭くする*/
}


.text > p:last-of-type {
	margin-top: 5px;
}

/*ボックス１個あたり*/
.list-grid1 .list {
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	background: #fff;		/*背景色*/
	color: #8a9dc1;			/*文字色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 4vw;	/*ブロックの間に空けるマージン的な指定*/
	}

	/*ボックス１個あたり*/
	.list-grid1 .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}

	}/*追加指定ここまで*/

	/*画面幅800px以上の追加指定*/
	@media screen and (max-width:799px) {

		/*listブロック全体を囲むブロック*/
		.list-grid1 {
			display: grid;
			grid-template-columns: repeat(1, 1fr);	/*1列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
			gap: 4vw;	/*ブロックの間に空けるマージン的な指定*/
		}
	
		/*ボックス１個あたり*/
		.list-grid1 .list {
			margin-bottom: 0;	/*下に空けるスペースをなくす*/
		}
	
		}/*追加指定ここまで*/


/*list-free（レイアウトフリー用）
---------------------------------------------------------------------------*/
/*.list-free * {margin: 0;padding: 0;}*/

/*list-freeボックス*/
.list-free {
	display: flex;			/*直接の子要素を横並びに*/
    flex-direction: column;	/*一旦縦並びにしておく*/
	margin-bottom: 10vw;	/*ボックスの下（外側）に空けるスペース*/
	gap: 3vw;				/*子要素同士に空けるマージン的な要素。画面幅100%＝100vwです。*/
}

/*bg1,bg2背景の中にある最後のlist-freeの下マージンをなくす*/
.bg1 .list-free:last-of-type,
.bg2 .list-free:last-of-type {
	margin-bottom: 0;
}

/*テキストブロック*/
.list-free .text {
    align-self: flex-start;
	flex: 1;
}



/*h3見出し*/
.list-free h3 {
	margin-top: 0;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする*/
	font-size: 1.5rem;		/*文字サイズを150%に*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	position: relative;	/*カギカッコを絶対配置する為に必要な指定*/
}

/*bg1背景上でのh3*/
.bg1 .list-free h3 {
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
}

/*縦書きスタイル*/
.list-free .vertical-text {margin: auto;}
.list-free .vertical-text::before,
.list-free .vertical-text::after {
	content: "";
	position: absolute;
	width: 20px;	/*カギカッコの幅。お好みで。*/
	height: 50px;	/*カギカッコの高さ。お好みで。*/
	border: 1px solid red;	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-colorを読み込みます*/
}

/*bg1背景上で枠線の色のみ変更*/
.bg1 .list-free .vertical-text::before,
.bg1 .list-free .vertical-text::after {
	border-color: var(--primary-inverse-color);	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-inverse-colorを読み込みます*/
}


/*画面幅600px以下の追加指定　スマホ*/
@media screen and (max-width:600px) {
	.list-free .vertical-text::before {
		top: -0.75em;		/*テキストからの距離。お好みで。*/
		left: -1em;	/*テキストからの距離。お好みで。*/
		border-right: none;		/*右の線は消す*/
		border-bottom: none;	/*下の線は消す*/
	}
	
	.list-free .vertical-text::after {
		bottom: -0.75em;	/*テキストからの距離。お好みで。*/
		right: -1em;	/*テキストからの距離。お好みで。*/
		border-left: none;	/*左の線は消す*/
		border-top: none;	/*上の線は消す*/
	}
}
/*画面幅601px以上の追加指定　PC*/
@media screen and (min-width:601px) {


	.list-free .vertical-text::before {
		top: -0.75em;		/*テキストからの距離。お好みで。*/
		left: -1em;	/*テキストからの距離。お好みで。*/
		border-right: none;		/*右の線は消す*/
		border-bottom: none;	/*下の線は消す*/
	}
	
	.list-free .vertical-text::after {
		bottom: -0.75em;	/*テキストからの距離。お好みで。*/
		right: -1em;	/*テキストからの距離。お好みで。*/
		border-left: none;	/*左の線は消す*/
		border-top: none;	/*上の線は消す*/
	}
}


/*画像ブロック*/
.list-free .image {
	position: relative;
}

/*iframeを使う場合の設定（shop.htmlのGoogleMapに使用）*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 56.25%;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
}
.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

/*画像の上にポイントアイコンを置いた場合の設定*/
.list-free .image.order3 .point {
	position: absolute;
	left: -20px;
	top: -20px;
}
.list-free .image.order1 .point {
	position: absolute;
	right: -20px;
	top: -20px;
}





/*画像ブロック内のdivタグ。テキストを囲むブロックです。*/
.list-free .image > div {
	font-size: 0.7rem;	/*文字サイズを70%*/
	padding: 1rem 2rem;	/*上下、左右への余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*list-freeボックス*/
	.list-free {
		flex-direction: row;		/*縦並びから横並びにする*/
		align-items: flex-start;	/*中のボックス類を上に寄せる*/
	}
	
	.list-free .vertical-text {
		writing-mode: vertical-rl;	/*縦書きの指定。*/
		text-orientation: upright;	/*文字の向き*/
		padding: 1rem 0.5rem;	/*上下、左右へのh3内の余白*/
	}
	
	/*画像ブロックが３番目（右側）になった場合に画面右側いっぱいまで広げる*/
	.list-free .image.order3 {
		margin-right: calc(-1 * var(--global-space));
	}
	.list-free .image.order3 img {
		border-radius: 30px 0px 0px 30px;	/*角丸の指定。左上、右上、右下、左下への順番。*/
	}
	
	/*画像ブロックが１番目（左側）になった場合に画面左側いっぱいまで広げる*/
	.list-free .image.order1 {
		margin-left: calc(-1 * var(--global-space));
	}
	.list-free .image.order1 img {
		border-radius: 0px 30px 30px 0px;	/*角丸の指定。左上、右上、右下、左下への順番。*/
	}

	/*その他（汎用向け）お好みでもっと追加して使ってもOK*/
	.list-free .w1 {width: 30%;}
	.list-free .w2 {width: 50%;}
	.list-free .order1 {order: 1;}
	.list-free .order2 {order: 2;}
	.list-free .order3 {order: 3;}
	.list-free .align-self-start {align-self: flex-start;}
	.list-free .align-self-center {align-self: center;}
	.list-free .align-self-end {align-self: flex-end;}

	}/*追加指定ここまで*/


/*ボタン1、ボタン2の共通設定
---------------------------------------------------------------------------*/
.btn1 a, .btn2 a {
	display: block;text-decoration: none;
	font-size: 1rem;
	margin-top: 1rem !important;	/*ボタンの外（上）に空けるスペース*/
}


/*ボタン1（btn1）
---------------------------------------------------------------------------*/
.btn1 a {
	text-align: center;		/*テキストをセンタリング*/
	background: var(--primary-color);	/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	padding: 0.5rem !important;		/*ボタン内の余白*/
}


/*ボタン2（btn2）
---------------------------------------------------------------------------*/
.btn2 {
	text-align: right;	/*テキストを右寄せ*/
	padding: 40px 0;
}
.btn2 a {
	display: inline-block;
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	position: relative;
	padding-right: 80px;	/*矢印のアイコンと重ならないように余白をとる*/
}

/*矢印のアイコン設定*/
.btn2 a::after {
	content: "";
	background: #fff url("../images/arrow1.svg") no-repeat right center / 120px;	/*アイコン画像の指定。画像の右側を読み込みます。最後の120の数字は、widthの２倍で指定します。*/
	display: block;
	position: absolute;
	right: 0px;
	bottom: -1em;
	width: 60px;	/*アイコンの幅。ここを変更する場合は、上と下にあるbackgroundの120の数値も調整します。*/
	height: 60px;	/*アイコンの高さ*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、varは色の事でcss冒頭のprimary-colorを読み込みます*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すれば正方形になります。*/
	text-align: center;
	transition: 0.3s;	/*hover時に切り替えをなめらかにする*/
}

/*矢印のマウスオン時*/
.btn2 a:hover::after {
	background: var(--primary-color) url("../images/arrow1.svg") no-repeat left center / 120px;	/*背景色をprimary-colorに変更し、背景画像の左側を読み込みます。最後の120の数字は、widthの２倍で指定します。*/
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new {
	flex: 1;
	border-top: 1px solid #ccc;	/*ブロックの上の線幅、線種、色*/
}

/*日付(dt)設定*/
.new dt {
	padding: 1rem;	/*dt内の余白*/
	font-size: 14px;
}

/*記事(dd)設定*/
.new dd {
	padding: 0 1rem 1rem;	/*上、左右、下へのdd内の余白*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	font-size: 14px;
	color: #333;
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	margin-right: -1rem;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 3px;		/*角を丸くする指定*/
	padding: 0 0.5rem;		/*上下、左右へのブロック内の余白*/
	width: auto;			/*幅。8文字分。*/
	transform: scale(0.8);	/*80%のサイズに縮小*/
	background: #fff;		/*背景色*/
	color:#777;				/*文字色*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}

/*icon-bg1*/
.new .icon-bg1 {
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	border-color: transparent;				/*枠線を出したくないので透明にする*/
}

/*bg1背景の上で使うicon-bg1*/
.bg1 .new .icon-bg1 {
	background: var(--primary-inverse-color);	/*背景色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	color: var(--primary-color);				/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	
}


/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.thumbnail-view {
	max-width: 1000px;		/*最大幅*/
	margin: 0 auto 1rem;	/*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
	text-align: center;		/*画像が小さい場合でもセンタリングされるように*/
}

/*サムネイル全体を囲むブロック*/
.thumbnail {
	display: flex;				/*flexを使う指定*/
	/* margin-bottom: 2rem;		下に空けるスペース。２文字分。 */
	overflow-x: auto;
	max-width: 1000px;
	text-align: center;
	margin: 0 auto 2rem;
}

/*サムネイル画像*/
.thumbnail img {
	width: 100px;		/*サムネイルの幅*/
	margin: 2px;		/*サムネイル間のスペース*/
	cursor: pointer;	/*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインターにしておきます。*/
	transition: 0.3s;	/*マウスオンまでにかける時間。3秒。*/
}
.thumbnail img:hover {
	opacity: 0.8;	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*文字を太字に。100〜900の数値での指定も可能です。*/
	padding: 0.5rem 1rem;	/*ボックス内の余白*/
	background: #999;		/*背景色*/
	color: #fff;			/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;				/*幅*/
	margin-bottom: 5rem;		/*テーブルの下に空けるスペース。5文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
	background: #f5f5f5;	/*背景色*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		/*th（左側）のみの設定*/
		.ta1 th {
			width: 20%;		/*幅*/
		}

	}/*追加指定ここまで*/


/*bg1背景
---------------------------------------------------------------------------*/
.bg1 {
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	padding: var(--global-space);			/*ボックス内の余白。css冒頭のglobal-spaceを読み込みます。*/
	
    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}


/*bg2背景
---------------------------------------------------------------------------*/
.bg2 {
	background: #f0f0f0;
	color: var(--primary-color);	/*文字色。css冒頭のprimary-colorを読み込みます。*/
	padding: var(--global-space);			/*ボックス内の余白。css冒頭のglobal-spaceを読み込みます。*/
	
    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}




/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #d19ab2 !important;}
.bg1 .color-check, .bg1 .color-check a {color: #cbb2b6 !important;}
.bg1 .look .color-check, .bg1 .look .color-check a {color: #d19ab2 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.bg1 .look,.bg2 .look {background: #fff;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/

	---------------------------------------------------------------------------*/
/*各キャストボックスの設定*/
.list {
	position: relative;overflow: hidden;
	float: left;			/*左に回り込み*/
	font-size: 11px;		/*文字サイズ*/
	line-height: 1.5;		/*行間*/
	width: 23%;				/*ボックスの幅*/
	margin-left: 1.5%;		/*ボックスの左右間に空けるスペース*/
	margin-bottom: 20px;	/*ボックスの上下間に空けるスペース*/
}
.list a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 10px;	/*ボックス内の余白*/
	height: 220px;	/*高さ*/
	border: 1px solid #d19ab2;	/*枠線の幅、線種、色*/
	box-shadow: 0px 0px 50px #d19ab2 inset;	/*ボックスの影。右へ、下へ、広げる幅、色。insestは影を内側に向ける意味。*/
}
/*マウスオン時。内側の影を消す設定。*/
.list a:hover {
	box-shadow: none;
}
/*２カラム時のボックス幅*/
.c2 .list a {
	padding: 15px;	/*ボックス内の余白*/
	height: 240px;	/*高さ*/
}
/*ボックス内のp(段落)タグ設定*/
.list p {
	padding: 0px !important;
}
/*ボックス内のh4タグ設定*/
.list h4 {
	padding: 0px;
	color: #c6648e;	/*文字色*/
}


  

/*トップページ*/ 
.index_service_overview{
	font-size: 18px;
	color: #333;
	text-align: center;
}

/*画面幅812px以下の追加指定*/
@media screen and (max-width:811px) {

/*トップページ*/ 
.index_service_overview{
	font-size: 11.5px;
	color: #333;
	text-align: center;
}
	
}/*追加設定ここまで*/


@media screen and (min-width:601px) {
.list-free0{
	display: block;
	width: 50%;
}

.list-free0-flex{
	display: flex;
	flex-wrap: wrap;
}

}

.list-free1{
	padding:0px 20px 40px 20px; 
}

/*画面幅601px以上の追加指定　PC*/
@media screen and (min-width:601px) {
	.list-free1{
		padding:30px 20px 50px 20px;
		flex: 0 0 48%;   
	}
}

.list-free1-text{
	font-size: 18px;
	color: #6385c4;
	text-align: center;
}

/*画面幅600px以下の追加指定 スマホ*/
@media screen and (max-width:600px) {

	/*トップページ*/ 
	.list-free1-text{
		font-size: 15px;
		color: #6385c4;
		text-align: left;
	}

	.list-free1 p{
		font-size: 11.5px;
		text-align: left;
	}

	.pc_section {
		display: none;
	}

	.option-table {
		display: none;
	}

	.is_pc {
		display: none;
	}
		
}/*追加設定ここまで*/

.list-free1 img{
	width: 100%;
	border-radius: 10px;
}
/*画面幅601px以上の追加指定　PC*/
@media screen and (min-width:601px) {
	.list-free1 p{
		font-size: 13px;
		text-align: center;
	}

	.mobile_section {
		display: none;
	}

	.is_phone {
		display: none;
	}

	.option-table_phone {
		display: none;
	}

}

.list-free2{
	padding:30px 20px 20px 50px;
}
.list-free2-text{
	font-size: 18px;
	color: #6385c4;
	text-align: center;
}
.list-free2 img{
	width: 100%;
	border-radius: 10px;
}
.list-free2 p{
	font-size: 13px;
	text-align: center;
}


.list-free3{
	padding:30px 50px 50px 20px;
}
.list-free3-text{
	font-size: 18px;
	color: #6385c4;
	text-align: center;
}
.list-free3 img{
	width: 100%;
	border-radius: 10px;
}
.list-free3 p{
	font-size: 13px;
	text-align: center;
}


.list-free4{
	padding:30px 20px 20px 50px;
}
.list-free4-text{
	font-size: 18px;
	color: #6385c4;
	text-align: center;
}
.list-free4 img{
	width: 100%;
	border-radius: 10px;
}
.list-free4 p{
	font-size: 13px;
	text-align: center;
}




/*基本情報*/

/*彼女プロフィール基本情報と自己紹介の選択ボタン*/ 
  .tab-buttons button {
	padding: 10px 20px;
	margin-right: 10px;
	border: none;
	background-color: #f0f0f0;
	cursor: pointer;
	border-radius: 5px;
  }
  
  /* 現在選択されているボタンに色を付ける */
.tab-buttons .active {
	background-color: #8a9dc1; /* 青色 */
	color: white;
  }

  /* 現在選択されているボタンに色を付ける */
.tab-buttons .active-info {
	background-color: #d19ab2; /* ピンク色 */
	color: white;
}

.tab-buttons .active-intro {
	background-color: #8a9dc1; /* 青色 */
	color: white;
}

  .content-container {
	border: 1px solid #c8d4c3;
	padding: 20px;
	border-radius: 5px;
	border: none; /* 枠線を消す */
  }
  
  .content-section {
	display: none;
  }
  
.kanojo-options{
	display: flex;
    gap: 5px; /* 要素間のスペースを指定（例: 10px） */
}

.kanojo-options p{
	color: #333;
}

.kanojo-options-yukata{
	width: 4em;
	height: 2em;
	font-size: 10px;
	text-align: center;
    color: #FFF;/*文字色*/
    border-radius: 3px;/*角の丸み*/
	background-color:  #d96f9d;
}

.kanojo-options-mizugi{
	width: 4em;
	height: 2em;
	font-size: 10px;
	text-align: center;
    color: #FFF;/*文字色*/
    border-radius: 3px;/*角の丸み*/
	background-color:  #8a9dc1;
}

.kanojo-options-tetsunagi{
	width: 4em;
	height: 2em;
	font-size: 10px;
	text-align: center;
    color: #FFF;/*文字色*/
    border-radius: 3px;/*角の丸み*/
	background-color:  #b39a5b;
}

.kanojo-options-satuei{
	width: 4em;
	height: 2em;
	font-size: 10px;
	text-align: center;
    color: #FFF;/*文字色*/
    border-radius: 3px;/*角の丸み*/
	background-color:  #787878;
}

.kanojo-options-syukuhaku{
	width: 4em;
	height: 2em;
	font-size: 10px;
	text-align: center;
    color: #FFF;/*文字色*/
    border-radius: 3px;/*角の丸み*/
	background-color:  #6fb559;
}

.kanojo-options-fukusousitei{
	width: 5em;
	height: 2em;
	font-size: 10px;
	text-align: center;
    color: #FFF;/*文字色*/
    border-radius: 3px;/*角の丸み*/
	background-color:  #ffbc49;
}

/* ボタン全体を横並びにするコンテナ */
.btn-container {
	display: flex; /* フレックスボックスで横並び */
	gap: 20px; /* ボタン間の隙間 */
	justify-content: center; /* 中央揃え */
  }
/* ボタンを横並びにする親要素 */
.btn-container {
	display: flex; /* フレックスボックスでボタンを横並びに配置 */
	gap: 60px; /* ボタン間の間隔を広げる */
	justify-content: center; /* ボタンを中央揃え */
  }
  
  /* ボタン共通スタイル */
  .btn {
	display: inline-block;
	padding: 10px 30px; /* 内側余白（細長く設定） */
	text-decoration: none; /* テキスト装飾を無効化 */
	font-size: 16px; /* フォントサイズ */
	font-weight: bold; /* 太字 */
	color: white; /* テキストカラー */
	border-radius: 25px; /* 丸みを帯びた形 */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 影を追加 */
	transition: transform 0.2s, box-shadow 0.2s; /* ホバー時のアニメーション */
	margin-top: 40px; /* 上部に余白を追加 */
  }
  
  
  /* グラデーション1 */
  .btn-gradient-1 {
	background: linear-gradient(90deg, #c8d4e3, #cbb2b6);
  }
  
  /* グラデーション2 */
  .btn-gradient-2 {
	background: linear-gradient(90deg, #d19ab2, #8a9dc1);
  }
  
  /* ホバー時のスタイル */
  .btn:hover {
	transform: scale(1.05); /* 拡大 */
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 768px) { /* スマホ用（画面幅が768px以下の場合） */
	.btn-container {
	  flex-direction: column; /* フレックスボックスの方向を縦に変更 */
	  gap: 20px; /* ボタン間の隙間を調整 */
	  margin-top: 20px; /* 上部に余白を追加 */
	}
  
	.btn {
	  width: 80%; /* ボタン幅を80%に調整 */
	  margin: 0 auto; /* 中央揃え */
	}
  }
  






    /* ＊＊＊＊＊＊＊＊＊＊＊＊＊　利用の流れ画面css　＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.list-free p{
	font-size: 13px;
}

.inline_box5 {
	font-size: 10px;
	width: 100%;
	height: 180px;
	overflow: auto;
	background: #ffffff;
	border: 1px solid #cccccc;
	padding: 10px;
	color: #333;
	border: double 5px #d19ab2;
	}

	.box5 {
		justify-content: center; 
		padding: 0.5em 1em;
		margin: 2em 0;
		border: double 5px #4ec4d3;
		background: #ffffff;
		width: 100%;
	}


/* スマホ用（画面幅が768px以下の場合） */
@media (max-width: 768px) {
    .box5_1 {
		justify-content: center; 
		padding: 0.5em 1em;
		margin: 2em 0;
		border: double 5px #d19ab2;
		background: #ffffff;
		width: 100%;

	}
}
/* スマホ以外（画面幅が769px以上の場合） */
@media (min-width: 769px) {
	.box5_1 {
		justify-content: center; 
		padding: 0.5em 1em;
		margin: 2em 0;
		border: double 5px #d19ab2;
		background: #ffffff;
		width: 100%;

    /*transform: translate(10%, 0%); /* 要素の中心に移動 */
	}
}

.box5_3 {
    display: flex;
}

/* スマホ以外（画面幅が769px以上の場合） */
@media (min-width: 769px) {
	.box5_2 {
		justify-content: center; 
		padding: 0.5em 1em;
		margin: 2em 0;
		width: 100%;

    transform: translate(10%, 0%); /* 要素の中心に移動 */
	}

	.box5_3 {
		justify-content: center; 
		padding: 0.5em 1em;
		margin: 2em 0;
		width: 100%;

    transform: translate(10%, 0%); /* 要素の中心に移動 */
	}
}

.terms-of-service {
	display: flex;
	justify-content: center;  /* 中央揃え */
	align-items: center;
	flex-direction: column;
	margin-bottom: 15px;
	width: 80%;
}



  /* ＊＊＊＊＊＊＊＊＊＊＊＊＊　彼女自己紹介画面css　＊＊＊＊＊＊＊＊＊＊＊＊＊ */
  /*彼女の基本情報*/
.products-title{
	color: #d992b1;
	font-size: 18px;
	margin: 10px;
}

.products-table {
	width: 100%;
	border-collapse: collapse;
	margin: 5px 0;
	background-color: #f9f9f9;
}
.products-table td {
	border: 1px solid #c4c4c4;
	padding: 10px 15px;
	text-align: left;
	color: #333;
	font-size: 0.9em;
}
@media screen and (max-width: 768px) {
    /* 表全体の幅とマージンを調整 */
    .products-table .products{
        width: 45%; /* 幅を95%に設定して余白を確保 */
    } 

	#contents .products-name{
		font-size: 20px;
	}
}

.kanojo-options-tablet {
	display: none;
}


@media (min-width: 800px) and (max-width: 1233px) { /* 彼女一覧タブレット対応 */
	.kanojo-options-tablet {
		display: block;
	}

	.kanojo-options-phone-pc {
		display: none;
	}
}



@media screen and (min-width: 769px) {
    .products-table td {
		font-size: 0.75em;
	}
}



.products-name{
	font-size: 24px;
	color: #c6648e;
}

.products-p{
	font-size: 13px;
	color: #333;
}

.products-message{
	padding:2em;/*内側の余白*/
	background: none;/*元のボックス背景色なし*/
	border:1px solid #d19ab2 ;/*線の太さ・種類・色*/
	position: relative;/*配置（基準）*/
}

.products-message:after{
	background-color:#d19ab21b;/*ずらしたボックスの背景色*/
	border:none;
	content: '';
	position: absolute;/*配置（ここを動かす）*/
	top: 7px;/*上から7pxずらす*/
	left: 7px;/*左から7pxずらす*/
	width: 100%;
	height: 100%;
	z-index: -1;
}

.products-message p{
	font-size: 13px;
}



/*30の質問*/
.question-title{
	font-family: serif;
	font-size: large;
	color: #7a99d3
}
.question-container {
	margin-top: 20px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	/* 枠線を削除 */
	border: none; 
  }
  
  .question-item {
	margin-bottom: 15px;
	padding: 8px;
	border-bottom: 1px solid #eee;
  }
  
  .question-item strong {
	font-size: 15px;
	color: #7a99d3;
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
  }
  
  .question-item p {
	margin: 0;
	font-size: 13px;
	color: #333;
  }

 .message-title {
	color: #d992b1;
	position: relative;/*相対位置*/
	padding-left: 1.2em;/*アイコン分のスペース*/
	line-height: 1.4;/*行高*/
	font-size: 18px;/*サイズ*/
	margin: 10px;
  }
  
  .message-title:before {
	font-family: "Font Awesome 5 Free";
	content: "\f075";/*アイコンのユニコード*/
	font-weight: 900;
	position: absolute;/*絶対位置*/
	font-size: 17px;/*サイズ*/
	left: 0;/*アイコンの位置*/
	top: 0;/*アイコンの位置*/
	color: #d992b1;/*アイコン色*/
  }



  /* ＊＊＊＊＊＊＊＊＊＊＊＊＊　彼女紹介画面css　＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* 表全体のスタイル */
.info-container {
	border: 2px solid #ccc; /* 表全体を囲む線 */
	width: 100%; /* 幅を画面全体に広げる */
	margin: 20px 0; /* 上下に余白 */
	font-size: 16px; /* 基本フォントサイズ */
	background-color: white; /* 背景色を白に設定 */
  }
  
  /* 各行のスタイル */
  .info-box {
	display: flex; /* 左右に分けるためフレックスボックスを使用 */
	align-items: stretch; /* 左右の高さを均等に揃える */
	border-bottom: 1px solid white; /* 各行の区切り線を白に設定 */
  }
  
  /* 最後の行のボーダーを消す */
  .info-box:last-child {
	border-bottom: none;
  }
  
  /* 左側（ラベル部分）のスタイル */
  .info-box strong {
	background: linear-gradient(90deg, #cbb2b6, #d19ab2); /* グラデーション背景 */
	color: white; /* テキストを白に設定 */
	padding: 15px 10px; /* 内側余白 */
	text-align: left; /* テキストを左揃え */
	flex-basis: 20%; /* 左側の幅を全体の20%に設定 */
	min-width: 120px; /* 最小幅を設定 */
	font-weight: bold; /* 太字 */
	box-sizing: border-box; /* パディングを含めた幅に */
  }
  
  /* 右側（値の部分）のスタイル */
  .info-box span,
  .info-box div {
	flex-grow: 1; /* 右側が自由に幅を取るようにする */
	padding: 15px 10px; /* 内側余白 */
	background-color: #cbb2b635; /* 背景色を薄いピンクに設定 */
	color: #333; /* 文字色を濃いグレーに設定 */
	text-align: left; /* テキストを左寄せ */
	line-height: 1.5; /* 行間を調整 */
	box-sizing: border-box; /* パディングを含めた幅に */
  }
  
  /* 出張費全体のスタイル */
  .info-box div {
	background-color: #cbb2b635; /* 出張費の背景を右側全体と統一 */
  }
  

  /* スマホ用スタイル */
@media screen and (max-width: 768px) {
    /* 表全体の幅とマージンを調整 */
    .info-container {
        width: 100%; /* 幅を95%に設定して余白を確保 */
        font-size: 14px; /* フォントサイズを少し小さく */
    }

    /* 各行のスタイル */
    .info-box {
        border-bottom: 1px solid #ccc; /* 区切り線を変更 */
    }

    /* 左側（ラベル部分）のスタイル */
    .info-box strong {
        background: linear-gradient(90deg, #d19ab2, #cbb2b6); /* 色を調整 */
        text-align: left; /* テキストを左揃え */
        flex-basis: auto; /* 自動幅調整 */
        width: 35%; /* 幅を100%に */
        min-width: auto; /* 最小幅をリセット */
        padding: 10px; /* 内側余白を小さく */
        box-sizing: border-box; /* パディングを含めた幅に */
    }

    /* 右側（値の部分）のスタイル */
    .info-box span,
    .info-box div {
        width: 100%; /* 幅を100%に設定 */
        padding: 10px; /* 内側余白を調整 */
        line-height: 1.2; /* 行間を少し狭く */
    }

	.content-container {
		border: 1px solid #c8d4c3;
		padding: 0px;
		border-radius: 5px;
		border: none; /* 枠線を消す */
	  }
}

.kanojo-options1{
	display: flex;
    gap: 5px; /* 要素間のスペースを指定（例: 10px） */
}

.kanojo-options1 p{
	color: #333;
	font-size: 13px;
}

/* 親要素で写真を含む部分 */
.image-container {
	position: relative; /* ランクラベルの絶対位置の基準を設定 */
	display: inline-block;
	height: 220px;
  }

  /* ランクラベル */
  .rank-label {
	
	position: absolute; /* 親要素内で配置 */
	bottom: 8px; /* 下の余白 */
	right: 8px; /* 右の余白 */
	
	padding: 5px 8px; /* ラベルサイズ調整 */
	font-size: 12px; /* 適切な文字サイズ */
	color: white;
	border-radius: 50%; /* 円形にする */
	width: 60px; /* 幅を固定 */
	height: 60px; /* 高さを固定 */
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 控えめな影だけを残す */
  }
  
  /* ランクごとの色分け */
  .rank-label.premium {
	background: linear-gradient(45deg, #FFD700, #FFEA70); /* ゴールドのグラデーション */
	color: #4A3700; /* ゴールドに合う濃い文字色 */
  }
  
  .rank-label.advanced {
	background: linear-gradient(45deg, #002147, #335588); /* 紺色のグラデーション */
	color: #FFFFFF; /* 紺色に映える白文字 */
  }
  
  .rank-label.regular {
	background: linear-gradient(45deg, #FF7F50, #FF4500); /* オレンジ系グラデーション */
	color: #FFFFFF; /* 見やすい白文字 */
  }
  
  .rank-label.fresh {
	background: linear-gradient(45deg, #28A745, #8BC34A); /* 緑のグラデーション */
	color: #FFFFFF; /* 緑に映える白文字 */
  }
  


  /* ＊＊＊＊＊＊＊＊＊＊＊＊＊　ログイン画面css　＊＊＊＊＊＊＊＊＊＊＊＊＊ */
  /* ログインフォーム全体のスタイル */
	.login-form {
		width: 100%;
		background-color: #ececec;
		padding: 30px;
	}
  /* メールアドレスラベル */
  .email-label {
	font-size: 15px;
	color: #333;
	display: block;

  }
  /* パスワードラベル */
  .password-label {
	font-size: 15px;
	color: #333;
	display: block;
  }
  
  /* メールアドレス入力フィールド */
  .email-input{
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
	font-size: 1em;
  }
  
  /* パスワード入力フィールド */
  .password-input {
	width: 100%;
	padding: 10px;
	margin: 1px 0 15px 0;
	border-radius: 5px;
	border: 1px solid #ccc;
	font-size: 1em;
  }
  
  /* ログインボタン */
  .login-btn {
	width: 100%;
	padding: 12px;
	background-color: #8a9dc1;
	color: #fff;
	font-size: 1.1em;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	
  }
  
  .login-btn:hover {
	background-color: #6780af;
  }

  
  /* アカウントリンク */
  .account-link {
	text-align: center;
	font-size: 0.9em;
  }
  
  .signup-anchor {
	color: #6780af;
	text-decoration: none;
  }
  
  .signup-anchor:hover {
	text-decoration: underline;
  }
  
  /* ＊＊＊＊＊＊＊＊＊＊＊＊＊　サインアップ画面css　＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* サインアップフォーム全体のスタイル */
.signup-form {
    width: 100%;
    background-color: #ececec;
    padding: 30px;
}

/* お名前ラベル */
.name-label {
    font-size: 15px;
    color: #333;
    display: block;
}

/* お名前入力フィールド */
.name-input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

/* 確認用パスワードラベル */
.confirm-password-label {
    font-size: 15px;
    color: #333;
    display: block;
}

/* 確認用パスワード入力フィールド */
.confirm-password-input {
    width: 100%;
    padding: 10px;
    margin: 1px 0 15px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

/* サインアップボタン */
.signup-btn {
    width: 100%;
    padding: 12px;
    background-color: #8a9dc1;
    color: #fff;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-btn:hover {
    background-color: #6780af;
}

/* アカウントリンク */
.account-link {
    text-align: center;
    font-size: 0.9em;
}

.login-anchor {
    color: #6780af;
    text-decoration: none;
}

.login-anchor:hover {
    text-decoration: underline;
}








  /* ＊＊＊＊＊＊＊＊＊＊＊＊＊　予約画面css　＊＊＊＊＊＊＊＊＊＊＊＊＊ */
  .reservation-title {
	position: relative;
	text-align: center;
	font-size: large;
	padding: 2em;
	color:#333;/*文字色（黒）*/  
}
.reservation-title::before,
.reservation-title::after {
	position: absolute;
	content: '';
	width: 30%; /*線の幅*/
	height: 2px; /*線の高さ*/ 
	background: #d19ab2; /*線の色*/
}

.reservation-title::before {
	left: 0;
	top: 0;
}
.reservation-title::after {
	right: 0;
	bottom: 0;
}

/*外枠*/
.reservation-form{
	padding:2em;/*内側の余白*/
	background: none;/*元のボックス背景色なし*/
	border:1px solid #d19ab2 ;/*線の太さ・種類・色*/
	position: relative;/*配置（基準）*/
}

.reservation-form:after{
	background-color:#d19ab21b;/*ずらしたボックスの背景色*/
	border:none;
	content: '';
	position: absolute;/*配置（ここを動かす）*/
	top: 7px;/*上から7pxずらす*/
	left: 7px;/*左から7pxずらす*/
	width: 100%;
	height: 100%;
	z-index: -1;
}

/* フォーム全体 */
/*.reservation-form1 {
	padding: 2em;
	margin: 2em;
    width: 80%;
}*/
/* フォーム全体の幅を調整 */
.reservation-form1 {
	width: 80%; /* 幅を広げて中央寄せ */
	padding: 2em;
	margin: 2em;
}

/* ラベルと入力フィールドの横並び */
.reservation-row {
    display: flex;
    align-items: center; /* ラベルと入力フィールドの垂直方向を中央揃え */
    margin-bottom: 15px; /* 各行の間隔 */
}

/* ラベル */
.reservation-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 0; /* ラベルとフィールドの間を調整 */
    margin-right: 10px; /* ラベルとフィールドの間隔 */
    width: 30%; /* ラベルの幅を固定 */
    text-align: right; /* ラベルを右揃え */
}

/* 入力フィールド */
.reservation-input, .reservation-select, .reservation-textarea {
	font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "Yu Mincho", "游明朝体", "MS PMincho", "ＭＳ Ｐ明朝", serif; /* フォント種類（明朝） */
    flex: 1; /* 入力フィールドをラベルの隣で調整 */
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 0.8em;
}
.reservation-textarea:focus {
    outline: none;	
	border-color: #ffb6c1;
	box-shadow: 0 2px 8px rgba(255, 182, 193, 0.5);
  }
  .reservation-button.confirm-button {
	background-color: #999;
	color: white;
	
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	align-items: center;
  }

/* 
  .reservation-button.confirm-button:hover {
    background-color: #c981ab;
  } */

  .reservation-button2.confirm-button2 {
    background-color: #d19ab2;
	/* background-color: #444; */
    color: #fff;
	
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	align-items: center;
  }


  .reservation-button2.confirm-button2:hover {
    background-color: #c981ab;
  }

  .reservation-options{
	color: #333;
	font-size: 14px;
  }

.reservation-agreement{
	color: #333;
	font-size: 13px;
}

.reservation-agreement{
	display: block;
	margin: auto;
}

.reservation-agreement-agree {
	text-align: center;
	margin-top: 10px;
}

#confirmBtn{
	display: block;
 	margin: auto;
	width: 90px;
}
#confirmBtn2{
	display: block;
 	margin: auto;
	width: 90px;
}

.confirm-message{
	display: block;
	margin: auto;
	width: 300px;
}
	


/* スマホ用スタイル */
@media screen and (max-width: 768px) {
    /* タイトルのフォントサイズと余白調整 */
    .reservation-title {
        font-size: medium;
        padding: 0.5em;
    }

    .reservation-title::before,
    .reservation-title::after {
        width: 20%; /* 線の幅を縮小 */
    }

    /* フォーム全体の幅を調整 */
    .reservation-form1 {
        width: 100%; /* 幅を広げて中央寄せ */
        padding: 0.5em;
        margin: 1em auto;
    }

    /* 行の配置調整（縦並び） */
    .reservation-row {
        display: block; /* フレックスを解除して縦並びに */
        margin-bottom: 10px;
    }

    /* ラベルを上に配置 */
    .reservation-label {
        text-align: left; /* 左寄せに変更 */
        width: auto; /* 幅を自動調整 */
        margin-bottom: 5px; /* 入力フィールドとの間隔を小さく */
    }

    /* 入力フィールドのサイズ調整 */
    .reservation-input, 
    .reservation-select, 
    .reservation-textarea {
        width: 100%; /* 横幅を100%に */
        padding: 5px; /* パディングを調整 */
        font-size: 0.9em; /* フォントサイズを微調整 */
    }

    /* ボックス全体の配置 */
    .reservation-form {
        padding: 1.5em;
        border-width: 1px;
    }
}


/****************************料金案内画面CSS ********************************/
/*外枠*/
#openModal {
    background-color: #c8d4e3;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
	float: right;
	font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "Yu Mincho", "游明朝体", "MS PMincho", "ＭＳ Ｐ明朝", serif; /* フォント種類（明朝） */
}

#openModal:hover {
    background-color: #c8d4e3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

#openModal:active {
    background-color: #c8d4e3;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* モーダルの背景（薄暗くする） */
.modal {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

/* モーダルコンテンツ */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 60%; /* 幅を広げる（デフォルト50%→60%） */
    max-width: 800px; /* 最大幅の設定 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 13px; /* 文字サイズを14pxに */
    line-height: 1.6;
}

/* タイトルのスタイル */
.payment-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #333;
}



/* ドロップダウンメニュー（select）のスタイル */
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* 合計金額のスタイル */
.price-total p {
    margin: 5px 0;
    font-weight: bold;
    color: #444;
}

.price-total p{
	font-size: 13px;
	color: #333;
}



.price-information{
	padding:2em;/*内側の余白*/
	background: none;/*元のボックス背景色なし*/
	border:1px solid #d19ab2 ;/*線の太さ・種類・色*/
	position: relative;/*配置（基準）*/
}
.price-information:after{
	background-color:#d19ab21b;/*ずらしたボックスの背景色*/
	border:none;
	content: '';
	position: absolute;/*配置（ここを動かす）*/
	top: 7px;/*上から7pxずらす*/
	left: 7px;/*左から7pxずらす*/
	width: 100%;
	height: 100%;
	z-index: -1;
}

/* フレックスボックスで整列 */
.horizontal-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
  }
  
  .box-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	min-width: 100px;
  }
  
  .box-item select,
  .box-item input {
	width: 100%;
	padding: 10px;
	border: 1px solid #c8d4e3;
	border-radius: 4px;
	background-color: #fff;
	font-size: 14px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	transition: border-color 0.3s;
  }
  
  .box-item select:hover,
  .box-item input:hover {
	border-color: #778eb8;
  }
  
  .box-item span {
	margin-top: 8px;
	font-size: 14px;
	color: #555;
  }
  
  p {
	margin: 0;
	font-size: 18px;
	color: #333;
  }
  
  
  /* レスポンシブデザイン */
  @media (max-width: 768px) {
	.horizontal-box {
	  flex-direction: row; /* 横並びを維持 */
	  gap: 5px; /* 間隔を適度に調整 */
	  flex-wrap: wrap; /* 画面幅が足りない場合に折り返し */
	}
	.box-item {
	  flex: 1 1 calc(33.33% - 10px); /* 横幅を調整して3等分 */
	  min-width: 50px; /* ボックスが極端に小さくならないように最小幅を設定 */
	}
  }

.custom-pricing-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background-color: #f9f9f9;
}


.date-price p{
	font-size: 13px;
	color: #333;
}

.custom-pricing-table th, .custom-pricing-table td {
	border: 1px solid #e0e0e0;
	padding: 5px 15px;
	text-align: left;
}

.custom-pricing-table th {
	background-color: #8a9dc1c3;
	color: white;
	font-weight: bold;
}
.custom-pricing-table .rank-header {
    text-align: center; /* 水平方向中央揃え */
}
.custom-pricing-table .rank-premium {
	color: #d4af37; /* Gold */
	font-weight: bold;
	text-align: center;
}

.custom-pricing-table .rank-advance {
	color: #4682B4; /* Silver */
	font-weight: bold;
	text-align: center;
}

.custom-pricing-table .rank-regular {
	color: #FF7F50; /* Steel Blue */
	font-weight: bold;
	text-align: center;
}

.custom-pricing-table .rank-fresh {
	color: #32CD32; /* Lime Green */
	font-weight: bold;
	text-align: center;
}

/* オプション料金 */
.option-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background-color: #f9f9f9;
}
.option-table th, .option-table td {
	border: 1px solid #c4c4c4;
	padding: 10px 15px;
	text-align: left;
	color: #333;
	font-size: 13px;
}
.option-table td {
	padding: 15px;
}
.option-table td strong{
	color: #333;
	font-size: 15px;
}
.option-table td p{
	color: #333;
	font-size: 13px;
}
.option-table th {
	background-color: #8a9dc1;
	color: white;
	font-weight: bold;
}
.option-table .rank-header {
    text-align: center; /* 水平方向中央揃え */
	width: 25%;
}
.option-table .option {
	background-color: #e1e9f1;
	color: #333;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
}


/* オプション料金 */
.option-table_phone {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background-color: #f9f9f9;
}
.option-table_phone th, .option-table_phone td {
	border: 1px solid #c4c4c4;
	padding: 10px 15px;
	text-align: left;
	color: #333;
	font-size: 13px;
}
.option-table_phone td {
	padding: 15px;
}
.option-table_phone td strong{
	color: #333;
	font-size: 15px;
}
.option-table_phone td p{
	color: #333;
	font-size: 13px;
}
.option-table_phone th {
	background-color: #8a9dc1;
	color: white;
	font-weight: bold;
}
.option-table_phone .rank-header {
    text-align: center; /* 水平方向中央揃え */
	width: 25%;
}
.option-table_phone .option {
	background-color: #e1e9f1;
	color: #333;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
}


.option-p{
	color: #333;
	font-size: 13px;
}
.option-p p{
	color: #333;
	font-size: 13px;
}
.cp_hr05 {
    border: none;
    border-top: 2px solid #ddd;
    margin: 10px 0;
}
.horizontal-box {
    display: flex;
    justify-content: space-between; /* スペースを均等に配置 */
    align-items: center; /* 垂直方向の中央揃え */
    margin: 10px 0;
}

.box-item {
    flex: 1; /* 各ボックスを同じ幅にする */
    text-align: center; /* テキストを中央揃えにする */
    padding: 10px;
    border: 1px solid #ddd; /* ボックスに枠線を追加 */
    background-color: #f9f9f9; /* 背景色を追加（任意） */
    margin: 0 0px; /* ボックス間の余白 */
}


/* テーブル内の説明文<p>に適用する場合 */
.custom-pricing-table td p {
    font-size: 13px; /* 適切なフォントサイズに変更 */
    color: #333; /* テキストの色を指定（オプション） */
}
.custom-pricing-table strong {
    font-size: 15px; /* 適切なフォントサイズに変更 */
    color: #333; /* テキストの色を指定（オプション） */
}

/* キャンセル料 */
.cancel{
	font-size: 13px;
	color: #333;
}


.cancel-fee-text {
    color: red; /* キャンセル料の詳細を赤文字に */
}

/* 交通費 */
.transportation-expenses{
	font-size: 13px;
	color: #333;
}


/* お支払方法 */
.payment{
	font-size: 13px;
	color: #333;
}
.payment-options-vertical {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    gap: 20px; /* 各枠の間隔 */
    margin-top: 20px;
	width: 70%;
}

@media (max-width: 768px) { 
	.payment-options-vertical { 
		width: 100%; /* スマホサイズでは横幅100% */ 
	} 
} 







.payment-option {
    border: 1px solid #c8d4e3;
    border-radius: 0px;
    padding: 10px;
    background-color: #c8d4e34c;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.payment-option p {
    text-align: left;
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.payment-option h4 {
    font-size: 16px;
    color: #778eb8;
    margin-bottom: 10px;
}

.payment-option p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}


/* 料金シュミレーション */
/* モーダルのスタイル */
.modal {
	display: none; /* 初期状態は非表示 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* 背景の半透明 */
	justify-content: center;
	align-items: center;
}
.modal-content {
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.close-button {
	margin-top: 10px;
	padding: 10px 20px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

/* 横並びに整列 */
/* 横並びのレイアウトを強化 */
.price-information1{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1px; /* 要素間のスペース */
	flex-wrap: nowrap; /* 折り返しを防止 */
	padding:2em;/*内側の余白*/
	background: none;/*元のボックス背景色なし*/
	border:1px solid #d19ab2 ;/*線の太さ・種類・色*/
	position: relative;/*配置（基準）*/
}
.price-information1:after{
	background-color:#d19ab21b;/*ずらしたボックスの背景色*/
	border:none;
	content: '';
	position: absolute;/*配置（ここを動かす）*/
	top: 7px;/*上から7pxずらす*/
	left: 7px;/*左から7pxずらす*/
	width: 100%;
	height: 100%;
	z-index: -1;
}
  select,
  input {
	flex-shrink: 0; /* 縮小を防ぐ */
	width: auto; /* 自動幅にする */
	font-size: 13px;
	padding: 10px;
	border: 1px solid #ffd1dc;
	border-radius: 8px;
	background-color: #fff;
	color: #333;
	outline: none;
	box-shadow: 0 2px 4px rgba(255, 209, 220, 0.3);
	transition: all 0.2s ease;
  }
  
  select:focus,
  input:focus {
	border-color: #ffb6c1;
	box-shadow: 0 2px 8px rgba(255, 182, 193, 0.5);
  }
  
  /* 計算式の「×」「＋」「＝」のスタイル調整 */
  .price-information1 p {
	margin: 0;
	padding: 0 5px;
	font-size: 16px;
	font-weight: bold;
	color: #333;
  }
  
  /* 合計金額を強調 */
  .price-total {
	font-size: 17px;
	font-weight: bold;
	color: #333;
  }
  
  /* スクリーン幅が狭い場合のレスポンシブ設定 */
  @media (max-width: 480px) {
	.price-information1 {
	  flex-wrap: wrap; /* 折り返し許可 */
	  justify-content: flex-start; /* 左寄せ */
	}
  
	.price-information1 p {
	  text-align: left; /* 左寄せ */
	  width: 100%;
	}
  }
  
  .option-premium {
	color: #d4af37; /* Gold */
  }
  
  .option-advance {
	color: #4682B4; /* Silver */
  }
  
  .option-regular {
	color: #FF7F50; /* Coral */
  }
  
  .option-fresh {
	color: #32CD32; /* Lime Green */
  }
  


/****************************独占契約画面CSS ********************************/
.custom-exclusive-table {
	width: 80%;
	border-collapse: collapse;
	margin: 20px 0;
	background-color: #f9f9f9;
}
.custom-exclusive-table th, .custom-exclusive-table td {
	border: 1px solid #e0e0e0;
	padding: 5px 15px;
	text-align: center;
}

.custom-exclusive-table th {
	background-color: #8a9dc1c3;
	color: white;
	font-weight: bold;
}
.custom-exclusive-table .rank-header {
    text-align: center; /* 水平方向中央揃え */
}
.custom-exclusive-table .rank-premium {
	color: #d4af37; /* Gold */
	font-weight: bold;
	text-align: center;
}

.custom-exclusive-table .rank-advance {
	color: #4682B4; /* Silver */
	font-weight: bold;
	text-align: center;
}

.custom-exclusive-table .rank-regular {
	color: #FF7F50; /* Steel Blue */
	font-weight: bold;
	text-align: center;
}

.rank-fresh {
	color: #32CD32; /* Lime Green */
}

/* テーブル内の説明文<p>に適用する場合 */
.custom-exclusive-table td p {
    font-size: 13px; /* 適切なフォントサイズに変更 */
    color: #333; /* テキストの色を指定（オプション） */
}
.custom-exclusive-table strong {
    font-size: 15px; /* 適切なフォントサイズに変更 */
    color: #333; /* テキストの色を指定（オプション） */
}

/* コンテナ全体のスタイル */
/* タイトルスタイル */
.exclusive-title {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    position: relative; /* 擬似要素の位置指定に必要 */
    padding-left: 25px; /* 丸の分だけ左に余白を取る */
}

.exclusive-title::before {
    content: '';
    position: absolute;
    left: 0; /* テキストの左に配置 */
    top: 50%;
    transform: translateY(-50%); /* 丸を縦方向に中央揃え */
    width: 16px; /* 丸の大きさ */
    height: 16px; /* 丸の大きさ */
    background-color: #99add3; /* 丸の中の色 */
    border-radius: 50%; /* 丸にする */
}


/* 特徴全体を横並びにする */
.exclusive-features {
    display: flex;
    justify-content: left;
    gap: 20px; /* 各特徴間のスペース */
    flex-wrap: wrap; /* 画面幅が狭い場合に折り返し */
}

/* 各特徴のスタイル */
.feature {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ホバー時のアニメーション */
.feature:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* 各タイトルスタイル */
.feature-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #555;
}

/* 各説明文スタイル */
.feature p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}
/* 初期状態 */
.feature {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease, transform 2s ease;
}

/* 表示された状態 */
.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.exclusive-p p{
	font-size: 13px;
	color: #333;
}

/* ステップ全体 */
.steps {
    display: flex;
    flex-direction: column;
}

/* 各ステップのスタイル */
.step {
    opacity: 0;
    transform: translateY(20px); /* 初期位置（下から表示） */
    transition: opacity 1s, transform 1s; /* アニメーション */
}

/* スクロールによってアニメーションをトリガーする */
.visible {
    opacity: 1;
    transform: translateY(0); /* 通常位置 */
}

/* ステップごとのアニメーションの遅延設定 */
.step:nth-child(1) {
    transition-delay: 0.5s;
}
.step:nth-child(2) {
    transition-delay: 0.6s;
}
.step:nth-child(3) {
    transition-delay: 0.7s;
}
.step:nth-child(4) {
    transition-delay: 0.8s;
}



/****************************禁止事項画面CSS ********************************/
.prohibited-title strong{
	font-size: 25px;
}
.prohibited-subtitle{
	font-size: 19px;
}
.prohibited-title{
	text-align: center;
}
.prohibited{
	font-size: 13px;
	color: #333;
}

/*大項目　太字*/
.date-price strong{
	font-size: 17px;
	color: #5277a4;
}
.custom-pricing{
	font-size: 15px;
	color: #5277a4;
}
.custom-pricing strong{
	font-size: 17px;
	color: #5277a4;
}
.transportation{
	font-size: 17px;
	color: #5277a4;
}
.transportation{
	font-size: 17px;
	color: #5277a4;
}
.cancel-title{
	font-size: 17px;
	color: #5277a4;
}
.payment-title{
	font-size: 17px;
	color: #5277a4;
}

/*ここまで*/
.payment-title {
    display: inline-block; /* インラインブロック要素として扱う */
    overflow: hidden; /* テキストがはみ出さないようにする */
    white-space: nowrap; /* テキストを折り返さない */
    position: relative;
    line-height: 1; /* 行間を詰めることで文字の垂直位置を調整 */
    vertical-align: middle; /* 水平方向の中央に揃える */
}

.payment-title::before {
    content: ''; /* アニメーションのための背景を設定 */
    position: absolute;
    top: 0;
    right: 0;
    width: 0; /* 初期状態で幅を0に設定 */
    height: 100%;
    background-color: #fff; /* ページ背景と同じ色を設定 */
    z-index: 1; /* テキストより上に配置 */
    animation: revealText 1s ease-out forwards; /* アニメーション設定 */
}

/* アニメーション定義 */
@keyframes revealText {
    0% {
        width: 100%; /* テキストを完全に隠した状態 */
    }
    100% {
        width: 0; /* 背景が右端まで移動してテキストを表示 */
    }
}





/****************************日記ページCSS ********************************/
/* カレンダーコンテナ */
.calendar-container {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    max-width: 600px;
    margin: 0 auto;
	width: 100%;
}

/* カレンダーのタイトル */
.calendar-title {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 15px;
}

/* カレンダー全体 */
.calendar {
    display: flex;
    flex-direction: column;
    align-items: center;
	color: #606060;
}

/* カレンダーのヘッダー */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.calendar-btn {
    background-color: #ebafc9;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.calendar-btn:hover {
    background-color: #d682a5;
}

.calendar-month {
    font-size: 1.2em;
    font-weight: bold;
	letter-spacing: 0.1em; /* 文字間隔を設定 */
}


/* カレンダーのグリッド */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    width: 100%;
}

.calendar-day {
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
    background-color: #e8e8e8;
    border-radius: 5px;
}

.calendar-date {
    text-align: center;
    padding: 10px 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.highlight {
    color: #eb72a6; /* 特定の部分だけ赤に設定 */
}

.calendar-date:hover {
    background-color: #dfc3cf86;
}




.planePath {
	stroke: #D9DADA;
	stroke-width: .1%;
	stroke-width: .5%;
	stroke-dasharray: 1% 2%;
	stroke-linecap: round;
	fill: none;
  }
  
  .fil1 {
	fill: #D9DADA;
  }
  
  .fil2 {
	fill: #C5C6C6;
  }
  
  .fil4 {
	fill: #9D9E9E;
  }
  
  .fil3 {
	fill: #AEAFB0;
  }


  
 




.bg-note {
	position: relative;
    background-image: linear-gradient(rgba(210, 210, 210, 0.4) 1px, transparent 1px), linear-gradient(to right, rgba(210, 210, 210, 0.5) 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #fff;
    background-position: -14px 14px;
    padding: 20px;
    width: 100%;
    text-align: center; /* 追加: 子要素を中央揃え */
	padding: 3em 1em 2em; /*内側余白（上・左右・下）*/
}

.bg-note::before {
	position: absolute;
	content: "";
	width: 95%;
	height: 10px;
	top: 0.5em;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	border-top: dotted 12px #d6d6d6; /*ドットの形・大きさ・色*/
}

.bg-note img {
    width: 45%;
    height: auto;
    margin: 0; /* マージンをリセット */
    display: block; /* ブロック要素にする */
    border-radius: 4px; /* 画像に角丸を追加 (必要なら) */
}

/* スクリーン幅が狭い場合のレスポンシブ設定 */
@media (max-width: 480px) {
    .diary_content {
        flex-direction: column; /* スマホでは縦並びにする */
        align-items: center; /* 中央揃え */
        text-align: center; /* テキストを中央揃え */
    }

    .bg-note img {
        width: 80%; /* スマホでは画像を大きくする */
    }
	.bg-note::before {
		position: absolute;
		content: "";
		width: 95%;
		height: 10px;
		top: 0.5em;
		left: 0;
		right: 0;
		bottom: 0;
		margin: 0 auto;
		border-top: dotted 12px #cfcfcf; /*ドットの形・大きさ・色*/
	}

    .diary_content p {
        font-size: 12px; /* スマホでの文字サイズを少し小さく */
    }
}


.diary_title{
	color: #333;
	margin-bottom: 30px;
    font-size: 40px;
}

.diary_content {
    display: flex; /* フレックスボックスを使用して横並びにする */
    align-items: center; /* 縦方向の中央揃え */
    gap: 20px; /* 画像とテキストの間のスペース */
    text-align: left; /* テキストを左揃えにする */
}

.diary_content p {
    margin: 0; /* テキストの余白をリセット */
    font-size: 15px; /* テキストのサイズを調整 */
    color: #333; /* テキストの色 */
	padding: 10px;
}

#hidden_main {
	padding: 30px 0;	/*上下、左右へのブロック内の余白。上下については、css冒頭のglobal-spaceを読み込みます。*/
}

.book-cover {
	position: relative;
	width: 100%; 
	box-shadow: 10px 15px 22px -5px rgba(0, 0, 0, 0.2),
	  0 0 2px rgba(0, 0, 0, 0.15); 
	border-radius: 4px;
	&:after {    
	  content: '';
	  position: absolute;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  left: 0;
	  background: linear-gradient(
		-90deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.1) 80%,
		rgba(255, 255, 255, 0.4) 94%,
		rgba(255, 255, 255, 0.5) 96%,
		rgba(255, 255, 255, 0) 100%
	  );
	}
  }
  
  .book-cover-image {
	display: block;
	width: 100%;
	border-radius: 4px;
  }
  
  

  
  .diary_date {
    color: black; /* 文字色を黒に変更 */
	text-align: right; /* 右寄せ */
	padding: 10px;
	font-size: 15px; /* 必要に応じてフォントサイズを調整 */
}

.pagination {
    display: flex;
    justify-content: space-between; /* 左右にボタンを配置 */
    align-items: center;
    width: 100%; /* 親要素いっぱいに広げる */
    padding: 20px; /* 余白を追加 */
}

button {
    background-color: #ffffff; /* 青色の背景 */
    color: #5a7bb8; /* 文字色は白 */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px; /* 角丸 */
    transition: background-color 0.3s ease;
	font-family:serif; /* フォント種類（明朝） */
}

#page-number{
	color:#fff;
}

#page-number {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    flex-grow: 1; /* 真ん中に配置 */
}



 /* 次のデート日*/

.balloon6 {
	width: 100%;
	margin: 30px 0;
	overflow: hidden;
  }
  
  .balloon6 .faceicon {
	float: left;
	margin-right: -50px;
	width: 8%;
  }
  
  .balloon6 .faceicon img{
	width: 100%;
	height: auto;
	border-radius: 50%;
  }
  .balloon6 .chatting {
	width: 100%;
	text-align: left;
  }
  .says {
	display: inline-block;
	position: relative; 
	margin: 0 0 0 70px;
	padding: 10px;
	max-width: 250px;
	border-radius: 12px;
	background: #ffebf4;
  }

  
  .says:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 3px; 
	left: -19px;
	border: 8px solid transparent;
	border-right: 18px solid #ffebf4;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
  }
  .says p {
	margin: 0;
	padding: 0;
	font-size: 14px;
  }

	
  .table_of_contents {
	display: flex;
	flex-wrap: wrap; /* 4つを超えたら折り返す */
	gap: 20px; /* 要素間の余白 */
	justify-content: space-between; /* 均等配置 */
  }
  
  .diary_table_of_contents {
    width: calc(25% - 25px);
    height: auto;
    padding: 1em 1em 1em 1.5em;
    margin: 1em 0;
    color: #2c2c2f;
    background: linear-gradient(#ffe9f5, #fffffd);
    box-sizing: border-box;
    position: relative;
    border-radius: 10px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
	border-radius: 0px; /* 角を少し丸める */
	border-left: 15px solid #d7afc0;   /* #cbb2b6;*/
}

/* 背表紙の作成（右側） */
.diary_table_of_contents::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -10px;
    width: 8px;
    height: calc(100% - 10px);
    background: linear-gradient(#ffe3ef, #ecf2ff);
    box-shadow: 3px 0 3px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

/* ページの白い隙間を作成（右側） */
.diary_table_of_contents::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -5px;
    width: 4px;
    height: calc(100% - 20px);
    background: white;
    border-radius: 2px;
}



	.day_table_of_contents{
		font-size: 13px;
	}
	.img_table_of_contents{
		padding: 0.5em;
	}
	.img_table_of_contents img{
		border-radius:20px;
	}
	.title_table_of_contents{
		font-size: 13px;
		text-align: center;
	}









	







/* お問い合わせフォーム */

/* レイアウト */
.inquiry-title{
	color: #444444;
}
.inquiry-form {
	width: 90%;
	margin: 0 auto;
	font-family: serif;
  }
  .inquiry-form-row {
	font-size: 14px;
	font-family: serif;
	display: flex;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #f2f4f5;
  }

  @media screen and (max-width: 899px) {
	.inquiry-form-row {
		display: block;
	}

	.inquiry-form-row input,select,textarea {
		width: 100%;
	}


  }

  .inquiry-form-row:last-child {
	border-bottom: none;
  }
  .inquiry-form-label {
	display: flex;
	align-items: center;
	width: 250px;
	font-size: 13px;
	font-family: serif;
  }
  .inquiry-form-label label {
	font-weight: bold;
	font-size: 13px;
	font-family: serif;
	color: #585858;
  }
  .inquiry-form-label span {
	margin-bottom: 10px;
	margin-top: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
	font-size: 13px;
	margin-left: 10px;
	padding: 2px 6px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: bold;
	color: #ffffff;
	background-color: #e1a7c0;
	font-family: serif;
  }
  
  /* フォームパーツのデザイン */
  input, textarea {
	background-color: #ffffff;
	border: none;
	border-radius: 3px;
	padding: 15px 20px;
	font-size: 16px;
	color: #333;
	flex-grow: 1;
  }
  input::placeholder,
  textarea::placeholder {
	color: #999;
	font-size: 14px;
  }
  select {
	background-color: #ffffff;
	border: none;
	border-radius: 3px;
	padding: 15px 20px;
	font-size: 16px;
	color: #333;
  }
  .inquiry-form-row button {
	font-size: 13px;
	cursor: pointer;
	margin-top: 30px;
	padding: 13px 45px;
	border: none;
	border-radius: 3px;
	color: #ffffff;
	font-weight: bold;
	background-color: #e1a7c0;
	font-family:serif; /* フォント種類（明朝） */
  }
  
  #message:hover{
	font-size: 13px;
	outline: none;	
	border-color: #e1a7c0;
	box-shadow: 0 2px 8px rgba(255, 182, 193, 0.5);
  }

  #message{
	font-size: 13px;
	font-family: serif;
  }

  #inquiry{
	font-size: 13px;
	color: #333;
	font-family: serif;
  }

  .scroll-container {
	width: 100%;
	overflow-x: auto;
	white-space: nowrap; /* 改行を防ぐ */
	display: flex; /* 子要素を横並びにする */
	gap: 10px; /* 画像の間隔を空ける */
	padding: 10px;
	border: 1px solid #ccc;
  }

  .point-frex {
	display: flex;
	align-items: center; /* 上下中央揃え */
	margin-bottom: 2.5em;
  }

  .not-slogan {
	margin-bottom: 0;
  }

  .point-frex h3 {
	margin-left: 1.5rem;
	margin-bottom: 0;
  }

  .list-free {
	margin-bottom: 15vw;
  }


  .strong-char {
	color: red;
  }

  /*テキストブロック*/
  .slogan-text {
	  margin-top: 2.5em;
  }

	.list-free-02{
		margin: right;
		margin: 0 0 0 20%;
	}
	.list-free-03{
		width: 50%;
	}
	.list-free-04{
		margin: right;
		margin: 0 0 0 20%;
	}
	
	.list-free-06{
		margin: 0 0 0 30%;
		width: 90%;
	}


@media screen and (max-width:840px) {
	
	.list-free-02{
		margin: 0 0 0 15%;
		width: 90%;
	}
	.list-free-03{
		width: 50%;
	}
	.list-free-04{
		margin: 0 0 0 15%;
		width: 90%;
	}
	
	.list-free-06{
		margin: 0 0 0 15%;
		width: 80%;
	}
}

@media screen and (max-width:720px) {
	
	.list-free-02{
		margin: 0 0 0 15%;
		width: 90%;
	}
	.list-free-03{
		width: 60%;
	}
	.list-free-04{
		margin: 0 0 0 15%;
		width: 90%;
	}
	
	.list-free-06{
		margin: 0 0 0 15%;
		width: 80%;
	}
}

/*画面幅600px未満の追加指定 スマホ*/
@media screen and (max-width:599px) {
	.is_pc_concept {
		display: none;
	}
	.list-free-01{
		width: 75%;
		margin: auto;
	}
	.list-free-02{
		margin: auto;
	}
	.list-free-03{
		width: 55%;
		margin: auto;
	}
	.list-free-04{
		margin: auto;
	}
	.list-free-05{
		width: 90%;
		margin: auto;
	}
	.list-free-06{
		width: 80%;
		margin: auto;
	}
}/*追加設定ここまで*/

/*画面幅600px以上の追加指定　PC*/
@media screen and (min-width:600px) {
	.is_phone_concept {
		display: none;
	}
}

.kanojo-options-frex {
	display: flex;
	gap: 0.5em; /* 20px の間隔を空ける */
}

.kanojo-options-row div {
	margin: 5px;
}

.toggle-password {
	position: absolute;
	transform: translate(-120%, 50%);
	cursor: pointer;
	z-index: 10;
}

.confirm_str {
	font-size: 14px;
	margin-left: 5px;
}

.book-text {
	white-space: pre-wrap;
}


.confirmBtn2 {
	display: block;
 	margin-left: 20px;
	margin-right: auto;
	width: 90px;
}

#backBtn {
	display: block;
 	margin-right: 20px;
	margin-left: auto;
	width: 90px;
	background-color: #c8d4e3;
	color: #444;
}


.confirm-input {
	background-color: #e2e2e2;
}


.datetime-reserved {
	display: flex;
	width: 68%;
}

@media screen and (max-width: 768px) {
	.datetime-reserved {
		display: flex;
		width: 100%;
	}
}


/* スクリーン幅が狭い場合のレスポンシブ設定 */
@media (max-width: 480px) {
	.planePath {
		stroke: #D9DADA;
		stroke-width: .1%;
		stroke-width: .5%;
		stroke-dasharray: 1% 2%;
		stroke-linecap: round;
		fill: none;
	  }
	  
	  .fil1 {
		fill: #D9DADA;
	  }
	  
	  .fil2 {
		fill: #C5C6C6;
	  }
	  
	  .fil4 {
		fill: #9D9E9E;
	  }
	  
	  .fil3 {
		fill: #AEAFB0;
	  }
	
	.book-text {
		white-space: pre-wrap;
	}
	  
	 
	
	
	
	
	.bg-note {
		position: relative;
		background-image: linear-gradient(rgba(210, 210, 210, 0.4) 1px, transparent 1px), linear-gradient(to right, rgba(210, 210, 210, 0.5) 1px, transparent 1px);
		background-size: 20px 20px;
		background-color: #fff;
		background-position: -14px 14px;
		padding: 20px;
		width: 100%;
		text-align: center; /* 追加: 子要素を中央揃え */
		padding: 3em 1em 1em; /*内側余白（上・左右・下）*/
	}
	
	.bg-note::before {
		position: absolute;
		content: "";
		width: 95%;
		height: 10px;
		top: 0.5em;
		left: 0;
		right: 0;
		bottom: 0;
		margin: 0 auto;
		border-top: dotted 12px #d6d6d6; /*ドットの形・大きさ・色*/
	}
	
	.bg-note img {
		width: 35%;
		height: auto;
		margin: 0; /* マージンをリセット */
		display: block; /* ブロック要素にする */
		border-radius: 4px; /* 画像に角丸を追加 (必要なら) */
	}




    .diary_content {
        flex-direction: column; /* スマホでは縦並びにする */
        align-items: center; /* 中央揃え */
        text-align: center; /* テキストを中央揃え */
    }

    .bg-note img {
        width: 95%; /* スマホでは画像を大きくする */
    }
	.bg-note::before {
		position: absolute;
		content: "";
		width: 95%;
		border-top: dotted 12px #cfcfcf; /*ドットの形・大きさ・色*/
	}

    .diary_content p {
        font-size: 12px; /* スマホでの文字サイズを少し小さく */
    }
    
.diary_title{
	font-size: 15px;
	color: #333;
}

.diary_content {
    display: flex; /* フレックスボックスを使用して横並びにする */
    align-items: center; /* 縦方向の中央揃え */
    gap: 15px; /* 画像とテキストの間のスペース */
    text-align: left; /* テキストを左揃えにする */
}

.diary_content p {
    margin: 0; /* テキストの余白をリセット */
    font-size: 12px; /* テキストのサイズを調整 */
    color: #333; /* テキストの色 */
	padding: 0px;
}

.book-cover {
	position: relative;
	width: 100%; 
	border-radius: 4px;
	&:after {    
	  content: '';
	  position: absolute;
	  background: linear-gradient(
		-90deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.1) 80%,
		rgba(255, 255, 255, 0.4) 94%,
		rgba(255, 255, 255, 0.5) 96%,
		rgba(255, 255, 255, 0) 100%
	  );
	}
  }
  
  .book-cover-image {
	display: block;
	width: 100%;
	border-radius: 4px;
  }
  
  .book-cover {
	margin: 1rem auto;
  }
  
  .diary_date {
    color: #333; /* 文字色を黒に変更 */
	text-align: right; /* 右寄せ */
	padding: 10px;
	font-size: 13px; /* 必要に応じてフォントサイズを調整 */
}

.pagination {
    display: flex;
    justify-content: space-between; /* 左右にボタンを配置 */
    align-items: center;
    width: 100%; /* 親要素いっぱいに広げる */
    padding: 20px; /* 余白を追加 */
}



#page-number{
	color:#fff;
}

#page-number {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    flex-grow: 1; /* 真ん中に配置 */
}


}

/* ローディング用の隠し要素 */
.loading-overlay {
	position: fixed; 
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.466);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	visibility: hidden; /* 初期状態は非表示 */
}

/* ローディング用の隠し要素 */
.loading-overlay2 {
	position: absolute; 
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: rgba(250, 250, 250, 0.5);*/
	background: rgba(255, 255, 255, 0.466);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	visibility: hidden; /* 初期状態は非表示 */
}

/* ローディングGIF */
.loading-overlay2 img {
	width: 100px; /* 適宜調整 */
}

.loading-overlay-reservation {
    align-items: flex-start; /* 上寄せ */
    padding-top: 40px; /* 上に少し余白を追加 */
}

.loading-container {
    position: relative; /* 親要素に position: relative; を設定 */
}

/* ローディングGIF */
.loading-overlay img {
	width: 100px; /* 適宜調整 */
}

.reservation_loading {
    align-items: flex-start; /* 上寄せ */
    padding-top: 20px; /* 上に少し余白を追加 */
}


/* グレーアウト時の body */
.loading-active {
	pointer-events: none; /* 操作禁止 */
}

#dummy_list {
	height: 300px;
}

.password-string {
	color: black;
}

#loginLineBtn {
	position: relative;
	margin-top: 5px;
	background-color: #00B900;
}

#loginGoogleBtn {
	position: relative;
	margin-top: 5px;
	background-color: #ffffff;
	color: black;
}

.line_qr {
	text-align: center;
	margin-top: 10px;
}

.line_qr img {
	width: 50%;
	margin-top: 10px;
}

/* ダイアログのスタイル */
.dialog {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
	z-index: 9999;
}

.dialog-content {
	margin: 0 10px;
    background: white;
    padding: 20px;
    border-radius: 5px;
	font-size: 15px;
}

.dialog-content p {
	font-size: 15px;
}

#agree_button {
	text-align: center;
	color: black;
	background-color: #e2cad4;
    border: 2px solid #d19ab2;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    font-family: serif;
}

#line-h1 {
	margin:0;
	font-size: 150%;
}

.agree_button_box {
	display: flex;
	justify-content: center;
	margin: 15px;
}

.agree_label {
	margin-bottom: 10px;
}

.agree_check {
	margin-bottom: 30px;
}

.singup-agree {
	font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "Yu Mincho", "游明朝体", "MS PMincho", "ＭＳ Ｐ明朝", serif;
	line-height: 2;
}

#message_email {
	font-size: 15px;
}

#products-message {
    white-space: pre-wrap; /* 改行を反映 */
}

.products-pre {
    white-space: pre-wrap; /* 改行を反映 */
}

.text p {
    margin-top: 10px;
}

.line-p{
	font-size: 13px;
	color: #333;
}

.image-private_diary {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 2%;
}

.haikei {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 70%;
  height: auto;
}


@media (max-width: 750px) {
  .haikei {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.2;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	}
  .overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	max-width: 85%;
	height: auto;
	}
}

/* 背景色をつけて角を丸くする */
.box3-1 {
   margin: 0 auto 2em; /* 外側の余白（上下と中央配置） */
   padding: 2em;   /* 内側余白 */
   border-radius:30px; /*丸みを調整 */
   background-color:#ffffff;
   border:double 5px #fac4db;
}

/* pタグの余白 */
.box3-1 p {
   margin: 0;
}

.about-diary{
	color: #333;
	font-size: 14px;
	margin: 7%;
}

.about-diary h3{
	color: #d19ab2;
}

.circle-album {
  position: relative;
  width: 300px;
  height: 300px;
  margin: -330px -80px 50px auto; /* 右に逃がして重ならない */
  z-index: 3;
}

/* 外側の円：薄めの #d19ab2 に近い色 + 枠線 */
.circle-outer {
  position: absolute;
  top: 1px;   /* 上に1px */
  left: 3px;  /* 左に3px */
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f6e4ec; /* #d19ab2 に近い薄ピンク */
  border: 2px solid #d19ab2; /* 明確なボーダーで二重丸感UP */
  z-index: 1;
}

/* 内側の円：白地＋やや内側に影 */
.circle-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  padding: 25px;
  box-sizing: border-box;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
}

/* テキスト全体 */
.album-text {
  font-size: 12px;
  color: #444;
  line-height: 1.6;
}

/* タイトル部分 */
.album-text::before {
  content: "小さなアルバムを一緒に育てて";
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #d19ab2;
  margin-bottom: 10px;
  border-bottom: 1px solid #d19ab2;
  padding-bottom: 5px;
}

@media (max-width: 750px) {
  .circle-album {
    width: 60vw;
    height: 60vw;
    margin: 30px auto;
  }

  .album-text {
    font-size: 12px;
  }
}

  .frame1 {
	position: relative;
	width: 100%;
	height: 280px; /* 必要に応じて調整 */
  }
  
  /* 吹き出し本体 */
  .speech-bubble {

	left: 0; /* 右下画像との距離を調整 */
	margin: 20px;
	background-color: #fff;
	border: 1px solid #333;
	border-radius: 20px; /* 四角に近づける */
	width: 75%; 
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  }

  

  /* 吹き出し中の画像 */
  .left-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
  }
  
  /* 右下画像 */
  .right-img {
	position: absolute;
	top: 50%;
	right: 0;
	width: 20%;
	height: auto;
  }

  /*PC*/
@media screen and (min-width:601px) {
	.diary-section {
		display: block;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		margin-top: 110px;
		gap: 20px;
	}
}




.handwritten-highlight {
  background: linear-gradient(to top, rgba(209, 154, 178, 0.4) 50%, transparent 50%);
  border-radius: 0.2em;
  padding: 0 0.1em;
  display: inline;
}

/* .diary-section {
	position: relative;
	height: 280px;
} */

.diary-text {
  /* text-align: center; */
  width: 40%;
  font-size: 14px;
  line-height: 1.8;
}

.diary-image {
  width: 55%;
}

.diary-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
}


.section_margin_top {
	margin-top: 0;
}

/*画面幅600px以下の追加指定 スマホ*/
@media screen and (max-width:600px) {

	
.about-diary{
	color: #333;
	font-size: 11.5px;
}


.about-diary h3 {
	font-size: 14px;
	color: #d19ab2;
  }

  .frame1 {
	position: relative;
	width: 100%;
	height: 280px; /* 必要に応じて調整 */
	margin-top: 20px;
  }
  
  /* 吹き出し本体 */
  .speech-bubble {

	right: 100px; /* 右下画像との距離を調整 */
	bottom: 60px;
	background-color: #fff;
	border: 1px solid #333;
	border-radius: 20px; /* 四角に近づける */
	width: 200px; /* 旧: 130px */
	height: 200px; /* 旧: 130px */
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  }
  

  
  /* 吹き出し中の画像 */
  .left-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
  }
  
  /* 右下画像 */
  .right-img {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 35%;
	height: auto;
  }
  
  .diary-section {
	position: relative;
	height: 280px;
  }
  
  .diary-image {
	position: absolute;
	right: 3%;
	top: 50%;
	transform: translateY(-50%);
	width: 40%;
	height: auto;
  }
  
  .diary-text {
	position: absolute;
	top: 50%;
	left: 3%; /* ← ここで左寄りに調整 */
	transform: translateY(-50%);
	width: 55%; /* 必要に応じて調整可 */
	font-size: 11.5px;
	line-height: 1.8;
  }
		
}


/*画面幅601px以上の追加指定　PC*/
@media screen and (min-width:950px) {
	/* .left-img {
		width: 0%;
	} */

	.speech-bubble {
		width: 75%;
	}

	.frame1 {
		height: auto;
	}

}




  










  /*box1背景上でのh2*/
h2.box5 {
	font-size: 2rem;		/*文字サイズを240%*/
	letter-spacing: 0.1em;	/*文字間隔を広く*/
}
main .box5 {
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、varは色の事でcss冒頭のprimary-colorを読み込みます*/
	padding: 1vw;	/*ボックス内の余白。画面幅100% = 100vwです。*/
	margin-bottom: var(--global-space);	/*ボックスの下（外）に空けるスペース。css冒頭のglobal-spaceを読み込みます*/
}

/*box1の中にある最後のlist-freeの下マージンをなくす*/
.box5 .list-free:last-of-type {
	margin-bottom: 0;
}

.line_signup_text {
	color: black;
}


.social-icon {
	position: absolute;
	left: 5px;                 /* 左端に固定 */
	top: 50%;
	transform: translateY(-50%); /* 縦位置中央 */
	width: 50px;
	height: 50px;
}

.google-social-icon {
	left: 15px;                 /* 左端に固定 */
	width: 30px;
	height: 30px;
}

@media (max-width: 750px) {
	.haikei {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  opacity: 0.2;
	  position: absolute;
	  top: 0;
	  left: 0;
	  z-index: 1;
	  }
	.overlay {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  z-index: 2;
	  max-width: 85%;
	  height: auto;
	  }
  }

  #menubar p.logo img {
	display: block;
	/* height: 112%; */

  }

  header .logo {
	margin-top: 0;
  }