@charset "UTF-8";

/*COMMON ---------------------------------------------------------------------------------*/

html {
	font-size: 62.5%;
   /*font-size: calc(100vw / 19.2);*/
	font-family: 'Noto Sans Japanese', sans-serif;
	position: relative;
}
body {
	font-size: 1.6rem;
	font-feature-settings: 'palt'1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #3f3f3f;
	overflow-x: hidden;
}
a:link {
	color: #3f3f3f;
	text-decoration: none;
}
a:hover {
	color: #3f3f3f;
	text-decoration: none;
}
a:visited {
	color: #3f3f3f;
	text-decoration: none;
}
a:link.white {
	color: #fff;
	text-decoration: none;
}
a:hover.white {
	color: #fff;
	text-decoration: none;
}
a:visited.white {
	color: #fff;
	text-decoration: none;
}

/* CONTAINER */
.container{
	width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	box-sizing: border-box;
}
.container-all{
	width: 100%;
}

/*
.inside > h2{
	padding: 1rem 1.5rem 1.5rem 2rem;
	display: block;
	border-left: 7px solid #231815;
	border-bottom: 2px solid #231815;
	font-size: 130%;
	color: #231815;
	font-weight: bold;
}*/

/* PAGE-TOP */
#page-top{
	position: fixed;
	bottom: 0;
	right: 0;
}
#page-top img{
	width:8rem;
	height: 8rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {

.container{
	width: 100%;
	}
}
@media print, screen and (max-width:768px) {

body{
	font-size: 3.6vw;
	line-height: normal;
}
.container{
	width: 100%;
	padding: 0 1.5rem;
	}
}

/* FaidIn */
body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/*HEADER ---------------------------------------------------------------------------------*/

header{
	padding: 15px 0;
	display: flex;
	box-sizing: border-box;
	justify-content: space-between;
}
header .logo{
	width: 200px;
	box-sizing: border-box;
}
@media all and (-ms-high-contrast: none) {
  header .logo{
		width: 200px;
		height: 75px;
	}
}
.search {
	width:410px;
	margin: 15px 0 0;
}
@media (max-width: 540px) {
	
header .logo{
	width: 120px;
	margin: 15px 0 10px;
}
.search {
   display:none;
  }
}
@media only screen and (min-width: 541px) and (max-width: 768px) {
	header .logo{
		width: 120px;
		margin: 15px 0 20px;
	}
	.search {
   	width:450px;
		margin: 0 50px 10px 0;
  }
}
@media print, screen and (max-width:1025px) {
	.search {
   	width:450px;
		margin: 15px 100px 0;
  }
}

/*FONTSIZE ---------------------------------------------------------------------------------*/

.fontsize_block{
	display: flex;
	justify-content: center;
	align-items: center;
}
.fontsize_block.in_page{
	padding:0;
	border-right:none;
}
.fontsize_block ul{
	margin: 0;
	padding:0;
}
.fontsize_block ul li {
	list-style:none;
	float: left;
	margin: 0 1px 0 0;
	background: #000;
	color:#fff;

	width: 40px;
	height:40px;
	line-height:40px;
	text-align: center;
	cursor: pointer;
}
.fontsize_block ul li.small,
.fontsize_block ul li.middle,
.fontsize_block ul li.large{font-size: 77%;}

.fontsize_block ul li:last-child {margin: 0;}
.fontsize_block ul li.hover {
	display: block;
	text-decoration: none;
	background: #40c6cc;
}
.fontsize_block ul li.active {
	display: block;
	text-decoration: none;
	background: #40c6cc;
	color: #ffffff;
}
.fontsize_block p.home {
	margin: 0;
	background-image: url(../images/subIcon_home.svg);
	background-repeat: no-repeat;
	background-size: 40px;
	background-position: center center;
	font-size:0;

	width: 40px;
	height:40px;
	line-height:40px;
	text-align: center;
	cursor: pointer;
}

@media print, screen and (max-width:1025px) {
	.fontsize_block{
		display: none;
	}
}
/*NAV ---------------------------------------------------------------------------------*/

.global_nav{
	background: #314545;
}
.global_nav nav{
	max-width: 1200px;
	margin: 0 auto;
}
.global_nav nav ul{
	display: flex;
	justify-content: space-around;
	align-items: center;
	color: #fff;
	font-size: 130%;
}
.global_nav nav ul li{
	display: flex;
}
.global_nav nav ul li a{
	width: calc(1200px / 5);
	padding: 1.5rem;
	line-height: 2.6rem;
	height: 2.6rem;
	text-align: center;
	transition: all 1s ease;
}
.global_nav nav ul li a:hover{
	width: calc(1200px / 5);
	background: #132d2c;
	margin: 0;
	padding: 1.5rem;
}

