@charset "utf-8";

/* Contents
 * ****************************
 *
 * 1: general style
 * 2: body
 * 3: header
 * 4: contents
 * 5: footer
 *
 * ****************************
 * Update History
 * 
 * Dropdown width from 180px to 190px  9/5/2024 by Kevin
 *
 */

/*======= 1: general style ===============================================*/

/*======= 2: body ========================================================*/
body {
	position: relative;
	color: #444444;
  font-family: "Noto Sans Japanese", sans-serif;
	font-size: .875rem; /* 14px */
	line-height: 1.6;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 11px;
  }
}
.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
/*======= 3: header ======================================================*/
header {
  position: fixed;
  width: 100%;
  box-sizing: border-box;
	z-index: 1000;
  background: #03337b;
}
/*#top header {
  background: transparent;
}*/
.blend {
  display: none;
  mix-blend-mode: multiply;
  position: fixed;
  top: 0;
  width: 100%;
  height: 74px;
  background: rgba(37,66,148,.85);
  box-shadow: 0px 0px 18.96px 5.04px rgba(0, 0, 0, 0.11);
  z-index: 5;
}
#gnav .logo {
  width: 288px;
}
#gnav .logo img {
  width: 100%;
}
/* global nav */
#gnav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1000px;
  height: 74px;
  margin: 0 auto;
  box-sizing: border-box;
  color: #fff;
  z-index: 15;
  font-size: 1rem;
  font-weight: 200;
}
nav ul#gn {
  display: inline-flex;
  margin-bottom: 5px;
}
nav ul#gn li {
  position: relative;
  margin-right: 33px;
}
nav ul#gn li:nth-last-child(3) {
  margin-right: 0;
}
nav ul#gn li a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 0 4px;
  transition: .3s;
}
nav ul#gn li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: .3s;
}
nav ul#gn li a:hover::after {
  width: 100%;
}
nav ul#gn li.dropdown a::after {
  content: none;
}

/* Dropdown */
#gn li ul {
	position: absolute;
	width: 190px;
	padding: .5rem 15px;
	top: 40px;
	left: 50%;
  margin-left: -90px;
	background: #1c306e;
	opacity: 0;
  visibility: hidden;
	font-size: 12px;
	z-index: 100;
  transition: all .0s;
}
#gn li ul.active {
  visibility: visible;
	opacity: 1;
  transition: all .6s;
}
#gn li ul li a {
	display: block;
	padding: .5rem 15px;
	width: 100%;
	box-sizing: border-box;
	color: #fff;
	text-decoration: none;
	line-height: 1.5;
	margin-left: 1.3em;
	text-indent: -1.3em;
  opacity: 1;
  transition: all .4s;
}
#gn li ul li a:hover {
  opacity: .8;
  transition: all .4s;
}
#gn li ul.active::after {
  content: "";
  width: 100%;
  height: 20px;
  position: absolute;
  top: -20px;
  left: 0;
}
#gn li ul li a::before {
	content: "ー ";
	display: inline-block;
	width: 0;
	height: 0;
}
#gn li ul.active::before {
  position: absolute;
  top: -24px;
  right: 50%;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  padding-left: 0;
  border: 12px solid transparent;
  border-bottom: 14px solid #1c306e;
}

/* language selection */
#lang {
  border: 1px solid #8da7d5;
}
#lang li {
  display: none;
}
#lang li.select {
  display: block;
}
#lang a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 122px;
  height: 40px;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
}
#lang a span {
  position: relative;
  display: inline-block;
  padding-right: 25px;
}
#lang a span::after {
	content: "";
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -2px;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-top: 6px solid #8da7d5;
}

.nocl {
  cursor: default;
}

