@charset "utf-8";
/*RightToLeft*/
@keyframes RightToLeft {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

h1,h2,h3,p,.logo_main {
  /*animation-duration: 3s;
  animation-name: RightToLeft;*/
}
/*hamburgermenu*/
.nav_sp {
	line-height: 2.7em;
}
.nav_sp ul li {
	width: 280px;
	margin: -1px auto 0;
	border-top:dashed 1px #ccc;
}
.nav_sp ul li a{
    display: block;
    position: relative;
}
.nav_sp ul li a:before{
	content:"";
	position: absolute;
	left: -150%;
	height:100%;
	width:100%;
	background : #ffff00;
	opacity: 0.5;
	transition: 0.3s;
}
.nav_sp ul li a:hover:before{
	left:100%;
}
.nav_sp ul li li {
	width:270px;
	padding-left: 10px;
}
.logo_menu {
	width:40%;
	height:auto;
	margin:14px 0 0 -5px;
}
#nav-drawer {
	width: 100%;
	position: relative;
	top:2px;
}
@media screen and ( min-width:1421px) {#nav-drawer{display: none;}}
@media screen and ( max-width:1420px) and ( min-width:768px){#nav-drawer { display: inherit; position: relative;top: 2px;}}
@media screen and ( max-width:767px) {#nav-drawer{position: relative;top: 2px;}}
.nav-unshown {
  display:none;
}
#nav-open {
	display: inline-block;
	position:absolute;
	top: -47px;
	right: 0%;
	vertical-align: middle;
}
@media screen and ( max-width:1080px) {#nav-open {right: 40px;}}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 4px;
  width: 32px;
  border-radius: 4px;
  background: #78d5ea;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -12px;
}
#nav-open span:after {
  bottom: -24px;
}
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  max-width: 410px;
  height: 100%;
  background: #fff;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/*pulldown_menu*/
.nav_pc {
	width:100%;
	height: 45px;
	background: #00A9B0;
}
@media screen and ( max-width:1080px) {.nav_pc {display:none;}}

.nav_inner{
	width:1080px;
	margin:0 auto;
}
@media screen and ( max-width:1080px) {.nav_inner {width:98%;}}
.nav_pc nav ul {
	position: relative;
}
nav.nav_pc ul li {
	height: 34px;
	position: relative;
	float: left;
	padding: 11px 58px 0;
	z-index: 999;
}

nav.nav_pc ul li:hover {
	background-color: #ffff00;
	color: #000;
}
nav.nav_pc ul li a {
	color: #fff;
	white-space: nowrap;
	display: block;
	width:180%;
	height: 180%;
	margin: 0 auto;
}
nav.nav_pc ul li a:hover {
	color: #000;
	display: block;
}
nav.nav_pc ul li ul li a {
	color: #333;
	display: block;
	width:180%;
	height: 180%;
	margin: 0 auto;
}
nav.nav_pc ul ul {
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0px;
	background: #fff;
}
@media screen and ( max-width:1420px) and ( min-width:1081px) {nav.nav_pc ul ul {width: 150%;padding-left: 10px;}}
nav.nav_pc ul ul li a{
	position: relative;
	left: -47px;
}
nav.nav_pc ul ul li {
	height: 40px;
	float: none;
	padding-top: 15px;
	border-bottom: dotted 0.5px #ccc;
}

/*pulldown_animetion*/
.nav_pc ul ul {
	visibility: hidden;
	opacity: 0;
	transition: .5s ease-in-out;
}
.nav_pc ul li:hover ul {
	visibility: visible;
	opacity: 1;
}

/*pulldown_right*/
nav.nav_pc ul li.nav_info a{
	color:#000;
}
.nav_pc .nav_info{
	height: 30px;
	top: -5px;
	margin: 10px 0 0 3%;
	padding: 6px 40px 0;
	background-color: #fff;
	border-radius: 7px;
}
@media screen and ( max-width:1420px) and ( min-width:1081px) {.nav_pc .nav_info{margin: 10px 0 0 1%;padding: 6px 22px 0;}}

/*breadcrumbs*/
.breadcrumbs {
    width: 100%;
    margin: 10px auto 10px;
}
.breadcrumbs ul {
    display: table;
}
.breadcrumbs ul li {
	font-size: 12px;
    float: left;
}
.breadcrumbs ul li:first-child::before {
    padding: 0 7px 0 0;
	font-family: "Font Awesome 5 Free";
	content: "\f015";
	font-family: FontAwesome;
    font-size: 14px;
}
.breadcrumbs ul li::before {
    padding: 0 7px 0;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
    font-family: FontAwesome;
    font-size: 14px;
}