@charset "utf-8";

/*Font bauer-bodoni-romanの読み込み
---------------------------------------------------------------------------*/
@font-face {
  font-family: 'bodoniroman'; /* 任意のフォント名 */
  src: url('../font/bauer-bodoni-roman.woff2') format('woff2');
}


/*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?	=Noto+Sans+JP:wght@100..900&display=swap');


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


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

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

	--secondary-color: #121a5a;			/*テンプレートのサブカラー*/
	--secondary-inverse-color: #fff;	/*secondary-colorの対となる色*/
	
	--accent-color: #c43311;			/*テンプレートのアクセントカラー*/
	--accent-inverse-color: #fff;		/*accent-colorの対となる色*/

	/*余白の一括管理用。主に左右の余白に使っています。4rem＝4文字分。*/
	--content-space: 4rem;
	
}


/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


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


/*全体の設定
---------------------------------------------------------------------------*/
button * {
    font-family: "TsuMinPr6RB-JansonTextPro55R","TsuMinPr6B-SabonNextProR" , "Shippori Mincho" , "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}

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

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

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

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


body {
	margin: 0;padding:0;
	font-family: "TsuMinPr6RB-JansonTextPro55R","TsuMinPr6B-SabonNextProR" , "Shippori Mincho" , "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;	/*フォント種類（ゴシック）*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #555;		/*文字色*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
	background: url("../images/background.jpg");
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*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 {
	padding: var(--content-space);	/*section内の余白。css冒頭のcontent-spaceを読み込みます。*/
}
@media screen and (max-width:800px) {
	section {
		padding: 5%;	/*section内の余白。css冒頭のcontent-spaceを読み込みます。*/
	}

}

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

/*マウスオン時*/
a:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	position: relative;
	animation: opa1 0.2s 0.4s both;  /*0.4秒待機後、0.2秒かけてフェードイン*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0 auto;
	width: 100%;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding: 1rem var(--content-space);		/*ヘッダー内の余白。上下に１文字分、左右についてはcss冒頭のcontent-spaceを読み込みます。*/
	color: #fff;		/*文字色*/
	position: absolute;
	width: 100%;
}
header a {color: inherit;}

/*ロゴ*/
#logo a {text-decoration: none;
	z-index: 100;
	position: absolute;
}
#logo img {
	display: block;
	width: 220px;	/*ロゴの幅*/
}

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

	/*ヘッダーブロック*/
	header {
		display: flex;	/*中のコンテンツを横並びにする*/
		justify-content: space-between;
		gap: 2rem;	/*中のコンテンツ同士に空けるマージン的な余白。*/
		align-items: center;
	}

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

@media screen and (max-width:750px) {
header {
	padding: 10px 0px 0px 15px;		/*ヘッダー内の余白。上下に１文字分、左右についてはcss冒頭のcontent-spaceを読み込みます。*/
	color: #fff;		/*文字色*/
	position: absolute;
	width: 40%;
}

}

/*header-box（ヘッダー右側にあるボタン）
---------------------------------------------------------------------------*/
/*ボックス全体*/
#header-box * {margin: 0;padding: 0;}

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

	#header-box {
		margin-right: 30px;	/*ハンバーガーアイコンと重ならないように適当な余白*/
	}

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


/*ボタンが入ったボックス*/
#header-box .btn {
	list-style: none;
	display: flex;
	gap: 1rem;	/*ボタン同士の間に空けるスペース。１文字分。*/
}

/*メニュー１個あたり（ここにない設定は、下の方にある「btn共通設定」にあります。）*/
#header-box .btn a {
	display: block;text-decoration: none;
	padding: 0.5rem 0rem;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px;		/*角を少し丸くする*/
}

/*ボタンに使用しているアイコン*/
#header-box .btn i {
	margin-right: 1rem;		/*アイコンの右側に１文字分のスペースを空ける*/
	transform: scale(1.4);	/*アイコンサイズを140%に。*/
}

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

	/*ボタンが入ったボックス*/
	#header-box .btn {
		display: inline-block;
	}
	
	/*ボタン１個あたり*/
	#header-box .btn li {
		margin-bottom: 0.5rem;
	}

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


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
#menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px var(--content-space) 50px;		/*ブロック内の余白。上に100px、左右についてはcss冒頭のcontent-spaceを読み込む、下に50px。*/
	background: #d4c2a6;		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
}

/*メニュー１個あたり*/
#menubar a {
	display: block;text-decoration: none;
	color: inherit;
	padding: 1rem 2rem;		/*メニュー内の余白。上下に１文字分、左右に２文字分。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: flex;
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	width: 70px;	/*ボタンの幅*/
	height: 70px;	/*ボタンの高さ*/
	transform-origin: right top;
	transform: scale(1);	/*大きさを調整したい場合はここの「1」を変更します。1.2や0.7など。*/
	opacity: 0.5;
}

/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
	/*background: #5b3a00;*/
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	width: 35px;
	height: 2px;		/*線の高さ*/
	background: #fff;	/*線の色*/
	transition: 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}

/* ハンバーガーメニュー展開時 */
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}


.nav {
  display: none; /* 初期は非表示 */
  /* スライドメニューのスタイルを記述 */
}

/* JavaScriptでクラスを付与して表示 */
.nav.is-active {
  display: block;
}

.menu-btn {
  display: block; /* スマホでは表示 */
}

/* PC向けのスタイル（画面幅が768px以上） */
@media (min-width: 768px) {
  .menu-btn {
    display: none; /* PCでは非表示 */
  }
  .nav {
    display: flex; /* 横並びに表示 */
  }
}

/*ヘッダーにある１行のお知らせ
---------------------------------------------------------------------------*/
.new-top * {margin: 0;padding: 0;}

/*ブロック全体*/
.new-top {
	position: absolute;
	top: 80vh;	/*上から80%の場所に配置*/
	z-index: 1;
	width: 80vw;	/*幅は80%*/
	margin-left: 10vw;	/*左に10%空ける*/
	display: flex;
	align-items: center;
	padding: 1rem;	/*ボックス内の余白。1文字分。*/
	background: #fff;	/*背景色。*/
	border-radius: 5px;	/*角を丸くする*/
}

/*マウスオン時に透明度を80%に*/
.new-top a:hover {
	opacity: 0.8;
}

/*「お知らせ」の見出し*/
.new-top h2 {
	font-size: 1rem;
	font-weight: normal;
	background: #555;	/*背景色*/
	color: #fff;		/*文字色*/
	border-radius: 3px;	/*角を少しだけ丸く*/
	margin-right: 1rem;	/*右に空けるスペース。テキストブロックとの間に空けるスペースです。*/
	padding: 0 1rem;	/*見出し内の余白。上は0で、左右に１文字分。*/
}

