@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");

.clear{
  clear: both;
}
.work_ins iframe{
  overflow: hidden;
  clear: both;
  max-height:100%;
height:3000px;
}


/* 斜め配置 clip-path */
.Block2 {
  -webkit-clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 100%);
background-color: #eef9f5;
   overflow: hidden;
  padding: 150px 50px 10px 50px;
}
.insta_btn2{/*ボタンの下地*/
  color: #FFF;/*文字・アイコン色*/
  border-radius: 7px;/*角丸に*/
  position: relative;
  display: inline-block;
  height: 50px;/*高さ*/
  width: 190px;/*幅*/
  text-align: center;/*中身を中央寄せ*/
  font-size: 25px;/*文字のサイズ*/
  line-height: 50px;/*高さと合わせる*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;/*はみ出た部分を隠す*/
  text-decoration:none;/*下線は消す*/
}

.insta_btn2:before{/*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn2 .fa-instagram{/*アイコン*/
  font-size: 35px;/*アイコンサイズ*/
  position: relative;
  top: 4px;/*アイコン位置の微調整*/
}

.insta_btn2 span {/*テキスト*/
  display:inline-block;
  position: relative;
  transition: .5s
}

.insta_btn2:hover span{/*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}


h2 img{
  width: 300px;
}

.bg1 {
  background: #e9f2e8;
  padding: 5% 0 0 0;
  overflow: hidden;
  clear: both;
}

 {
  background: #fff url(../images/bg3.jpg) center 100% no-repeat;
  padding: 10% 0;
}
.inner{
  max-width: 1000px;
  margin: 100px auto;
}

#submainimg-box{margin-top: 50px;}
#submainimg-box img{
  width: 100%;
}
 #submainimg-box p{
  top: 100px;
  position: absolute;
  left: 45%;
  font-size: 30px;
  font-weight: 900;
}

.br-sp {
  display: none; 
}
  .br-pc {
    display: block; 
  }
@media screen and (max-width: 768px) {
  .br-sp {
    display: block; 
  }
  .br-pc {
  display: none; 
}
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
 
::-webkit-scrollbar-thumb {
  background: #ff8095;
  border-radius: 5px;
}



/*---index施工事例--*/

    .slide-container {
        width: 100%;
          display: flex;
        align-items: center;
        overflow: hidden;
		margin: 50px auto;
    }
    .slide-wrapper {
      display: flex;
      animation: slide-flow 55s infinite linear 1s both;
    }
	.slide{
  width: 750px;
  object-fit:cover;
  border: 1px solid #ddd;
}
  
@keyframes slide-flow {
     0% {transform: translateX(0);}
 100% {transform: translateX(-100%);}
}


 .slide-paused:hover .slide-wrapper {
       animation-play-state: paused;
     }
     .slide-paused:hover .slide-wrapper img:hover {
       opacity: .8;
       cursor: grabbing;
     }
/*---indexボタン--*/
a.btn_24 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 250px;
	margin: auto;
	padding: 0.5rem 4rem;
	border-radius: 4px;
	border: 1px solid #8a8c8c;
	color: #8a8c8c;
	position: relative;
 	overflow: hidden;
	transition: all 0.2s ease-in;
	ont-family: 'Oswald', sans-serif;
	clear: both;
}
a.btn_24:before {
 content: "";
 position: absolute;
 left: 50%;
 transform: translateX(-50%) scaleY(1) scaleX(1.25);
 top: 100%;
 width: 140%;
 height: 180%;
 background-color:#859a9f;
 border-radius: 50%;
 display: block;
 transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
 z-index: -1;
}
 
a.btn_24:after {
 content: "";
 position: absolute;
 left: 55%;
 transform: translateX(-50%) scaleY(1) scaleX(1.45);
 top: 180%;
 width: 160%;
 height: 190%;
 background-color: #27acd9;
 border-radius: 50%;
 display: block;
 transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
 z-index: -1;
}
 
a.btn_24:hover {
 color: #ffffff;
 border: 1px solid #859a9f;
}
 
