@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

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

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

@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap');

/*テーマカラーの定義（CSS変数）
ここのカラーコードを変更するだけで、テンプレートのテーマカラーが変わります。
---------------------------------------------------------------------------*/
:root {
    --primary-color: #f97216;		/*ヘッダーの背景色など*/
	--secondary-color: #49403d;		/*bg1などで使っているサブ的な色*/
    --primary-text-color: #fff;	/*主に、上の２つのカラーを背景色に使った際の文字色*/
}


/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
	overflow-x: hidden;
}

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

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

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


body {
	font-family: '秀英丸ゴシック B', 'Shuei MaruGo B', 'YuGothic', '游ゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', sans-serif;
	-webkit-text-size-adjust: none;
	background: #fefefe;	/*背景色*/
	color: #696a6a;		/*文字色*/
	line-height: 2;		/*行間*/
	animation: opa1 0.3s 0.5s both;	/*0.5秒の間だけ非表示にし、その後0.3秒かけてフェードイン表示。上部のメインメニューのデフォルトが一瞬見えてしまうのを回避する為の応急措置です。*/
    opacity: 0; /* 初期状態で非表示 */
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;display: flex;
 justify-content: flex-end;}

/*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;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #696a6a;		/*文字色*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
	 text-decoration: none;
}

/*マウスオン時*/
a:hover {
	opacity: 0.8;	/*色を80%だけ出す*/
}


/*sectionとarticleの余白
---------------------------------------------------------------------------*/
main > section,
main > article {
	padding: 2% 5%;	/*上下、左右への余白*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {

	margin: 0 auto;}


.inner{
max-width: 1000px;
  margin: 0 auto;}	/*サイトの最大幅。これ以上広がらない。*/
/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header a {color: inherit;}
header {
	background-color: #f5f5f5;
	text-align: center;
	padding: 5px 5% 0 5%;		/*ヘッダー内の余白。上、右、下、左への順番。*/
}


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

	/*ヘッダーブロック*/
	header {
		display: flex;					/*flexボックスを使う指定*/
		justify-content: space-between;	/*並びかたの種類の指定*/
		align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
		
	}

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


/*ロゴ*/
#logo img {display: block;}
#logo {
	margin: 0;

	width: 250px;	/*ロゴ画像の幅*/
}

	/*画面幅400px以上の追加指定*/
	@media screen and (min-width:400px) {
	
	/*ロゴ*/
	#logo {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}	

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


/*header右側のボタン
---------------------------------------------------------------------------*/
/*ボタンブロック*/
header .btn {
	padding: 0; margin: 0;
	list-style: none;
}

/*ボタン１個あたり*/
header .btn li a {
	display: block;text-decoration: none;
	background: #ffa800;/*背景グラデーション*/
	color: #333;	/*文字色*/
border-radius:50px;
	padding: 0.5rem 1.5rem;	/*上下に0.5文字分、左右に1.5文字分、ボタン内に余白を作る*/
	color: #fff;
	font-weight: 900;
}
.btn li.tel a{
	display: block;
	text-decoration: none;
	background: none;
	padding: 0.1rem;
	color: #ffa800;
	font-weight: 900;
	font-size: 24px;
}


/*メニューブロック設定
---------------------------------------------------------------------------*/
#menubar a {display: block;text-decoration: none; }
#menubar ul {list-style: none;margin: 0 auto;padding: 0;font-family: "Font Awesome 5 Free";}
#menubar.d-n, #menubar_hdr.d-n, #menubar .ddmenu_parent ul {display: none;}
#menubar.d-b {display: block;}
#menubar_hdr.d-b {display: flex;}
#menubar {
	position: relative;z-index: 1;	/*スライドショーがある場合に下に隠れないようにするため*/
	font-size: 18px;	/*文字サイズ。端末サイズで文字サイズが変わると不具合が出る場合があるので、ここで統一しています。*/
	flex: 1;
}

/*ドロップダウンメニューのリンクタグ*/
#menubar .ddmenu {
	cursor: default;	/*リンク要素のカーソルを矢印に変更しておく*/
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	content: "\f078";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	font-weight: bold;	/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
	display: inline-block;
	transform: scale(0.7);	/*元々のサイズの70%に。*/
}

/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
.p #menubar > nav > ul {
	display: flex;		/*flexボックスを使う指定*/
	font-size: 0.9rem;	/*文字サイズ。90%。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
	color: #794723;

}

/*メニュー１個あたりの設定*/
.p #menubar a {
	padding: 10px;	/*メニュー同士の余白*/
}


