@charset "UTF-8";
html, body {
  min-height: 100%;
}

html {
  height: 100%;
  width: 100%;
}

body {
  font-family: "メイリオ", meiryo, sans-serif;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  body {
    line-height: 1.5;
  }
}

.fz16 {
  font-size: 1rem;
}

.fz14 {
  font-size: .875rem;
}

.fc-b {
  color: #194678;
}

.fwb {
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .pc-hide {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sp-hide {
    display: none;
  }
}

header {
  background-color: #fff;
  border-bottom: 3px solid #009682;
  box-shadow: 0px 3px 8px 2px rgba(51, 51, 51, 0.15);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

@media screen and (min-width: 769px) {
  header {
    padding: 30px;
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 13px;
  }
}

header .logo img {
  width: 196px;
  height: 60px;
}

@media screen and (max-width: 768px) {
  header .logo img {
    display: block;
    width: auto;
    height: 34px;
  }
}

header .sate-name {
  padding: 0 0 0 34px;
  border-left: 2px solid #194678;
  margin: 0 0 0 34px;
  color: #194678;
  font-size: 1.25rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  header .sate-name {
    display: none;
  }
}

.menu-btn {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
}

@media screen and (min-width: 769px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn.active {
  background-color: #194678;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .25s;
  box-sizing: border-box;
}

.menu-trigger {
  box-sizing: content-box;
  position: relative;
  padding: 22px 20px;
  width: 20px;
  height: 17px;
  display: block;
}

.menu-trigger span {
  position: absolute;
  left: 20px;
  width: 20px;
  height: 2px;
  background-color: #000;
}

.menu-trigger.active span {
  background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
  top: 22px;
}

.menu-trigger span:nth-of-type(2) {
  top: 29px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 22px;
}

.menu-trigger span:nth-of-type(1) {
  -webkit-animation: menu-bar01 .25s forwards;
  animation: menu-bar01 .25s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

.menu-trigger span:nth-of-type(2) {
  transition: all .25s;
  opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
  -webkit-animation: menu-bar02 .25s forwards;
  animation: menu-bar02 .25s forwards;
}

@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 .25s forwards;
  animation: active-menu-bar01 .25s forwards;
}

@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(7px) rotate(45deg);
  }
}

@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 .25s forwards;
  animation: active-menu-bar03 .25s forwards;
}

@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
  }
}

@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media screen and (min-width: 769px) {
  .container {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

.container .side-container {
  padding: 40px 0;
  background-color: #194678;
}

@media screen and (min-width: 1101px) {
  .container .side-container {
    width: 360px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .container .side-container {
    width: 260px;
  }
}

@media screen and (max-width: 768px) {
  .container .side-container {
    padding: 0 12px;
    box-sizing: border-box;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 1001;
    display: none;
  }
  .container .side-container.active {
    display: block;
  }
}

.container .side-container ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  line-height: 1;
}

.container .side-container a {
  color: #fff;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #5e7ea1;
}

.container .side-container a.gn-sec05 {
  color: #f39800;
}

.container .side-container a.gn-sec05::after {
  border-color: #f39800 transparent transparent transparent !important;
}

.container .side-container a.gn-sec05:hover {
  background-color: #f39800;
  color: #fff;
}

.container .side-container a.gn-sec05:hover::after {
  border-color: #fff transparent transparent transparent !important;
}

@media screen and (max-width: 768px) {
  .container .side-container a {
    padding: 12px !important;
  }
}

.container .side-container a:hover {
  background-color: #2461a6;
}

.container .side-container #sticky {
  padding-top: 20px;
  padding-bottom: 67px;
  max-height: calc(100vh - 147px);
  overflow-y: auto;
}

@media screen and (min-width: 1101px) {
  .container .side-container #sticky {
    padding-top: 143px;
    max-width: 360px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .container .side-container #sticky {
    max-width: 260px;
  }
}

@media screen and (max-width: 768px) {
  .container .side-container #sticky {
    position: static !important;
    width: 100% !important;
  }
}

.container .side-container .globalnav {
  border-top: 1px solid #5e7ea1;
  -webkit-overflow-scrolling: touch;
}

.container .side-container .globalnav > li > a {
  padding: 20px 30px;
  font-size: 1.125rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .container .side-container .globalnav > li > a {
    font-size: 1rem;
    font-weight: bold;
  }
}

.container .side-container .globalnav > li > a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7.5px 0 7.5px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .container .side-container .globalnav > li > a::after {
    right: 12px;
    border-width: 6px 6px 0 6px;
  }
}

.container .side-container .globalnav > li li a {
  padding: 15px 30px;
  font-size: .875rem;
  text-indent: 1em;
}

.container .side-container .globalnav > li li a::before {
  content: '- ';
}

.container .main-container {
  box-sizing: border-box;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
  padding-top: 163px;
  background-color: #e9eff7;
}

@media screen and (min-width: 769px) {
  .container .main-container {
    flex: 1;
  }
}

