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

.wrapper {
  width: 100%;
  margin: 0 auto;
}

.wrapper-small {
  max-width: 728px;
}

.wrapper-flush {
  width: 100%;
}

.nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10000;
}
.nav-container {
  position: fixed;
  top: 80px;
  right: 0;
  z-index: 9999;
  overflow-y: auto;
  visibility: hidden;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0 0 0;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  background: var(--nav-color);
  font-weight: 500;
  font-style: normal;
  -webkit-overflow-scrolling: touch;
	
}

.nav-container.is-visible {
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  background: var(--nav-color);
}

/* Nav toggle */
.nav-toggle {
  line-height: 1;
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border: 0;
  background: var(--nav-color);
  float: right;
  width: 80px;
  height: 80px;
  cursor: pointer;
}
.nav-toggle .icon-menu {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 24px;
  vertical-align: middle;
  fill: none;
  cursor: pointer;
}

@media only screen and (max-width: 599px) {
  .nav-container {
    position: fixed;
    top: 60px;
  }
  .nav-toggle {
	   padding: 0.65rem 0.85rem;
    width: 60px;
    height: 60px;
  }
}
.icon-menu .line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  background-color: var(--nav-color2);
}
.icon-menu .line-1 {
  top: 0;
}
.is-active .icon-menu .line-1 {
  -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
  -ms-transform: translateY(10px) translateX(0) rotate(45deg);
  transform: translateY(10px) translateX(0) rotate(45deg);
}
.icon-menu .line-2 {
  top: 50%;
  margin-top: -1px;
}
.is-active .icon-menu .line-2 {
  opacity: 0;
}
.icon-menu .line-3 {
  bottom: 0;
}

.is-active .icon-menu .line-3 {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
  -ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
  transform: translateY(-11px) translateX(0) rotate(-45deg);
}

.icon-title {
  display: block;
  text-align: center;
  color: var(--nav-color2);
}

.icon-title .open {
	margin-top: 0.15rem;
	font-size: 10px !important;
	white-space: nowrap;
}

.is-active .icon-title .open {
  display: none;
}

.icon-title .closed {
  display: none;
	white-space: nowrap;
}

.is-active .icon-title .closed {
  display: block;
  margin-left: -0.1rem;
	margin-top: 0.40rem;
	font-size: 10px !important;
}


.menu {
  list-style: none;
  margin: 0 auto 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-flow: column wrap;
  justify-conten: space-between;
}