/*テキストのブロック*/
.new-top  {
	flex: 1;
	
	/*以下4行は、末尾を...として１行にまとめる為のスタイル*/
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*ブロック右側にある「一覧」*/
.new-top .new-list {
	align-self: flex-end;
}


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツブロック*/
#contents {
	flex: 1;
}

/*トップページ以外のコンテンツ*/
body:not(.home) #contents {
	padding-top: 10rem;		/*上に10文字分の余白を空ける*/
	padding-bottom: 10rem;	/*下に10文字分の余白を空ける*/
}

/*コンテンツ内で使用するul,ol要素（リストタグ）*/
#contents ul,#contents ol {
	margin-left: 0rem;
	margin-right: 0rem;
}


/*p要素（段落タグ）
---------------------------------------------------------------------------*/
p {
	margin-left: 1rem;	/*左に１文字分のスペース*/
	margin-right: 1rem;	/*右に１文字分のスペース*/
	font-size: medium;color: #5b3a00;
	font-weight: normal;
	letter-spacing: 0.12em;
	line-height: 2.2;
	font-family: "TsuMinPr6RB-JansonTextPro55R","TsuMinPr6B-SabonNextProR" , "Shippori Mincho" , "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;;
}


/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	margin: 0;padding: 0;
	font-size: 2.4rem;		/*文字サイズ。240%。*/
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	margin-bottom: 5vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	/*align-items: flex-start;*/
}

/*見出し内のspan（小さな装飾文字と上部のアクセントライン）*/
main h2 span.small {
	display: inline-block;
	border-top: 2px solid var(--primary-color);	/*上の線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
	font-size: 0.9rem;		/*文字サイズ90%*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	padding-top: 2rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/

}

/*見出しをセンタリングする場合*/
main h2.c {
	align-items: center;
}


.heading06 {
	position: relative;
	padding-top: 50px;
	font-size: 26px;
	text-align: center;
	color: #5b3a00;
	letter-spacing: 0.1em;
	font-weight: normal;
}

.heading06 span {
	position: relative;
	z-index: 2;
}

.heading06::before {
	font-family: 'bodoniroman'!important;
	content: attr(data-en);
	position: absolute;
	top: 28px;
	left: 50%;
	transform: translateX(-50%);
	color: #5b3a00;
	opacity: 0.1;
	font-size: 50px;
	width: 100%;
}

.heading06::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%) rotate(30deg);
	width: 1px;
	height: 0px;
	background-color: rgba(224,66,114,1);
}
@media screen and (max-width:800px) {
	.heading06 {
	position: relative;
	padding-top: 13px;
	font-size: 26px;
	text-align: center;
	color: #5b3a00;
}

.heading06 span {
	position: relative;
	z-index: 2;
}

.heading06::before {
	content: attr(data-en);
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(91,58,0,1);
	opacity: 0.1;
	font-size: 35px;
	width: 100%;
}

.heading06::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%) rotate(30deg);
	width: 1px;
	height: 0px;
	background-color: rgba(224,66,114,1);
}
}


/*スライダー
---------------------------------------------------------------------------*/
.slider-wrap {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.slide-item>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.slick-animation {
  animation: fadezoom 5s 0s forwards;
}
/* dotsを丸くカスタマイズするCSS */
.dots-wrap {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    list-style: none;
}

.dots-wrap li {
    width: 5px;
    height: 5px;
    margin: 0 5px;
    background: #eee;
    border-radius: 50%;
    cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: #ccc;
}
.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

/*2カラムブロック　※900px未満では１カラム（私たちのこだわりブロック）
---------------------------------------------------------------------------*/
.list-half * {margin: 0;padding: 0;}

/*背景画像*/
#kodawari {
	
}

/*２カラムを囲むブロック*/
.list-half .list {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	margin-bottom: 2rem;	/*ボックスの下に2文字分のスペースを空ける*/
}

/*ブロック内のh4見出し*/
.list-half .list h4 {
	font-size: 1.4rem;	/*文字サイズを1.4倍*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
}

/*ブロック内のh4内のspan（小さな装飾文字）*/
.list-half .list h4 span {
	display: block;
	opacity: 0.5;	/*透明度50%*/
	font-weight: normal;
	font-size: 0.5em;	/*文字サイズを親要素の50%*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広く*/
}

/*画像ブロック共通*/
.list-half .image-l img, .list-half .image-r img {

}

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

	/*２カラムを囲むブロック*/
	.list-half .list {
		flex-direction: column;			/*子要素を横並びにする*/
		justify-content: space-between;	/*並びかたの種類の指定*/
		align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	}

	/*画像ブロック共通*/
	.list-half .image-l, .list-half .image-r {
		width: 100%;			/*画像の幅*/
	}

	/*画像を右に配置する場合*/
	.list-half .image-r {
	}

	/*画像を左に配置する場合*/
	.list-half .image-l {
		order: -1;
		margin-right: 2rem;	/*画像の右側に空けるスペース*/
	}

	/*テキストブロック*/
	.list-half .text {
		flex: 1;
		text-align: center;
		padding-bottom: 50px;
	}
	
	

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

@media screen and (max-width:750px) {
.list-half .text {
		flex: 1;
		text-align: center;
		padding-bottom: 30px;
	}
}


/*list-grid7（プロダクツ）
---------------------------------------------------------------------------*/
#products {
	
}

.products {
	text-align: center;
}
/*テキストブロック*/
	.products .text {
		flex: 1;
		text-align: center;
		padding-bottom: 50px;
	}

/*ボックス１個あたり*/
.list-grid7 .list {
	position: relative;
	background: #ffffff;	/*背景色*/
	color: #555;			/*文字色*/
	padding: 1.5rem;			/*ボックス内の余白。２文字分。*/
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース。2文字分。*/
}

/*ボックス内のh4見出し*/
.list-grid7 .list h4 {
	text-align: center;		/*テキストをセンタリング*/
	font-size: 1.3rem;		/*文字サイズ130%*/
	margin-top: 0px;	/*下に0.5文字分の余白を空ける*/
	color: #5b3a00;	/*文字色。css冒頭のprimary-colorを読み込みます。*/
	font-weight: normal;
}

/*h4内のspan（小さな装飾文字）*/
.list-grid7 .list h4 span {
	display: block;
	font-weight: normal;	/*デフォルトだと太字なので標準に*/
	font-size: 0.7em;		/*文字サイズを70%*/
}

/*ボックス内のp要素*/
.list-grid7 .list p {
	font-size: 1.0rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
	text-align: center;
}

/*ボックス内のfigure画像*/
.list-grid7 .list figure {
	margin: 0 auto;
	margin-bottom: 1rem;	/*画像の下に空けるスペース*/
}

