@charset "utf-8";
@import url("destyle.css");

/* ----------------------------------------------- font */
/*OpenSans*/
@font-face {
  font-family: 'OpenSans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../font/OpenSans-Semibold.woff2") format('woff2'), url("../font/OpenSans-Semibold.woff") format('woff');
}
@font-face {
  font-family: 'OpenSans-Bold';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/OpenSans-Bold.woff2") format('woff2'), url("../font/OpenSans-Bold.woff") format('woff');
}
@font-face {
  font-family: 'OpenSans-Regular';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/OpenSans-Regular.woff2") format('woff2'), url("../font/OpenSans-Regular.woff") format('woff');
}
/*DMSerifDisplay*/
@font-face {
  font-family: 'DMSerifDisplay';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/DMSerifDisplay-Regular.woff2") format('woff2'), url("../font/DMSerifDisplay-Regular.woff") format('woff');
}
/* ----------------------------------------------- */
* {
  color: #1a1a1a;
  line-height: 180%;
  box-sizing: border-box;
  font-family: 'OpenSans', sans-serif;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  -webkit-print-color-adjust: exact;
  -webkit-text-size-adjust: 100%;
}
/* ----------------------------------------------- link */
a {
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}
a:link,
a:active {
  color: #3d95d1;
}
a:visited {
  color: #66b6db;
}
a:hover {
  opacity: 0.8;
}
/* ----------------------------------------------- before */
::before,
::after {
  transition: all 0.3s ease 0s;
}
/* ----------------------------------------------- animation */
.animated {
  opacity: 0;
}
/* ----------------------------------------------- float */
.f_left {
  float: left;
  margin: 0 40px 30px 0px;
}
.f_right {
  float: right;
  margin: 0 0px 30px 40px;
}
.clear {
  clear: both;
}
/* ----------------------------------------------- position */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
/* ----------------------------------------------- file */
a[href$=".pdf"]:after,
a[href$=".doc"]:after,
a[href$=".docx"]:after,
a[href$=".xls"]:after,
a[href$=".xlsx"]:after,
a[href$=".ppt"]:after,
a[href$=".pptx"]:after {
  display: inline-block;
  padding-right: 24px;
  background-repeat: no-repeat;
  background-position: 2px center;
  background-size: 19px auto;
  content: '.';
  text-indent: -9999px;
}
a[href$=".pdf"]:after {
  background-image: url(../img/pdf.svg);
}
a[href$=".doc"]:after,
a[href$=".docx"]:after {
  background-image: url(../img/doc.svg);
}
a[href$=".xls"]:after,
a[href$=".xlsx"]:after {
  background-image: url(../img/xls.svg);
}
a[href$=".ppt"]:after,
a[href$=".pptx"]:after {
  background-image: url(../img/pp.svg);
}
/* ----------------------------------------------- open window icon */
.wo,
.wo_w {
  display: inline-block;
  position: relative;
  width: 13px;
  height: 16px;
  margin-left: 5px;
  vertical-align: middle;
}
.wo::after,
.wo_w::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url("../img/wo.svg") no-repeat;
  width: 13px;
  height: 16px;
}
.wo::after {
  background: url("../img/wo.svg") no-repeat;
}
.wo_w::after {
  background: url("../img/wo_w.svg") no-repeat;
}
/* ----------------------------------------------- hr */
hr.clear {
  clear: both;
  height: 1px;
  border: 0px;
  border: 1px solid transparent;
  color: #fff;
}
/* ----------------------------------------------- wrapper */
#wrapper {
  overflow-x: hidden;
}
/* ----------------------------------------------- header */
header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 15px;
  background-color: #fff;
}
header h1 {
  padding-top: 10px;
}
header .header_right {}
header h1 a:hover,
header .header_right a:hover {
  opacity: 1.0;
}
/* language */
header .header_right .language {
  width: 150px;
  margin-left: auto;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  padding: 1px;
  border-radius: 50px;
  border: 1px solid #ccc;
}
header .header_right .language li {
  width: 50%;
}
header .header_right .language li a {
  display: block;
  text-align: center;
  padding: 3px 20px;
  border-radius: 30px;
}
header .header_right .language li a:link,
header .header_right .language li a:visited,
header .header_right .language li a:active {
  color: #100551;
  text-decoration: none;
}
header .header_right .language li a:hover {
  opacity: 1.0;
}
header .header_right .language li.on a {
  background-color: #11206d;
}
header .header_right .language li.on a:link,
header .header_right .language li.on a:visited,
header .header_right .language li.on a:active {
  color: #fff;
}
/* serach */
header .header_right .serach {
  text-align: right;
  margin: 15px 0 0 0;
}
header .header_right .serach input[type="text"] {
  width: 300px;
  padding: 4px 15px;
  border: 1px  solid #ccc;
  border-radius: 30px;
  text-align: left;
}
header .header_right .serach ::placeholder {
  color: #9b9b9b;
}
header .header_right .serach input[type="submit"] {
  width: 60px;
  padding: 4px 10px;
  background-color: #11206d;
  border-radius: 30px;
  background-image: url("../img/search.svg");
  background-position: center;
  background-size: 20px auto;
  background-repeat: no-repeat;
}
/* -------------------------------------------------- overlay */
.overlay {}
/* -------------------------------------------------- nav */
@media screen and (min-width: 920px) {
  #nav {
    text-align: center;
  }
  #nav .toggle {
    display: none;
  }
  #nav nav {
    width: 100%;
  }
  #nav nav .serach {
    display: none;
  }
  #nav nav ul {
    position: relative;
    display: -webkit-flex;
    display: flex;
  }
  #nav nav ul li {
    width: 20%;
    cursor: pointer;
    border-top: 1px solid #f1f1ec;
    transition: all .2s ease-in;
  }
  #nav nav ul a {
    display: block;
    padding: 17px 10px;
    border-right: 1px solid #dedcd0;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease 0s;
  }
  #nav nav ul li:last-child a.accordion_header {
    border-right: none;
  }
  #nav nav ul a span {
    position: relative;
    display: inline-block;
    padding-right: 25px;
    transition: all 0.3s ease 0s;
    font-size: 1.8rem;
  }
  #nav nav ul a span::before {
    position: absolute;
    content: '';
    right: 0;
    top: -3px;
    bottom: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-top: 2px solid #1c417c;
    border-right: 2px solid #1c417c;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #nav nav ul li:hover a {
    opacity: 1.0;
  }
  #nav nav ul li:hover {
    background-color: #1c417c;
  }
  #nav nav ul li:hover a span {
    color: #fff;
  }
  #nav nav ul li:hover a span::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  #nav nav ul a.on {/*on*/
    position: relative;
  }
  #nav nav ul a.on::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #11206d;
  }
}
/* ----------------------------------------------- link > dot */
.link_dot {
  position: relative;
  display: inline-block;
}
.link_dot::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
  --_g: no-repeat radial-gradient(farthest-side,#c9b253 94%,#0000);
  background:
    var(--_g) 0    0,
    var(--_g) 100% 0,
    var(--_g) 100% 100%,
    var(--_g) 0    100%;
  background-size: 35% 35%;
}
.link_dot:hover::before {
  animation: dot_rotate .5s 1; 
}
@keyframes dot_rotate {
  100% {background-position: 100% 0,100% 100%,0 100%,0 0}
}
/* ----------------------------------------------- footer */
footer {
  text-align: center;
  padding: 50px 0 20px 0;
  background-color: #15224c;
}
footer .inner {
  width: 95%;
  max-width: 1220px;
  margin: 0 auto;
}
footer .inner p.jsom img {
  display: inline-block;
  margin: 0 0 20px 0;
}
footer .inner p.jsom,
footer .inner p.jsom span {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  line-height: 150%;
}
footer .inner p.jsom span {
  font-size: 1.8rem;
}
footer .inner address {
  padding-top: 10px;
  display: block;
  color: #fff;
  font-size: 1.6rem;
}
/* footer_navi */
footer .footer_navi {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 60px 0;
}
footer .footer_navi li {
  width : calc(100%/5);
  text-align: left;
  padding: 15px;
}
footer .footer_navi li a:link,
footer .footer_navi li a:active,
footer .footer_navi li a:visited {
  text-decoration: none;
  color: #fff;
  font-size: 1.7rem;
}
/**/
footer .inner p.copy {
  text-align: left;
  color: #fff;
  font-family: "OpenSans-Regular";
  font-size: 1.0rem;
}
/* ----------------------------------------------- pagetop*/
.pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  z-index: 9999;
}
.pagetop a {
  position: relative;
  display: block;
  margin: 0px;
  padding: 0px;
  width: 70px;
  height: 70px;
  background-color: #baa138;
}
.pagetop a::before {
  position: absolute;
  content: '';
  right: 0;
  left: 0;
  bottom: 25px;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
