@charset "utf-8";


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("inview.css");

/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/*アニメーション設定*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}

/* 初期状態でテキストを非表示にする */
.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;
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	font-size: 16px;	/*基準となるフォントサイズ*/
}

body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	-webkit-text-size-adjust: none;
	background: var(--primary-color);	/*背景色*/
	color: var(--primary-inverse-color);		/*文字色*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
}

/*大きな端末で見た際の背景画像*/
body::before {
	content: "";
	background: url("../images/bg.webp") no-repeat center center / cover;
	position: fixed;
	width: 100%;
	height: 100%;
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:900px) {

	body {
		overflow-x: auto;
	}

	}/*追加指定ここまで*/


/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
ol, ul,summary {
  list-style: none;
  list-style-type: 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*/
input {font-size: 1rem;}

/*section*/
section {
	margin: 30px 0;
}

/* ★追加★カラー */


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	--primary-color: #25282c;			/*テンプレートのテーマカラー*/
	--primary-inverse-color: #b1b8c1;		/*上のprimary-colorの対となる色*/

	--secondary-color: #a16e2c;			/*テンプレートのサブカラー*/
	--secondary-inverse-color:#fff;	/*secondary-colorの対となる色*/

    --input-border-color: #a16e2c;
	
  --accent-color:#e43350;
}


/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	background: var(--primary-color);    /*背景色*/
	overflow-x: hidden;
	position: relative;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	#container {
		overflow-x: visible;
		width: 600px;    /*コンテナーの幅*/
		margin: 0 auto;
	}

	}/*追加指定ここまで*/


/*ヘッダー
---------------------------------------------------------------------------*/
header {
    padding: 20px 20px 0;    /*上、左右、下へのヘッダー内の余白*/
}

	/*画面幅500px以上の追加指定*/
	@media screen and (min-width:500px) {

	header {
		padding: 20px 50px 0;    /*上、左右、下へのヘッダー内の余白*/
	}

	}/*追加指定ここまで*/


/*ロゴ画像*/
#logo img {display: block;}
#logo {
	margin: 0 auto 20px;    /*最後の「20px」はロゴとスライドショー画像との間の余白設定箇所です*/
	width: 200px;    /*画像の幅*/
}


/*スライドショー
---------------------------------------------------------------------------*/
/*スライドショー全体を囲むブロック*/
.mainimg {
    position: relative;
}

/*３枚の画像の共通設定*/
.mainimg .slide {
	position: absolute;right: 0px;top: 0px;
	width: 100%;
	height: 100%;
}

/*１枚目画像（変更不要）*/
.mainimg .slide:first-child {
	position: relative;width: 100%;height: auto;
}

/*画像全般（変更不要）*/
.mainimg .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をコンテナのサイズに合わせてクリップ */
    object-position: center; /* 画像の中心を基準に調整 */
	border-radius: 30px;    /*角を丸くする指定*/
}

/*main
---------------------------------------------------------------------------*/
main {
    padding: 20px 10px;
}

	/*画面幅500px以上の追加指定*/
	@media screen and (min-width:500px) {

	main {
		padding: 20px 50px;
	}

	}/*追加指定ここまで*/


main h2 {
	margin: 0;padding: 0;
}


/*見出し冒頭の数字
---------------------------------------------------------------------------*/
.number {
	font-size: 2.4rem;				/*文字サイズ。240%に。*/
	margin-right: 1rem;				/*右側に１文字分のスペースを空ける。*/
}


/*PC向けメニュー
---------------------------------------------------------------------------*/

	/*画面幅1300px以下の追加指定*/
	@media screen and (max-width:1300px) {

	/*メニューブロック全体*/
	#menu {
        display: none;	/*メニューが切れるので非表示に*/
	}

	}/*追加指定ここまで*/


/*メニュー１個あたり*/
#menu a {
    display: block;text-decoration: none;
    background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒のことで、0.7は色が70%出た状態。*/
    padding: 5px 30px;	/*ボタン内の余白。上下、左右へ。*/
}
#menu li {
    position: fixed;	/*スクロールしても移動させない指示*/
    font-size: 1.2rem;	/*文字サイズ120%*/
}