a.btn_24:hover:before {
 top: -35%;
 background-color: #859a9f;
 transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
 
a.btn_24:hover:after {
 top: -45%;
 background-color: #859a9f;
 transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/*index.html　コラム
---------------------------------------------------------------------------*/

.list {

    position: relative;
    overflow: hidden;
    float: left;
width: 100%;
margin: 0 0.5% 20px 0.5%;
padding: 1%;
margin: 10px auto;
    
}
.list figure img {
    display: block;
      margin-bottom: 5px;
	  width: 100%;

}

.list h4{
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    color: #403934;
border: none;
}
.list p {
height:auto;

}

.list3 h4 {
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  color: #403934;
  border: none;
  margin: 10px auto;
}

.list3 p {
  text-align: left;
  font-size: 13px;
  color: #403934;
  border: none;
    overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 任意の行数を指定 */
}
}
.list3 a{
 text-decoration: none; 
}
.list3 span a{
 text-decoration: none; 
}


.list4 h4 span.uline {
  display: inline-block;
  border-bottom: 3px solid #9a8758;
  position: relative;
  bottom: -3px;
  padding: 0 1rem;
}
.list-half .list4 {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.list4 h5 {
  font-size: 1.1rem;
  margin: 0 1rem 1rem;
}
.list4 figure {
  margin-bottom: 2rem;
}
.list-half .image-l img, .list-half .image-r img {
  border-radius: 50px;
  box-shadow: 10px 10px rgba(0,0,0,0.1);
}
p.time{
  text-align: left;
  font-size: 11px;
  color: #403934;
  border: none;
}
p.time span::before {
  color: #999;
  content: "|";
  display: inline-block;
  margin-left: 6px;
  margin-right: 6px;
}
html,body {
	height: 100%;
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	html, body {
			font-size: 16px;	/*基準となるフォントサイズ。*/
		}

	}/*画面幅900px以上の追加指定ここまで*/


	
	body {
	font-family: DM Sans,Helvetica Neue,Yu Gothic,YuGothic,Hiragino Sans,"\30D2\30E9\30AE\30CE\89D2\30B4 ProN W3",Hiragino Kaku Gothic ProN,Verdana,Meiryo,"M+ 1p",sans-serif;
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #4d4a4a;		/*文字色*/
	line-height: 2;		/*行間*/
	animation: opa1 0.3s 0.5s both;	/*0.5秒の間だけ非表示にし、その後0.3秒かけてフェードイン表示。上部のメインメニューのデフォルトが一瞬見えてしまうのを回避する為の応急措置です。*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;
vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
section + section {
	margin-top: 3rem;
	overflow: hidden;
}


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

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


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	max-width: 100%;				/*サイトの最大幅。これ以上広がらない。*/
	margin: 0 auto;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header{
display: flex;
justify-content: space-between;
align-items: center;
background: #859a9f;
position: fixed;
z-index: 1;
width: 100%;
padding: 0 3%;
height:50px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
border-bottom: 1px solid #9c9c9c;

}

/*トップページ以外のヘッダーブロック*/
body:not(.home) header {
	background: linear-gradient(#333, rgba(0,0,0,0.7));	/*背景グラデーション。0,0,0は黒ことで0.7は色が70%出た状態。*/
}

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

	/*ヘッダーブロック*/
	header {
		padding: 0 20px;	/*ヘッダー内の余白。上下、左右への順番。*/
		height: 50px;		/*ヘッダーの高さ*/
		margin: 0;		/*headerの外側にとるスペース*/
		width: 100% ;	/*pxの値は、上のmargin(両サイドなので２倍)を合計した数字です。*/
	}

	}/*画面幅600px以下の追加指定ここまで*/


/*ロゴ*/
#logo img {display: block;
width: 200px;}

#slide_logo img{
	position: absolute;
left: 1%;
top: 30px;
width: 200px;
}
#slide_logo {
	
}

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

#mainimg-box {
  width: 100%;
  height: 0;
   position: relative;
  z-index: -1;
}


