@charset "utf-8";
/* CSS Document */

html {
	font-size: 62.5%;
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}
body{
	font-family: 'Noto Sans JP', sans-serif;
 	font-size: 1.4rem;
	background-color: #fff;
	overflow-x: hidden;
	color:#121212;
	font-weight: 500;
	letter-spacing: 0.06em;
	-webkit-text-size-adjust: 100%;
}


.e {
  opacity: 0;
}
.e-v {
  animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY( 20px );
  }
  100% {
    opacity: 1;
    transform: translateY( 0 );
  }
}

a:link, 
a:visited, 
a:active{
	color:#828080;
	text-decoration: none;
	transition: 0.25s linear;
}

a:hover{
	color:#C8C5C5;
}

.br::before {
	content: "\A" ;
	white-space: pre ;
}

img {
	width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
}

#container{
	width: 100%;
	overflow: hidden;
}

#header-wrap{
	width: 100%;
	height: 900px;
	position: relative;
}

/*ヘッダーエリアの設定*/

/* 「SlideDown」の動作内容 */
@keyframes SlideDown {
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(-70px);/* Y軸方向に70px */
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateY(0);
  }
}

/* 「SlideDown」を適用する箇所 */

#header{	
  animation-duration: 1.9s;/* アニメーション時間 */
  animation-name: SlideDown;/* アニメーション名 */
  animation-iteration-count: 1;/* アニメーションの繰り返し*/
}

#header{
  width: 100%;
	display: flex;
  	text-align: center;	
	position: fixed;
	left:0;
	top:0;
	z-index:10;
	transition: height 0.4s ease background-color .5s, color .5s;
    box-sizing: border-box;
}

#header.change-color {
    background-color: #FFFFFF;	
	opacity: 0.9;
}

/*.navtop{
	width: 18%;
	color:#828080;
}*/

/*.language_top{	
	display: flex;
	justify-content: space-between;
	list-style:none;
	padding: 1px 0px 0 0; 
}
*/
.language_top li{
	padding: 0 0px 0 0;
}

ul.language_top > li {
  display:inline;
}
ul.language_top > li:not(:nth-child(1)):before {
  content:" | ";
  color:silver;
}

#pageheader_01{
	position: absolute;
	top: 0;
	right: 0;
	width: 70%;
	height: 100%;
	display: block;
	margin-left: auto; 
	padding-right: 50px;
	background:#3B3A3A;
}

#top{
	flex: 1;
	margin: 0;
	width: 20%;
}

.site_logo img{
	display: block;	
	margin: 15px 5px 0px 20px;
	width: 200px;
}

/*グローバルナビの設定*/

#nav_global{
	display: block;
	height: 40px;	
	font-family: 'Noto Sans JP', sans-serif;
}

#nav_global ul{
	display: flex;
	 justify-content:flex-end;
}

#nav_global li {
	display:block;
	margin-left: 55px;
	margin-top: 15px;
}

#nav_global a {
	position: relative;
	padding-bottom: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all .3s;
	letter-spacing: 0.1em;
}
#nav_global a:hover {
	color: #999999;
}

#nav_global a::after {
	position: absolute;
	bottom: -1px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background:#47B739;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}
#nav_global a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* position-active */
#nav_global .gnav01 a,
#nav_global .gnav02 a,
#nav_global .gnav03 a,
#nav_global .gnav04 a,
#nav_global .gnav05 a,
#nav_global .gnav06{
	
}
.hamburger-menu{
	display: none;
}

/* breadcrumbs-area */

.breadcrumbs-area{
	width: 100%;
	margin: 0 auto;
	height: 20px;
	text-align: right;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.9rem;
	box-sizing: border-box;
}

.breadcrumbs-list li{
	margin: 0 4px 0 0;	
	padding-right: 30px;
	display:inline-block;
}

.breadcrumbs-list a{
	margin: 0 4px 0 0;
	display:inline-block;
	position: relative;
}