/*1つ目のメニュー（1. 施術メニュー）*/
#menu li:nth-of-type(1) {
    bottom: 300px;	/*下からの配置場所。お好みで。*/
    left: 50px;		/*左からの配置場所。お好みで。*/
}

/*2つ目のメニュー（1. 施術メニュー）*/
#menu li:nth-of-type(2) {
    bottom: 200px;	/*下からの配置場所。お好みで。*/
    left: 80px;		/*左からの配置場所。お好みで。*/
}

/*3つ目のメニュー（1. 施術メニュー）*/
#menu li:nth-of-type(3) {
    bottom: 350px;	/*下からの配置場所。お好みで。*/
    right: 50px;	/*右からの配置場所。お好みで。*/
}

/*4つ目のメニュー（1. 施術メニュー）*/
#menu li:nth-of-type(4) {
    bottom: 250px;	/*下からの配置場所。お好みで。*/
    right: 70px;	/*右からの配置場所。お好みで。*/
}

/*5つ目のメニュー（1. 施術メニュー）*/
#menu li:nth-of-type(5) {
    bottom: 150px;	/*下からの配置場所。お好みで。*/
    right: 110px;	/*右からの配置場所。お好みで。*/
}

/*マウスオン時*/
#menu a:hover {
    opacity: 1;	/*冒頭で透明度を90%にする指示があるのでそれをリセット*/
    background: var(--secondary-inverse-color);	/*背景色を白に*/
	color: var(--primary-color);
}


/*section1（1.施術メニュー）
---------------------------------------------------------------------------*/
#section1 {
    background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒のことで0.4は色が40%出た状態。*/
	padding: 30px;	/*ボックス内の余白*/
	transform: translateX(90px);	/*現在地より右に90pxずらす*/
	position: relative;	/*「予約する」ボタンを絶対配置する為に必要な指示*/
}

/*section1内のh2見出し*/
#section1 h2 {
	margin-left: 30px;	/*左に空けるスペース*/
}

  /* ★施術メニューをpからulに変更★ */
  .section1-lists {
    padding-left: 40px;
  }

	/*画面幅500px以上の追加指定*/
	@media screen and (min-width:500px) {

	#section1 {
		padding: 50px;	/*ボックス内の余白*/
	}
  /* ★施術メニューをpからulに変更★ */
    .section1-lists {
    padding-left: 80px;
  }


		
	}/*追加指定ここまで*/


/*「予約する」ボタン（section1で使用）
---------------------------------------------------------------------------*/
#section1 .yoyaku {
	position: absolute;
	left: -100px;	/*section1ブロックに対して左から-100pxの場所に配置。マイナスがあるので右側に移動します。お好みで。*/
	bottom: 15%;	/*section1ブロックに対して下から15%の場所に配置。お好みで。*/
}

#section1 .yoyaku a {
	display: block;text-decoration: none;
	padding: 30px;	/*ボタン内の余白*/
	background: var(--secondary-color);	/*背景色*/
	color: var(--secondary-inverse-color);	/*文字色*/
	font-size: 1.6rem;		/*文字サイズ160%*/
	box-shadow: 5px 5px 10px rgba(0,0,0,0.1);	/*ボタンの影。右へ、下へ、ぼかす量、0,0,0は黒のことで0.1は色が10%出た状態。*/
}

/*マウスオン時*/
#section1 .yoyaku a:hover {
	opacity: 1;
	background: #c5832d;	/*背景色*/
	box-shadow: none;	/*ボタンの影をなくす*/
	position: relative;
	top: 2px;	/*上から2px移動*/
	left: 2px;	/*左から2px移動させる*/
}


	/*画面幅500px以上の追加指定*/
	@media screen and (min-width:500px) {

	#section1 .yoyaku a {
		font-size: 1.8rem;	/*文字サイズ180%*/
	}
	
	}/*追加指定ここまで*/


/*section2（2.料金）
---------------------------------------------------------------------------*/
#section2 {
    background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒のことで0.4は色が40%出た状態。*/
	padding: 50px 50px 50px 100px;	/*上、右、下、左へのボックス内の余白*/
	width: calc(100% + 100px);		/*実際の幅に100px追加する*/
	transform: translateX(-100px);	/*本来の場所より左に100px移動させる*/
}