/*メニューブロック設定
---------------------------------------------------------------------------*/
#menubar a {display: block;text-decoration: none;color: #eee;}
#menubar ul {list-style: none;margin: 0;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;	/*文字サイズ。端末サイズで文字サイズが変わると不具合が出る場合があるので、ここで統一しています。*/
	
}

/*ドロップダウンメニューのリンクタグ*/
#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ボックスを使う指定*/
	margin-left: 30px;	/*左側にとるスペース。ロゴとの間の間隔を調整します。*/
	font-size: 0.85rem;	/*文字サイズ。85%。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
}

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

/*現在表示中（current）のメニュー*/
.p #menubar li.current a {
	color: #026dac;	/*文字色*/
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.p #menubar ul ul {
	position: absolute;z-index: 100;
	border-radius: 10px;	/*角を丸くする指定*/
	overflow: hidden;
	text-align: center;		/*文字をセンタリング*/
	color: #555;			/*文字色*/
}

/*メニュー１個あたり*/
.p #menubar ul ul a {
	color: inherit;
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白のことで0.8は色が80%出た状態*/
	padding: 10px 20px;				/*上下、左右へのメニュー内の余白*/
}


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.d-b {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px 20px 20px;			/*ブロック内の余白。上、左右、下。*/
	background: rgba(0,0,0,0.9);		/*背景色。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: inherit;
	padding: 10px;		/*メニュー内の余白*/
}


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

	/*画面幅600px以下の追加指定*/
	@media screen and (max-width:600px) {
	
	/*３本バーを囲むブロック*/
	#menubar_hdr {
		right: 20px;		/*右からの配置場所指定*/
		top: 0;			/*上からの配置場所指定*/
	}
	
	}/*画面幅600px以下の追加指定ここまで*/
	
	
/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;			/*アニメーションにかける時間。0.3秒。*/
	border-top: 2px solid #d0caca;
}

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


/*コンテンツ（フッター関連「以外」を囲むブロック）
---------------------------------------------------------------------------*/
.bg2 {
 background: #edfbec;
  overflow: hidden;
  padding: 5%;
}
/*コンテンツブロック*/
#contents {
	flex: 1;
	}

/*トップページ以外のコンテンツブロック*/
body:not(.home) #contents {
	padding-top: 150px;	/*上にとる余白。headerがfixedなので、ここの設定がないとheaderに重なってしまいます。*/
}

	/*画面幅600px以下の追加指定*/
	@media screen and (max-width:600px) {
	
	/*コンテンツブロック*/
	#contents {
		padding:0;	/*コンテンツ内の余白*/
		margin-top: 30px;
		
	
	}
	
	/*トップページ以外のコンテンツブロック*/
	body:not(.home) #contents {
		padding-top: 100px;	/*上にとる余白*/
	}

	}/*画面幅600px以下の追加指定ここまで*/


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {
	margin: 0 3%;	/*ブロックの外側に空けるスペース*/
}


main.column .main {
	margin-bottom: 30px;		/*ボックスの下に空けるスペース。subとの間の余白です。*/
}

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

	/*カラムで使う為の指定*/
	main.column {
		display: flex;	/*flexボックスを使う指定*/
		justify-content: space-between;	/*並びかたの種類の指定*/
		max-width: 1200px;
    margin: 0 auto;
	}
	
	/*2カラムの中にある.main要素（頭にドットがない「main」とは異なるので注意して下さい）*/
	main.column .main {
		margin-bottom: 0;
		order: 2;					/*並び順。数字の小さい順番に表示されます。*/
		max-width: 70%;
    margin: 0 auto;
    padding: 0 3%;

	}
	

	} /*画面幅900px以上の追加指定ここまで*/


/*h2タグ
---------------------------------------------------------------------------*/
/*h2タグ全体*/
h2 {
font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
text-align: center;
  font-size: 2.271rem;
  line-height: 1;
  text-transform: uppercase;
   letter-spacing: 0.05em;
   color: #848484;
   line-height: 1.3em;
}




