@charset "utf-8";
/* CSS Document */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}

*{font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;}

html {
  font-size: 62.5%; /* sets the base font to 10px for easier math */
}


body {
	line-height:160%;
	font-size: 14px;
	font-size: 1.4rem;
	color: #2F2F2F;
}


article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

/*　a設定　*/

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	color:#2F2F2F;
	text-decoration: none;
}

a:hover,a:hover img {
	opacity: 0.6;
}

.clearfix::after{
  content: "";
  display: table;
  clear: both;
}
/*
h1 {
  font-size: 32px;
  font-size: 3.2rem;
}
*/

h2 {
	margin: 0 auto;
	padding: 20px 5px;
	text-align: center;
	font-size: 1.5rem;
	font-weight: normal;
	line-height: 180%;
}

h2  span {
	display: block;
	font-size: 3.0rem;
}

h3 {
	font-size: 1.8rem;
	font-weight: normal;
	border-bottom: 1px solid #FF6600;
	padding: 10px 0 5px;
	margin: 10px 0 15px;
}

li {
	list-style: none;
}

/* align */
.txt_c {
	text-align: center;
}

.img_c {
	text-align: center;
	padding: 15px 0;
}

/* header */
#top-head {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    padding: 10px 15px 15px;
    line-height: 1;
	background: #FFF;
	border-bottom: 5px solid #ff6600;
	z-index: 10000;
}
#top-head:after {
    content: "";
    display: block;
    height: 1px;
    background: #fff;
    width: 980px;
    margin: 30px auto 0;
}
 
#top-head .inner {
    position: relative;
}

#top-head .logo {
float: left;
font-size: 32px;
background: url(../img/tw_logo.gif) no-repeat;
width: 359px;
height: 62px;
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
display: block;
}

#global-nav {
	padding: 15px 0 0 0;
}

#global-nav ul {
    list-style: none;
    position: absolute;
    right: 0;
	font-size: 14px;
}


#global-nav ul li {
    float: left;
	position: relative;
	vertical-align: middle;
/*	padding: 0px 10px;*/
	font-size: 15px; font-size: 1.5rem;
	text-align: center;
}

#global-nav ul li a {
/*    padding: 5px;*/
}

/* transition */
#top-head,
#top-head:after,
#top-head .logo,
#global-nav ul li,
#global-nav ul li a {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.dropmenu{
  *zoom: 1;
  list-style-type: none;
  width: 960px;
  margin: 15px auto;
  padding: 0;
}

.dropmenu:before, .dropmenu:after{
  content: "";
  display: table;
}
.dropmenu:after{
  clear: both;
}
.dropmenu li{
  position: relative;
  width: 24%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}

/*親の色*/
.dropmenu li a {
	display: block;
	margin: 0;
	padding: 15px 0 11px;
	background: #FFF;
	color: #2f2f2f;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
}

.dropmenu li ul{
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}

.dropmenu li ul li{
  width: 100%;
}

/*　下メニューの濃い個所　*/
.dropmenu li ul li a{
	padding: 13px 15px;
	border-top: 1px solid #FF8433;
	background:  #FFF;
	text-align: left;
}

/*下のメニューを選んでいるときの親コンテンツ*/
.dropmenu li:hover > a{
	background: #FFC7A2;
	border-radius: 3px;
}

/* 下のメニューを選択しているとき */
.dropmenu li a:hover {
	background: #FFC7A2;
}

.dropmenu li:hover > a:after{
    left: 0%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #FF6600;
	border-width: 10px;
    margin-top: -10px;
}


/* nav sample tran*/

#flip3 ul {
  visibility: hidden;
  perspective: 400px;
}
#flip3 li:hover ul{
  visibility: visible;
}
#flip3 ul li{
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
  transition: .1s;
}
#flip3 li:hover ul li{
  transform: rotateX(0);
}
#flip3 li:hover ul li:nth-child(1) {
  transition-delay: 0s;
}
#flip3 li:hover ul li:nth-child(2) {
  transition-delay: .1s;
}
#flip3 li:hover ul li:nth-child(3) {
  transition-delay: .2s;
}
#flip3 li:hover ul li:nth-child(4) {
  transition-delay: .3s;
}
#flip3 li ul li:nth-last-of-type(1) {
  transition-delay: 0s;
}
#flip3 li ul li:nth-last-of-type(2) {
  transition-delay: .1s;
}
#flip3 li ul li:nth-last-of-type(3) {
  transition-delay: .2s;
}
#flip3 li ul li:nth-last-of-type(4) {
  transition-delay: .3s;
}