/*ボックス内のQA*/
.qa-box{
    display: flex;
    padding: 10px;
    margin: 0px auto;
    width: 86%;
    justify-content: space-between;
    position: relative;
    flex-direction: none;
    flex-wrap: wrap;
}
.qa-box-inr{
    width: 48%;
    background: #FFF;
    padding: 30px;
    margin-bottom: 15px;
}

@media screen and (max-width:750px) {
    .qa-box{
    display: flex;
    padding: 10px;
    margin: 0px auto;
    width: 100%;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
    }

    .qa-box-inr{
    width: 100%;
    background: #FFF;
    padding: 30px;
    }
}

.flex-qa{
    display: flex;
}
.flex-qa-ql{
    width: 80px;
    color: #5b3a00;
    font-weight: 600;
    font-size: 30px;
}
.flex-qa-qr{
    width: 80%;
    margin: 0 0 1em;
    color: #5b3a00;
    padding-top: 5px;
}
.flex-qa-al{
    width: 80px;
    color: #db5351;
    font-weight: 600;
    font-size: 30px;
}
.flex-qa-ar{
    width: 80%;
    margin: 0 0 1em;
    color: #db5351;
    padding-top: 5px;
}

@media screen and (max-width: 768px) {
  .no-sp {
    display: none !important; /* !importantは必須ではないが、他の設定に優先したい場合に使用 */
  }
}

.q1 {position: absolute; bottom: -2em; z-index: 100; left: -150px; width: 200px;}

.q2 {position: absolute; bottom: 5em; z-index: 100; right: -140px; width: 150px;}

.q3 {position: absolute; bottom: 0em; z-index: 100; left: -150px; width: 180px;}

.q4 {position: absolute; bottom: 5em; z-index: 100; right: -100px; width: 100px;}

.q5 {position: absolute; bottom: 5em; z-index: 100; left: -100px; width: 100px;}

.q6 {position: absolute; bottom: 5em; z-index: 100; right: -110px; width: 170px;}

.q7 {position: absolute; bottom: 0px; z-index: 100; left: -120px; width: 150px;}

.q8 {position: absolute; bottom: 2em; z-index: 100; right: -80px; width: 100px;}