#menubar ul li{  border-right: 1px dashed #714c3075;}

#menubar ul li:last-child{  border-right: none;}
/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.d-b {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px 20px 20px;			/*ブロック内の余白。上、左右、下。*/
	background:rgb(239 232 217 / 90%);		/*背景色。0,0,0は黒の事で0.9は色が90%出た状態。*/
	text-align: center;					/*内容をセンタリング*/
	animation: animation1 0.2s both;	/*animation.cssのanimation1を実行する。0.2sは0.2秒の事。*/
	color: #fff;						/*文字色*/
}

/*メニュー１個あたりの設定*/
.s #menubar a {
	color: #353230;
	padding: 10px;		/*メニュー内の余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 10px;			/*右からの配置場所指定*/
	top: 0;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	}

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

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

/*×印が出ている状態の設定。※１本目のバー。*/
#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;	/*２本目は使わないので非表示にする*/
}


/*スライドショー（vegasを使用）
ここでは、20:9の画像比率（9÷20=0.45）を読み込む指定を行なっています。
異なる画像比率にしたい場合、#mainimg-boxのpadding-topの数字を変更します。もし2:1にするなら50%です。
---------------------------------------------------------------------------*/
#mainimg-box {
	width: 100%;
	height: 0;
	padding-top: 45%;
	position: relative;z-index: -1;
}
#mainimg {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*コンテンツ（mainの１つ外側のブロック）
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
    margin-bottom: 150px;
	}
.text-overlay { 
position: absolute; 
top: 25%; 
left: 10%; 
transform: translate(-50%, -50%); 
color: white; 
font-size: 32px; 
font-weight: bold; 
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 font-family: 'Amatic SC', cursive;}

/*mainブロック
---------------------------------------------------------------------------*/
/*ブロック内のh2見出し*/
main h2 {
	text-align: center;		/*文字をセンタリング*/
	font-size: 2.8rem;		/*文字サイズ。bodyで指定しているfont-sizeの2.8倍。*/
	font-weight: normal;	/*h要素のデフォルトの太字を標準にする指定*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
	margin-bottom: 2em;		/*下に空けるスペース。ここのfont-sizeの2文字分。*/
	font-weight: 900;
}

/*h2の装飾文字部分*/
main h2 span {
	display: block;
	font-size: 0.3em;		/*文字サイズ。親要素（上のh2のfont-size）の30%。*/
	opacity: 0.5;			/*透明度。50%だけ色を出す指定。*/
	letter-spacing: 0.5em;	/*文字間隔を広くとる*/
	color: #ff8400;
}
main h2 span img{
  width: 30%;
}
/*h2の文字を左寄せで下線を引くタイプ*/
main h2.normal {
	text-align: left;	/*文字を左寄せ*/
	font-size: 2rem;	/*文字サイズ。bodyで指定しているfont-sizeの2倍。*/
	border-bottom: 1px solid #d1d3d3;	/*下線の幅、線種、色*/
	margin-bottom: 0.5em;	/*下に空けるスペース。ここのfont-sizeの2文字分。*/
}
.home_ttl-deco {
  top: -2vw;
  left: 0.2em;
  scale: 1.08 1;
  position: absolute;
  color: #FFC5A3;
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  font-size: max(8.5rem, min(10.4166666667vw, 11.25rem));
  line-height: 0.7;
  letter-spacing: 0.1em;
  white-space: nowrap;
  opacity: 0.08;
  font-weight: 900;
}





/*お客様の声で使っているボックス（2カラムブロック（※900px未満では１カラム））
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.list {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	margin-bottom: 5rem;	/*ボックスの下に5文字分のスペースを空ける*/
}