/*料金（section2で使用）
---------------------------------------------------------------------------*/
/*料金ブロック全体*/
.price {
	margin-left: 50px;	/*左に空けるスペース*/
	display: flex;
	flex-wrap: wrap;
}

/*コース名*/
.price dt {
	width: 60%;	/*幅*/
    padding-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
}

/*金額*/
.price dd {
	width: 40%;				/*幅*/
	text-align: right;		/*金額を右寄せ*/
    padding-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
}


/*section3（3.施設・スタッフ紹介）
---------------------------------------------------------------------------*/
#section3 {
    padding: 50px 0;	/*ボックス内の余白。上下、左右への順番。*/
}

/*section3内のh2見出し*/
#section3 h2 {
    margin-bottom: 2rem;	/*下に２文字分のスペースをあける*/
}

/*★変更追加★
//１枚画像になっていたので画像とテキストに変更
---------------------------------------------------------------------------*/
.section3-card {
  margin-bottom: 3em;
}

.section3-card .img-box {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.section3-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section3-card.text-box {
  max-width: 600px;
  text-align: left;
}

.section3-card .text-box h3 {
  font-size: 1.3em;
  margin-bottom: 0.5em;
  border-left: 4px solid var(--secondary-color);
  padding-left: 0.7em;
  font-weight: bold;
}


/*section4（4.よくあるご質問）
---------------------------------------------------------------------------*/
#section4 {
    background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒のことで0.4は色が40%出た状態。*/
    padding: 20px;	/*ボックス内の余白*/
}

	/*画面幅500px以上の追加指定*/
	@media screen and (min-width:500px) {

	#section4 {
		padding: 20px 50px;	/*ボックス内の余白。上下、左右へ。*/
	}

	}/*追加指定ここまで*/


/*FAQブロック
---------------------------------------------------------------------------*/
/*質問、回答の共通設定*/
.faq dt,.faq dd {
	text-indent: -2rem;
	padding: 0.5rem 1em 0.5rem 3em;
}

/*質問の設定*/
.faq dd {
    margin-bottom: 1.5rem;	/*下に1.5文字分空ける*/
}

/*「Q」アイコン*/
.faq dt::before {
	font-family: "Font Awesome 6 Free";
    content: "\51";	/*「Q」アイコンの指示*/
	padding-right: 1rem;	/*アイコンの右側に空けるスペース*/
}

/*「A」アイコン*/
.faq dd::before {
	font-family: "Font Awesome 6 Free";
    content: "\41";	/*「A」アイコンの指示*/
	padding-right: 1rem;	/*アイコンの右側に空けるスペース*/
}


/*section5（5.場所）
---------------------------------------------------------------------------*/
/*GoogleMapの埋め込み*/
#section5 iframe {
	width: 100%;
	height: 500px;	/*マップの高さ*/
}


/*フッター設定（コピーライト部分）
---------------------------------------------------------------------------*/
footer small {
    font-size: 100%;
    padding: 20px;
    display: block;
}
footer {
	text-align: center;		/*内容をセンタリング*/
}

/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）*/
.pr a {
	text-decoration: none;
	display: block;
	background: rgba(0,0,0,0.7);
	text-align: right;
	padding: 0.5rem 1rem;
	color: #ccc;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}

/*フッター内のSNSアイコン
---------------------------------------------------------------------------*/
.icons {
    margin: 0;padding: 0;list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;	/*アイコン間の余白*/
}

/*アイコンの幅（img要素を使う場合）*/
.icons img {
    width: 80px;
}

/*アイコンの幅（FontAwesomeを使う場合）*/
.icons i {
	font-size: 30px;	/*アイコンサイズ*/
}

/*★追加★
メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}


/*
★追加★
開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.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冒頭のsecondary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のsecondary-inverse-colorを読み込みます。*/
	animation: opa1 1s both;				/*opa1を実行する。1sは1秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid var(--primary-inverse-color);	/*枠線の幅、線種、varは色の事でcss冒頭のsecondary-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冒頭のsecondary-colorを読み込みます。*/
	background: var(--primary-inverse-color);	/*背景色。css冒頭のsecondary-inverse-colorを読み込みます。*/
}