/*右側の装飾文字の設定*/
h2 span {
	font-size: 0.3em;
	display: block;
	font-family: 'Oswald', sans-serif;
	margin-top: 10px;
	color: #848484;
}


/*h3タグ
---------------------------------------------------------------------------*/
h3 {
	margin: 0 0 1rem;	/*h3の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.2rem;	/*文字サイズ*/
	padding: 10px 1rem;	/*h3内の余白。上下、左右への順番。*/
	border-bottom: 2px solid #555;	/*薄い色の線の幅、線種、色*/
	font-weight: normal;	/*デフォルトの太字を標準に*/
}


/*pタグ
---------------------------------------------------------------------------*/


/*微調整*/
#contents p + p {
	margin-top: -1rem;	/*段落が続いた場合に、少し上に詰める。*/
}


/*sub,sideブロック設定
---------------------------------------------------------------------------*/
#contents .sub h3::before, #contents .side h3::before {border: none;padding: 0;}
/*ブロック内のh3タグ*/
#contents .sub h3, #contents .side h3 {
	margin: 0;border: none;
	font-weight: normal;
	font-size: 1.1rem;
	background: #859a9f;	/*背景色*/
	color: #fff;		/*文字色*/
	text-align: center;	/*内容をセンタリング*/
	padding: 0.5em;		/*タグ内の余白*/
}
#contents .sub h3 a, #contents .side h3 a {color: inherit;}

/*コラムページ
---------------------------------------------------------------------------*/
main.column img{
  width: 100%;
}


 .sub{
width: 27%;
  order: 2;
  margin-top: 50px;
}
 .close{ display: none; }
    .nav-open{
    	padding: 15px;
    	color: #fff;
    	background: #3c3c3c;
    	position: relative;
    }
    .nav-open::before{/* 閉じている時 */
    	content: "＋";
    	position: absolute;
    	right: 20px;
    }
    .nav-open.active::before{/* 開いている時 */
    	content: "－";
    }
	
 .close ul li{
  padding: 0 25px;
}

 .close ul li a{
color: #4b4747;
}
/*サブメニュー設定
---------------------------------------------------------------------------*/
/*サブメニューブロック全体*/
.submenu1 {
	padding: 0;
	margin: 0 0 1rem;	/*上、左右、下へのマージン*/
}

/*メニュー１個あたり*/
.submenu1 {
	border-bottom: 1px solid rgba(0,0,0,0.1);	/*下線の幅、線種、色。0,0,0は黒の事で0.1は色が10%出た状態。*/
}
.submenu1 a {
	display: block;text-decoration: none;
	background: #3c3c3c;	/*背景色*/
	padding: 0.2rem 0.5rem;	/*上下、左右へのメニュー内の余白*/
}
.submenu1 img{
 width: 50px !important;
 float: left;
  margin-right: 10px;
  padding-top: 10px;
} 
.list2{border-bottom: 1px solid rgba(0,0,0,0.1);} 
.submenu {
	padding: 0;
	margin: 0 0 1rem;	/*上、左右、下へのマージン*/
}
.list2 a{color: #eee;} 
/*メニュー１個あたり*/
.submenu li {
	border-bottom: 1px solid rgba(0,0,0,0.1);	/*下線の幅、線種、色。0,0,0は黒の事で0.1は色が10%出た状態。*/
}
.submenu a {
	display: block;text-decoration: none;
	background: #3c3c3c	;/*背景色*/
	padding: 0.2rem 1rem;	/*上下、左右へのメニュー内の余白*/
	color: #eee;
}
/*アイコン（Font Awesome）*/
.submenu a::before {
	transition: 0.3s;
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f0da";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #ABABAB;			/*アイコンの色*/
	padding-right: 0.8em;	/*アイコンとテキストの間の余白*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
}

/*マウスオン時のアイコン設定*/
.submenu a:hover::before {
	color: #666;			/*アイコンの色*/
}


/*box1設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
.box1 {
overflow: hidden;
  color: #666;
 margin: 0 2% 50px;
}

.box1 h4{
text-align: center;
  font-size: 26px;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    letter-spacing: 0.1em;
}

.box1 p{
  letter-spacing: 0.1em;
}
img.fr, figure.fr {
  float: right;
  margin: 10px;
}

.box1 img{
  width: 100%;
 
}
.w45p {
  width: 45%;
}


.w50p {
  width: 50%;
}

.fl {
  float: left;
}
.fr {
  float: right;
}

.box2 {
overflow: hidden;
  color: #666;
 margin: 0 2% 50px;
}


/*フッターメニュー
---------------------------------------------------------------------------*/
/*フッター設定
---------------------------------------------------------------------------*/
footer {
	position: relative;
	z-index: 20;
	clear: both;
	line-height: 1.5;	/*行間を基準より少し狭くする*/
	padding: 50px 0 0;	/*上、左右、下へのボックス内の余白*/
	font-size: 85%;		/*文字サイズ*/
background: #E5E1DF;
}
#footermenu a {
	color: #fff;	/*リンクの文字色*/
	text-decoration: none;
}
#footermenu a:hover {
	color: #5dd0fd;	/*マウスオン時のリンクの文字色*/
}