/*h4見出し*/
.list h4 {
font-size: 2.125rem;
  line-height: 1.7058823529;
  letter-spacing: 0.14em;


}
.list h4 span{
position: absolute;
  top: -0.05em;
  left: -0.1em;
  display: block;
  font-size: 50px;
  line-height: 1;
  color: #D0B07F;
  transform: rotate(-20deg);
  font-family: 'Nothing You Could Do', cursive;
  font-weight: 500;
  font-style: italic;


}
/*画像ブロック共通*/
.image-l img, .image-r img {
	
}
.deco {
  right: 30%;
  bottom: 50px;
  z-index: -1;
   transform: rotate(-20deg);
   position: absolute;
}
.deco2 {
  left: 34%;
  bottom: 800px;
  z-index: -1;
    transform: rotate(20deg);
   position: absolute;
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		
.list {
			flex-direction: row;			/*子要素を横並びにする*/
			justify-content: space-between;	/*並びかたの種類の指定*/
			align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
		}
		
		/*画像ブロック共通*/
.image-l,.image-r {
			width: 45%;		/*画像の幅*/
		}
		
		/*画像を右に配置する場合*/
 .image-r {
			margin-left: 2rem;	/*画像の左側に空けるスペース*/
		}
		
		/*画像を左に配置する場合*/
.image-l {
			order: -1;
			margin-right: 2rem;	/*画像の右側に空けるスペース*/
		}

		/*テキストブロック*/
 .text{
			flex: 1;
		}

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


/*ハウスメーカーからのお礼のブロック*/
.list-half .list-re {
	background: #e7f1f1;	/*背景色*/
	margin-top: -2rem;		/*上につめる*/
	margin-bottom: 5rem;	/*ボックスの下に5文字分のスペースを空ける*/
	padding: 2rem;			/*ブロック内の余白。*/
	font-size: 0.9rem;		/*文字サイズ。bodyで指定しているfont-sizeの0.9倍。*/
	border-radius: 10px;	/*角を丸くする指定*/
	position: relative;		/*下のbefore要素を絶対配置する為に必要な指定*/
}
.list-half .list-re::before {
	content: "▲";				/*この文字（▲マーク）を出力します*/
	font-size: 30px;			/*矢印（▲）のサイズ*/
	color: #e7f1f1;				/*色*/
	position: absolute;			/*絶対配置する*/
	top: -1.2em;				/*上からの配置場所の指定*/
	left: calc(50% - 0.5em);	/*左からの配置場所の指定*/
	transform: scale(1.5, 0.8);	/*大きさを少し横長にする。横に1.5倍、縦に0.8倍です。*/
}
/*====================================================================
 .accordionよくある質問
====================================================================*/

.acd-check{
    display: none;
}
.acd-label {
background: #e3d4c4;
    color: #663232;
  display: block;
  padding: 14px;
  position: relative;
  border: 1px solid  #663232;
  font-weight: 700;
  border-radius: 30px;

}
.acd-label span{
    padding-left: 30px;

}
.acd-label:after{
    box-sizing: border-box;
    content: '\f067';
    display: block;
    font-family: "Font Awesome 5 Free";
    height: 100%;
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 0px;
	font-weight: 900;
}
.acd-content{
    display: block;
    height: 0;
    opacity: 0;
    padding:10px;
    transition: .5s;
    visibility: hidden;
	margin: 0 0 5px;


}
.acd-check:checked + .acd-label:after{
    content: '\f068';
}
.acd-check:checked + .acd-label + .acd-content{
    height: 100%;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}

.acd-content p{
  line-height: 2em;
  letter-spacing: 1px;
}

ul.paint, ol {
  background: #f1f8ff;
  box-shadow: 0px 0px 0px 10px #f1f8ff;/*線の外側*/
  border: dashed 2px #668ad8;/*破線*/
  border-radius: 9px;
  margin-left: 10px;/*はみ出ないように調整*/
  margin-right: 10px;/*はみ出ないように調整*/
  padding: 0.5em 0.5em 0.5em 2em; 
  
  width:100%;
  margin:30px auto;
  
  }
  
  ul.paint span{
    color: #267fc1;
    font-weight: 700;
  
  }

ul.paint li, ol li {
  line-height: 1.5;
  padding: 1em 0;
   list-style:none;
   border-bottom: 1px dashed #78b2dd;
}
ul.paint li:last-of-type {
  border-bottom: none;/*最後のliの線だけ消す*/
}

/*３列タイプのボックス（grid）
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.list-grid .list {
	position: relative;
    display: grid;	/*gridを使う指定*/
    grid-template-rows: auto 1fr auto;	/*list内の上から２番目のブロック(.text)だけ伸ばし、他は自動。*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	background: #fff;
  padding: 8%;
  border-radius: 30px;
  border: 4px #ff8401 dotted;

}

/*ボックス内のh4タグ*/
.list-grid .list h4 {
	margin: 0;
	text-align: center;
font-size: 21px;
}

/*ボックス内のpタグ*/
.list-grid .list .text p {
	margin: 0;
	font-size: 0.8em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
	text-align: center;
}

/*ボックス内のfigure画像*/
.list-grid .list figure {
	margin-bottom: 1rem;	/*下に空けるスペース*/
}
.list-grid .list img{border-radius: 50%;}



h3.work{
    text-align: center;
    font-size: 24px;
}

span.work2{
    background: #c9a95e;
    color: fff;
    color: #fff;
    padding: 1% 2%;
    width: 200px;
    text-align: center;
    border-radius: 30px;
}
/*ボックス内のh4タグ*/
.list-work .list4 h4 {
	margin: 0;
	text-align: center;
font-size: 32px; 	
color: #f98556;
font-family: 'Kaushan Script', cursive;
}

.list-work .list4 .text p {
	margin: 0;
	font-size: 0.8em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
	text-align: center;
}

.list-work .list4 figure {
	margin-bottom: 1rem;	/*下に空けるスペース*/
}
.list-work .list4 img{border-radius: 30px;}

/*ボックス内のh4タグ*/
.list-painttime .list5 h4 {
	margin: 0;
	text-align: center;
font-size: 21px; 	
color: #f98556;
}

.list-painttime .list5 .text p {
	margin: 0;
	font-size: 0.8em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
	text-align: center;
}

.list-painttime .list5 figure {
	margin-bottom: 1rem;	/*下に空けるスペース*/
}
.list-painttime .list5 img{border-radius: 30px;}


/*ボタン*/
.c-btn.slide {
  background: #fff;
  color: #ff8401;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  text-align: center;
  border: 2px #ff8401 solid;
  padding: 8px;
}
.c-btn.slide::after {
  background: #ff8401;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.c-btn.slide:hover {
  color: #fff;
}
.c-btn.slide:hover::after {
  transform: scale(1, 1);
}
.c-btn.slide a{
 text-decoration: none;
}

/*施工事例ボタン*/
.c-btn2.slide {
  background: #fff;
  color: #ff8401;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  text-align: center;
  border: 2px #ff8401 solid;
  padding: 8px;
  width: 30%;
  margin: 0 auto;
}
.c-btn2.slide::after {
  background: #ff8401;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.c-btn2.slide:hover {
  color: #fff;
}
.c-btn2.slide:hover::after {
  transform: scale(1, 1);
}
.c-btn2.slide a{
 text-decoration: none;
}

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

	/*listブロック全体を囲むブロック*/
	.list-grid {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: repeat(3, 1fr);	/*３列にする指定。４列にしたければrepeat(4, 1fr)とする。*/
		gap: 2rem;	/*マージン的な指定。２文字分。*/
		max-width:1000px;
        margin: 0 auto;
	}
	
	/*ボックス１個あたり*/
	.list-grid .list {
		margin-bottom: 0;	/*ボックス同士の上下間に空けるスペースをリセット*/
	}


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


/*施工事例
---------------------------------------------------------------------------*/
.list-work .list2 {
	position: relative;
    display: grid;	/*gridを使う指定*/
    grid-template-rows: auto 1fr auto;	/*list内の上から２番目のブロック(.text)だけ伸ばし、他は自動。*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
  padding: 8%;

}

/*ボックス内のh4タグ*/
.list-work .list2  h4 {
	margin: 0;
	text-align: center;
font-size: 21px;
}

/*ボックス内のpタグ*/
.list-work .list2 .text p {
	margin: 0;
	font-size: 0.8em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
	text-align: center;
}

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



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

	/*listブロック全体を囲むブロック*/
	.list-work1  {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: repeat(3, 1fr);	/*３列にする指定。４列にしたければrepeat(4, 1fr)とする。*/
		gap: 2rem;	/*マージン的な指定。２文字分。*/

	}
	
	/*ボックス１個あたり*/
	.list-work .list2 {
		margin-bottom: 0;	/*ボックス同士の上下間に空けるスペースをリセット*/
	}
	
			/*listブロック全体を囲むブロック*/
	.list-work {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: repeat(2, 1fr);	/*３列にする指定。４列にしたければrepeat(4, 1fr)とする。*/
		gap: 2rem;	/*マージン的な指定。２文字分。*/
	}
	
	/*ボックス１個あたり*/
	.list-work .list4 {
		margin-bottom: 0;	/*ボックス同士の上下間に空けるスペースをリセット*/
	}
			/*listブロック全体を囲むブロック*/
	.list-painttime {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: repeat(3, 1fr);	/*３列にする指定。４列にしたければrepeat(4, 1fr)とする。*/
		gap: 2rem;	/*マージン的な指定。２文字分。*/

	}
	} /*追加指定ここまで*/
/*お問い合わせ
---------------------------------------------------------------------------*/
.list-info .list3 {
	position: relative;
    display: grid;	/*gridを使う指定*/
    padding: 2%;
background: #fbd4d4;
    text-align: center;
    border-radius: 50px;

}
.list-info .list3 p{
	margin: 0;
}
.fs15{
	font-size: 15px;
}
.yl{
background:#fbd60c !important;}
/*ボックス内のh4タグ*/
.list-info .list3  h4 {
	margin: 0;
	text-align: center;
font-size: 21px;
}

/*ボックス内のpタグ*/
.list-info .lis3 .text p {
	margin: 0;
	font-size: 0.8em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
	text-align: center;
}

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



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

	/*listブロック全体を囲むブロック*/
	.list-info {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: repeat(2, 1fr);	/*2列にする指定。４列にしたければrepeat(4, 1fr)とする。*/
		gap: 2rem;	/*マージン的な指定。２文字分。*/
	}
	
	/*ボックス１個あたり*/
	.list-info .list3 {
		margin-bottom: 0;	/*ボックス同士の上下間に空けるスペースをリセット*/
	}

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

/*FAQ
---------------------------------------------------------------------------*/
/*質問*/
.faq dt {
	border-radius: 30px;		/*枠を角丸にする指定*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	background: #fff;		/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	text-indent: -2rem;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
    content: "\f059";	/*アイコンのコード*/
	padding-right: 1rem;	/*アイコンとテキストとの間のスペース*/
	color: #ff8605;
}

/*回答*/
.faq dd {
	padding: 5px 1rem 30px 3rem;		/*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}


/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.thumbnail-view {
	max-width: 1000px;		/*最大幅*/
	margin: 0 auto 1rem;	/*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
	text-align: center;		/*画像が小さい場合でもセンタリングされるように*/
}

/*サムネイル全体を囲むブロック*/
.thumbnail {
	display: flex;				/*flexを使う指定*/
	justify-content: center;	/*並びかたの種類の指定。これはセンタリングする指定。*/
	margin-bottom: 2rem;		/*下に空けるスペース。２文字分。*/
}

/*サムネイル画像*/
.thumbnail img {
	width: 100px;		/*サムネイルの幅*/
	margin: 2px;		/*サムネイル間のスペース*/
	cursor: pointer;	/*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインターにしておきます。*/
	transition: 0.3s;	/*マウスオンまでにかける時間。3秒。*/
}
.thumbnail img:hover {
	opacity: 0.8;	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}


/*詳細ページ（item.html）で使っている「前のページに戻る」ボタン
---------------------------------------------------------------------------*/
.back {
	text-align: center;
}
.back a {
	text-decoration: none;display: inline-block;
	padding: 0.5rem 2rem;	/*ボタン内の余白。上下、左右。*/
	border-radius: 30px;	/*角を丸くする指定。ある程度大きければ適当でいいです。*/
	background: #eee;		/*背景色*/
}
.back a::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f0d9";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	padding-right: 0.8em;	/*アイコンとテキストの間の余白*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
	opacity: 0.5;			/*色を50%だけ出す*/
}


/*bg1（背景色がついたブロック）
---------------------------------------------------------------------------*/
.bg1 {
	background: #ffebe4;	/*背景色。css冒頭で指定しているテーマカラーを読み込みます*/
 margin: -40px auto;
	
}

/*リンクテキスト*/
.bg1 a {
	color: inherit;
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
/* table01 */
.ta1{
  width: 100%;
}

.ta1 th{
  position: relative;
 ext-align: center;
  width: 15%;
      background: #f5d5d5;
    border-bottom: #fff 1px solid;
   
}


.ta1 td{
  text-align: left;
      padding: 3% 2%;
  width: 85%;
width: 85%;
    background: #f1eaea;
    border-bottom: #fff 1px solid;
}

/* sp */
@media only screen and (max-width: 480px) {
  .ta1 th,
  .ta1 td {
    width: 100%;
    display: block;
  }

  .ta1 th {
    width: 100%;
  }

}
	
/*フッター設定
---------------------------------------------------------------------------*/
footer .pr {display: block;font-size: 80%;}
footer {
	clear: both;
	line-height: 1.5;	/*行間を基準より少し狭くする*/
	padding: 50px 0 0;	/*上、左右、下へのボックス内の余白*/
	  background-color: #958071;
	overflow: hidden;
		color: #fff;
	
}
footer a {
	color: #fff;	/*リンクの文字色*/
}
footer a:hover {
	color: #fff;	/*マウスオン時のリンクの文字色*/
}
/*footer内のh3タグ*/
footer h3 {
	margin-bottom: 10px;
	font-size: 24px;	/*文字サイズ*/
}

/*footer内の段落タグ*/
footer p {
	padding: 0px 10px 20px;	/*上、左右、下への余白*/
}
/*footer内の左側のブロック指定*/
#footer-left {
	width: 43%;	/*幅*/
	float: left;	/*左に回り込み*/
	padding-left: 5%;	/*左に空ける余白*/
	padding-bottom: 50px;	/*下に空ける余白*/
}
/*フッターのロゴブロック*/
#footer-logo {
	 padding-bottom: 10px;
	 margin-bottom: 10px;
	}
