@charset "utf-8";

* {
  box-sizing: border-box;
	word-break: break-all;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html {
	font-size: 62.5%;
}

body {
  font-size: 1.6rem;
	color: #333;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

/* loader
------------------------------------------------------------*/
#loader {
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
}

#loader div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loaderIcon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: auto;
  position: relative;
  text-indent: -9999em;
  border-top: 4px solid #ccc;
  border-right: 4px solid #ccc;
  border-bottom: 4px solid #ccc;
  border-left: 4px solid #043686;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.5s infinite linear;
  animation: load8 1.5s infinite linear;
}

.loaderIcon::after {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#contentsWrap {
	padding-top: 107px;
}

.inner {
	max-width: calc(1400px + 10vw);
	width: 100%;
	padding: 0 5vw;
	margin: 0 auto;
}

/* fixedBnr
------------------------------------------------------------*/
.fixedBnr {
  display: block;
  position: fixed;
  right: -1px;
  bottom: 30px;
  z-index: 9999;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  width: 200px;
}

.fixedBnr a {
  display: block;
  text-decoration: none;
  color: #043686;
  transition: .3s;
}

.fixedBnr a:hover {
  opacity: .6;
}

.fixedBnr a .subTtl {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 30px;
  color: #043686;
  background: #fff;
  padding: 0 10px 0 15px;
  display: block;
  position: absolute;
  top: 15px;
  left: 0;
  letter-spacing: 1px;
	font-family: "Montserrat", sans-serif;
}

.fixedBnr .dataBnr a p.ttl {
  font-weight: 600;
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #043686;
}