@media screen and (max-width: 768px) {
  .blend {
    height: 55px;
  }
  #lang {
    font-size: 12px;
    border: 1px solid #8da7d5;
  }
  #lang a {
    width: 90px;
    height: 28px;
  }
  #lang a span {
    padding-right: 20px;
  }
  /* global nav */
  #gnav {
    width: 100%;
    height: 55px;
    padding: 0 15px;
    box-sizing: border-box;
    color: #fff;
    z-index: 1500;
    font-size: 1rem;
    font-weight: 200;
  }
  #gnav .logo {
    width: 50%;
  }
  nav ul#gn {
    display: block;
  }
  nav ul#gn li {
    margin: 0;
    border-bottom: 1px solid #1f3678;
  }
  nav ul#gn li a {
    position: relative;
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-bottom: 0;
  }
  nav ul#gn li a::after {
    content: none;
  }
  .menu-trigger {
    position: absolute;
    right: 0;
		width: 27px;
    z-index: 3000;
  }
  .menu-trigger.active {
    right: 91%;
  }
	.menu-trigger,
	.menu-trigger span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	.menu-trigger {
    position: relative;
    display: block;
		width: 25px;
		height: 30px;
	}
	.menu-trigger span {
		position: absolute;
		right: 22%;
		height: 2px;
    border-radius: 1px;
		background-color: #fff;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 5px;
    width: 100%;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 14px;
    width: 100%;
	}
	.menu-trigger span:nth-of-type(3) {
		bottom: 5px;
    width: 100%;
	}
	.menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(9px) rotate(-45deg);
		transform: translateY(9px) rotate(-45deg);
    background-color: #fff;
	}
	.menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu-trigger.active span:nth-of-type(3) {
		-webkit-transform: translateY(-9px) rotate(45deg);
		transform: translateY(-9px) rotate(45deg);
    width: 100%;
    background-color: #fff;
	}
    
  /* Dropdown */
  #gn li ul {
    position: static;
    width: 100%;
    padding: 10px 15px;
    margin-left: 0;
    background: #111f49;
    opacity: 0;
    display: none;
    font-size: 12px;
    z-index: 100;
  }
  #gn li ul.active {
    display: block;
    opacity: 1;
    transition: all .4s;
    padding: 0;
  }
  #gn li ul li a {
    display: block;
    padding: 1.3rem 15px;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    line-height: 1.5;
    margin-left: 0;
    padding-left: 3em;
    text-indent: -1.3em;
    opacity: 1;
    transition: all .4s;
    outline: none;
  }
  #gn li ul li a:hover {
    opacity: .8;
    transition: all .4s;
  }
  nav ul#gn li.dropdown a span {
    width: 100%;
  }
  nav ul#gn li.dropdown a span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -2px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top: 6px solid #fff;
  }
  nav ul#gn li.dropdown.active a span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -8px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom: 6px solid #fff;
  }
  #gn li ul li a::before {
    content: "ー ";
    display: inline-block;
    width: 0;
    height: 0;
    padding-left: 15px;
  }
  #gn li ul.active::before {
    content: none;
  }
}
/*-- Modal -----------------*/
#menu_overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: rgba(37,66,148,.9);
  box-shadow: 0px 0px 18.96px 5.04px rgba(0, 0, 0, 0.11);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    height: 100%;
    background: #192c65;
    -webkit-transform: translateX(180%);
    transform: translateX(180%);
    z-index: 9999;
  }
  .sp nav {
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  nav.drawer {
    -webkit-transform:translateX(18%);
    transform:translateX(18%);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  nav li {
    line-height: 2.5;
  }
	nav ul#gn {
		width: 100%;
	}
	nav.active {
		position: fixed;
		top: 0;
    right: 0;
		display: block;
		width: 100%;
		border: none;
		z-index: 8000;
	}
  nav.active ul#gn {
    display: block;
    padding-top: 95px;
  }
	nav.active ul#gn li {
		position: relative;
    float: none;
		display: table;
		width: 100%;
    margin-right: 0;
    box-sizing: border-box;
		color: #fff;
    text-align: center;
	}
	nav.active ul#gn li a {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding: 15px 10px;
		color: #fff;
		text-decoration: none;
    font-size: 136%;
	}
  nav.active ul#gn li a:hover:before,
  nav.active ul#gn li a:hover:after{
    width: 0;
  }
}

/*======= 4: contents ======================================================*/
main {
  position: relative;
  width: 1000px;
  margin: 3rem auto 4rem;
}
#top main {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main {
    position: relative;
    width: 100%;
    margin: 1.5rem auto;
    padding: 0 15px;
    box-sizing: border-box;
  }
  #top main {
    margin: 0 auto;
    padding: 0;
  }
}

/*======= 4: bnr ======================================================*/
.bnr {
  padding: 2.5rem 0;
  background: #f6f7f7;
}
.bnr ul {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: 0 auto;
}
.bnr ul li {
  width: 208px;
}
.bnr ul li a {
  display: block;
  width: 100%;
  border-radius: 3px;
  box-sizing: border-box;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}    
