@charset "utf-8";

@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow:0 0;
    height:4em;
  }
  40% {
    box-shadow:0 -2em;
    height:5em;
  }
}
@-ms-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow:0 0;
    height:4em;
  }
  40% {
    box-shadow:0 -2em;
    height:5em;
  }
}
@-moz-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow:0 0;
    height:4em;
  }
  40% {
    box-shadow:0 -2em;
    height:5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow:0 0;
    height:4em;
  }
  40% {
    box-shadow:0 -2em;
    height:5em;
  }
}



@media screen and (min-width: 1001px) ,print {
/*************************************
* 共通
*************************************/
.dsp-no-pc { display: none !important; }
.content-inner { width: 92%; margin: auto; padding: 0; max-width: 1300px; height: 100%; }
section { margin-top: 7rem; display: block; }
.detail-inner { margin: 0; padding: 0; width: 100%; height: 100%; }
#pagetop { position: fixed; width: 100px; height: 50px; bottom: -50px; right: 10px; z-index: 500; }
.link-area-right { text-align: right; }
.mincho-01 { font-size: 1rem; line-height: 2rem; font-family: TsukuMinPr6-R; }
/*フェードイン*/
.effect {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  transform: translateX(-50px);
}
.effect-u {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(50px);
}
.fadein { opacity: 1; transform: translateX(0px); }
.link-txt { font-style: italic; border-bottom: 1px solid #333333; }
/*ローディング画面*/
html{
  overflow-y:scroll;
}
/* ローディングの背景部分のCSS */
.loader{
  background:#fff;
  height:100%;
  left:0;
  position:fixed;
  top:0;
  width:100%;
  z-index:10;
}
/* ローディングのアニメーション部分のCSS */
.loader-animation,
.loader-animation:before,
.loader-animation:after {
  background:#ffe500;
  -webkit-animation:load1 1s infinite ease-in-out;
  animation:load1 1s infinite ease-in-out;
  width:1em;
  height:4em;
}
.loader-animation {
  height:10px;
  left:50%;
  margin:-5px 0 0 -5px;
  position:absolute;
  top:50%;
  width:10px;
  color:#ffe500;
  text-indent:-9999em;
  font-size:10px;
  -webkit-transform:translateZ(0);
  -ms-transform:translateZ(0);
  transform:translateZ(0);
  -webkit-animation-delay:-0.16s;
  animation-delay:-0.16s;
}
.loader-animation:before,
.loader-animation:after {
  position:absolute;
  top:0;
  content:'';
}
.loader-animation:before {
  left:-1.5em;
  -webkit-animation-delay:-0.32s;
  animation-delay:-0.32s;
}
.loader-animation:after {
  left:1.5em;
}
/*600px以下の場合のみ改行*/
br.dsp-600 { display: none; }
/*************************************
* 見出し
*************************************/
.h2-area { text-align: center; margin-bottom: 2.5rem; }
h2.h2-01 { display: inline-block; text-align: center; }
h2.h2-01 span.h2-01-ttl { display: block; font-size: 1.6rem; border-bottom: 2px solid #333333; padding: 0 10px 15px 10px; }
h2.h2-01 span.h2-01-cap { display: block; padding-top: 10px; }
h3.h3-01 { font-size: 1.6rem; line-height: 2.5rem; margin-bottom: 1rem; }
h3.h3-02 { font-size: 1.6rem; padding-bottom: 1rem; border-bottom: 2px solid #333333; display: block; }
h4.h4-01 { font-size: 1.3rem; margin-bottom: 1rem; }
h5.h5-01 { font-size: 1rem; margin-bottom: 0.8rem; }
/*************************************
* テーブル
*************************************/
table, tbody, tr, th, td { width: 100%; font-family: TsukuBRdGothicStd-R; }
.table-01 { margin-bottom: 1rem; border-top: 1px dotted #b2b2b2; }
.table-01 tr { border-bottom: 1px dotted #b2b2b2; display: inline-block; line-height: 1.5rem; }
.table-01 tr > * { padding: 15px 0 15px 0; }
.table-01 th { font-weight: bold; width: 23%; display: inline-block; }
.table-01 td { width: 75%; display: inline-block; }

/*************************************
* リスト
*************************************/
ul.list-02, ul.list-02 li { list-style: none; margin-left: 0; }

/*************************************
* ボタン
*************************************/
.btn-01 {
	padding: 5px 25px 5px 25px;
	margin-top: 1rem;
	display: inline-block;
	font-family: TsukuBRdGothicStd-D;
	border-bottom: 2px solid #333333;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	position: relative;
}
.btn-01:after {
    content: "";
    display: block;
    position: absolute;
    border-bottom: 12px solid #333;
    border-top: 12px solid #333;
    right: -2px;
    bottom: -2px;
    border-top: 12px solid transparent;
    border-right: 12px solid transparent;
}
.btn-01:hover {
	opacity: 0.7;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.btn-02 { background-color: #fff; padding: 15px 40px 15px 40px; margin-top: 1rem; display: inline-block; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; font-family: TsukuBRdGothicStd-D; }
.btn-02:hover { background-color: #ffe500; color: #fff; opacity: 1; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
.btn-02:hover i { color: #fff; }
/*************************************
* 写真角丸
*************************************/
.border-radius { border-radius: 10px; }
/*************************************
* header
*************************************/
.header-main { padding: 25px 0 25px 0; background-color: #fff; text-align: left; }
.header-main-logo{
	width: 150px;
	display: inline-block;
	vertical-align: bottom;
	position: relative;
	z-index: 1;
}
.header-breadcrumb {
	display: inline-block;
	vertical-align: bottom;
	color: #808080;
	font-size: 0.8rem;
	font-family: TsukuBRdGothicStd-R;
	line-height: 1rem;
	margin-left: 30px;
}
.header-breadcrumb a, .header-breadcrumb a:visited { color: #808080; }
.header-breadcrumb a:hover { opacity: 1; color: #b2b2b2; }
.h1-01-area { background-color: #ebebeb; text-align: center; padding: 25px 0 25px 0; }
.h1-01 { font-size: 1.9rem; }
/*************************************
* メニューバー
*************************************/
/* サイドオープン時にメインコンテンツを覆う部分 */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 3;
}
.overlay::after {
  content: " ";
  visibility: hidden;
  position: fixed;
  top: 40%;
  left: 0;
  display: block;
  width: 100%;
  height: 50px;
  color: rgba(255,255,255,0);
  font-size: 20px;
  text-align: center;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(255,255,255,.7);
}
.side-open .overlay::after {
  visibility: visible;
  color: rgba(255,255,255,.8);
}
/* サイドメニュー */
.side-menu {
	color: #fff;
	position: fixed;
	top: 0;
	right: -300px;
	width: 240px;
	height: 100%;
	padding: 150px 30px 0 30px;
	text-align: left;
	font-size: 16px;
	font-family: TsukuBRdGothicStd-R;
	background: #333333;
	z-index: 1001;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	
}
.side-menu ::after { right: 0; }
.side-menu a, .side-menu a:visited { color: #fff; }
.side-menu ul, .side-menu ul li { list-style: none; margin-left: 0; }
.side-menu ul li { padding: 0 0 20px 0; }
.hmenu-tel-no { font-size: 20px; margin-bottom: 30px; }
.hmenu-fb { width: 40px; height: 40px; }
/* 開閉用ボタン */
.side-menu-btn .demoSpan1 {
  position: fixed;
  top: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-position: center top;
  cursor: pointer;
  z-index: 1002;
}
.side-menu-btn .demoSpan1:before {
	content:'';
	height:5px;
	width:40px;
	background:#333;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	display:block;
	position:absolute;
	top:5px;
	left:0;
	box-shadow:0 12px #333, 0 24px #333;
	-webkit-box-shadow:0 12px #333, 0 24px #333;
	-moz-box-shadow:0 12px #333, 0 24px #333;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.demo-menu {
	position: relative;
	font-size: 13px;
	text-align: center;
	font-family: TsukuBRdGothicStd-D;
	top: 28px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.side-open .demo-menu {
	opacity: 0;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.side-open .side-menu-btn { position: relative; }
.side-open .side-menu-btn .demoSpan1 { height:40px; width:40px; display:block; }
.side-open .side-menu-btn .demoSpan1:before, .side-open .side-menu-btn .demoSpan1:after {
	content:'';
	height:5px;
	width:40px;
	display:block;
	background:#fff;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:10px;
	position:absolute;
	top:16px;
	left:0px;
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
	-o-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.side-open .side-menu-btn .demoSpan1:after {
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
/* メインコンテンツ */
.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 2;
  background-color: #fff;
}
/* サイドメニューオープン */
.side-open .wrapper,
.side-open .overlay,
.side-open .side-menu {
  -webkit-transform: translate3d(-300px, 0, 0);
  -moz-transform: translate3d(-300px, 0, 0);
  -ms-transform: translate3d(-300px, 0, 0);
  -o-transform: translate3d(-300px, 0, 0);
  transform: translate3d(-300px, 0, 0);
}
/*contactボタン*/
#hmenu-contact {
	position: fixed;
	top: 90px;
	right: 20px;
	width: 60px;
	height: auto;
	z-index: 1000;
}
#hmenu-tel {
	position: fixed;
	top: 170px;
	right: 20px;
	width: 60px;
	height: auto;
	z-index: 1000;
}
/*************************************
* footer
*************************************/
.fmenu-navi { background-color: #ebebeb; padding: 20px 0 20px 0; text-align: right; font-family: TsukuBRdGothicStd-D; }
.fmenu-navi ul, .fmenu-navi ul li { list-style: none; margin-left: 0; }
.fmenu-navi ul li { display: inline-block; margin-left: 30px; }
.fmenu-navi ul li a:hover { opacity: 1; color: #b2b2b2; }
.fmenu-area { padding: 30px 0 30px 0; font-family: TsukuBRdGothicStd-R; }
.footer-pic { width: 200px; float: left; }
.footer-ad { width: 400px; float: left; margin-left: 20px; text-align: left; }
.footer-other { float: right; width: 200px; height: 133px; text-align: right; position: relative; }
.f-fb-icon { width: 50px; text-align: right; display: inline-block; }
.copyright { font-size: 0.8rem; position: absolute; right: 0; bottom: 0; }
/*************************************
* トップページ
*************************************/
#header-top { display: none; }
/*メインイメージ*/
section#top-00 { margin-top: 0; padding-top: 0; }
.top-crossfade-img { position: relative; }
.top-menu-list { position: absolute; left: 60px; top: 30px; z-index: 111; }
.top-menu-list ul, .top-menu-list ul li { list-style: none; font-family: TsukuBRdGothicStd-D; display: inline-block; vertical-align: top; line-height: 1rem; }
.top-menu-list ul li a { display: inline-block; color: #fff; margin-right: 15px; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; vertical-align: top; }
.top-menu-list ul li a:hover { color: #ffe500; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; opacity: 1; }
.top-menu-list-logo #logoset-w { fill:#fff; width: 180px; height: 29.09px; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; opacity: 1; }
.top-menu-list-logo:hover #logoset-w { fill: #ffe500; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; opacity: 1; }
.top-main-catch {
	background-image: url("../images/top/main-txt.svg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: auto 370px;
	position: absolute;
	right: 100px;
	top: 180px;
	width: 170px;
	height: 370px;
	z-index: 110;
}
.top-main-catch p { display: none; }
.viewer { width: 100%; height: 800px; position: relative; }
.slide {
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
  width: 100%;
  height: 800px;
}
.slide p { display: block; text-indent: -99999px; width: 100%; height: 800px; }
.slide:not(:first-child) { display: none; }
/*あかり電機のお仕事*/
section#top-01 { margin-top: 0; padding-top: 4rem; }
.top-works-txt {
	margin: auto;
	text-align: center;
	background-image: url("../images/top/main-logo.svg");
	background-position: center top;
	background-size: 300px 300px;
	background-repeat: no-repeat;
	padding-top: 250px;
}
.top-main-ttl {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	display: inline-block;
	vertical-align: top;
	font-size: 25px;
	margin-left: 30px;
}
.top-main-txt {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	height: 330px;
	display: inline-block;
	vertical-align: top;
	text-align: justify;
	font-family: TsukuMinPr6-R;
	line-height: 40px;
}
.top-works-img { width: 100%; text-align: center; }
.top-works-img > * { width: 25%; margin: 0 3% 0 3%; display: inline-block; vertical-align: top; }
.top-works-img-img { margin-bottom: 0.5rem; }
.top-works-img .img-02 { padding-top: 3rem; }
.top-works-img .img-02 .top-works-img-img { position: relative; }
.product-no { position: absolute; color: #fff; font-size: 12px; right: 5px; bottom: 5px; line-height: 1rem; font-family: TsukuBRdGothicStd-D; }
.img-cap { font-family: TsukuBRdGothicStd-D; }
/* ギャラリー（施工事例／取扱商品） */
.top-gallery-group { font-size: 0; text-align: center; }
.top-gallery-group .gallery-child { font-size: 1rem; vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 2%; position: relative; filter: alpha(opacity=70); -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
.top-gallery-group .gallery-child img { border-radius: 50%; }
.top-gallery-group .gallery-child .h5-01 { margin-top: 0.5rem; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; margin-bottom: 0.5rem; line-height: 1rem; }
.top-gallery-group .gallery-child .gallery-child-link { position: absolute; width: 100%; height: 100%; left: 0; top: 0; text-indent: -999999px; }
.gallery-top-no { font-size: 0.7rem; line-height: 1rem; }
/* あかり電機で働く人たち */
#top-03 { background-color: #ffefa0; padding: 5rem 0 5rem 0; }
.top-recruit-01 { width: 50%; float: left; }
.top-recruit-02 { width: 45%; float: right; }
/* NEWS fb */
.top-news { width: 55%; float: left; }
.top-fb { width: 350px; float: right; }
table.top-news-list { line-height: 1rem; }
table.top-news-list tr {
	border-bottom: 1px dotted #b2b2b2;
	padding: 20px 0 20px 0;
	display: block;
	position: relative;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	background-image: url("../images/parts/pts-ar-07c-r.png");
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: 10px auto;
}
table.top-news-list th { width: 19%; font-size: 0.8rem; font-weight: normal; display: inline-block; padding-left: 1%; }
table.top-news-list td { width: 73%; display: inline-block; font-family: TsukuBRdGothicStd-D; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; padding-right: 2%; }
table.top-news-list a { position: absolute; width: 100%; height: 100%; top: 0; left: 0; text-indent: -99999px; }
table.top-news-list tr:hover { color: #b2b2b2; background-color: #fffbe7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; opacity: 1; }
/*************************************
* あかり電機のお仕事
*************************************/
section#works-00 { margin-top: 0; }
.works-00-ttl-area {
	width: 100%;
	height: 300px;
	background-image: url("../images/works/00-01.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}
.works-00-ttl-area h2.works-01-ttl{
	display: inline-block;
	color: #fff;
	font-size: 37px;
	line-height: 55px;
	font-family: TsukuMinPr6-R;
	padding-top: 90px;
}
.works-00-message { width: 68%; float: left; margin-top: 3.5rem; }
.works-00-message .name { font-size: 1.3rem; margin-top: 0.5rem; text-align: right; }
.works-00-message .name span { font-size: 0.8rem; }
.works-00-img { width: 30%; float: right; margin-top: -60px; max-width: 300px; }
/*住宅・店舗の電気・照明設備工事*/
.works-01-img-area { width: 100%; height: 390px; margin-bottom: 3rem; }
.works-01-img-a { background-image: url("../images/works/01-01.jpg"); float: left; }
.works-01-img-b { background-image: url("../images/works/01-02.jpg"); float: right; }
.works-01-img-a, .works-01-img-b {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 50%;
	height: 390px;
	text-align: center;
}
.works-01-img-cap {
	background-color: rgba(255,255,255,0.9);
	font-size: 30px;
	font-family: TsukuBRdGothicStd-D;
	line-height: 1rem;
	padding: 40px 60px 40px 60px;
	display: inline-block;
	margin-top: 147px;
}
.works-01-txt-area { width: 65%; float: left; }
.works-01-txt-img { width: 28%; float: right; }
/*照明器具販売*/
.works-02-img-area { font-size: 0; margin-bottom: 3rem; }
.works-02-img { width: 24.5%; display: inline-block; margin-right: 0.6%; }
.works-02-img:last-child { margin-right: 0; }
.works-02-img-img-01, .works-02-img-img-02, .works-02-img-img-03, .works-02-img-img-04 { position: relative; }
.works-product-no { position: absolute; right: 5px; bottom: 5px; color: #fff; font-size: 0.8rem; font-family: TsukuBRdGothicStd-R; line-height: 1rem; }
.works-02-txt-area { width: 65%; float: left; }
.works-02-txt-img { width: 28%; float: right; }
.works-02-txt-img p { position: relative; }
/*その他の工事・サービス*/
.works-03-group { font-size: 0; display: inline-block; }
.works-03-item:nth-child(odd) { width: 45%; margin-bottom: 4rem; display: inline-block; vertical-align: top; margin-right: 10%; }
.works-03-item { width: 45%; margin-bottom: 4rem; font-size: 1rem; display: inline-block; vertical-align: top; }
.works-03-item-img { width: 30%; float: left; }
.works-03-item-img img { border-radius: 50%; }
.works-03-item-txt { width: 65%; float: right; }
#works-03 { margin-bottom: 4rem; }
/*************************************
* ギャラリー
*************************************/
/*一覧ページ*/
section#gallery-list-00 { margin-top: 3rem; }
.gallery-category { width: 100%; }
.gallery-category-ttl { width: 15%; background-color: #333333; padding: 3px 0 3px 0; color: #fff; display: inline-block; text-align: center; border-radius: 5px; font-size: 0.8rem; font-family: TsukuBRdGothicStd-R; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
.gallery-category-detail { width: 82%; float: right; text-align: left; font-size: 0.9rem; line-height: 1.6rem; font-family: TsukuBRdGothicStd-R; }
.gallery-category-detail ul, .gallery-category-detail ul li { list-style: none; margin-left: 0; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
.gallery-category-detail ul li { display: inline-block; padding: 5px 10px 5px 10px; }
.gallery-date-list select, #news-detail .date-list select {
	float: right;
	width: 23%;
	padding: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	border: 3px solid #333333;
	background: #eee;
	background: url("../images/parts/pts-ar-06d-d.png") right 50% no-repeat;
	background-position: right 10px center;
	background-size: 20px, 100%;
	border-radius: 5px !important;
}
.gallery-category-detail li:hover { background-color: #ffe500; border-radius: 5px; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
.gallery-category-detail li:hover a { color: #fff; opacity: 1; }
.gallery-date-list select::-ms-expand, #gallery-detail .date-list select::-ms-expand, .gallery-date-list select::-moz-expand, #gallery-detail .date-list select::-moz-expand { display: none; }
section#gallery-list-01 { margin-top: 4rem; margin-bottom: 7rem; }
.gallery-gallery-group { font-size: 0; text-align: center; }
.gallery-gallery-group .gallery-child { font-size: 1rem; vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 2.5rem 2%; position: relative; filter: alpha(opacity=70); -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
.gallery-gallery-group .gallery-child img { border-radius: 50%; }
.gallery-gallery-group .gallery-child .h5-01 { margin-top: 0.5rem; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; margin-bottom: 0.5rem; line-height: 1rem; }
.gallery-gallery-group .gallery-child .gallery-child-link { position: absolute; width: 100%; height: 100%; left: 0; top: 0; text-indent: -999999px; }
.gallery-archive-no { font-size: 0.7rem; line-height: 1rem; }
/*詳細ページ*/
section#gallery-detail-01 { margin-top: 4rem; margin-bottom: 8rem; }
.gallery-detail-comment p { margin-bottom: 1rem; }
.gallery-detail-comment a { color: #ff8900; }
.gallery-detail-pic { margin-bottom: 2rem; max-width: 100%; max-height: 800px; text-align: center; }
.gallery-detail-pic img { width: auto; max-width: 100%; max-height: 800px; text-align: center; margin: auto; }
.gallery-detail-comment { margin-bottom: 4rem; }
.pagination {
	padding: 20px 0;
	font-size: 0.9rem;
	line-height: 0.9rem;
    text-align: center;
    font-weight: bold;
}
.pagination-box { display: inline-block; }
.pagination-box > * {
	display: inline-block;
	padding: 0 15px 0 15px;
	color: #333333;
	border-left: 1px solid #333333;
	vertical-align: middle;
	margin-bottom: 1rem;
}
.pagination-box > *:last-child { border-right: 1px solid #333333; }
.pagination a:hover, .pagination a:last-child :hover { color: #b2b2b2; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; opacity: 1; }
.gallery-detail-no { font-size: 0.8rem; margin-bottom: 3rem; text-align: center; }
/*ページ送り*/
.single-previous-new { text-align: center; font-size: 0; font-family: TsukuBRdGothicStd-D; margin-top: 4rem; }
.single-previous-new > * { display: inline-block; cursor: pointer; }
.single-previous-new .next { font-size: 0.9rem; font-weight: bold; display: inline-block; padding-right: 20px; }
.single-previous-new .previous { font-size: 0.9rem; font-weight: bold; display: inline-block; padding-left: 20px; }
.single-previous-new .archive { font-size: 0.9rem; font-weight: bold; display: inline-block; padding: 0 20px 0 20px; border-left: 1px solid #333333; border-right: 1px solid #333333; }
.pagination { font-family: TsukuBRdGothicStd-D; }

/*************************************
* 採用情報
*************************************/
/*メインビジュアル*/
section#recruit-01 { margin-top: 0; background-color: #ffefa0; }
.recruit-h2-area { position: relative; text-align: center; width: 100%; background-color: #ffefa0; }
.recruit-main-left-top-01 {
	width: 50%;
	height: 400px;
	float: left;
	background-image: url("../images/recruit/main-01_2025.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-right-top-01 { width: 50%; float: right; }
.recruit-main-02 {
	width: 50%;
	height: 400px;
	float: left;
	background-image: url("../images/recruit/main-02_2025.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-right-top-02 { width: 50%; float: right; }
.recruit-main-03 {
	height: 200px;
	background-image: url("../images/recruit/main-03_2025.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-04 {
	height: 200px;
	background-image: url("../images/recruit/main-04.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-left-bottom-01 { width: 50%; float: left; }
.recruit-main-05 {
	height: 200px;
	background-image: url("../images/recruit/main-05.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-06 {
	width: 50%;
	float: left;
	height: 200px;
	background-image: url("../images/recruit/main-06_2025.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-07 {
	width: 50%;
	float: right;
	height: 200px;
	background-image: url("../images/recruit/main-07.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-08 {
	width: 50%;
	float: right;
	height: 400px;
	background-image: url("../images/recruit/main-08_2025.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-h2 {
	position: absolute;
	text-align: center;
	top: 300px;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}
.recruit-h2 h2 {
	padding: 80px 60px 80px 60px;
	font-size: 30px;
	font-family: TsukuBRdGothicStd-D;
	background-color: rgba(255,255,255,0.9);
	display: inline-block;
}
/*メッセージ*/
section#recruit-02 { background-color: #ffefa0; margin-top: 0; }
section#recruit-02 .h2-area { padding-top: 4rem; }
.recruit-message { width: 60%; padding-bottom: 4rem; }
.recruit-message .name { font-size: 1.3rem; margin-top: 0.5rem; text-align: right; font-family: TsukuMinPr6-R; }
.recruit-message .name span { font-size: 0.8rem; }
.recruit-message-bg {
	background-image: url("../images/recruit/01-01_2025.png"), url("../images/parts/img-town.svg");
	background-position: right bottom, center bottom;
	background-repeat: no-repeat, repeat-x;
	background-size: 340px 440px, auto 150px;
}
/*社員紹介*/
section#recruit-03 { background-color: #fff5c1; margin: 0; padding: 4rem 0 1rem 0; }
.recruit-staff-detail { border-bottom: 3px solid #ffe500; padding-bottom: 2rem; margin-top: 2rem; }
.recruit-staff-detail:last-child { border-bottom: none; }
.recruit-staff-detail-01 { width: 35%; float: left; }
.recruit-staff-detail-02 { width: 20%; float: left; }
.recruit-staff-detail-03 { width: 43%; float: right; }
.recruit-staff-name { padding-left: 15px; font-size: 1.3rem; border-left: solid 8px #ffe500; font-family: TsukuBRdGothicStd-D; margin-bottom: 1rem; }
ul.recruit-staff-capacity, ul.recruit-staff-capacity li {  list-style: none; margin-left: 0; }
ul.recruit-staff-capacity li { font-family: TsukuBRdGothicStd-R; }
ul.recruit-staff-capacity li:before{ font-family: FontAwesome; content: '\f111'; /* アイコンのunicode */ color: #ffe500; }
.recruit-staff-comment {
	width: 100%;
	display: block;
	padding: 2%;
	border: 5px solid #ffe500;
	border-radius:
	10px; box-sizing:border-box;
	background-color: #fff;	
}
.recruit-staff-detail-03 {
	padding-left: 9px;
	background-image: url("../images/parts/pts-ar-03a-l.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 10px 15px;
}
section#recruit-04 { margin-bottom: 8rem; }
section#recruit-04 .table-01 { margin-bottom: 3rem; }
.recruit-contact { text-align: center; }
.recruit-tel { font-size: 1.5rem; font-family: TsukuBRdGothicStd-D; margin-bottom: 1rem; margin-top: 1rem; }
.recruit-privacy { font-size: 0.8rem; margin-top: 3rem; }
/*************************************
* NEWS
*************************************/
/*一覧ページ*/
section#news-list-01 { margin-top: 4rem; margin-bottom: 8rem; }
.news-list-alpha { width: 55%; float: left; }
.news-list-beta { width: 350px; float: right; }
table.news-news-list { border-top: 1px dotted #b2b2b2; line-height: 1rem; margin-bottom: 2rem; }
table.news-news-list tr {
	border-bottom: 1px dotted #b2b2b2;
	padding: 20px 0 20px 0;
	display: block;
	position: relative;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	background-image: url("../images/parts/pts-ar-07c-r.png");
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: 10px auto;
}
table.news-news-list th { width: 19%; font-size: 0.8rem; font-weight: normal; display: inline-block; padding-left: 1%; }
table.news-news-list td { width: 73%; display: inline-block; font-family: TsukuBRdGothicStd-D; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; padding-right: 2%; }
table.news-news-list a { position: absolute; width: 100%; height: 100%; top: 0; left: 0; text-indent: -99999px; }
table.news-news-list tr:hover { color: #b2b2b2; background-color: #fffbe7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; opacity: 1; }
/*詳細ページ*/
section#news-detail-01 { margin-top: 4rem; margin-bottom: 8rem; }
.news-detail-free-area p { margin-bottom: 1rem; }
.news-detail-alpha { width: 55%; float: left; }
.news-detail-beta { width: 350px; float: right; }
.news-detail-ttl-area { margin-bottom: 2.5rem; }
h2.news-detail-ttl { display: block; width: 100%; }
h2.news-detail-ttl span.ttl { display: block; font-size: 1.6rem; border-bottom: 2px solid #333333; padding: 0 10px 15px 0; }
h2.news-detail-ttl span.date { display: block; padding-top: 10px; }
/*************************************
* 会社情報
*************************************/
section#company-01 { margin-top: 4rem; }
.company-alpha { width: 70%; float: left; }
.company-beta { width: 25%; float: right; }
.company-beta > * { margin-bottom: 1rem; }
/*************************************
* お問い合わせ
*************************************/
section#contact-01 { margin-top: 4rem; margin-bottom: 8rem; }
.contact-tel { padding-left: 15px; border-left: 8px solid #b2b2b2; margin-bottom: 3rem; }
.company-tel-no { font-size: 1.3rem; font-family: TsukuBRdGothicStd-D; }
#contact-01 ul.list-02 { margin-bottom: 3rem; }
table.contact-mail-form { width: 94%; line-height: 1rem; border-top: 1px dotted #b2b2b2; margin-bottom: 2rem;}
table.contact-mail-form tr { border-bottom: 1px dotted #b2b2b2; padding: 20px 0 20px 0; display: inline-block; }
table.contact-mail-form th { width: 23%; display: inline-block; font-family: TsukuBRdGothicStd-D; }
table.contact-mail-form td { width: 75%; display: inline-block; }
table.contact-mail-form input, table.contact-mail-form textarea  { border: 1px solid #b2b2b2; border-radius: 5px; }
table.contact-mail-form input:focus, table.contact-mail-form textarea:focus { border: 1px #ffe500 solid; outline:none; background-color: #fffbe7; }
.form-name input { height: 35px; width: 50%; font-size: 1rem; padding: 0 1% 0 1%; color: #595959; }
.form-mail input { height: 35px; width: 80%; font-size: 1rem; padding: 0 1% 0 1%; color: #595959; }
.form-tel input, .form-fax input { height: 35px; width: 50%;  padding: 0 1% 0 1%;  color: #595959;}
.form-comment textarea { height: 200px; width: 80%; font-size: 1rem;  padding: 1%; color: #595959; }
#contact-01 span.comment { font-size: 0.7rem; color: #b2b2b2; font-style: italic;}
.form-submit { text-align: center; margin: auto;  font-family: TsukuBRdGothicStd-D; }
.form-submit button[type="submit"], .form-submit button[type="button"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #333333;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-family: inherit;
	font-size: 18px;
	font-weight: bold;
	margin: 0 10px;
	padding: 12px 20px 12px 20px;
	text-align: center;
	text-decoration: none;
	transition: background 0.4s, color 0.4s;
	border-radius: 5px;
	font-family: TsukuBRdGothicStd-D;
	border: none;
}
.form-submit button[type="submit"]:hover, .form-submit button[type="button"]:hover { background-color: #ffe500; }
.bback:before { font-family: FontAwesome; content: '\f0a8'; /* アイコンのunicode */ margin-right: 5px; }
.bconfirm:after { font-family: FontAwesome; content: '\f0a9'; /* アイコンのunicode */ margin-left: 5px; }
.bsubmit:after { font-family: FontAwesome; content: '\f0a9'; /* アイコンのunicode */ margin-left: 5px; }
.body-confirm .contact-tel, .body-confirm .contact-form-txt, .body-complete .contact-tel, .body-complete .contact-form-txt, .body-confirm span.comment, .body-complete span.comment { display: none }
/*************************************
* プライバシーポリシー
*************************************/
section#privacy-01 { margin-top: 4rem; margin-bottom: 8rem; }
section#privacy-01 p { margin: 1rem 0 2.5rem 0;  }








}




@media only screen and (max-width: 1000px){
/*************************************
* 共通
*************************************/
.dsp-no-sp { display: none !important; }
.content-inner { width: 92%; margin: auto; padding: 0; height: 100%; }
section { margin-top: 2rem; display: block; }
.detail-inner { margin: 0; padding: 0; width: 100%; height: 100%; }
#pagetop { position: fixed; width: 100px; height: 50px; bottom: -50px; right: 10px; z-index: 500; }
.link-area-right { text-align: center; }
.mincho-01 { font-size: 1rem; line-height: 2rem; font-family: TsukuMinPr6-R; }
.link-txt { font-style: italic; border-bottom: 1px solid #333333; }
/*600px以下の場合のみ改行*/
br.dsp-600 { display: none; }
/*ローディング画面*/
html{
  overflow-y:scroll;
}
/* ローディングの背景部分のCSS */
.loader{
  background:#fff;
  height:100%;
  left:0;
  position:fixed;
  top:0;
  width:100%;
  z-index:10;
}
/* ローディングのアニメーション部分のCSS */
.loader-animation,
.loader-animation:before,
.loader-animation:after {
  background:#ffe500;
  -webkit-animation:load1 1s infinite ease-in-out;
  animation:load1 1s infinite ease-in-out;
  width:1em;
  height:4em;
}
.loader-animation {
  height:10px;
  left:50%;
  margin:-5px 0 0 -5px;
  position:absolute;
  top:50%;
  width:10px;
  color:#ffe500;
  text-indent:-9999em;
  font-size:10px;
  -webkit-transform:translateZ(0);
  -ms-transform:translateZ(0);
  transform:translateZ(0);
  -webkit-animation-delay:-0.16s;
  animation-delay:-0.16s;
}
.loader-animation:before,
.loader-animation:after {
  position:absolute;
  top:0;
  content:'';
}
.loader-animation:before {
  left:-1.5em;
  -webkit-animation-delay:-0.32s;
  animation-delay:-0.32s;
}
.loader-animation:after {
  left:1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow:0 0;
    height:4em;
  }
  40% {
    box-shadow:0 -2em;
    height:5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow:0 0;
    height:4em;
  }
  40% {
    box-shadow:0 -2em;
    height:5em;
  }
}
/*************************************
* 見出し
*************************************/
.h2-area { text-align: center; margin-bottom: 1rem; }
h2.h2-01 { display: inline-block; text-align: center; }
h2.h2-01 span.h2-01-ttl { display: block; font-size: 1.2rem; border-bottom: 2px solid #333333; padding: 0 0 10px 0; }
h2.h2-01 span.h2-01-cap { display: block; padding-top: 5px; }
h3.h3-01 { font-size: 1.2rem; line-height: 2rem; margin-bottom: 0.5rem; }
h3.h3-02 { font-size: 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid #333333; display: block; }
h4.h4-01 { font-size: 1.1rem; margin-bottom: 0.5rem; }
h5.h5-01 { font-size: 1rem; margin-bottom: 0.5rem; }
/*************************************
* テーブル
*************************************/
table, tbody, tr, th, td { width: 100%; font-family: TsukuBRdGothicStd-R; }
.table-01 { margin-bottom: 1rem; border-top: 1px dotted #b2b2b2; }
.table-01 tr { border-bottom: 1px dotted #b2b2b2; display: inline-block; line-height: 1.5rem; }
.table-01 tr > * { padding: 15px 0 15px 0; }
.table-01 th { font-weight: bold; width: 23%; display: inline-block; }
.table-01 td { width: 75%; display: inline-block; }

/*************************************
* リスト
*************************************/
ul.list-02, ul.list-02 li { list-style: none; margin-left: 0; }

/*************************************
* ボタン
*************************************/
.btn-01 {
	padding: 5px 10px 5px 10px;
	margin-top: 1rem;
	color: #333333;
	background-color: #ffe500;
	display: inline-block;
	line-height: 1.5rem;
	border-radius: 5px;
	font-family: TsukuBRdGothicStd-D;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.btn-01:after { font-family: FontAwesome; content: '\f0a9'; /* アイコンのunicode */ margin-left: 5px; }
.btn-01:hover {
	color: #fff;
	background-color: #b2b2b2;	
	opacity: 1;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.btn-01:hover .btn-01:after { font-family: FontAwesome; content: '\f0a9'; /* アイコンのunicode */ margin-left: 5px; color: #fff; }
.btn-02 { background-color: #ffe500; padding: 15px 30px 15px 30px; margin-top: 1rem; display: inline-block; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; font-family: TsukuBRdGothicStd-D; }
.btn-02:hover { background-color: #fff; color: #333333; opacity: 1; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
/*************************************
* 写真角丸
*************************************/
.border-radius { border-radius: 10px; }
/*************************************
* header
*************************************/
.header-main { padding: 20px 0 20px 0; background-color: #fff; position: fixed; top: 0; width: 100%; box-shadow: 0px 1px 5px #b2b2b2; text-align: left; z-index: 550; }
.header-main-logo{ width: 150px; display: inline-block; vertical-align: bottom; position: relative; z-index: 1008; }
.header-breadcrumb { display: none; }
.h1-01-area { background-color: #ebebeb; text-align: center; padding: 84px 0 12px 0; }
.h1-01 { font-size: 1.4rem; }
/*************************************
* メニューバー
*************************************/
/* サイドオープン時にメインコンテンツを覆う部分 */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 3;
}
.overlay::after {
  content: " ";
  visibility: hidden;
  position: fixed;
  top: 40%;
  left: 0;
  display: block;
  width: 100%;
  height: 50px;
  color: rgba(255,255,255,0);
  font-size: 20px;
  text-align: center;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(255,255,255,.7);
}
.side-open .overlay::after {
  visibility: visible;
  color: rgba(255,255,255,.8);
}
/* サイドメニュー */
.side-menu {
	color: #fff;
	position: fixed;
	top: 0;
	right: -300px;
	width: 240px;
	height: 100%;
	padding: 110px 30px 60px 30px;
	text-align: left;
	font-size: 16px;
	font-family: TsukuBRdGothicStd-R;
	background: #333333;
	z-index: 502;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	
}
.side-menu ::after { right: 0; }
.side-menu a, .side-menu a:visited { color: #fff; }
.side-menu ul, .side-menu ul li { list-style: none; margin-left: 0; }
.side-menu ul li { padding: 0 0 20px 0; }
.side-menu-inner { width: 100%; height: auto; padding-bottom: 200px;  }
.hmenu-tel-no { font-size: 20px; margin-bottom: 30px; }
.hmenu-fb { width: 40px; height: 40px; }
/* 開閉用ボタン */
/* 開閉用ボタン */
.side-menu-btn .demoSpan1 {
  position: fixed;
  top: 5px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-position: center top;
  cursor: pointer;
  z-index: 1002;
}
.side-menu-btn .demoSpan1:before {
	content:'';
	height:5px;
	width:40px;
	background:#333;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	display:block;
	position:absolute;
	top:10px;
	left:0;
	box-shadow:0 12px #333, 0 24px #333;
	-webkit-box-shadow:0 12px #333, 0 24px #333;
	-moz-box-shadow:0 12px #333, 0 24px #333;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.demo-menu {
	position: relative;
	font-size: 13px;
	text-align: center;
	font-family: TsukuBRdGothicStd-D;
	top: 32px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.side-open .demo-menu {
	opacity: 0;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.side-open .side-menu-btn { position: relative; }
.side-open .side-menu-btn .demoSpan1 { height:40px; width:40px; display:block; top: 13px; }
.side-open .side-menu-btn .demoSpan1:before, .side-open .side-menu-btn .demoSpan1:after {
	content:'';
	height:5px;
	width:40px;
	display:block;
	background:#333;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:10px;
	position:absolute;
	top:16px;
	left:0px;
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
	-o-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.side-open .side-menu-btn .demoSpan1:before { -webkit-box-shadow:none; }
.side-open .side-menu-btn .demoSpan1:after {
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
/* メインコンテンツ */
.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 2;
  background-color: #fff;
}
/* サイドメニューオープン */
.side-open .wrapper,
.side-open .overlay,
.side-open .side-menu {
  -webkit-transform: translate3d(-300px, 0, 0);
  transform: translate3d(-300px, 0, 0);
}
/*contactボタン*/
#hmenu-contact { display: none; }
#hmenu-tel { display: none; }
/*************************************
* footer
*************************************/
.fmenu-navi { display: none; }
.fmenu-area { padding: 30px 0 5px 0; font-family: TsukuBRdGothicStd-R; background-color: #ebebeb; }
.footer-pic { width: 40%; text-align: center; margin: 0 auto 0.5rem auto; }
.footer-ad { width: 100%; text-align: center; margin-bottom: 1rem; }
.footer-other { width: 100%; text-align: center; }
.f-fb-icon { width: 40px; text-align: center; margin: 0 auto 1rem auto;  }
.copyright { font-size: 0.8rem; }
/*************************************
* トップページ
*************************************/
#header-top .h1-01-area { display: none; }
section#top-01 { margin-top: 0; padding-top: 2rem; }
/*メインイメージ*/
section#top-00 { margin-top: 0; padding-top: 72px; }
.top-crossfade-img { position: relative; }
.top-menu-list { display: none; }
.top-menu-list ul, .top-menu-list ul li { list-style: none; font-family: TsukuBRdGothicStd-D; display: inline-block; }
.top-menu-list ul li a { display: inline-block; color: #fff; margin-right: 15px; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; vertical-align: top; }
.top-menu-list ul li a:hover { color: #ffe500; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; opacity: 1; }
.top-menu-list-logo #logoset-w { fill:#fff; width: 180px; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; opacity: 1; }
.top-menu-list-logo:hover #logoset-w { fill: #ffe500; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; opacity: 1; }
.top-main-catch {
	background-image: url("../images/top/main-txt.svg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: auto 260px;
	position: absolute;
	top: 70px;
	width: 100%;
	height: 260px;
	z-index: 110;
}
.top-main-catch p { display: none; }
.viewer { width: 100%; height: 400px; position: relative; }
.slide {
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
  width: 100%;
  height: 400px;
}
.slide p { display: block; text-indent: -99999px; width: 100%; height: 400px; }
.slide:not(:first-child) { display: none; }
/*あかり電機のお仕事*/
.top-works-txt {
	margin: auto;
	text-align: center;
	background-image: url("../images/top/main-logo.svg");
	background-position: center top;
	background-size: 300px auto;
	background-repeat: no-repeat;
	padding-top: 230px;
	margin-bottom: 1rem;
}
.top-main-ttl {	font-size: 1.5rem; margin-bottom: 1.5rem; }
.top-main-txt {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	height: 300px;
	display: inline-block;
	vertical-align: top;
	text-align: justify;
	font-family: TsukuMinPr6-R;
	line-height: 32px;
	font-size: 0.9rem;
}
.top-works-img { width: 100%; text-align: center; }
.top-works-img > * { width: 25%; margin: 0 3% 0 3%; display: inline-block; vertical-align: top; }
.top-works-img-img { margin-bottom: 0.5rem; font-size: 0; }
.top-works-img .img-02 { padding-top: 3rem; }
.top-works-img .img-02 .top-works-img-img { position: relative; }
.product-no { position: absolute; color: #fff; font-size: 11px; right: 5px; bottom: 5px; line-height: 1rem; font-family: TsukuBRdGothicStd-R; }
.img-cap { font-family: TsukuBRdGothicStd-D; line-height: 1.3rem; font-size: 0.8rem; }
/* ギャラリー（施工事例／取扱商品） */
.top-gallery-group { font-size: 0; text-align: center; }
.top-gallery-group .gallery-child { font-size: 1rem; vertical-align: top; display: inline-block; width: 46%; margin: 0 2% 3rem 2%; position: relative; filter: alpha(opacity=70); -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
.top-gallery-group .gallery-child img { border-radius: 50%; }
.top-gallery-group .gallery-child .h5-01 { margin-top: 0.8rem; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; font-size: 1rem; line-height: 1rem; margin-bottom: 0.5rem; }
.top-gallery-group .gallery-child .gallery-child-link { display: inline-block; line-height: 1rem; background-color: #333333; color: #fff; padding: 10px 15px 10px 15px; border-radius: 5px; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; font-family: TsukuBRdGothicStd-D; }
.top-gallery-group .gallery-child .gallery-child-link:hover { background-color: #ffe500; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
.top-gallery-group .gallery-child a:hover { opacity: 0.7; filter: alpha(opacity=70); -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
.gallery-top-no { font-size: 0.7rem; line-height: 1rem; }
/* あかり電機で働く人たち */
#top-03 { background-color: #ffefa0; padding: 2rem 0 2rem 0; }
.top-recruit-01 { width: 100%; }
.top-recruit-02 { width: 100%; }
.top-recruit-02 h3 { margin-top: 1rem; }
/* NEWS fb */
.top-news { width: 100%; }
.top-fb { width: 100%; }
table.top-news-list { line-height: 1rem; }
table.top-news-list tr {
	border-bottom: 1px dotted #b2b2b2;
	padding: 20px 0 20px 0;
	display: block;
	position: relative;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	background-image: url("../images/parts/pts-ar-07c-r.png");
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: 10px auto;
}
table.top-news-list th { width: 19%; font-size: 0.8rem; font-weight: normal; display: inline-block; padding-left: 1%; }
table.top-news-list td { width: 75%; display: inline-block; font-family: TsukuBRdGothicStd-D; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
table.top-news-list a { position: absolute; width: 100%; height: 100%; top: 0; left: 0; text-indent: -99999px; }
table.top-news-list tr:hover { color: #b2b2b2; background-color: #fffbe7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; opacity: 1; }
.fb-sp { margin-top: 2.5rem; text-align: center; margin-bottom: 2rem;}
.fb-sp a {
	background-color: #ffe500;
	padding: 10px 20px 10px 45px;
	background-image: url("../images/parts/pts-fb-b.svg");
	background-position: left 20px center;
	background-size: 20px auto;
	background-repeat: no-repeat;
	border-radius: 5px;
	font-family: TsukuBRdGothicStd-D;
	display: inline-block;
	line-height: 1.5rem;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.fb-sp a:hover { background-color: #b2b2b2; color: #fff; background-image: url("../images/parts/pts-fb-w.svg"); -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; opacity: 1; }
/*************************************
* あかり電機のお仕事
*************************************/
section#works-00 { margin-top: 0; }
.works-00-ttl-area {
	width: 100%;
	height: 350px;
	background-image: url("../images/works/00-01.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}
.works-00-ttl-area h2.works-01-ttl{
	display: inline-block;
	color: #fff;
	font-size: 28px;
	line-height: 50px;
	font-family: TsukuMinPr6-R;
	padding-top: 30px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-align: left;
	text-shadow: rgba(0, 0, 0, 0.8) -2px 2px 2px;
}
.works-00-message { float: left; width: 65%; margin-top: 2rem; }
.works-00-message .name { font-size: 1.3rem; margin-top: 0.5rem; text-align: right; }
.works-00-message .name span { font-size: 0.8rem; }
.works-00-img { float: right; width: 30%; max-width: 200px; text-align: center; margin: 1rem auto 0 auto; }
/*住宅・店舗の電気・照明設備工事*/
.works-01-img-area { width: 100%; height: 250px; margin-bottom: 1rem; }
.works-01-img-a { background-image: url("../images/works/01-01.jpg"); float: left; }
.works-01-img-b { background-image: url("../images/works/01-02.jpg"); float: right; }
.works-01-img-a, .works-01-img-b {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 50%;
	height: 250px;
	text-align: center;
}
.works-01-img-cap {
	background-color: rgba(255,255,255,0.9);
	font-size: 25px;
	font-family: TsukuBRdGothicStd-D;
	line-height: 1rem;
	padding: 20px 20px 20px 20px;
	display: inline-block;
	margin-top: 92px;
}
.works-01-txt-area { width: 65%; float: left; }
.works-01-txt-img { width: 28%; float: right; }
/*照明器具販売*/
.works-02-img-area { font-size: 0; margin-bottom: 1rem; }
.works-02-img { width: 49%; display: inline-block; margin-right: 2%; margin-bottom: 15px; }
.works-02-img:nth-child(even) { margin-right: 0; }
.works-02-img-img-01, .works-02-img-img-02, .works-02-img-img-03, .works-02-img-img-04 { position: relative; }
.works-product-no { position: absolute; right: 5px; bottom: 5px; color: #fff; font-size: 0.8rem; font-family: TsukuBRdGothicStd-R; line-height: 1rem; }
.works-02-txt-area { width: 65%; float: left; }
.works-02-txt-img { width: 28%; float: right; }
.works-02-txt-img p { position: relative; }
/*その他の工事・サービス*/
.works-03-item { width: 100%; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px dotted #b2b2b2; }
.works-03-item:last-child { border-bottom: none; }
.works-03-item-img { width: 30%; float: left; }
.works-03-item-img img { border-radius: 50%; }
.works-03-item-txt { width: 65%; float: right; }
#works-03 { margin-bottom: 4rem; }
/*************************************
* ギャラリー
*************************************/
/*一覧ページ*/
section#gallery-list-00 { margin-top: 2rem; }
.gallery-category { width: 100%; }
.gallery-category-ttl { width: 15%; background-color: #333333; padding: 3px 0 3px 0; color: #fff; display: inline-block; text-align: center; border-radius: 5px; font-size: 0.8rem; font-family: TsukuBRdGothicStd-R; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
.gallery-category-detail { width: 82%; float: right; text-align: left; font-size: 0.9rem; line-height: 1.6rem; font-family: TsukuBRdGothicStd-R; }
.gallery-category-detail ul, .gallery-category-detail ul li { list-style: none; margin-left: 0; }
.gallery-category-detail ul li { display: inline-block; margin-right: 10px; margin-bottom: 0.5rem; }
.gallery-category-detail ul li a { background-color: #ebebeb; padding: 5px; border-radius: 5px; display: inline-block; }
.gallery-date-list select, #news-detail .date-list select {
	width: 30%;
	padding: 10px;
	margin-top: 1rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	border: 3px solid #333333;
	background: #eee;
	background: url("../images/parts/pts-ar-06d-d.png") right 50% no-repeat;
	background-position: right 10px center;
	background-size: 20px, 100%;
	border-radius: 5px !important;
}
.gallery-date-list select::-ms-expand, #gallery-detail .date-list select::-ms-expand { display: none; }
section#gallery-list-01 { margin-top: 2rem; margin-bottom: 1rem; }
.gallery-gallery-group { font-size: 0; text-align: center; }
.gallery-gallery-group .gallery-child { font-size: 1rem; vertical-align: top; display: inline-block; width: 29.3%; margin: 0 2% 3rem 2%; position: relative; filter: alpha(opacity=70); -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
.gallery-gallery-group .gallery-child img { border-radius: 50%; }
.gallery-gallery-group .gallery-child .h5-01 { margin-top: 0.8rem; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; font-size: 0.8rem; line-height: 1rem; }
.gallery-gallery-group .gallery-child .gallery-child-link { display: inline-block; line-height: 1rem; background-color: #333333; color: #fff; padding: 10px 15px 10px 15px; border-radius: 5px; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; font-family: TsukuBRdGothicStd-D; }
.gallery-gallery-group .gallery-child .gallery-child-link:hover { background-color: #ffe500; -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
.gallery-gallery-group .gallery-child a:hover { opacity: 0.7; filter: alpha(opacity=70); -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
.gallery-archive-no { font-size: 0.7rem; line-height: 1rem; }
/*詳細ページ*/
section#gallery-detail-01 { margin-top: 2rem; margin-bottom: 2rem; }
.gallery-detail-comment p { margin-bottom: 1rem; }
.gallery-detail-comment a { color: #ff8900; }
.gallery-detail-pic { margin-bottom: 2rem; max-width: 100%; max-height: 500px; text-align: center; }
.gallery-detail-pic img { width: auto; max-width: 100%; max-height: 500px; text-align: center; margin: auto; }
.gallery-detail-comment { margin-bottom: 2rem; }
.pagination {
	padding: 20px 0;
	font-size: 0.9rem;
	line-height: 0.9rem;
    text-align: center;
    font-weight: bold;
}
.pagination-box { display: inline-block; }
.pagination-box > * {
	display: inline-block;
	padding: 0 15px 0 15px;
	color: #333333;
	border-left: 1px solid #333333;
	vertical-align: middle;
	margin-bottom: 1rem;
}
.pagination-box > *:last-child { border-right: 1px solid #333333; }
.pagination a:hover, .pagination a:last-child :hover { color: #b2b2b2; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; opacity: 1; }
/*ページ送り*/
.single-previous-new { text-align: center; font-size: 0; font-family: TsukuBRdGothicStd-D; margin-top: 2rem; }
.single-previous-new > * { display: inline-block; cursor: pointer; }
.single-previous-new .next { font-size: 0.9rem; font-weight: bold; display: inline-block; padding-right: 20px; }
.single-previous-new .previous { font-size: 0.9rem; font-weight: bold; display: inline-block; padding-left: 20px; }
.single-previous-new .archive { font-size: 0.9rem; font-weight: bold; display: inline-block; padding: 0 20px 0 20px; border-left: 1px solid #333333; border-right: 1px solid #333333; }
.pagination { font-family: TsukuBRdGothicStd-D; }
.gallery-detail-no { font-size: 0.8rem; margin-bottom: 1.5rem; text-align: center; line-height: 1rem; }
/*************************************
* 採用情報
*************************************/
/*メインビジュアル*/
section#recruit-01 { margin-top: 0; background-color: #ffefa0; }
.recruit-h2-area { position: relative; text-align: center; width: 100%; }
.recruit-main-left-top-01 {
	width: 50%;
	height: 300px;
	float: left;
	background-image: url("../images/recruit/main-01_2025.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-right-top-01 { width: 50%; float: right; }
.recruit-main-02 {
	width: 50%;
	height: 300px;
	float: left;
	background-image: url("../images/recruit/main-02_2025.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-right-top-02 { width: 50%; float: right; }
.recruit-main-03 {
	height: 150px;
	background-image: url("../images/recruit/main-03_2025.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-04 {
	height: 150px;
	background-image: url("../images/recruit/main-04.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-left-bottom-01 { width: 50%; float: left; }
.recruit-main-05 {
	height: 150px;
	background-image: url("../images/recruit/main-05.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-06 {
	width: 50%;
	float: left;
	height: 150px;
	background-image: url("../images/recruit/main-06_2025.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-07 {
	width: 50%;
	float: right;
	height: 150px;
	background-image: url("../images/recruit/main-07.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-main-08 {
	width: 50%;
	float: right;
	height: 300px;
	background-image: url("../images/recruit/main-08_2025.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -999999px;
}
.recruit-h2 {
	position: absolute;
	text-align: center;
	top: 230px;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}
.recruit-h2 h2 {
	padding: 50px 30px 50px 30px;
	font-size: 30px;
	font-family: TsukuBRdGothicStd-D;
	background-color: rgba(255,255,255,0.9);
	display: inline-block;
}
/*メッセージ*/
section#recruit-02 { background-color: #ffefa0; margin-top: 0; }
section#recruit-02 .h2-area { padding-top: 2rem; }
.recruit-message { width: 60%; padding-bottom: 2rem; }
.recruit-message .name { font-size: 1.3rem; margin-top: 0.5rem; text-align: right; font-family: TsukuMinPr6-R; }
.recruit-message .name span { font-size: 0.8rem; }
.recruit-message-bg {
	background-image: url("../images/recruit/01-01_2025.png"), url("../images/parts/img-town.svg");
	background-position: right bottom, center bottom;
	background-repeat: no-repeat, repeat-x;
	background-size: 300px auto, auto 150px;
}
/*社員紹介*/
section#recruit-03 { background-color: #fff5c1; margin: 0; padding: 2rem 0 1rem 0; }
.recruit-staff-detail { border-bottom: 3px solid #ffe500; padding-bottom: 2rem; margin-top: 2rem; }
.recruit-staff-detail:last-child { border-bottom: none; }
.recruit-staff-detail-01 { width: 35%; float: left; }
.recruit-staff-detail-02 { width: 23%; float: left; }
.recruit-staff-detail-03 { width: 40%; float: right; }
.recruit-staff-name { padding-left: 15px; font-size: 1.3rem; border-left: solid 8px #ffe500; font-family: TsukuBRdGothicStd-D; margin-bottom: 1rem; }
ul.recruit-staff-capacity, ul.recruit-staff-capacity li {  list-style: none; margin-left: 0; }
ul.recruit-staff-capacity li { font-family: TsukuBRdGothicStd-R; }
ul.recruit-staff-capacity li:before{ font-family: FontAwesome; content: '\f111'; /* アイコンのunicode */ color: #ffe500; }
.recruit-staff-comment {
	width: 100%;
	display: block;
	padding: 2%;
	border: 5px solid #ffe500;
	border-radius:
	10px; box-sizing:border-box;
	background-color: #fff;	
	font-size: 0.9rem;
	line-height: 1.8rem;
}
.recruit-staff-detail-03 {
	padding-left: 9px;
	background-image: url("../images/parts/pts-ar-03a-l.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 10px 15px;
}
/*募集要項*/
section#recruit-04 { margin-bottom: 2rem; }
section#recruit-04 .table-01 { margin-bottom: 1rem; }
.recruit-contact { text-align: center; }
.recruit-tel { font-size: 1.2rem; font-family: TsukuBRdGothicStd-D; margin-bottom: 0.5rem; margin-top: 0.5rem; }
.recruit-privacy { font-size: 0.8rem; margin-top: 1rem; }
/*************************************
* NEWS
*************************************/
/*一覧ページ*/
section#news-list-01 { margin-top: 2rem; margin-bottom: 2rem; }
.news-list-alpha { width: 100%; margin-bottom: 1rem; }
.news-list-beta { width: 100%; }
table.news-news-list { border-top: 1px dotted #b2b2b2; line-height: 1rem; margin-bottom: 2rem; }
table.news-news-list tr {
	border-bottom: 1px dotted #b2b2b2;
	padding: 20px 0 20px 0;
	display: block;
	position: relative;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	background-image: url("../images/parts/pts-ar-07c-r.png");
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: 10px auto;
}
table.news-news-list th { width: 19%; font-size: 0.8rem; font-weight: normal; display: inline-block; padding-left: 1%; }
table.news-news-list td { width: 73%; display: inline-block; font-family: TsukuBRdGothicStd-D; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; padding-right: 2%; }
table.news-news-list a { position: absolute; width: 100%; height: 100%; top: 0; left: 0; text-indent: -99999px; }
table.news-news-list tr:hover { color: #b2b2b2; background-color: #fffbe7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; opacity: 1; }
/*詳細ページ*/
section#news-detail-01 { margin-top: 2rem; margin-bottom: 2rem; }
.news-detail-free-area p { margin-bottom: 1rem; }
.news-detail-alpha { width: 100%; margin-bottom: 1rem; text-align: justify; }
.news-detail-beta { width: 100%; }
.news-detail-ttl-area { margin-bottom: 1rem; }
h2.news-detail-ttl { display: block; width: 100%; }
h2.news-detail-ttl span.ttl { display: block; font-size: 1.2rem; border-bottom: 2px solid #333333; padding: 0 0 5px 0; }
h2.news-detail-ttl span.date { display: block; padding-top: 5px; font-size: 0.8rem; }
/*************************************
* 会社情報
*************************************/
section#company-01 { margin-top: 2rem; }
.company-alpha { width: 70%; float: left; }
.company-beta { width: 25%; float: right; }
.company-beta > * { margin-bottom: 1rem; }
/*************************************
* お問い合わせ
*************************************/
section#contact-01 { margin-top: 2rem; margin-bottom: 2rem; }
.contact-tel { padding-left: 15px; border-left: 8px solid #b2b2b2; margin-bottom: 1rem; }
.company-tel-no { font-size: 1.2rem; font-family: TsukuBRdGothicStd-D; }
.contact-form { font-size: 0.9rem; line-height: 1.5rem; }
#contact-01 ul.list-02 { margin-bottom: 1rem; }
table.contact-mail-form { width: 94%; line-height: 1rem; border-top: 1px dotted #b2b2b2; margin-bottom: 1rem;}
table.contact-mail-form tr { border-bottom: 1px dotted #b2b2b2; padding: 20px 0 20px 0; display: inline-block; }
table.contact-mail-form th { width: 23%; display: inline-block; font-size: 0.8rem; font-family: TsukuBRdGothicStd-D; }
table.contact-mail-form td { width: 75%; display: inline-block; }
table.contact-mail-form input, table.contact-mail-form textarea  { border: 1px solid #b2b2b2; border-radius: 5px; }
table.contact-mail-form input:focus, table.contact-mail-form textarea:focus { border: 1px #ffe500 solid; outline:none; background-color: #fffbe7; }
.form-name input { height: 35px; width: 50%; font-size: 1rem; padding: 0 1% 0 1%; color: #595959; }
.form-mail input { height: 35px; width: 80%; font-size: 1rem; padding: 0 1% 0 1%; color: #595959; }
.form-tel input, .form-fax input { height: 35px; width: 50%;  padding: 0 1% 0 1%;  color: #595959;}
.form-comment textarea { height: 200px; width: 80%; font-size: 1rem;  padding: 1%; color: #595959; }
#contact-01 span.comment { font-size: 0.7rem; color: #b2b2b2; font-style: italic;}
.form-submit { text-align: center; margin: auto; font-family: TsukuBRdGothicStd-D; }
.form-submit button[type="submit"], .form-submit button[type="button"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #333333;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-family: inherit;
	font-size: 18px;
	font-weight: bold;
	margin: 0 10px;
	padding: 12px 20px 12px 20px;
	text-align: center;
	text-decoration: none;
	transition: background 0.4s, color 0.4s;
	border-radius: 5px;
	 font-family: TsukuBRdGothicStd-D;
	border: none;
}
.form-submit button[type="submit"]:hover, .form-submit button[type="button"]:hover { background-color: #ffe500; }
.bback:before { font-family: FontAwesome; content: '\f0a8'; /* アイコンのunicode */ margin-right: 5px; }
.bconfirm:after { font-family: FontAwesome; content: '\f0a9'; /* アイコンのunicode */ margin-left: 5px; }
.bsubmit:after { font-family: FontAwesome; content: '\f0a9'; /* アイコンのunicode */ margin-left: 5px; }
.body-confirm .contact-tel, .body-confirm .contact-form-txt, .body-complete .contact-tel, .body-complete .contact-form-txt, .body-confirm span.comment, .body-complete span.comment { display: none }
/*************************************
* プライバシーポリシー
*************************************/
section#privacy-01 { margin-top: 2rem; margin-bottom: 2rem; }
section#privacy-01 p { margin: 1rem 0 2.5rem 0;  }


















}



@media only screen and (max-width: 768px){
/*************************************
* 共通
*************************************/
/*600px以下の場合のみ改行*/
br.dsp-600 { display: none; }


/*************************************
* 採用情報
*************************************/
/*メッセージ*/
section#recruit-02 .h2-area { padding-top: 2rem; }
.recruit-message { width: 100%; padding-bottom: 1rem; }
.recruit-message h3 { text-align: center; }
.recruit-message .mincho-01 { text-align: center; font-size: 0.9rem; }
.recruit-message .name { font-size: 1.1rem; margin-top: 0.5rem; margin-bottom: 210px; text-align: center; font-family: TsukuMinPr6-R; }
.recruit-message .name span { font-size: 0.7rem; }
.recruit-message-bg { background-position: center bottom; background-size: auto 200px, auto 150px; }
/*社員紹介*/
section#recruit-03 { background-color: #fff5c1; margin: 0; padding: 2rem 0 1rem 0; }
.recruit-staff-detail { border-bottom: none; padding-bottom: 2rem; }
.recruit-staff-detail-01 { width: 60%; float: none; display: inline-block; vertical-align: top; font-size: 1rem; margin-bottom: 0.5rem; }
.recruit-staff-detail-02 { width: 35%; float: none; display: inline-block; vertical-align: bottom; margin-left: 2%; font-size: 1rem; }
.recruit-staff-detail-03 { width: 100%; float: none; font-size: 1rem; }
.recruit-staff-detail-03 { padding-left: 0;	background-image: none; }
/*募集要項*/
section#recruit-04 { margin-bottom: 2rem; }




}



@media only screen and (max-width: 600px){
/*************************************
* 共通
*************************************/
/*600px以下の場合のみ改行*/
br.dsp-600 { display: inline-block; }
/*************************************
* テーブル
*************************************/
.table-01 { margin-bottom: 1rem; border-top: none; }
.table-01 tr { border-bottom: none; display: inline-block; line-height: 1.5rem; }
.table-01 th { font-weight: bold; width: 96%; display: block; background-color: #ffe500; padding: 2%; line-height: 1rem; border-radius: 5px; }
.table-01 td { width: 96%; display: block; padding: 2% 2% 5% 2%; }
/*************************************
* トップページ
*************************************/
/*あかり電機のお仕事*/
.top-main-txt { -webkit-writing-mode: horizontal-tb; -ms-writing-mode: horizontal-tb; writing-mode: horizontal-tb; height: auto; text-align: justify; font-family: TsukuMinPr6-R; line-height: 2rem; font-size: 1rem; }
.top-works-img { width: 100%; text-align: center; font-size: 0; }
.top-works-img > * { width: 44%; margin: 0 3% 0 3%; display: inline-block; vertical-align: top; }
.top-works-img-img { margin-bottom: 0.5rem; }
.top-works-img .img-02 { padding-top: 0; }
.top-works-img .img-02 .top-works-img-img { position: relative; }
.product-no { position: absolute; color: #fff; font-size: 11px; right: 5px; bottom: 5px; line-height: 1rem; font-family: TsukuBRdGothicStd-R; }
.img-cap { font-family: TsukuBRdGothicStd-D; line-height: 1.3rem; font-size: 0.8rem; }
/*ギャラリー*/
.top-gallery-group .gallery-child { margin-bottom: 1.5rem; }
.top-gallery-group .gallery-child .h5-01 { font-size: 0.8rem; }
/* あかり電機で働く人たち */
.top-recruit-02 h3 { text-align: center; }
/*NEWS*/
table.top-news-list tr { padding: 10px 0 10px 0; }
table.top-news-list th { width: 96%; font-size: 0.8rem; font-weight: normal; display: block; padding: 0 2% 1% 2%; }
table.top-news-list td { width: 96%; display: block; font-family: TsukuBRdGothicStd-D; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; padding: 0 2% 0 2%; }

/*************************************
* あかり電機のお仕事
*************************************/
.works-00-message .name { text-align: center; }
.works-00-message { float: none; width: 100%; margin-top: 2rem; }
.works-00-img { float: none; width: 50%; max-width: 200px; text-align: center; margin: 1rem auto 0 auto; }
/*住宅・店舗の電気・照明設備工事*/
.works-01-txt-area { width: 100%; float: none; margin-bottom: 0.5rem; }
.works-01-txt-img { width: 100%; float: none; }
/*照明器具販売*/
.works-02-img { margin-bottom: 6px; }
.works-02-txt-area { width: 100%; float: none; margin-bottom: 0.5rem; }
.works-02-txt-img { width: 100%; float: none; }
/*************************************
* ギャラリー
*************************************/
/*一覧*/
section#gallery-list-00 { margin-top: 1rem; }
.gallery-category-ttl { width: 100%; background-color: rgba(255, 255, 255, 0); padding: 0 0 1rem 0; color: #333333; display: inline-block; text-align: center; font-size: 0.9rem; line-height: 1rem; font-family: TsukuBRdGothicStd-R; }
.gallery-category-detail { width: 100%; float: none; text-align: center; font-size: 0.9rem; line-height: 1.6rem; font-family: TsukuBRdGothicStd-R; }
.gallery-date-list select, #news-detail .date-list select {	width: 100%; }
.gallery-gallery-group .gallery-child { font-size: 1rem; vertical-align: top; display: inline-block; width: 46%; margin: 0 2% 2rem 2%; position: relative; filter: alpha(opacity=70); -moz-opacity: 0.7; -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }
/*詳細*/
section#gallery-detail-01 { margin-top: 1rem; margin-bottom: 1rem; }
.gallery-detail-pic { margin-bottom: 1rem; }
/*************************************
* 採用情報
*************************************/
/*メインビジュアル*/
section#recruit-01 { margin-top: 0; background-color: #ffefa0; }
.recruit-h2-area { position: relative; text-align: center; width: 100%; }
.recruit-main-left-top-01 { height: 200px; }
.recruit-main-right-top-01 { width: 50%; float: right; }
.recruit-main-02 { height: 200px; }
.recruit-main-03 { height: 100px; }
.recruit-main-04 { height: 100px; }
.recruit-main-left-bottom-01 { width: 50%; float: left; }
.recruit-main-05 { height: 100px; }
.recruit-main-06 { height: 100px; }
.recruit-main-07 { height: 100px; }
.recruit-main-08 { height: 200px; }
.recruit-h2 { top: 160px; }
.recruit-h2 h2 { padding: 20px 20px 20px 20px; font-size: 18px; }
/*メッセージ*/
.recruit-message .mincho-01 { text-align: justify; font-size: 0.9rem; }
.recruit-message .mincho-01 br { display: none; }
/*社員紹介*/
.recruit-staff-detail-01 { width: 100%; }
.recruit-staff-detail-02 { width: 100%; vertical-align: top; text-align: center; margin: auto; }
.recruit-staff-detail-02 img { width: 50%; text-align: center; margin: auto; }
.recruit-staff-detail-03 { width: 100%; }
/*************************************
* NEWS
*************************************/
/*一覧ページ*/
table.news-news-list tr { padding: 10px 0 10px 0; }
table.news-news-list th { width: 96%; font-size: 0.8rem; font-weight: normal; display: block; padding: 0 2% 1% 2%; }
table.news-news-list td { width: 96%; display: block; font-family: TsukuBRdGothicStd-D; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; padding: 0 2% 0 2%; }
/*************************************
* 会社情報
*************************************/
.company-alpha { width: 100%; float: none; }
.company-beta { width: 100%; float: none; }
/*************************************
* お問い合わせ
*************************************/
table.contact-mail-form { width: 100%; line-height: 1rem; border-top: none; margin-bottom: 1rem;}
table.contact-mail-form tr { border-bottom: none; padding: 20px 0 0 0; display: inline-block; }
table.contact-mail-form th { width: 96%; display: block; font-size: 1rem; margin-bottom: 0.5rem; background-color: #ffe500; padding: 2%; border-radius: 5px; }
table.contact-mail-form td { width: 100%; display: block; }
table.contact-mail-form input, table.contact-mail-form textarea  { border: 1px solid #b2b2b2; border-radius: 5px; }
table.contact-mail-form input:focus, table.contact-mail-form textarea:focus { border: 1px #ffe500 solid; outline:none; background-color: #fffbe7; }
.form-name input { height: 35px; width: 100%; font-size: 1rem; padding: 0 1% 0 1%; color: #595959; box-sizing: border-box; }
.form-mail input { height: 35px; width: 100%; font-size: 1rem; padding: 0 1% 0 1%; color: #595959; box-sizing: border-box; }
.form-tel input, .form-fax input { height: 35px; width: 100%;  padding: 0 1% 0 1%;  color: #595959; box-sizing: border-box;}
.form-comment textarea { height: 150px; width: 100%; font-size: 1rem;  padding: 1%; color: #595959; box-sizing: border-box; }
#contact-01 span.comment { font-size: 0.7rem; color: #b2b2b2; font-style: italic; display: block; margin-top: 0.5rem;}

.form-submit button[type="submit"], .form-submit button[type="button"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #333333;
	color: #fff;
	cursor: pointer;
	display: block;
	font-family: inherit;
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 1rem 0;
	padding: 0.5rem 2% 0.5rem 2%;
	width: 100%;
	text-align: center;
	text-decoration: none;
	transition: background 0.4s, color 0.4s;
	border-radius: 5px;
	font-family: DNPShueiMGoStd-B;
	border: none;
}










}





@media only print {
/*フェードイン*/
.effect {
  opacity: 1 !important;
  transform: translateX(0px) !important;
}
.effect-u {
  opacity: 1 !important;
  transform: translateY(0px) !important;
}
.top-crossfade-img { background-image: url("../images/top/slide01.jpg"); background-repeat: no-repeat; background-position: center center; background-size: cover; position: relative; z-index: 1 }


}


