@media print, screen and (max-width:1024px) {
.global_nav{
		display: none;
	}
}
@media print, screen and (min-width:1025px) {
.global_nav-sp{
		display: none;
	}
}

/*PANQUZ---------------------------------------------------------------------------------*/

.breadcrumb ul {
    display: flex;
}  
/*.breadcrumb li::before {
    content: ">";
	 margin: 0 2rem;
}*/  
.breadcrumb li:first-child::before {
    content: "";
}
.breadcrumb li i {
    margin: 0 2rem;
}
@media only screen and (max-width: 1024px) {
	.breadcrumb{
    	border-top: 1px solid #e4e4e4;
	} 
}
@media only screen and (max-width: 768px) {
	.breadcrumb ul{
    	margin-top: 1rem;
		margin-bottom: 1rem;
	} 
}
@media only screen and (min-width: 528px) and (max-width: 768px) {
	.breadcrumb ul li{
    	font-size: 80%;
	} 
}

/*BUNNER---------------------------------------------------------------------------------*/

.ft_area{
	margin: 40px auto 0;
	padding: 2rem;
	background: #c9caca;
}
.ft_area ul{
	display: flex;
	justify-content: space-between;
}
.ft_area ul li img{
	height: 130px;
	flex-wrap: wrap;
}
@media print, screen and (max-width:1025px) {
.ft_area{
		margin-top:-3rem;
	}
}
@media (min-width: 768px) {
	
.ft_area-sp{
		display: none;
	}
}
/*@media (max-width: 768px) {
	
.ft_area ul{
	display: flex;
	flex-wrap: wrap;
}
.ft_area ul li img{
	height: 70px;
  }
}*/
@media (max-width: 768px) {	
	.ft_area{
		display: none;
	}
	.ft_area-sp{
		margin: 40px auto 0;
		padding: 0;
		background: #c9caca;
	}
	.ft_area-sp ul{
		display: flex;
		flex-direction: column;
	}
	.ft_area-sp ul li{
		padding: 1.5rem 0 1.5rem 1.5rem;
		border-bottom: 1px solid #afafaf;
		position: relative;
	}
	.ft_area-sp ul li::after{
		content: " ";
		display: block;
    	width: 1rem;
    	height: 1rem;
    	border-top: solid 2px #697b91;
    	border-right: solid 2px #697b91;
    	-webkit-transform: rotate(45deg);
    	transform: rotate(45deg);
		position: absolute;
		top: 44%;
		right: 1rem;
	}
	.ft_area-sp ul li a{
		display: block;
	}
}

/*FOOTER---------------------------------------------------------------------------------*/

footer{
	padding: 40px 40px 20px 40px;
	box-sizing: border-box;
	background: #505051;
}
footer ul.txt_area{
	display: flex;
}
footer ul.txt_area img{
	width: 300px;
}
@media all and (-ms-high-contrast: none) {
  footer ul.txt_area img{
		width: 300px;
		height: 70px;
	}
}
footer ul.txt_area li{
	color: #fff;
}
footer ul.txt_area > li > dl{
	margin: 0 0 20px 80px;
	box-sizing: border-box;
	color: #fff;
}
footer ul.txt_area li > dl > dd > dl{
	display: flex;
}
footer ul.txt_area li > dl > dd > dl > dt{
	width: 150px;
}
footer p{
	margin: 15px 9rem 15px 0;
	text-align: right;
	color: #fff;
}

@media (max-width: 768px) {
	footer{
		padding: 40px 15px 20px 15px;
		box-sizing: border-box;
	}
	footer ul.txt_area{
		display: flex;
		flex-direction: column;
	}
	footer ul.txt_area img{
		max-width: 100%;
		margin-bottom: 60px;
	}	
	footer ul.txt_area ul{
		clear: both;
	}
	footer ul.txt_area > li > dl{
		margin: 0 0 15px 0;
		color: #fff;
	}
	footer ul.txt_area li > dl > dd > dl > dt{
		width: 35%;
	}
	footer ul.txt_area li > dl > dd > dl > dd{
		width: 65%;
	}
	footer p{
		text-align: center;
	}
}