@charset "utf-8";

/*Google Fonts 読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Miltonian&display=swap');

/*keyframes.css 読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");

/* lightbox.cssの読み込み（画像のライトボックス表示用） 
---------------------------------------------------------------------------*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css);

/*全体設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #FFF;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	line-height: 2;
	background: url(../images/bg.png) left top;
    background-size: 300px 300px;       
    background-repeat: repeat;
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
video {max-width: 100%;}
iframe {width: 100%;}
a {
	color: #fff;
	transition: 0.2s;
}
a:hover {
	color: #ff8C00;
	text-decoration: none;
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 1400px;
	margin: 0 auto;
	padding-left: 2%;
	padding-right: 2%;
}

/*header
---------------------------------------------------------------------------*/
header {
	position: relative;
	padding: 20px 0;
	width: 100%;
	background-image: url("../images/bg_header.png");
}
header #logo {
	width: 300px;
	margin: 0 auto;
}
/*スライドショー表示時は余白なし・非表示*/
.home header {
	padding: 0px;
}
.home header #logo {
	display: none;
}

/*メニュー
---------------------------------------------------------------------------*/
#menubar {
	position: relative;z-index: 10;
	text-align: center;
	background: #fff;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-family: 'Questrial', sans-serif;	/*Google Fontsを適用*/
	height: 105px;

}
#menubar ul li {
	float: left;
	width: 20%;
	font-size: 20px;
}
#menubar ul li a {
	text-decoration: none;display: block;
	height: 85px;
	padding-top: 20px;
	color: #333;
}
#menubar ul li a:hover {
	color: #FF0000;
}
#menubar ul li span {
	display: block;
	font-size: 12px;
	color: #999;
	letter-spacing: 0.2em;
}
/*スマホ用メニューの非表示*/
#menubar-s, #menubar-s2 {display: none;}
/*３本バーアイコンの非表示*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー
----------------------------------------------------------------------------------------------------------------------------------*/
/*ドロップダウンメニューの親メニュー*/
#menubar a.cursor-default {
	cursor: default;
	color: #333;
}
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;
	left: 0px;
	width: 94%;
	padding: 5px 3%;
	background: #FFF;
	background: rgba(255,255,255,255.85);
	text-align: center;
	border-bottom: 1px solid #333;
}
/*出現アニメーション*/
#menubar li:hover ul.ddmenu {
	animation-name: opa1;		/*keyframes.cssで使う@keyframesの指定*/
	animation-fill-mode: both;
	animation-duration: 0.8S;	/*実行時間*/
	animation-delay: 0.1s;		/*出現タイミング*/
}
#menubar ul.ddmenu li {
	float: none;
	width: auto;
	display: inline-block;
	font-size: 85%;
}
#menubar ul.ddmenu li a {
	height: auto;
	padding: 20px;
	color: #000;
	opacity: 0.7;
}
#menubar ul.ddmenu li a:hover {
	color: #FF0000;
	opacity: 1;
}

/*fixmenu設定（メニューが画面上部に到達した場合）
---------------------------------------------------------------------------*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
	height: 60px;
}
body.is-fixed-menu #contents {
	margin-top: 105px;
}
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
}
body.is-fixed #contents {
	margin-top: 105px;
}
body.is-fixed-menu #menubar ul li span {
	display: none;
}
body.is-fixed-menu #menubar ul li a {
	height: 50px;
	padding-top: 10px;
}
body.is-fixed-menu #menubar ul.ddmenu li a {
	padding: 20px;
	height: auto;
}

/*ヘッダーにメニューが固定される分、リンク先が隠れるのを防ぐ為のスタイル
---------------------------------------------------------------------------*/
.link {
	display: block;
	margin-top: -120px;
	padding-top: 120px;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body .nav-fix-pos-pagetop a {display: none;}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;
	line-height: 50px;
	z-index: 1;
	position: fixed;
	bottom: 20px;
	right: 3%;
	background: #666;
	background: rgba(0,0,0,0.6);
	color: #fff;
	border: 1px solid #fff;
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;	/*実行時間*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding: 100px 0 50px;
	position: relative;
	animation-name: opa2;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.5S;	/*実行時間*/
	animation-delay: 0.5s;		/*出現タイミング*/
	animation-fill-mode: both;
}
#contents h2 {
	clear: both;
	margin-bottom: 100px;
	font-size: 300%;
	text-align: center;
	letter-spacing: 0.2em;
}
#contents h2 span {
	display: block;
	font-size: 50%;
	color: #FFF;
}
#contents h3 {
	clear: both;
	margin-bottom: 30px;
	font-size: 150%;
	border-bottom: 1px solid #fff;
	padding-left: 3%;
	letter-spacing: 0.1em;
}
#contents p {
	padding: 0 3% 30px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -5px;
}
#contents p + p {
	margin-top: -10px;
}
#contents section + section {
	margin-top: 100px;
}