.fixedBnr .closeBtn {
  font-size: 100%;
  font-weight: bold;
  border: 1px solid #043686;
  color: #043686;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  width: 1.4em;
  line-height: 1.3em;
  cursor: pointer;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  position: absolute;
  right: 0;
  background: #fff;
  top: -10px;
  left: -9px;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

/* header
------------------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
  border-bottom: 1px solid #d7d9db;
}

header.scroll {
  top: 0;
}

header a {
	text-decoration: none;
}

.snav {
	line-height: 24px;
	background: #043686;
}

 header .snav .inner {
	max-width: initial !important;
  padding: 0 32px;
}

.snav a {
	font-size: 10px;
	font-size: 1rem;
	color: #fff;
	transition: 0.3s;
}

.snav a:hover {
	opacity: .6;
}

.snav ul {
	float: right;
}

.snav li {
	margin-left: 20px;
	display: inline-block;
}

.snav li::before {
	content: "";
	width: 3px;
	height: 5px;
	background: url(../images/arrow_wt.png) no-repeat;
	margin-right: 8px;
	display: inline-block;
  position: relative;
  top: -1px;
}

.snav li.corpLink::before {
	content: "";
	width: 12px;
	height: 12px;
	background: url(../images/i_tab_wt.svg) no-repeat;
	margin-right: 8px;
	display: inline-block;
  top: 1px;
  position: relative;
}

.navAera {
	height: 80px;
  z-index: 1000;
  background: #fff;
	-webkit-transition: height 0.3s ease;
	transition: height 0.3s ease;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	padding: 0 32px;
	margin: 0 auto;
}

header .logo {
  margin-right: 2vw;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

header .logo a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

header .logo a:hover {
  opacity: 0.6;
}

header .logo a img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: inline-block;
  width: 18.75vw;
  max-width: 360px;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
	justify-content: space-between;
	width: 100%;
}

header nav > ul > li > a {
  font-size: clamp(1.1rem, 1vw, 1.5rem);
  font-weight: 700;
  color: #333;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease;
  line-height: 1.4;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
  flex-direction: column;
}

header nav > ul > li > a:hover {
  opacity: .6;
}

header nav > ul > li.ac > a {
  color: #043686 !important;
}

header nav > ul > li > a .en {
  font-size: clamp(0.8rem, 1vw, 1.1rem);
  font-family: "Montserrat", sans-serif;
  color: #043686;
  display: inline-block;
}

header nav .navMain {
  margin: 0 24px 0 auto;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header nav .navMain .hasChild {
  position: relative;
  padding-right: 16px;
}

header nav .navMain .hasChild::after {
  position: absolute;
  display: inline-block;
  content: "";
  right: 0;
  bottom: 10px;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #043686;
  border-right: 2px solid #043686;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

header nav .navMain > li:not(:last-child) {
  margin-right: 2vw;
}

header nav .navMain > li:last-child {
  margin-right: 0 !important;
}

header nav .navMain > li:hover .menuBox {
  visibility: visible;
  opacity: 1;
}

header nav .navMain > li a {
  color: #333;
  text-decoration: none;
  transition: 0.3s ease;
}

header nav .navMain > li a.en {
  font-family: "Montserrat", sans-serif;
}

header nav .navMain > li .menuBox {
  background: #fff;
  text-align: center;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  right: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
  min-width: calc(100% + 24px);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-shadow: 0px 16px 40px rgba(37, 2, 12, 0.14);
	box-shadow: 0px 16px 40px rgba(37, 2, 12, 0.14);
}

header nav .navMain > li .menuBox .subMenu {
  display: block;
}

header nav .navMain > li .menuBox .subMenu .en li {
  font-family: "Montserrat", sans-serif;
}

header nav .navMain > li .menuBox .subMenu > ul > li {
  padding: 8px 10px;
}

header nav .navMain > li .menuBox .subMenu > ul > li > a {
  font-size: 1.2rem;
  display: inline-block;
	transition: .3s;
}

header nav .navMain > li .menuBox .subMenu > ul > li > a:hover {
  opacity: .6;
}

header .btnLink {
	min-width: 120px;	
}

header .btnLink a {
	font-size: 1.7rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #fff !important;
  background: #F8362E;
  border-radius: 64px;
	display: inline-block;
	transition: .3s;
	padding: 12px 16px 10px;
	width: 100%;
}

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

header .btnLink a::after {
	content: "";
	width: 19px;
	height: 19px;
	background: url(../images/arrow_orange.png) no-repeat center center #fff;
	margin-left: 10px;
	display: inline-block;
	border-radius: 50%;
	position: relative;
	top: 3px;
}

/* footer
------------------------------------------------------------*/
footer {
	color: #eee;
	background: #043686;
}

footer a {
	color: #fff;
  transition: .3s;
  text-decoration: none;
}

footer a:hover {
	opacity: 0.6;
}

.pagetop {
	line-height: 50px;
	display: block;
	text-align: center;
	border-bottom: 1px solid #2c5699;
	transition: 0.3s;
}

.pagetop:hover {
	background: rgba(255,255,255,.1);
}

.pagetop img {
	vertical-align: middle;
}

footer p.mainLink {
	font-weight: 600;
	margin: 30px 0 10px;
  font-size: clamp(1.3rem, 1vw, 1.4rem);
}

footer p.mainLink.en {
	font-family: "Montserrat", sans-serif;
}

footer ul.en li a {
	font-family: "Montserrat", sans-serif;
}

footer h2:first-child {
	margin-top: 0;
}

footer .inner {
	padding: 30px 5vw;
	position: relative;
}

footer .fl p {
  font-size: 1.4rem;
	line-height: 24px;
}

footer .logo {
	margin-bottom: 20px;
	display: inline-block;
}

footer .linkArea {
	display: table;
  margin-bottom: 40px;
}

footer .linkArea > div {
	padding-left: 50px;
	display: table-cell;
}

footer .linkArea > div:first-child {
	padding-left: 0;
}

footer .linkArea ul {
	margin-bottom: 30px;
  border-left: 1px solid #ccc;
  padding-left: 16px;
}

footer .linkArea ul:last-child {
	margin-bottom: 0;
}

footer .linkArea ul li {
	line-height: 1.8;
  font-size: clamp(1.1rem, 1vw, 1.2rem);
  margin-bottom: 4px;
}

footer .linkArea ul li a {
	font-size: 13px;
	font-size: 1.3rem;
	color: #b8c0d4;
}

footer .pmark {
	margin-top: 50px;
	display: table;
}

footer .pmark a {
	text-decoration: underline;
}

footer .pmark a:hover {
	text-decoration: none;
}

footer .pmark img,
footer .pmark p {
	display: table-cell;
	vertical-align: middle;
}

footer .pmark p {
	font-size: 12px;
	line-height: 20px;
	padding-left: 20px;
}

footer .copy {
	font-size: 12px;
  font-family: "Montserrat", sans-serif;
	color: #b8c0d4;
	position: absolute;
	right: 5vw;
	bottom: 30px;
	letter-spacing: 2px;
}

@media screen and (max-width: 1080px) {
	/* header
	------------------------------------------------------------*/
  header .navAera {
    padding: 0 0 0 24px;
  }

  header nav .navMain {
    margin: 0 1vw 0 auto;
  }

   header .btnLink {
    min-width: auto;
    width: 80px;
    height: 80px;
   }

  header .btnLink a {
    font-size: 1.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60px;
    height: 100%;
    padding: 0;
    border-radius: 0;
  }

  header .btnLink a::after {
    width: 16px;
    height: 16px;
    top: 0;
    margin: 4px 0 0 0;
  }
	
	/* footer
	------------------------------------------------------------*/
	footer .inner {
		padding: 30px 20px;
	}

    footer .linkArea {
    width: 100%;
  }
  
	footer .copy {
		right: 20px;
	}
}

@media screen and (max-width:834px) {
  	#contentsWrap {
		padding-top: 60px;
	}	

  .inner {
    min-width: inherit;
    width: 94%;
    padding: 0;
  }

  /* fixedBnr
  ------------------------------------------------------------*/
  .fixedBnr {
    width: 160px;
  }

  .fixedBnr img {
    object-fit: cover;
    object-position: center;
    font-family: "object-fit: cover;";
    height: 70px;
    width: 160px;
  }

  .fixedBnr a .subTtl {
    font-size: 1rem;
  }

  .fixedBnr .dataBnr a p.ttl {
    font-size: 1.2rem;
  }


/* header + nav
	------------------------------------------------------------*/
	.snav {
		display: none;
	}

  .navAera {
    height: 60px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0 0 24px;
  }

  .navAera .logo {
    height: 40px;
    z-index: 10000;
    position: relative;
  }

  .navAera .logo img {
    height: 40px;
  }

  header #menuBtn {
    width: 60px;
    height: 60px;
    background: #043686;
    padding: 20px 11px 19px;
    display: block;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  header #menuBtn > span {
    width: 30px;
    height: 2px;
    background: #fff;
    display: inline-block;
    position: absolute;
    right: calc(50% - 15px);
  }

  header #menuBtn > span:nth-of-type(1) {
    top: calc(50% - 9px);
    transition: 0.3s;
  }

  header #menuBtn > span:nth-of-type(2) {
    top: 50%;
  }

  header #menuBtn > span:nth-of-type(3) {
    top: calc(50% + 9px);
    transition: 0.3s;
  }

  header #menuBtn.ac > span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }

  header #menuBtn.ac > span:nth-of-type(2) {
    width: 0;
  }

  header #menuBtn.ac > span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }

  header nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 60px 4vw 4px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: auto;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  header nav > ul > li > a {
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 48px;
    width: 100%;
  }

  header nav.ac {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
    -webkit-transform: none;
    transform: none;
  }

  header nav .navMain {
    padding: 60px 0 0 0;
    width: 100%;
    position: relative;
    top: 0;
    -webkit-transform: none;
    transform: none;
    padding-top: 0;
    display: block;
    height: 100%;
    transition: height 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transition: height 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, height 0.3s ease;
    transition: transform 0.3s ease, height 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    overflow: scroll;
    margin-right: 0;
  }

  header nav .navMain > li {
    width: 100%;
    border-top: 1px solid #ccc;
  }

  header nav .navMain > li:not(:last-child) {
    margin-right: 0;
  }

	header nav .navMain > li a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

  header nav .navMain > li:hover .menuBox {
    visibility: visible !important;
    opacity: 1 !important;
  }

  header nav .navMain > li .menuBox {
    width: 100%;
    top: 100%;
    left: inherit;
    -webkit-transform: inherit;
    transform: inherit;
    right: 0;
    display: none;
    padding: 0;
    height: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
  }
	
  header nav .navMain > li .menuBox .subMenu {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding: 8px 0 8px 0;
  }

  header nav .navMain > li .menuBox .subMenu > ul > li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-right: 0;
    text-align: left;
  }

  header nav .navMain > li .menuBox .subMenu > ul > li {
    text-align: left;
  }

  header nav .navMain > li .menuBox .subMenu > ul > li a {
    font-size: 1.4rem;
    text-align: left;
    display: inline-block;
  }

  header nav .hasChild {
    position: relative;
  }

  header nav .hasChild::after {
    content: none !important;
  }

  header nav .hasChild .nav__arrow {
    width: 48px;
    height: 48px;
    background: #043686;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  header nav .hasChild .nav__arrow::after {
    content: "";
    width: 6px;
    height: 6px;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    display: inline-block;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  header nav .hasChild .nav__arrow.ac::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  header nav .hasChild .nav__arrow.ac ~ .menuBox {
    height: auto;
    position: relative;
    border-left: 0;
    opacity: 1 !important;
    visibility: inherit !important;
    display: block;
    width: 100%;
    min-width: 100%;
  }

  header .btnLink {
    position: absolute;
    top: 0;
    right: 60px;
    width: 60px;
    height: 60px;
    min-width: auto;
  }

  header .btnLink a {
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 0;
  }

  header .btnLink a::after {
    width: 16px;
    height: 16px;
    top: 0;
    margin: 4px 0 0 0;
  }
}