/*　/ヘッダ　*/


.slick-slide {
  text-align: center;
  color: #419be0;
  background: white;
}

#container {
	clear: both;
	width: 100%;
	padding-top: 95px;
}

#main_image {
	margin: 0 auto;
	width:100%;
	background: rgba(235,235,235,1.00);
}


.main_box {
	width: 80%;
	margin: 0 auto;
}

.co_bk_gr {
	background: rgba(255,255,255,1.00);
	padding: 20px 10px;
}


#company  {
/*	background: rgba(55,151,43,1.00);*/
	text-align: center;
}

#company dl {
	width: 27%;
	display: inline-block;	
	margin: 5px;
	padding-top: 22%;
	padding-bottom:  10px;
	padding-left: 5px;
	padding-right: 5px;
	box-shadow:3px 3px 7px 1px #d6d6d6;
	border-radius:6px;
	border:1px solid #cccccc;	
}

#company dl > dt {
	border-bottom: 1px solid #000;
	text-align: center;
}

.co_txt {
	text-align: left;
}


.button_01 {
	display: block;
	text-align: center;
	color: #FF6600;
	border: 2px solid #FF6600;
	width: 50%;
	margin: 10px auto;
	padding: 3px 0 ;
}

#compa_01 {
	background: url(../img/com_01.jpg)  no-repeat;
	background-position: top center;
	background-color: rgba(255,255,255,1.00);
}

#compa_02 {
	background: url(../img/com_02.jpg)  no-repeat;
	background-position: top center;
	background-color: rgba(255,255,255,1.00);
}
#compa_03 {
	background: url(../img/com_03.jpg)  no-repeat;
	background-position: top center;
	background-color: rgba(255,255,255,1.00);
}

#staff_voice {
	text-align: center;
}

.box_g {
	background: rgba(235,235,235,1.00);
	padding: 20px 0;
}

.box_w {
	background: rgba(255,255,255,1.00);
	padding: 20px 0;
}


.news_list {
	text-align: center;
	display: block;
	box-sizing: border-box;
	width: 60%;
	margin: 0 auto;
	padding: 0 0 30px;
}

.news_list a {
	display: block;
	border-bottom: 1px solid #000;
}

.news_list dl {
	padding: 0 10px;
}

.news_list dt {
	float: left;
	padding: 20px 10px ;
	width: 10%;
	text-align: left;
}

.news_list dd {
	padding:  20px 10px;
	text-align: left;
}

.n_ico_01 {
	color:  rgba(205,0,3,1.00);
	padding: 0 15px;
	margin: 0 15px 0;
	border: 1px solid rgba(205,0,3,1.00);
}

.n_ico_02 {
	color: rgba(0,0,0,1.00);
	padding: 0 15px;
	margin: 0 15px 0;
	border: 1px solid rgba(0,0,0,1.00);
}

.n_ico_03 {
	color: rgba(9,90,11,1.00);
	padding: 0 15px;
	margin: 0 15px 0;
	border: 1px solid rgba(9,90,11,1.00);
}

#f_box {
	width: 100%;
	padding:  25px 0;
	margin: 10px auto 0;
	border-top : 3px solid #ff6600;
	background: rgba(235,235,235,1.00);
}

.f_list_box {
	width: 80%;
	margin: 0 auto;
}

.foot_list {
	float: left;
	width:24%; 
	margin: 0 auto;
	text-align: left;
	padding: 0px 5px;
	line-height: 180%;
}

.foot_list > dt {
	font-size: 1.4rem;
	font-weight: bold;
	border-bottom: 1px solid #2F2F2F;
	margin: 0 0 10px;
}

.cpr {
	font-size: 80%;
	padding: 10px;
	text-align: center;	
}

#page-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    font-size: 77%;
}

#page-top a {
	background: #FF6600;
    text-decoration: none;
    color: #fff;
	width: 6em;
	height: 6em;
	text-align: center;
	display: block;
	border-radius:3em;
	box-sizing: border-box;
	padding: 30px 0 0 0;
	font-size: 1.2em;
}