/*index.htmlのメインブロック
---------------------------------------------------------------------------*/
#contents .list-column-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 3%;
}
#contents .list-column {
	display: flex;
	flex-direction: column;	
	width: 49.5%;	
	margin-bottom: 20px;
	background-color: #000;
	color: #FFF;
	border-radius: 5px;
	overflow: hidden;
}
#contents .list-column h4 {
	margin-bottom: 20px;
	font-size: 140%;
}
#contents .list-column p {
	padding: 0;
}
#contents .list-column a {
	color: #fff;
}
#contents .list-column .text {
	padding: 5%;
	flex: 1 0 auto;
}
/*IEバグ対応*/
#contents .list-column figure {
	min-height: 0%;
}

/*index.htmlのUPDATEブロック
---------------------------------------------------------------------------*/
#new dl {
	padding: 0px 20px;
}
#new dt {
	float: left;
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;
}
#new dd {
	padding-left: 9em;
}

/*index.htmlのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*company.htmlのテーブル設定
---------------------------------------------------------------------------*/
.ta1 {
	width: 94%;
	table-layout: fixed;
	margin: 0 3% 30px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;
	padding: 10px;
	word-break: break-all;
}
.ta1 th {
	width: 300px;
	text-align: center;
	font-weight: normal;
}

/* business1.htmlのGoogle Map設定
---------------------------------------------------------------------------*/
.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
margin-bottom: 50px;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 99%;
height: 99%;
}

/* business1.htmlのLight Box設定 
---------------------------------------------------------------------------*/
.light_box {
    width: 16.5%;
    float: left;
    background: #000;
}
.light_box a img {
    opacity: 0.5;
}
.light_box a:hover img {
    opacity: 1;
}

/*business2.htmlのメインブロック
---------------------------------------------------------------------------*/
#contents .list {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: url(../images/pika.png) no-repeat center center / 100%;
	color: #000;
	margin: 0 3% 30px;
}
#contents .list a {
	color: #FF0000;
}
#contents .list h4 {
	margin-top: 30px;
	margin-bottom: 20px;
	font-size: 140%;
}
#contents .list figure {
	width: 50%;
}
#contents .list p {
	padding: 0;
}
#contents .list .text {
	width: 40%;
	padding: 2% 5%;
}
/*偶数目ブロック設定（画像とテキストが左右交互に入れ替わる設定）*/
#contents .list:nth-of-type(even) .text {
	order: 1;
}
.btn1 a {
	display: block;
	text-decoration: none;
	border: 0px solid #fff;
	text-align: center;
	padding: 10px 30px;
	margin: 30px auto 0;
	font-size: 150%;
}
.btn1 a:hover {
	background: #fff;
	color: #000 !important;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;position: relative;z-index: 1;
	font-size: 80%;
	background: #222;
	color: #ccc;
	text-align: center;
}
footer a {color: #ccc;}
footer a:hover {color: #fff;}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
#footermenu {
	overflow: hidden;
	padding: 50px 0;
	background: url(../images/footer_logo.png) no-repeat right center / 20%;
}
#footermenu li a {
	text-decoration: none;
	opacity: 0.7;
}
#footermenu li a:hover {
	opacity: 1;
}
#footermenu ul {
	float: left;
	width: 18%;
	padding-right: 1%;
	padding-left: 1%;
	text-align: left;
}
#footermenu li.title, #footermenu li.title a {
	opacity: 1;
}

/*SNSリンク設定
---------------------------------------------------------------------------*/
ul.icon {
	margin-bottom: 20px;
}
ul.icon li {
	display: inline-block;
}
ul.icon img {
	width: 30px;
}
ul.icon img:hover {
	opacity: 0.8;
}