.btn-simple-solid {
  font-family: 'bodoniroman';
  background: linear-gradient(to bottom, #aa9c83 0%, #aa9c83 50%, #8d7f64 50%, #8d7f64 100%);
  color: white;
  border: none;
  padding: 7px 32px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  
  &:hover {
    background: linear-gradient(to bottom, #ccc4b5 0%, #ccc4b5 50%, #bab1a2 50%, #bab1a2 100%);
  }
  
  &:active {
    transform: translateY(0);
  }
}


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

	/*ブロック全体を囲むブロック*/
	.list-grid7 {
		display: grid;
		grid-template-columns: repeat(2, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 2rem;	/*ブロックの間に空けるマージン的な指定。２文字分。*/
		width: 70%;
		margin: 0px auto;
		
	}

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



.custom-popup {
  border: none;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  width: 50%;
}
.custom-popup::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}

.custom-popup h2 {
	font-size: 25px;
	text-align: center;
	color: #5b3a00;
	margin: 15px 0px;
}

.custom-popup-cnt {
	color: #5b3a00;
	font-size: 1.0rem;	/*文字サイズを85%に*/
	text-align: left;
	margin-top: 20px;
	margin-bottom: 20px;

}

.custom-popup-cnt-text {

}
.closeBtn {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(45deg);
}

.closeBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}



/* モーダルを開くボタン1 */
.modal-open{
  font-size: 16px;
  width: 100%;
  height: 35px;
  color: #fff;
  background: linear-gradient(to bottom, #d0c3af 0%, #d0c3af 50%, #ad9c80 50%, #ad9c80 100%);
  border: none;
  cursor: pointer;
  border: none;
}

/* モーダルと背景の指定 */
.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}

/* モーダルの擬似要素の指定 */
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active{
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

/* モーダル内側の指定 */
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: scroll;
}

/* モーダルを閉じるボタンの指定 */
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  color: #000;
  border-radius: 50%;
  cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content{
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 20px;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p{
  margin: 1em 0;
}

.modal-content h2{
  font-size: 25px;
	text-align: center;
	color: #5b3a00;
	margin: 15px 0px;
}




/*blog
---------------------------------------------------------------------------*/
#blog {
	
}
.blog {
  background: url("../images/blogbnr01.jpg");
  background-size: cover; /* または 100% 100% */
  background-position: center;
  background-repeat: no-repeat;
  height: 300px; /* ビューポート全体に表示する場合 */
  width: 100%;

}

.flexbox-blog {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: flex-end;
  justify-content: flex-end;
  height: 75%;
padding-bottom: 0%;
}

.flex-item-blog {
  width: 400px;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
}

.btn-bnr-brog {
	font-family: "TsuMinPr6RB-JansonTextPro55R" , "TsuMinPr6B-SabonNextProR" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" !important;
  background: linear-gradient(to bottom, #d0c3af 0%, #d0c3af 50%, #ad9c80 50%, #ad9c80 100%);
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 300px;
  
  &:hover {
    	background: linear-gradient(to bottom, #d0c3af 0%, #d0c3af 50%, #ad9c80 50%, #ad9c80 100%);
	opacity: 0.6;

  -ms-filter: "alpha(opacity=70)";
  }
  
  &:active {
    transform: translateY(0);
  }
}
@media screen and (max-width:750px) {
	.blog {
	background: url("../images/blogbnr01.jpg");
	background-size: cover; /* または 100% 100% */
	background-position: center;
	background-repeat: no-repeat;
	height: auto; /* ビューポート全体に表示する場合 */
	width: 100%;

	}
	.flexbox-blog {
		display: flex;
		flex-direction: column;
		text-align: center;
		align-items: flex-end;
		justify-content: flex-end;
		height: 200px;
		margin-right: 0px;
		padding-bottom: 5%;
		}
	.flex-item-blog {
		width: 50%;
		color: #ffffff;
		font-size: 20px;
		
	}
.btn-bnr-brog {
  background: linear-gradient(to bottom, #d0c3af 0%, #d0c3af 50%, #ad9c80 50%, #ad9c80 100%);
  color: white;
  border: none;
  padding: 10px 32px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 80%;
  
  &:hover {
    	background: linear-gradient(to bottom, #d0c3af 0%, #d0c3af 50%, #ad9c80 50%, #ad9c80 100%);
	opacity: 0.6;

  -ms-filter: "alpha(opacity=70)";
  }
  
  &:active {
    transform: translateY(0);
  }
}

}

/*採用情報
---------------------------------------------------------------------------*/
#recruit {
	
}
.recruit {
  background: url("../images/recruitbnr01.jpg");
  background-size: cover; /* または 100% 100% */
  background-position: center;
  background-repeat: no-repeat;
  height: 300px; /* ビューポート全体に表示する場合 */
  width: 100%;

}

.flexbox-recruit {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: flex-start;
  justify-content: flex-end;
  height: 70%;
}

.flex-item-recruit {
  width: 400px;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
}


.btn-bnr {
	font-family: "TsuMinPr6RB-JansonTextPro55R" , "TsuMinPr6B-SabonNextProR" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" !important;
  background: linear-gradient(to bottom, #d0c3af 0%, #d0c3af 50%, #ad9c80 50%, #ad9c80 100%);
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 16px;
  cursor: pointer;
  width: 230px;
  text-decoration: none;
  
  &:hover {
	background: linear-gradient(to bottom, #d0c3af 0%, #d0c3af 50%, #ad9c80 50%, #ad9c80 100%);
	opacity: 0.6;

  }
}

.btn-bnr a {
	font-family: "TsuMinPr6RB-JansonTextPro55R" , "TsuMinPr6B-SabonNextProR" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" !important;
}
@media screen and (max-width:750px) {
	.recruit {
	background: url("../images/recruitbnr01.jpg");
	background-size: cover; /* または 100% 100% */
	background-position: center;
	background-repeat: no-repeat;
	height: auto; /* ビューポート全体に表示する場合 */
	width: 100%;

	}
	.flexbox-recruit {
		display: flex;
		flex-direction: column;
		text-align: center;
		align-items: flex-start;
		justify-content: flex-end;
		height: 200px;
		margin-right: 0px;
		padding-bottom: 5%;
		}
	.flex-item-recruit {
		width: 50%;
		color: #ffffff;
		font-size: 20px;
		margin-top: 2%;
		}

.btn-bnr {
  background: linear-gradient(to bottom, #d0c3af 0%, #d0c3af 50%, #ad9c80 50%, #ad9c80 100%);
  color: white;
  border: none;
  padding: 10px 32px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 80%;
  
  &:hover {
    	background: linear-gradient(to bottom, #d0c3af 0%, #d0c3af 50%, #ad9c80 50%, #ad9c80 100%);
	opacity: 0.6;

  -ms-filter: "alpha(opacity=70)";
  }
  
  &:active {
    transform: translateY(0);
  }
}

}

/*問い合わせ
---------------------------------------------------------------------------*/
#contact {
	
}
.contact {
  background: url("../images/contactbnr.jpg");
  background-size: cover; /* または 100% 100% */
  background-position: center;
  background-repeat: no-repeat;
  height: 300px; /* ビューポート全体に表示する場合 */
  width: 100%;
  margin-top: 50px;

}

@media screen and (max-width:750px) {
	.contact {
	background: url("../images/contactbnr.jpg");
	background-size: cover; /* または 100% 100% */
	background-position: center;
	background-repeat: no-repeat;
	height: auto; /* ビューポート全体に表示する場合 */
	width: 100%;
	margin-top: 50px;



	}
}
/*よくある質問
---------------------------------------------------------------------------*/
#faq {
	
}
.qa-8 dt {
    margin-bottom: 1em;
    color: #5b3a00;
    font-weight: 600;
}

.qa-8 dt::before,
.qa-8 dd::before {
    margin-right: .4em;
}

.qa-8 dt::before {
    content: "Q.";
	font-size: 30px;
}

.qa-8 dd {
    margin: 0 0 2.5em;
    background-color: #ffffff;
    color: #db5351;
}

.qa-8 dd::before {
    content: "A.";
	font-size: 30px;
}

/*会社概要
---------------------------------------------------------------------------*/
#company {
	
}
.company-wrapper {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

/* タイトルを中央に */
.company-title {
    text-align: center;
    color: #333;
}

/* テーブルを中央に配置 */
.company-table {
    width: 380px;
    border-collapse: collapse;
    margin: 0 auto; /* ここでテーブル自体を中央寄せ */
	counter-reset: #5b3a00;
	color: #5b3a00;
}

.company-table th {
    padding: 5px;
    text-align: left;
    border-bottom: solid 1px #ccc4b5;
	font-weight: normal;
}

.company-table td {
    padding: 5px;
    text-align: left;
    padding-left: 40px;
    border-bottom: solid 1px #ccc4b5;
}

.company-table th {
    width: 30%;
}

@media screen and (max-width:750px) {
	.company-table {
    		width: 100%;
	}
}

/*ご利用の流れ
---------------------------------------------------------------------------*/
.flow-box * {margin: 0;padding: 0;}

/*背景画像*/
#flow {
	background: url("../images/bg-flow.png") no-repeat right top / 50vw;	/*right(右)、top(上)に配置し、幅は画面幅の50%に。*/
}

/*ステップボックス１個あたりの設定*/
.flow-box {
	position: relative;
	margin-bottom: 4rem;	/*下に空けるスペース、2文字分。ステップボックス同士のスペースです。*/
}

/*ボックス内のh3見出し（大きな端末で左側に配置される背景色つきの見出し）*/
.flow-box .title h3 {
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	margin-left: calc(-1 * var(--content-space));
	margin-right: calc(-1 * var(--content-space));
	text-align: center;	/*テキストをセンタリング*/
	padding: 2rem;		/*見出し内の余白。２文字分。*/
	margin-bottom: 2rem;	/*見出しの下に空けるスペース。２文字分。*/
}

/*h3内のspan（小さな装飾文字）*/
.flow-box .title h3 span {
	display: block;
	font-size: 0.7em;	/*文字サイズ。親要素の70%。*/
}

/*「STEP01」$301C「STEP04」のテキスト*/
.flow-box .step-num {
	display: inline-block;
	position: absolute;
	left: 0px;
	top: -50px;	/*本来の場所から上に50pxずらす*/
	width: 100%;
	font-size: 3rem;	/*文字サイズ300%*/
	color: var(--primary-color);	/*文字色。css冒頭のprimary-colorを読み込みます。*/
}

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

	.flow-box {
		display: flex;
		align-items: flex-start;
		gap: 5rem;	/*左右のブロック同士の間に空けるスペース。５文字分。*/
	}
	
	/*「STEP01」$301C「STEP04」のテキスト*/
	.flow-box .step-num {
		top: -100px;		/*本来の場所から上に100pxずらす*/
		font-size: 5rem;	/*文字サイズ500%*/
		opacity: 0.15;		/*透明度。色が15%出た状態。*/
	}

	/*h3見出しが入ったブロック（大きな端末で左側に配置される背景色つきの見出しを囲むブロック）*/
	.flow-box .title {
		width: 30%;	/*幅*/
		position: -webkit-sticky;
		position: sticky;
		top: 0;
	}

	/*ボックス内のh3見出し（大きな端末で左側に配置される背景色つきの見出し）*/
	.flow-box .title h3 {
		margin-right: auto;
		border-radius: 0 100px 100px 0;	/*角を丸くする指定。左上、右上、右下、左下の順番。*/
	}

	/*大きな端末で右側に配置されるテキストブロックを囲むボックス*/
	.flow-box .text {
		flex: 1;
	}

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


/*ステップボックス
---------------------------------------------------------------------------*/
ul.step {
	margin: 0 !important;padding: 0 !important;
	list-style: none;
}

/*ステップ１個あたり*/
ul.step li {
	border: 2px solid var(--primary-color);	/*枠線の幅、線種、varは色の指定で、css冒頭のprimary-colorを読み込みます。*/
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース。２文字分。ボックス同士に空ける余白です。*/
	position: relative;
}

/*「▼」のマーク*/
ul.step li::after {
	content: "▼";	/*このテキストを出す*/
	transform: scaleX(2);	/*２倍の大きさ*/
	position: absolute;
	left: 50%;	/*左からの配置場所。厳密に中央ではありませんが、テキストが小さいので問題ないかと。*/
	bottom: -2rem;	/*下からの配置場所。本来の場所より上に２文字分の場所。*/
	color: var(--primary-color);	/*文字色。css冒頭のprimary-colorを読み込みます。*/
	opacity: 0.3;	/*透明度。色が30%出た状態。*/
}

/*最後のステップボックスには「▼」を出さない*/
ul.step li:last-child::after {
	content: "";
}


/*list-yoko-scroll（お客様の声ブロック）
---------------------------------------------------------------------------*/
.list-yoko-scroll * {margin: 0; padding: 0;}

/*横スクロールブロック全体*/
.list-yoko-scroll {
	display: flex;
	align-items: flex-start;
	overflow-x: auto;
	scrollbar-width: none;	/* Firefox用 */
	scroll-snap-type: x mandatory; /* スナップスクロールを有効にする */
	padding-top: 30px;
	padding-bottom: 30px;
	margin-right: calc(-1 * var(--content-space));
}
.list-yoko-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge用 */
}

/*ブロック内の１個あたり*/
.list-yoko-scroll .list {
	width: 60%;		/*ブロック１個の幅。お好みで変更して下さい。*/
	flex-shrink: 0;
	scroll-snap-align: start;
	margin-right: 2rem;	/*ふきだしごとの間に空けるスペース。２文字分。*/
	position: relative;
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	border-radius: 1rem;	/*角を丸くする指定*/
	padding: 2rem;			/*ボックス内の余白。２文字分。*/
}

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

	/*ブロック内の１個あたり*/
	.list-yoko-scroll .list {
		width: 28%;		/*ブロック１個の幅。お好みで変更して下さい。*/
	}

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


/*偶数版目のふきだしだけ、下に30pxずらす*/
.list-yoko-scroll .list:nth-of-type(even) {
	transform: translateY(30px);
}

/*ふきだしぐち（▲の形）*/
.list-yoko-scroll .list::before {
	content: "▲";	/*このテキストを出す*/
	color: var(--primary-color);	/*文字色。css冒頭のprimary-colorを読み込みます。*/
	font-size: 30px;	/*サイズ*/
	position: absolute;
	left: 30%;	/*ふきだしの左からの配置場所。お好みで。*/
	top: -40px;	/*ふきだしの上からの配置場所*/
}

/*ふきだし内の.text（テキスト）ブロック*/
.list-yoko-scroll .list .text {
	font-size: 0.85rem;	/*文字サイズ85%*/
	line-height: 1.5;	/*行間*/
}


/*よく頂く質問ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	font-size: 1.3rem;	/*文字サイズ130%*/
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*下線の幅、線種、最後は色の指定で255,255,255は白の事で0.3は色を30%出す指定。*/
}

/*質問*/
.faq dt {
	display: flex;
	align-items: flex-start;
	border-top: 1px solid rgba(255,255,255,0.3);	/*上の幅、線種、最後は色の指定で255,255,255は白の事で0.3は色を30%出す指定。*/
	padding: 1rem;		/*ブロック内の余白。１文字分。*/
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

/*「＋」アイコン（閉じている場合）*/
.faq dt::before {
	content: "＋";	/*アイコン画像の指定*/
	margin-right: 1rem;	/*右側に空けるスペース*/
	flex-shrink: 0;
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	width: 2rem;		/*幅*/
	line-height: 2rem;	/*高さ*/
	text-align: center;
	border-radius: 50%;	/*円形にする*/
	transform: translateY(5px);	/*アイコンの上下バランスの微調整*/
}

/*「ー」アイコン（開いている場合）*/
.faq dt.active::before {
	content: "ー";	/*アイコン画像の指定*/
}

/*回答*/
.faq dd {
	margin: 0 1rem 1rem 4rem;	/*ボックスの外側にとる余白。上、右、下、左への順番。*/
	padding: 1rem 2rem;	/*ボックスの内側の余白。上下に1文字、左右に２文字分。*/
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	border-radius: 5px;	/*角を丸くする指示*/
}


/*concept スライダー
---------------------------------------------------------------------------*/
/* コンテナー */
.container {
  max-width: 900px;
  margin: 0 auto;
}

/* スライダーのwrapper */
.infinite-slider .swiper-wrapper {
  transition-timing-function: linear;
}

/* スライド */
.infinite-slider .swiper-slide {
  height: 200px !important; /* 高さを指定 */
  width: auto !important;
  margin: 0 10px;
}

/* スライド内の画像 */
.infinite-slider .swiper-slide img {
  width: auto;
  height: 100%;
}



/*btn共通設定（ヘッダーと、フッターの上のボックス内にあるボタンの共通設定）
---------------------------------------------------------------------------*/
.btn a {
	display: block;text-decoration: none;
	color: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	text-align: center;	/*テキストをセンタリング*/
}

/*マウスオン時*/
.btn a:hover {
	color: var(--accent-color);					/*文字色。css冒頭のaccent-colorを読み込みます。*/
}


/*フッターの上のボックス内にあるボタン（ここにない設定は、すぐ上の「btn共通設定」にあります。）
---------------------------------------------------------------------------*/
/*ボタンに使用しているアイコン*/
.btn-box .btn i {
	margin-right: 2rem;		/*アイコンの右側に２文字分のスペースを空ける*/
	transform: scale(1.4);	/*アイコンサイズを140%に。*/
}

/*ボタンブロック*/
.btn-box .btn {
	list-style: none;margin:0;padding:0;
	display: flex;
	flex-direction: column;	/*縦並びに*/
	justify-content: center;
	align-items: center;
	gap: 2rem;			/*ボタン同士に空けるスペース。２文字分。*/
	height: 80vh;		/*ブロックの高さ。画面の高さの80%。お好みで。*/
	font-size: 1.5rem;	/*文字サイズを150%に*/
}

/*ボタン１個あたり*/
.btn-box .btn li {
	width: 80vw;	/*幅。画面幅の80%*/
}
.btn-box .btn a {
	border-radius: 10px;	/*角を丸くする指定*/
	padding: 1rem 2rem;		/*ボタン内の余白。上下、左右へ。*/
}

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

	/*ボタンブロック*/
	.btn-box .btn {
		flex-direction: row;	/*横並びに変更*/
	}
	
	/*ボタン１個あたり*/
	.btn-box .btn li {
		width: 40vw;	/*幅。画面幅の40%*/
	}

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


/*波のアニメーション
---------------------------------------------------------------------------*/
/*アニメーション*/
@keyframes move-wave {
0% { transform: translateX(0); }
100%   { transform: translateX(-50%); }
}

/*波を囲む全体のブロック*/
.wave-section {
	position: relative;
	
	/*以下の３行の数字については、下のwaveのheight(波の高さ)から1を差し引いた形です。隙間が出る場合があるのでそれが出ないようにしています。*/
	padding-top: 79px;
	top: -79px;
	margin-bottom: -79px;
}

/*波の色（２つとも揃えておけばOK）*/
.wave-section .text {
	background: var(--primary-color);	/*背景色。css冒頭のprimary-colorを読み込みます。*/
}
.wave-wrap use {
	fill: var(--primary-color);			/*塗りつぶしの色。css冒頭のprimary-colorを読み込みます。*/
}

/*上下の波（共通）*/
.wave {
	position: absolute;
	left: 0;
	width: 100%;
	height: 80px;	/*波の高さ。ここを変更する場合は上の.wave-sectionの３箇所の数字も合わせて変更して下さい。*/
}
.wave svg {
	display: block;
	width: 100%;
	height: 100%;
}

.wave .wave-wrap {
	transform-box: fill-box;
	transform-origin: 0 0;
	animation: move-wave 10s linear infinite;	/*ここの10sを変更すれば波のアニメーション速度が変わります*/
}

/*上の波*/
.wave-top {
	top: 0;
}

/*下の波*/
.wave-bottom {
	bottom: 0;
	transform: rotate(180deg);
}


/*フッター
---------------------------------------------------------------------------*/
#footer * {margin: 0;padding: 0;}
#footer ul {list-style: none;}

/*ブロック全体*/
#footer {
	background: #a58553;		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	padding: var(--content-space);	/*フッター内の余白。css冒頭のcontent-spaceを読み込みます。*/
	opacity: 0.5;
}

/*ロゴやSNSアイコンが入ったブロック*/
#footer div.footer1 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;	/*このブロック内のボックス同士の間に空ける余白。１文字分。*/
}

/*メニューブロック*/
#footer div.footer2 {
    flex: 1;
}

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

	#footer {
		display: flex;
		gap: 2rem;		/*ロゴのブロックとメニューのブロックとの間の余白。2文字分。*/
	}

	/*ロゴやSNSアイコンが入ったブロック*/
	#footer div.footer1 {
		text-align: left;
		width: 40%;	/*幅。40%。*/
	}

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