@media screen and (max-width: 768px) {
  .container .main-container {
    padding-top: 70px;
  }
}

.container .main-container .inner {
  max-width: 800px;
  margin: 0 auto;
}

.container .main-container section {
  padding-top: 20px;
}

.container .main-container .section-title {
  margin: 0;
  padding-left: 42px;
  font-size: 1.125rem;
  color: #194678;
  background-color: #d1e6eb;
  border-top: 3px solid #194678;
  position: relative;
}

@media screen and (max-width: 768px) {
  .container .main-container .section-title {
    padding-left: 28px;
    font-size: 1rem;
  }
}

.container .main-container .section-title::before, .container .main-container .section-title::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 20px;
}

@media screen and (max-width: 768px) {
  .container .main-container .section-title::before, .container .main-container .section-title::after {
    left: 10px;
  }
}

.container .main-container .section-title::before {
  margin-top: -7px;
  background-color: #194678;
  transform: translateY(-50%);
}

.container .main-container .section-title::after {
  margin-top: 6px;
  background-color: #009682;
  transform: translateY(-50%);
}

.container .main-container .section-title span {
  line-height: 62px;
}

@media screen and (max-width: 768px) {
  .container .main-container .section-title span {
    line-height: 40px;
  }
}

.container .main-container .section-title.section-contact {
  background-color: #ede7dc;
  color: #f39800;
  border-color: #f39800;
}

.container .main-container .section-title.section-contact::before, .container .main-container .section-title.section-contact::after {
  background-color: #f39800;
}

.container .main-container .section-subtitle {
  margin: 0 0 1em;
  padding-top: 20px;
  color: #194678;
  border-bottom: 1px solid #194678;
}

.container .main-container .section-subtitle:first-child {
  margin-top: 0;
}

.container .main-container .section-body {
  padding: 30px 20px 10px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .container .main-container .section-body {
    padding-left: 0;
    padding-right: 0;
  }
}

.container .main-container .section-body .ja {
  display: inline-block;
  line-height: 1.4;
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  .container .main-container .section-body .ja {
    font-size: .9375rem;
  }
}

.container .main-container .section-body .en {
  display: inline-block;
  line-height: 1.57;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .container .main-container .section-body .en {
    font-size: .875rem;
  }
}

.container .main-container .section-body p {
  margin: 0 0 1em;
}

.container .main-container .section-body .observation-items dd {
  margin: 0;
}

.container .main-container .section-body .observation-items dd ul {
  margin: 0;
  padding-left: 1.5em;
}

.container .main-container .section-body .txt-swipescroll {
  font-size: .875rem;
  font-weight: bold;
  color: #194678;
}

.container .main-container .section-body .txt-swipescroll::before, .container .main-container .section-body .txt-swipescroll::after {
  margin: 0 3px;
  content: '';
  display: block;
  width: 31px;
  height: 8px;
  background: url(../img/arrow.png);
  background-size: cover;
  display: inline-block;
}

.container .main-container .section-body .txt-swipescroll::before {
  transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
  .container .main-container .section-body .txt-swipescroll {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .container .main-container .section-body .fig-wrap {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.container .main-container .section-body .fig-wrap figure {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .container .main-container .section-body .fig-wrap figure {
    padding: 0 20px 20px;
    overflow-x: auto;
  }
}

@media screen and (max-width: 767px) {
  .container .main-container .section-body .fig-wrap figure img {
    width: 760px;
    max-width: inherit;
  }
}

.container .main-container .section-body .sec04_04-contents p {
  margin-bottom: 0;
}

.container .main-container .section-body .sec04_04-contents ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.container .main-container .section-body .sec04_04-contents ol li {
  list-style-type: none;
  counter-increment: cnt;
  text-indent: -1.2em;
}

.container .main-container .section-body .sec04_04-contents ol li::before {
  content: counter(cnt) ") ";
  vertical-align: top;
}

.container .main-container .section-body .sec04_04-contents .idt {
  max-width: calc(100% - 1.2em);
  display: inline-block;
  margin-left: 1.2em;
  text-indent: -1.2em;
}

.container .main-container .section-body #sec06_01 .flex-box-inner {
  /* padding: 0 15px; */
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.container .main-container .section-body #sec06_01 .flex-box-inner .flex-box-inner--item {
  display: flex;
  align-items: center;
}

.container .main-container .section-body #sec06_01 .flex-box-inner .flex-box-inner--item .company-name {
  flex: 0 1 60%;
  width: 60%;
  margin: 0 !important;
}

.container .main-container .section-body #sec06_01 .flex-box-inner .flex-box-inner--item .company-logo {
  flex: 0 1 40%;
  width: 40%;
  visibility: hidden;
  display: none;
}

.container .main-container .section-body .contact-info {
  margin-top: 2em;
}

.container .main-container .section-body .contact-info address {
  font-style: normal;
}

footer {
  background-color: #999;
  text-align: center;
  color: #fff;
}

footer .copyright {
  font-size: .75rem;
  line-height: 80px;
}