/*著作権設定
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #000;
	padding: 20px 0;
}
#copyright a {text-decoration: none;}

/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
	-webkit-appearance: none;
	outline: none;
	padding: 5px 20px;
	border: 1px solid #333;
	font-size: 130%;
	border-radius: 3px;	
	background: #333;
	color: #fff;
}
#contents input[type="submit"].btn:hover,
#contents input[type="button"].btn:hover,
#contents input[type="reset"].btn:hover {
	border: 1px solid #333;
	background: #fff;
	color: #333;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 3% 20px 6%;
}
ol {
	padding: 0 3% 20px 6%;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #000;border: 2px solid #FFA500;display: inline-block;padding: 0px 20px !important;border-radius: 20px;font-size: 18px;text-align: center;}
p.look {margin: 0 3%;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #ffd93f !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 30px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}

.left { 
  float: left; 
  width: auto;
  margin: 10px 45px 30px 45px;
}
.right { 
  float: right; 
  width: auto;
  margin: 10px 45px 30px 45px;
}
.box {
background:#eaffdf; /*背景色の指定*/
border: #82d35a 1px solid; /*境界線の指定*/
border-radius: 6px; /*角丸の指定*/
padding:10px;
}

/*テキストの左寄せ・折り返し設定
---------------------------------------------------------------------------*/
.sptb-only {
        display: none;
    }
.sptb-position {
text-align: left;
}

/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 2vw;	
}

/*ヘッダー
---------------------------------------------------------------------------*/
header {
	border-bottom: 1px solid #ccc;
}
.home header {
	border: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
#menubar-s {
	overflow: auto;height: 100%;
	position: fixed;z-index: 100;
	top: 0px;
	left: 0; 
    right: 0;
	width: 100%;
	background: rgba(0,0,0,0.9);
	border-top: 1px solid #fff;
	animation-name: frame1;		/*冒頭のkeyframesの名前*/
	animation-duration: 0.5s;	/*実行時間*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 18px;			/*文字サイズ*/
}
#menubar-s li span {
	margin-left: 20px;
	font-size: 80%;
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2 {
	display: block;text-decoration: none;
	padding: 30px 20px 30px 60px;
	border-bottom: 1px solid #fff;
	color: #fff;
}
/*PC用メニューを非表示*/
#menubar {display: none;}

/*子メニュー
---------------------------------------------------------------------------*/

#menubar_hdr2 {
	padding-left: 60px;	
}
/*子メニューメニューブロック全体*/
#menubar-s2 {
	display: block;
	margin-top: 10px;
	border-radius: 5px;
	background: rgba(0,0,0,0.3);
	border: 1px solid #fff;
	font-size: 16px;	
}
/*「＞」アイコン設定*/
#menubar_hdr2.close {
	background: url(../images/arrow2.png) no-repeat 20px 35px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 20px 35px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a {
	border-bottom: 1px solid #fff !important;
	padding: 10px 20px !important;
}
#menubar-s2 li:last-child a {
	border-bottom: none !important;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 20px;		/*上からの配置場所*/
	right: 2%;	/*右からの配置場所*/
}

#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;
	height: 50px;
	border: 1px solid #fff;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #000 url(../images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #000 url(../images/icon_menu.png) no-repeat center bottom/50px;
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu #contents {
	margin-top: 0px;
}
body.is-fixed #contents {
	margin-top: 0px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding: 50px 0;
}
/*h2タグ*/
#contents h2 {
	margin-bottom: 50px;
}

/*index.htmlのメインブロック
---------------------------------------------------------------------------*/
#contents .list-column h4 {
	margin-bottom: 0px;
}

/*ヘッダーメニューが固定されなくなるので再設定
---------------------------------------------------------------------------*/
.link {
	margin-top: -30px;
	padding-top: 30px;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu {display: none;}
.big1 {font-size: 20px;}

/*テキストの左寄せ・折り返し設定
---------------------------------------------------------------------------*/
.sptb-only {
        display: block;
    }
.sptb-position {
text-align: center;
}
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 3vw;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents h2 {
	font-size: 210%;
	margin-bottom: 30px;
}
/*h3タグ*/
#contents h3 {
	margin-bottom: 20px;
}
#contents section + section {
	margin-top: 30px;
}
	
/*company.htmlのテーブル設定
---------------------------------------------------------------------------*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;
}
.ta1 th {
	width: 100px;
}

/*business2.htmlのメインブロック
---------------------------------------------------------------------------*/
.btn1 a {
	padding: 5px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}
.big1 {font-size: 16px;}
.sh {display:block;}
.pc {display:none;}
}