/*Copyright部分*/
#footer small {
	display: block;
	text-align: right;
	margin-top: 2rem;
}


/*SNSアイコン
---------------------------------------------------------------------------*/
#footer .sns {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;		/*アイコン同士のマージン的な要素。１文字分。*/
}

#footer .sns i {
	font-size: 30px;	/*アイコンサイズ*/
}


/*Google Map用
---------------------------------------------------------------------------*/
#footer .iframe {
	width: 100%;
	height: 0;
	padding-top: 56.25% !important;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}
#footer .iframe iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*フッター内の受付時間テーブル
---------------------------------------------------------------------------*/
.week {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 5px;	/*角を丸くする指定*/
	border: 1px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
	table-layout: fixed;	/*幅を均等に*/
	background: #fff;		/*テーブル全体の背景色*/
	color: #555;			/*テーブル全体の文字色*/
}

/*受付時間の幅*/
.week th:first-child,
.week td:first-child {
	width: 25%;
}

/*各曜日の幅*/
.week th:not(:first-child),
.week td:not(:first-child) {
	width: calc(75% / 7);	/*受付時間で25%とっているので残りの75%を7で割る*/
}

/*th(曜日)とtd(時間)*/
.week th,
.week td {
	padding: 1rem 0;	/*ボックス内の余白。上下に１文字分、左右は0。*/
	text-align: center;	/*テキストをセンタリング*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	border-right: 1px solid #ccc;	/*右の線の幅、線種、色*/
}