.bnr ul li img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .bnr {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }
  .bnr ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .bnr ul li {
    width: 49%;
    margin-bottom: 2%;
    box-sizing: border-box;
  }
  .bnr ul li:nth-last-child(1),
  .bnr ul li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .bnr ul li img {
    width: 100%;
  }
}


/*======= 5: footer ======================================================*/
/* pageTop */
#pageTop {
	position: absolute;
	z-index: 1000;
  display: none;
}
#pageTop a {
	display: block;
	width: 50px;
	height: 50px;
  border: 3px solid #1e357a;
  border-radius: 50%;
	box-sizing: border-box;
  background: #fff;
  opacity: 1;
}
#pageTop a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  display: block;
  width: 9px;
  height: 9px;
  margin-top: -4px;
  margin-right: -6px;
  border-top: 3px solid #1e357a;
  border-left: 3px solid #1e357a;
  border-right: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#pageTop a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  #pageTop a {
    width: 40px;
    height: 40px;
    border: 2px solid #1e357a;
  }
  #pageTop a::after {
    width: 6px;
    height: 6px;
    margin-top: -2px;
    margin-right: -4px;
    border-top: 2px solid #1e357a;
    border-left: 2px solid #1e357a;
  }

}

footer {
	background: #254195;
	width: 100%;
  color: #fff;
}
.footernav {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 1000px;
  padding: 3rem 0;
  margin: 0 auto;
}
.ft_navlist {
  width: 60%;
  display: flex;
  justify-content: space-between;
}
.ft_navlist .spbox {
  display: flex;
  justify-content: space-between;
  width: 60%;
}
.ft_navlist dl {
  position: relative;
}
.ft_navlist dl::before {
  content: "";
  position: absolute;
  top: 0;
  left: -45px;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,.24)
}
.ft_navlist dl a {
  text-decoration: none;
  color: #fff;
  opacity: 1;
  transition: all .4s;
}
.ft_navlist dl a:hover {
  opacity: .8;
  transition: all .4s;
}
.ft_navlist dl dt {
  margin-bottom: .3rem;
  font-size: 1rem;
}
.ft_navlist dl dd {
  font-size: .75rem;
  line-height: 2.5;
}
.ft_navlist dl dd a::before {
	content: "ー";
	display: inline-block;
  padding-right: 5px;
}


.ft_companyinfo {
  width: 35%;
}
.ft_companyinfo .ft_logo {
  margin-bottom: 30px;
}
.ft_companyinfo address {
  margin-bottom: 25px;
  font-style: normal;
  font-size: 11px;
  font-family: 'Montserrat', sans-serif;
}
.ft_companyinfo .btn_contact {
  display: block;
  width: 249px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  background: #1e357a url(../../img/common/arw_contact.png) no-repeat 90% 50%;
  text-decoration: none;
  color: #fff;
}
#copyright {
  padding: .5rem;
  text-align: center;
  background: #03337b;
  color: #fff;
  font-size: 11px;
  font-family: 'Montserrat', sans-serif;
}

@media screen and (max-width: 768px) {
  footer {
    background: #254195;
    width: 100%;
    color: #fff;
  }
  .footernav {
    display: flex;
    justify-content: space-between;
    flex-direction:column;
    width: 100%;
    padding: 2rem 15px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .ft_navlist {
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
  }
  .ft_navlist .spbox {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    box-sizing: border-box;
    padding-right: 15px;
  }
  .ft_navlist .spr {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-top: .5rem;
  }
  .ft_navlist .spbox dl:first-child {
    margin-bottom: 15px;
    padding-top: .5rem;
  }
  .ft_navlist .spbox dl:last-child {
    padding-bottom: .5rem;
  }
  .ft_companyinfo {
    width: 100%;
    text-align: center;
  }
  .ft_companyinfo .ft_logo {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  .ft_companyinfo .ft_logo img {
    width: 100%;
  }
  .ft_companyinfo address {
    margin-bottom: 1rem;
    font-size: 9px;
  }
  .ft_companyinfo .btn_contact {
    width: 68%;
    height: inherit;
    line-height: normal;
    padding: .8rem .3rem;
    box-sizing: border-box;
    margin: 0 auto;
    background: #1e357a url(../../img/common/arw_contact.png) no-repeat 92% 50%;
    background-size: 19px;
  }
  .ft_navlist dl::before {
    content: none;
  }
  .ft_navlist .spbox::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,.24)
  }
}