.footer-c {
padding: 10px 0 75px;
text-align: center;
border-bottom: 1px solid;
}
/*フッターのロゴブロック*/
#footer-logo {
	 padding-bottom: 10px;
	 margin-bottom: 10px;
	}
/*フッターのロゴ画像*/
#footer-logo img{
	 width: 450px;	/*画像の幅*/
}
/*フッターメニュー
---------------------------------------------------------------------------*/
#footer-left {
    width: 45%;
    float: left;
    padding-left: 5%;
    padding-bottom: 50px;
}
#footer-right {
    width: 45%;
    float: right;
	margin-top: 30px;

}


#footermenu {
	clear: both;
	text-align: center;
	padding: 20px 0;
background: #859a9f;
margin: 0;
border-bottom: 1px #fff solid;
}
#footermenu li {
	display: inline;
	margin: 10px;
}

.footer-tel{
	font-size: 180%;
}
#copyright {
  color: #fff;
  background: #859a9f;
  padding: 1% 0;
 }
/*.listブロック共通
---------------------------------------------------------------------------*/
.list {
	position: relative;
}




/*３列タイプのボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.list-grid .list {
	margin-bottom: 1rem;	/*ボックス同士の上下間に空けるスペース*/
	padding: 20px;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のh4タグ*/
.list-grid .list h4 {
	margin: 0;
}

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

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

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

	/*listブロック全体を囲むブロック*/
	.list-grid {
		display: flex;		/*flexボックスを使う指定*/
		flex-wrap: wrap;	/*折り返す指定*/
	}

	/*１個あたりのボックス設定*/
	.list-grid .list {
		width: 32%;			/*幅。３列になります。*/
		margin-right: 2%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	}
	
	/*3の倍数目のボックスの右側のマージンをなくす*/
	.list-grid .list:nth-of-type(3n) {
		margin-right: 0;
	}

	/*ボックス内のtextブロック*/
	.list-grid .list .text {
		flex: 1;
	}

	}/*画面幅900px以上の追加指定ここまで*/


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 1rem;	/*上下、左右へのボックス内の余白*/
}

/*日付(dt)、記事(dd)共通設定*/
.new dt,
.new dd {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
.new dt {
	width: 8em;	/*幅。8文字(em)分*/
}

/*日付の横のマーク（共通設定）*/
.new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}

/*記事(dd)設定*/
.new dd {
	width: calc(100% - 8em);	/*「8em」は上の「.new dt」のwidthの値です*/
}

.list a{
	text-decoration: none;
    
}	




/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
		
		/*（トップページ事例
---------------------------------------------------------------------------*/


.list {
	 overflow: hidden;
    float: left;
width: 32%;
margin: 0 5px 20px 5px;
padding: 1%;
    
}