/*th(曜日)とtd(時間)のそれぞれ最後の右側の線を消す*/
.week th:last-child,
.week td:last-child {
	border-right: none;
}

/*最後の行の下線を消す*/
.week tr:last-child td {
	border-bottom: none;
}

/*th(曜日)の追加指定*/
.week th {
	background: #fafafa;	/*背景色*/
}
.week td {
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}



/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*bg1
---------------------------------------------------------------------------*/
.bg1 {
}


/*背景画像が少しずつ上に移動する
---------------------------------------------------------------------------*/
/*共通設定*/
.bg-slideup {
    background-repeat: no-repeat;
    background-size: cover;
	width: 100%;
}

/*slideup1画像*/
.slideup1 {
    background-image: url("../images/bg-slideup1.jpg");	/*背景画像の読み込み*/
	color: #fff;
	border-radius: 10vw 10vw 0 0;
}

/*slideup2画像*/
.slideup2 {
    background-image: url("../images/bg-slideup2.jpg");	/*背景画像の読み込み*/
	position: relative;
}

/*slideup2の上部にグラデーションをかけて、「よく頂く質問」ブロックとの境界をなめらかにする*/
.slideup2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 20vh;	/*高さ。画面の高さの20%。お好みで。*/
	background: linear-gradient(var(--secondary-color), transparent);/*背景グラデーション。css冒頭の--secondary-colorから透明(transparent)になるグラデ。*/
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.new dd {
	padding-bottom: 1rem;
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 2px;		/*角を丸くする指定*/
	padding: 0 1rem;		/*上下、左右へのブロック内の余白*/
	width: 8rem;			/*幅。8文字分。*/
	transform: scale(0.85);	/*85%のサイズに縮小*/
	border: 1px solid #777;	/*枠線の幅、線種、色*/
}