/*フッターのロゴ画像*/
#footer-logo img {
	 width: 75%;	/*画像の幅*/
}
/*footer内の右側のブロック指定*/
#footer-right {
	width: 43%;	/*幅*/
	float: right;	/*右に回り込み*/
	padding-right: 5%;	/*右に空ける余白*/
	padding-bottom: 50px;	/*下に空ける余白*/
}

/*フッター内のfacebookなどのアイコン設定
---------------------------------------------------------------------------*/
/*アイコン画像１個あたりの設定*/
#icon img {
	width: 40px;	/*アイコンの幅*/
	margin-right: 10px;	/*アイコン同士の余白*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
#footermenu {
	clear: both;
	text-align: center;
	padding-bottom: 20px;
}
#footermenu li {
	display: inline;
	margin: 10px;
}
/*フッターSNSicon
---------------------------------------------------------------------------*/
ul.icon {
    text-align: center;
	padding-bottom: 50px;
}
ul.icon li {
margin-right: 2%;
	float: left;
width: 10%;
}



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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 10px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	background: rgba(0,0,0,0.3);	/*背景色。0,0,0は黒の事で0.3は色が30%出た状態。	*/
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	color: #fff;		/*文字色*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.color-theme, .color-theme a {color: var(--secondary-color) !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 100%;display: block;}
.wl {width: 100%;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; 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;}
.wh{color:#fff; !important;}
.mb-5 {margin-bottom: -5px;}
.mb-10{ margin-top: -10px;}
.mb20{ margin-bottom: 20px;}
.mb40{ margin-bottom: 40px;}
.fs11{font-size: 11px;}
.pt50{padding-top: 50px;}




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

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

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


	/*画面幅850px以下の追加指定*/
@media screen and (max-width:850px) {
	.inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}
	main h2 span img {
    width: 100%;
}
	header {
  padding: 5px 5% 5px 1%;
}
	header .btn {
  display: none;
}
.c-btn2.slide {

  width: 80%;

}
#footer-left {
  width: 100%;
  float: none;
  padding-left: 0;
  padding-bottom: 0;
}
#footer-right {
  width: 100%;
  float: none;
  padding-right: 0;
  padding-bottom: 50px;
}
footer p {
  padding: 0 10px;
}
footer {

  font-size: 100%;

}
  }
	
	
	
	
	