/* ★予約ボタン追加★ */

.menubar-cta {
  background: var(--secondary-color);
  color: var(--secondary-inverse-color);
}

.small-screen #menubar .menubar-cta:hover {
  color: var(--secondary-color);
  background: var(--secondary-inverse-color);
}

/*★追加
３本バー（ハンバーガー）アイコン設定★
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 0px;				/*右からの配置場所指定*/
	top: 0px;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	transform: scale(2);	/*デフォルトで準備したサイズの２倍。お好みで。*/
	transform-origin: right top;
	mix-blend-mode: exclusion;
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1px solid var(--secondary-inverse-color);	/*線の幅、線種、色*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
	background: var(--secondary-color);
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !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 {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.bg1 {background: #f0f0f0;}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/


/* ★mainimg下に予約ボタン追加
---------------------------------------------------------------------------*/
.fv-btn-reserve {
  text-align: center;
  margin: 24px 0;
}

.btn-reserve {
  background-color: var(--secondary-color);
  color: var(--secondary-inverse-color);
  text-decoration: none;
  padding: 10px 60px 12px;
  display: inline-flex;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 0;
  letter-spacing: 0.1em;
  	box-shadow: 5px 5px 10px rgba(0,0,0,0.1);	/*ボタンの影。右へ、下へ、ぼかす量、0,0,0は黒のことで0.1は色が10%出た状態。*/
  position: relative;
}

.btn-reserve:hover {
  opacity: 1;
	background: #c5832d;	/*背景色*/
  	box-shadow: none;	/*ボタンの影をなくす*/
	position: relative;
	top: 2px;	/*上から2px移動*/
	left: 2px;	/*左から2px移動させる*/

}

.btn-reserve::after {
  content: "";
  display: inline-block;
  margin-left: 12px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--secondary-inverse-color);
  border-right: 2px solid var(--secondary-inverse-color);
  transform: rotate(45deg);
  box-sizing: border-box;
}

.btn-reserve:hover::after {
   transform: rotate(45deg) translateX(2px);
  transition: transform 0.3s ease;
}

/* ★追加
//問い合わせページ
---------------------------------------------------------------------------*/
.page-contact {
  max-width: 700px;
  margin: 0 auto;
  padding:0 2rem 2rem;
  font-family: sans-serif;
}
/* 下層ページ共通にしたい */
.h1-title {
  text-align: center;
  font-size: 1.8rem;
  margin: 0;
}

.contact-text {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.required {
  color: var(--accent-color);
}

.contact-form .form-row {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--input-border-color);
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border 0.1s ease, box-shadow 0.1s ease;
}

/* ラジオボタン（見た目用。focusでlabelを光らせたいなら別アプローチ） */
input[type="radio"] {
  accent-color: var(--primary-color); /* ブラウザ対応が良い場合これで色変えられる */
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border: 2px solid var(--secondary-color);
  box-shadow: 0 0 5px rgba(113, 4, 23, 0.4);
}

/* ラジオボタン focus時の囲みを消す */
input[type="radio"]:focus {
  outline: none;
}

/* ラジオボタンの並び */
.radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.radio-group label {
  font-weight: normal;
}

.contact-form textarea {
  resize: vertical;
}

.privacy-link {
  font-size: 0.9rem;
  margin: 1.5rem 0;
  text-align: center;
}

.privacy-link a {
  color:var(--secondary-inverse-color);
  text-decoration: underline;
}

.form-submit {
  text-align: center;
}

.form-submit input[type="submit"] {
  background: var(--secondary-color);
  color: var(--secondary-inverse-color);
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.form-submit input[type="submit"]:hover {
  opacity: 0.8;
}
/* ★追加
//個人情報保護方針
---------------------------------------------------------------------------*/
.page-privacy {
  margin: 1.4rem;
}

 .page-privacy h2 {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
 .page-privacy p {
    margin-bottom: 1rem;
  }
 .page-privacy ul {
  list-style: disc; 
  list-style-position: inside;
  margin-left: 1.2rem;
  }