.nav-menu {
  background: var(--nav-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


/* Give menu items a top border ***************************/

.nav-menu .menu-item {
  border-top: 1px solid rgba(255, 255, 255, .15);
  /*line-height: 25px;	*/
}

.nav-menu>.menu-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.nav-menu>.menu-item:hover, .nav-menu>.menu-item.is-active {
  background: rgba(0, 0, 0, .1);
}

.nav-menu .menu-link {
  display: block;
  text-decoration: none;
  color: var(--nav-color2);
  padding: 0.75rem 1rem;
  position: relative;
}

.nav-menu .menu-link::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: bold;
  position: absolute;
  top: .75rem;
  right: 1rem;
  bottom: 0;
}

.nav-dropdown {
  display: none;
}

.has-dropdown {
  position: relative;
  cursor: pointer;
  color: var(--nav-color2);
  padding: 1rem 0rem 1rem;
  text-indent: 1rem;
  font-size: 1rem;
  line-height: 100%;
}

.has-dropdown>.menu-link {
  display: inline-block;
}

.has-dropdown.is-active {
  padding: 1rem 0rem 0rem;
}

.has-dropdown:after {
  font-size: 2rem;
  position: absolute;
  top: 0rem;
  right: 1rem;
  bottom: 0;
  content: "+";
  color: var(--nav-color2);
  line-height: 45px;
}

.has-dropdown.is-active:after {
  content: "\2013";
}

.has-dropdown.is-active>.nav-dropdown {
  display: block;
  margin-top: 1rem;
}

.nav-dropdown .menu-item {
  border-color: var(--nav-color);
  background-color: var(--base-bgcolor01);
  text-indent: -.0rem;
}

.nav-dropdown .menu-item a {
  color: var(--nav-color);
}

.nav-dropdown .menu-item:hover {
  background-color: var(--nav-color2);
}

/*****************************
PC
******************************/

@media (min-width: 1025px) {
  .mlink {
    color: #565656;
  }
  .nav {
    width: 100%;
    margin-top: 0px !important;
    padding: 0px 0;
	 
  }
  .nav {
    max-width: auto;
    position: static;
    top: auto;
    left: 0;
    z-index: 9999;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
	  background:  var(--nav-color);
    margin-top: 0px;
	  
  }
	
  .nav-container, .nav-container.is-visible {
    max-width: auto;
    position: static;
    top: auto;
    left: 0;
    z-index: 9999;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    background: none;
    /*background: var(--nav-color);*/
    margin-top: 0px;
  }
	
	
  .nav-container, .nav-container.is-visible {
    visibility: visible;
    height: auto;
    min-height: 0;
    overflow-y: visible;
  }
  .nav-toggle {
    display: none;
  }
  .nav-container{padding: 0 0 0;}	
	
  .menu {
    list-style: none;
    margin: 0 auto 0;
    padding: 0;
    width: 100%;
    max-width: 1170px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
	
  }

.menu-link,
	.has-dropdown{font-size: 1.25rem !important;
		letter-spacing: 1px;
	/*filter: drop-shadow(1px 1px 0px rgba(0,0,0,0.2));*/}
	
  .nav-menu {
    background-color: transparent;
	  
  }
  .nav-menu .menu-item {
    width: 100%;
    text-align: center;
    padding-bottom: 0px;
    padding-top: 0;
    line-height: 25px;
    border-bottom: 0px solid var(--nav-color3);
    border-right: 1px solid var(--nav-color2);
    border-top: none;

  }
  .nav-menu>.menu-item:first-child {
    border-top: none;
	  border-left: 1px solid var(--nav-color2);
  }
  .nav-menu>.menu-item:last-child {
    border-bottom: none;
	   
  }
  .has-dropdown {
    color: var(--nav-color2);
    text-indent: 0rem;
    padding: 1rem .5rem 1rem !important;
    height: auto !important;
  }
  .has-dropdown.is-active {
    padding-bottom: 2px;
	   color:  var(--nav-color2);
  }
  .has-dropdown.is-active>.nav-dropdown {
    display: block;
    margin-top: 0rem;
  }
  .nav-menu .menu-item:last-child {
    border-right: none;
  }
  .nav-dropdown .nav-dropdown .menu-item {
    background-color: #b0b0b0;
    border-color: #909090;
    border-right: 1px solid rgba(255, 255, 255, .15);
  }
  .nav-menu>.menu-item, .nav-menu>.menu-item.is-active {
    display: inline-block;
    background-color: transparent;
  }
  .nav-menu .menu-link {
    display: block;
    text-decoration: none;
    color: var(--nav-color2);
    padding: 1rem .5rem 1rem;
    position: static;
    border-right: 0px solid rgba(255, 255, 255, .15);
  }
  .nav-menu .menu-link:first-child {
    border-left: 0px solid rgba(255, 255, 255, .15);
  }
  .nav-menu .menu-link::after {
    content: "";
  }
  .nav-menu .menu-item {
    -webkit-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  }
  .nav-menu>.menu-item:hover, .nav-menu>.menu-item.is-active {
    background-color: var(--nav-color2);
    border-bottom: 0px solid var(--nav-color2);
    color:  var(--nav-color);
  }
  .nav-menu .menu-link:hover {
    color:  var(--nav-color);
  }
  .has-dropdown:after {
    content: "" !important;
  }
  .nav-menu>.has-dropdown:after {
    display: none;
  }
  .has-dropdown>.menu-link {
    padding-right: auto;
    border-right: 1px solid rgba(255, 255, 255, 0);
  }
  .nav-dropdown {
    display: block;
    opacity: 0;
    position: absolute;
    top: 100%;
    min-width: 300px;
    max-width: 300px;
    margin: 0px 0 0 -10px;
    padding: 0rem 0;
    /*background-color: var(--nav-color4);*/
    visibility: hidden;
    -webkit-transition: visibility 0s linear 0.25s, opacity 0.25s linear;
    transition: visibility 0s linear 0.25s, opacity 0.25s linear;
	border-top: 3px solid var(--nav-color);
  }
  .has-dropdown:hover>.nav-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
	   z-index: 9999;
  }
  .nav-dropdown .menu-item {
    text-align: left;
    font-weight: 600;
    background-color: var(--nav-color);
    text-indent: 0rem;
    padding-bottom: 0;
  }
  .nav-menu .menu-item .nav-dropdown .menu-item {
    border-left: none;
  }
  .nav-dropdown .menu-item a {
    color: var(--nav-color2);
    border-bottom: 1px dotted rgba(255, 255, 255, .5);
    padding: .5rem 1rem .5rem;
    position: relative;
  }
  .nav-dropdown .menu-item a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: bold;
    position: absolute;
    top: .6rem;
    right: 1rem;
    bottom: 0;
  }
	
  .nav-dropdown .menu-item {
    border-right: 0px solid var(--nav-color2);
  }
  .nav-dropdown>.menu-item:first-child {
	  border-left: 0px solid var(--nav-color2);
  }
	
	
  .nav-dropdown .menu-item:hover {
    background-color: var(--nav-color2);
    border-right: none;
	  
  }
  .nav-dropdown .menu-item:hover a {
    color: var(--nav-color);
  }
}

.pc_n {
  display: block !important;
}

.gContact {
	margin: 3rem auto 0rem;
	padding-bottom: 5rem !important;
	
}

.gContact img {
	display: block;
	width: 94%;
	max-width: 360px;
	height: auto;
	margin: 0 auto 0;
}

.gContact div.btn_area {
	display: block;
	width: 94%;
	max-width: 360px;
	height: auto;
	margin: 0 auto 0;
}


@media (min-width: 1025px) {
  .pc_n {
    display: none !important;
  }
	.gContact {	display: none!important;}
}