@media screen and (max-width:450px) {
	footer h3 {
    padding-left: 10px;
	margin-top: 0;
}
	ul.paint span {
       display: block;
}
main h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  font-weight: 900;
}
.list h4 {
	 text-align: center;
  font-size: 2rem;
  line-height: 1.7058823529;
}
.list-info .list3 {
  margin-bottom: 20px;
}
}



/* 追従バナー */
.floating-banner {
  position: fixed; /* バナーを追従させる */
  z-index: 99999; /* 他の要素の下に隠れないように */
  bottom: 0; /* バナーの上下の位置 */
  transition: transform 0.5s ease;
  will-change: transform;
  left: 75%;
  translate: -50%;
  padding: 5px;
  text-align: center;
  transform: translateY(0);
  width: 40%;

}
.floating-banner__image {
  max-width: 100%; /* 画像の最大幅 */
}
@media screen and (max-width: 990px) { /* タブレット用のブレイクポイントを指定 */
.floating-banner {
   left: 0;
  translate:0;
  padding: 5px;
  text-align: center;
  transform: translateY(0);
  width: 80vw;

    
  }
}
@media screen and (max-width: 560px) { /* スマホ用のブレイクポイントを指定 */
  .floating-banner {
    display: block;/* 消していたバナーを表示させる */
    width: 100vw; /* スマホの画面幅いっぱいにバナーを表示 */
  }
}
@media screen and (max-width: 900px) { /* 900px以下 */
.text-overlay {
    display: none;

}
#menubar ul li {
    border-right: none;
}
}