.list3 {
	 overflow: hidden;
    float: left;
width: 31%;
margin: 0 5px 20px 5px;
padding: 1%;
    
}


	/*日付(dt)設定*/
	.new dt {
		width: 14em;	/*幅。14文字(em)分。アイコン分も含んだ幅にします。*/
		display: flex;	/*flexボックスを使う指定*/
		justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
	}

	/*日付の横のマーク（共通設定）*/
	.new dt span {
		display: inline-block;	/*表示させる*/
		width: 7em;				/*幅。7文字(em)分。*/
		background: #999;		/*背景色*/
		color: #fff;			/*文字色*/
		font-size: 0.8em;		/*文字サイズを80%に。*/
		text-align: center;		/*文字をセンタリング*/
		margin-right: 1em;		/*アイコンの右側に空けるスペース*/
		align-self: flex-start;	/*高さを間延びさせない指定*/
		line-height: 1.8;		/*行間を少し狭く*/
		position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
		border-radius: 2px;		/*角を丸くする指定*/
	}

	/*icon-bg1設定。サンプルテンプレートでは「●●●重要」と書いてあるマーク*/
	.new dt span.icon-bg1 {
		background: #49bbfe;	/*背景色*/
	}

	/*icon-bg2設定。サンプルテンプレートでは「●●●サービス」と書いてあるマーク*/
	.new dt span.icon-bg2 {
		background: #555;	/*背景色*/
	}

	/*記事(dd)設定*/
	.new dd {
		width: calc(100% - 14em);	/*「14em」は上の「.new dt」のwidthの値です。*/
	}

	}/*画面幅900px以上の追加指定ここまで*/




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


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 10px 5px;		/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #666;		/*背景色*/
	color: #fff;			/*文字色*/
	margin-bottom: 15px;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 10rem;		/*最後の「2rem」がテーブルの下に空けるスペースです。２文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom:  1px solid #c8c3c1;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
	
}

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

		/*テーブル１行目に入った見出し部分（※caption）*/
		.ta1 caption {
			padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
		}

		/*th（左側）、td（右側）の共通設定*/
		.ta1 th, .ta1 td {
			padding: 20px 50px;		/*上下、左右へのボックス内の余白*/
		}



	}/*画面幅900px以上の追加指定ここまで*/


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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	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%;	/*円形にする*/
}


/*その他
---------------------------------------------------------------------------*/
.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;}
.mb50 {margin-bottom: 50px !important;}
.mt50 {margin-top: 50px !important;}
.look {display: inline-block;padding: 0px 10px;background: #333;border: 1px solid #777; 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;}
p.img {margin: 0 0 1rem !important;}


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

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

	}

@media screen and (max-width: 1190px){
		
.submenu1 img {
  width: 100% !important;
  float: none;
  margin-right: 10px;
  padding-top: 10px;
}

}


	/*画面幅900px以下の追加指定*/
@media screen and (max-width: 900px){
	.w45p,.w50p{
  width: 100%;
}

	
	.Block2 {
  clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 100%);
padding: 150px 10px 10px 10px;
}
	  #menubar_hdr {
    right: 20px;
    top: 0;
  }	
	.sub {
width: 100% !important;

}	
	#footer-logo img {
  width: 100%;
}
	.list2{
  width: 100%;
  float: left;
}
img{
  width: 100%;
}
	}
@media screen and (max-width:450px) {
	.work_ins iframe{
		max-height:100%;
height:3500px;
}

.media-grid .media-list-item {
 width: 100% !important;
}
	.box1 h4 {
  font-size: 21px;

}
.inner{
max-width: 100%;
    margin: 50px auto;
    padding: 0 5%;
}	
	.box1 {
   padding: 0;

}
	header {
position: absolute;
 }
.mts650{
 margin-top: 600px !important;
}

#mainimg {
  width: 100%;
  height: 100vh;
}
#footer-left {
  width: 100%;
  float: none;
  padding-left: 0;
  padding-bottom: 10px;
}
#footer-right {
  width: 100%;
  float: none;
  margin-top: 0;
  text-align: center;
}
img.slide {
      width: 500px !important;

    }
	
#slide_logo img{
	position: absolute;
left: 1%;
top: 10px;
width: 130px;
}
}	