/*icon-bg1。サンプルテンプレートでは「重要」と書いてあるマーク*/
.new .icon-bg1 {
	border-color: transparent;	/*枠線を透明に*/
	background: #cd0000;		/*背景色*/
	color: #fff;				/*文字色*/
}

/*icon-bg2。サンプルテンプレートでは「サービス」と書いてあるマーク*/
.new .icon-bg2 {
	border-color: transparent;				/*枠線を透明に*/
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

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

	/*ブロック全体*/
	.new {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}

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


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/*fadeInのキーフレーム設定*/
@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;
}


/*マニュアルページ用
---------------------------------------------------------------------------*/
#manual {background-image: none;}
.manual {
	padding: 5rem;
}
.manual h2,.manual h3 {
	margin-top: 3rem;
}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}


/*その他
---------------------------------------------------------------------------*/
.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;}
.mb5rem {margin-bottom: 5rem !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; color: #888; 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;}

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

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

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

/*menu
---------------------------------------------------------------------------*/

.c-header {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1rem 1rem; /* カスタマイズしてください */
  width: 100%;
  z-index: 30;
}

.c-header__logo {
  color: #000; /* カスタマイズしてください */
  min-width: 80px; /* カスタマイズしてください */
  text-decoration: none;
  width: 30%;
  z-index: 30;
}
@media screen and (max-width: 750px) {
	.c-header__logo {
		min-width: 80px; /* カスタマイズしてください */
		width: 80%;
	}
}
.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-header__list-item {
  list-style: none;
  text-decoration: none;
  white-space: nowrap;
  font-size: 11px;
  position: relative;
  top: 0px;
}

.c-header__list-link {
  color: #ffffff; /* カスタマイズしてください */
  display: block;
  margin-right: 20px; /* カスタマイズしてください */
  text-decoration: none;
  padding: 0px 0px; /* カスタマイズしてください */
  margin-top: 25px;
}

.c-header__list-link:hover {
  filter: opacity(0.6); /* カスタマイズしてください */
}


@media screen and (max-width: 750px) {
  .c-hamburger-menu__list {
    background-color: #c1ac8a; /* カスタマイズしてください */
    align-items: center;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; /* カスタマイズしてください */
    top: 0;
    width: 100%;
    min-height: 100vh;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }

  .c-header__list-item {
    top: 10vh;
  }
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #000; /* カスタマイズしてください */
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; /* カスタマイズしてください */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; /* カスタマイズしてください */
    height: 32px; /* カスタマイズしてください */
    justify-content: center;
    width: 32px; /* カスタマイズしてください */
  }
}

.c-hamburger-menu__button-mark {
  background-color: #ffffff; /* カスタマイズしてください */
  display: block;
  height: 1.5px; /* カスタマイズしてください */
  transition: 0.3s; /* カスタマイズしてください */
  width: 20px; /* カスタマイズしてください */
}

@media screen and (max-width: 750px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}

/*footer
---------------------------------------------------------------------------*/
.footer {
  padding: 1rem;
  font-size: 15px;
  color: #9ca3af;
  background: #a58553;
  opacity: 0.5;
}

.footer__navi {
  flex-wrap: wrap;
  margin-bottom: 0rem;
  display: flex;
  
}

.footer__navi li {
  display: inline-block;
}

.footer__navi li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 11px;
}

.footer__navi li:not(:last-child) {
  margin-right: 16px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

@media (min-width: 750px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .copyright {
    text-align: right;
	color: #ffffff;
	font-size: 13px;	
	margin-right: 0px;
  }
}


@media (max-width: 750px) {
	.footer__navi {
		flex-wrap: wrap;
		margin-bottom: 0rem;
		display: none;
	}
	.copyright {
	color: #ffffff;
	font-size: 13px;
  }
  .footer {
  padding: 1rem;
  font-size: 15px;
  color: #9ca3af;
  background: #a58553;
  opacity: 0.5;
  text-align: center;
}
}

@charset "utf-8";

/* ==========================
  初期設定
========================== */



/* ==========================
  モーダル（ポップアップ）
========================== */
.js_modalBtnWrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.js_modalBtnCont {
  font-family: 'bodoniroman';
  display: block;
  font-size: 16px;
  width: 100%;
  height: 35px;
  color: #fff;
  background: linear-gradient(to bottom, #aa9c83 0%, #aa9c83 50%, #8d7f64 50%, #8d7f64 100%);
  border: none;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  padding: 5px 0px;
  text-decoration: none;
}

.js_modalBtnCont:hover,
.js_modalBtnCont:focus {
  color: #fff;
  background-color: #222;
}
.js_modalWrap {
  opacity: 0;
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.js_modalWrap.active {
  animation: modalOpen 0.3s ease forwards;
}
.js_modalWrap.active2 {
  animation: modalClose 0.3s ease forwards;
}
.js_modalBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.js_modalContInner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 600px;
  max-width: 100%;
  background-color: #fff;
  max-height: 600px;
  padding: 40px;
  padding-top: 55pxs;
}
.js_modalCont {
  overflow-y: scroll;
  max-height: 520px;
}
.js_modalCont > * + * {
}

.js_modalContInner > .js_modalClose + * {
  margin-top: 0;
}
.js_modalClose {
  display: block;
  position: absolute;
  top: 10.5px;
  right: 10.5px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1001;
}
.js_modalClose::before,
.js_modalClose::after {
  content: "";
  background-color: #222;
  position: absolute;
  top: -5px;
  right: 10px;
  width: 1px;
  height: 30px;
}
.js_modalClose::before {
  transform: rotate(45deg);
}
.js_modalClose::after {
  transform: rotate(-45deg);
}
@keyframes modalOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 1000;
  }
}
@keyframes modalClose {
  0% {
    opacity: 1;
    z-index: 1000;
  }
  100% {
    opacity: 0;
  }
}

/* ==========================
  コンテンツの中身
========================== */
.ly_inner {
  width: 100%;
  padding: 20px;
}
.ly_inner h2 {
  font-size: 150%;
  margin-bottom: 15px;
  text-align: center;
  color: #5b3a00;
}
.md_textblock > * + * {
  margin-top: 10px;
}
.md_textblock > * + .js_modalBtnWrap {
  margin-top: 20px;
}
/*table {
  width: 100%;
}
table th,
table td {
  border: 1px solid #222;
  padding: 10px;
}
table th {
  width: 20%;
  background-color: #ccc;
  white-space: nowrap;
}
  */
.md_linkBtnWrap {
  width: 300px;
  max-width: 100%;
  margin: 10px auto 0;
  text-align: center;
}
.md_linkBtnCont {
  display: block;
  color: #222;
  border: 1px solid #222;
  padding: 15px 5px;
  transition: 0.3s;
}
.md_linkBtnCont:hover,
.md_linkBtnCont:focus {
  color: #fff;
  background-color: #222;
}