.breadcrumbs-list a::after{	
	display: block;
	content: '';
	position: absolute;
	top: 43%;
    right: -23px;
    box-sizing: border-box;
    width: 0px;
    height: 0px;
    border: 4px solid transparent;
    border-left: 4px solid #7a0;
}

/* contents */
#contents{
	width: 100%;
	margin: 0px 0 30px;
}

/*fotter*/

#footer{
	width: 100%;
	height: 600px;
	background-color:rgba(97,180,201,0.9);
	position: relative;
}

/*page-top*/
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:  rgba(42,170,132,0.7);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}

#page-top a:hover{
  background: #777;
}

#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}

#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}

.footer-inner{	
	width:100%;	
	line-height: 1.8;
	height: 360px;
	position: relative;	
	font-family: 'Noto Sans JP', sans-serif;
}

.contact_sec{
	width: 40%;
}

.contact{
	width:46%;;
	position: absolute;
	top:20%;
	left: 0;
	line-height: 1.3;
	padding: 0px;
	color:#FFFFFF;
}

.contact a{
	display: block;
	color:#FFFFFF;
	font-size: 3.8rem;
	text-align: center;
	vertical-align: middle;
}

.contact a:hover{
	text-decoration: none;
	opacity: 0.6;
}

.contact_en{
	display: block;
	width: 100%;
	font-weight: 600;
	position: relative;
	font-family: 'Oswald', sans-serif; 
}

.contact_en {
  background: linear-gradient(90deg, rgba(97,180,201,1) 0%, rgba(97,180,201,0.7) 50%, rgba(69,207,35,1) 100%);
  background-size: 200% 100%;
  border: none;
}
.contact_en:hover {
  background-position: 100% 0;
}

/*.contact_en::after{
	position: absolute;
	 content: '';
    top: 110%;
    left: 30%;
    width: 80%;
    height: 5px;
    background:#C7C7C7;
}*/

.contact_details01{
	width:42%;
	position: absolute;
	top: 40%;
	left: 16%;
	line-height: 1.4;
	font-size: 1.0rem;
	font-weight: 500;
	text-align: left;
	display: block;	
	margin: 30px auto;
	color: #ffffff;
}

#address{
	width: 400px;	
	height: 160px;
	position: absolute;
	top: 74%;
	left: 13%;
	color: #ffffff;
}

#address li.name{
	font-size: 1.3rem;
	font-weight: 600;
	margin: 16px 0 1px 50px;
}

#address li.post-code{
	margin: 0 0 0 50px;
}

#address li.add{
	margin: 0 0 0 50px;
}

#sitemap{
	display: flex;
	justify-content: space-between;
	width: 28%;
	position: absolute;
	top: 72%;
	right:16%;
}

.sitemap_left_sec{
	display: block;
	width: 34%;
}

.sitemap_right_sec{
	display: block;
	width: 34%;
}

.sitemap_01,
.sitemap_02,
.sitemap_03{
	width: 130px;
	display: block;
	padding-bottom: 3px;	
}

.sitemap_04,
.sitemap_05,
.sitemap_06{
	display: block;
	width: 160px;
	padding-bottom: 3px;
}

.sitemap_line{
	display: block;
	font-weight: 600;
	min-height: 1.0;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
	padding: 4px 0  2px 4px;
}

li.sitemap_n{
	padding: 6px 0 0 4px;
	letter-spacing: 0.1em;
}

.sitemap_no{
	font-size: 0.8rem;
	padding-right: 16px;
	padding-bottom: 2px;
}

.fotter_bottom{	
	width: 78%;
	margin: 100px auto 0;
	border-bottom: #9A9797 solid 1px;
}

.copyright{
	position: absolute;
	top: 80%;
	right: 10%;
	text-align: right;
  	display: block;
	margin:0 10px 0px 0;
	width: 100%;
	color:#4D494A;
	font-size: 1.0rem;
}


.my-gray{
	color: #8A8585;
}