@media screen and (max-width:600px) {
	* {
		-moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
	}

	body {
		min-width: inherit;
	}
	
	/* footer
	------------------------------------------------------------*/
	footer {
		padding: 0;
	}

	footer .inner {
		width: 100%;
		padding: 0;
	}

	footer .fl,
	footer .fr {
		float: none;
	}

	.pagetop {
		background: rgba(255,255,255,.1);
	}

	footer .mainLink {
		font-weight: normal;
		width: 50%;
		margin: 0 !important;
		float: left;
		text-align: center;
		border-right: 1px solid #2c5699;
		border-bottom: 1px solid #2c5699;
	}

  footer .linkArea > div:first-of-type .mainLink:first-child {
		width: 100%;
	}

	footer .mainLink a {
		padding: 15px 0;
		display: block;
	}

  footer .linkArea {
    margin-bottom: 0;
  }

	footer .linkArea:after { content: "";display: block;clear: both; }
	footer .linkArea,
	footer .linkArea > div {
		display: block;
	}

	footer .linkArea > div {
		padding-left: 0;
	}

	footer .linkArea ul {
		display: none;
	}

	footer .fl {
		width: 94%;
		padding: 20px 0;
		margin: auto;
		border-bottom: 1px solid #2c5699;
		text-align: center;
	}

	footer .logo {
		width: 150px;
	}

	footer .fl a.sp {
		padding: 5px 50px;
		margin-top: 20px;
		display: inline-block;
		border: 1px solid #fff;
    border-radius: 32px;
	}

  footer .fl a.sp::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url(../images/i_tab_wt.svg) no-repeat;
    margin-left: 8px;
    display: inline-block;
    top: 1px;
    position: relative;
	}

	footer .fl p {
		font-size: 12px;
		font-size: 1.2rem;
	}

	footer .pmark {
		width: 90%;
		padding: 20px 0;
		margin: 0 auto;
	}

	footer .pmark p {
		width: 80%;
	}
  
	footer .pmark br {
		display: none;
	}

	footer .copy {
		color: #333;
		background: #fff;
		padding: 15px 0;
		text-align: center;
		position: static;
	}
}