/* PC幅に適用 */
@media (min-width: 768px) {
  .hp_sp {
    display: none !important;
  }
}
/* スマホ幅に適用 */
@media (max-width: 767px) {
  .hp_pc {
    display: none !important;
  }
  .js_modalContInner {
    max-height: 400px;
    padding: 20px;
  }
  .js_modalCont {
    max-height: 360px;
  }
  .js_modalClose {
    top: -30px;
  }
  .js_modalClose::before,
  .js_modalClose::after {
    background-color: #fff;
  }
}

/* フェードインのアニメーション定義 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* 少し下から上にふわっと */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 共通スタイル: 最初は非表示 */
.fade-item {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

/* 順番に遅延を設定 (delay) */
.fade-item:nth-child(1) { animation-delay: 0.5s; }
.fade-item:nth-child(2) { animation-delay: 1.0s; }
.fade-item:nth-child(3) { animation-delay: 1.5s; }
.fade-item:nth-child(4) { animation-delay: 2.0s; }
.fade-item:nth-child(5) { animation-delay: 2.5s; }
.fade-item:nth-child(6) { animation-delay: 3.0s; }
.fade-item:nth-child(7) { animation-delay: 3.5s; }
.fade-item:nth-child(8) { animation-delay: 4.0s; }

/*問い合せフォーム
---------------------------------------------------------------------------*/
/* --- お問い合わせフォーム --- */
/* デザインカスタマイズ */
div.wpcf7 {
	background:#ffffff;
	border:1px solid #ddd;
	padding:0px;
	margin:0 0 30px 0;
	width: 600px;
	padding: 50px 30px 50px 30px;
}

div.wpcf7 p {
	font-family: "TsuMinPr6RB-JansonTextPro55R","TsuMinPr6B-SabonNextProR" , "Shippori Mincho" , "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
	padding:0px;
	margin:0;
	font-size:14px;
	color: #5b3a00;
}

.form-flex-2{
    display: flex;
	justify-content: space-between;
}
.form-flex-2>div{
    width: 48%;

}

.wpcf7 input::placeholder {
	color: #ded8cc;
}

div.wpcf7 input, .wpcf7 textarea {
	border:1px solid #ded8cc;
	background-color: #efebe5;
	padding:8px;
	font-size:14px;
	width: 100%;
	margin-bottom: 20px;
	color: #5b3a00;
	font-family: "TsuMinPr6RB-JansonTextPro55R","TsuMinPr6B-SabonNextProR" , "Shippori Mincho" , "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}

	div.wpcf7 textarea {
		width:100%;
		height:60px;
		color: #5b3a00;
		font-family: "TsuMinPr6RB-JansonTextPro55R","TsuMinPr6B-SabonNextProR" , "Shippori Mincho" , "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}

.addr_box {
	border:1px solid #ccc;
	padding:8px;
	font-size:14px;
	width: 100%;
	margin-bottom: 20px;
	color: #5b3a00;
	font-family: "TsuMinPr6RB-JansonTextPro55R","TsuMinPr6B-SabonNextProR" , "Shippori Mincho" , "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
	height: 60px;
}


.form-flex-3{
    display: flex;
	justify-content: space-between;
	margin-top: 10%;
}
.form-flex-3>div{
    width: 48%;

}

div.wpcf7 input.wpcf7-submit {
cursor:pointer;
background: linear-gradient(to bottom, #d0c3af 0%, #d0c3af 50%, #ad9c80 50%, #ad9c80 100%);
font-family: "TsuMinPr6RB-JansonTextPro55R","TsuMinPr6B-SabonNextProR" , "Shippori Mincho" , "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
color:#fff;
font-size:14px;
width:200px;
margin:0 auto;
display:block;
padding: 5px;
}


div.wpcf7 input.wpcf7-submit:hover {
	background: linear-gradient(to bottom, #d0c3af 0%, #d0c3af 50%, #ad9c80 50%, #ad9c80 100%);
	font-family: "TsuMinPr6RB-JansonTextPro55R","TsuMinPr6B-SabonNextProR" , "Shippori Mincho" , "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
	opacity: 0.6;
}

div.wpcf7 input.wpcf7-previous {
cursor:pointer;
background: linear-gradient(to bottom, #d0c3af 0%, #d0c3af 50%, #ad9c80 50%, #ad9c80 100%);
font-family: "TsuMinPr6RB-JansonTextPro55R","TsuMinPr6B-SabonNextProR" , "Shippori Mincho" , "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
color:#fff;
font-size:14px;
width:200px;
margin:0 auto;
display:block;
padding: 5px;
}

div.wpcf7 input.wpcf7-previous:hover {
	background: linear-gradient(to bottom, #d0c3af 0%, #d0c3af 50%, #ad9c80 50%, #ad9c80 100%);
	font-family: "TsuMinPr6RB-JansonTextPro55R","TsuMinPr6B-SabonNextProR" , "Shippori Mincho" , "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
	opacity: 0.6;
}


.wpcf7 input.wpcf7-previous:active {
	box-shadow:none;
	bottom:-2px; position:relative;
}
.wpcf7 input:focus, .wpcf7 textarea:focus {
	border:1px solid #ad9c80;
}
.wpcf7-captchac {
	border:1px solid #ccc;
}

@media (max-width: 750px) {
	
	div.wpcf7 {
	padding:0px;
	margin:0 0 30px 0;
	width: 100%;
	padding: 50px 30px 0px 30px;
	}
	
	
	.form-flex-2{
    display: flex;
	flex-direction: column;
	justify-content: space-between;
	}
	.form-flex-2>div{
		width: 100%;
	}

	.form-flex-3{
    display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 10%;
	}
	.form-flex-3>div{
		width: 100%;
	}

	div.wpcf7 input.wpcf7-submit {
		width:100%;
	}

	div.wpcf7 input.wpcf7-previous {
		width:100%;
		margin-bottom: 20px;
	}
}

/* エラー個所をわかりやすく表示 */
.wpcf7 .wpcf7-not-valid { background: #ffb6c1; }
.wpcf7 span.wpcf7-not-valid-tip {font-size: 80%;}
.wpcf7 .wpcf7-response-output {margin: 10px 0 0; padding: 8px 35px 8px 14px; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
-webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }
.wpcf7 .wpcf7-validation-errors {color: #B94A48; background-color: #F2DEDE; border: 1px solid #EED3D7;}
.wpcf7 .wpcf7-mail-sent-ok {color: #3A87AD; background-color: #D9EDF7; border: 1px solid #ad9c80;}

/* 必須赤色表示 */
.wpcf7 .required { color: #f00;}
/* 任意緑色表示 */
.wpcf7 .any{ color: #080;}