@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.4em;
  line-height: 2.8rem;
}
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
ul {
  list-style: none;
}
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}
/* header */
.header {
  height: 80px;
  width: 100%;
  background-color: #FFF;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
}
.header_logo {
  width: 210px;
  position: absolute;
  left: 40px;
  top: 10px;
}
.header_logo-SP {
  display: none;
}
.header nav {
  display: inline-block;
  position: absolute;
    top: 0;
    right: 0;
}
.header nav ul {
  display: flex;
  justify-content: flex-end;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.3);
}
.header nav ul li {
  position: relative;
}
.header nav ul li a {
  display: block;
  padding: 26px 20px 0;
  color: #FFF;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  height: 80px;
  background-color: #2074B1;
  position: relative;
}
.header nav ul li a::after {
  content: "";
  height: 16px;
  width: 1px;
  display: block;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header nav ul li a.nav_top {
  clip-path: polygon(35px 0, 100% 0, 100% 100%, 0 100%);
  background-color: #2074B1;
  padding-left: 90px;
  position: relative;
}
.header nav ul li:has(.nav_top)::before {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -4px;
  background-color: #fff;
}
.header nav ul li a.nav_top::after {
  display: none;
}
.header nav ul li a.nav_contact {
  background-color: #053457;
  padding-left: 26px;
}
.header nav ul li a.nav_contact::after {
  display: none;
}
.header nav ul li a:hover {
  color: #053457;
  opacity: 1;
}
.header nav ul li .nav_contact:hover {
  background-color: #fff;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
    background-color: #2074B1;
  }
  .header_logo {
    display: none;
  }
  .header_logo-SP {
    display: block;
    width: 120px;
    position: absolute;
    top: 20px;
    left: 20px;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    background-color: #FFF;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #2074B1;
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    right: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    box-shadow: none;
  }
  .header nav ul li a::after {
    display: none;
  }
  .header nav ul li:has(.nav_top)::before {
    display: none;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: left;
  }
  #g-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    clip-path: none;
  }
  #g-nav li a::after {
    content: "";
    width: 100%;
    height: 1px;
    display: inline-block;
    background-color: #FFF;
    position: absolute;
    bottom: 0px;
    margin-top: 20px;
  }
  #g-nav li a.nav_contact {
    height: 60px;
    text-align: center;
    padding: 10px 20px 10px 20px;
    line-height: 2;
    width: 240px;
  }
  #g-nav li a.nav_contact::after {
    display: none;
  }
  .dli-arrow-right {
    display: inline-block;
    vertical-align: middle;
    color: #FFF;
    line-height: 1;
    position: relative;
    width: 2em;
    height: 0.1em;
    background: currentColor;
    margin-left: 20px;
  }
  .dli-arrow-right::before {
    content: '';
    width: 0.65em;
    height: 0.65em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: -0.05em;
    box-sizing: border-box;
  }
}
/* footer */
.footer {
  height: 400px;
  background-color: #2074B1;
  text-align: left;
}
.footer-logo {
  width: 190px;
}
.footer h2 {
  font-size: 1.8rem;
  font-weight: 600;
  padding-top: 10px;
  color: #fff;
}
.footer address {
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  padding-top: 20px;
}
.footer-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  border: #fff 1px solid;
  padding: 15px 0px;
}
.footer-button_text {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  padding-right: 20px;
}
.footer_wrapper-2 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 990px;
  padding-top: 60px;
}
.footer__copyright {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .footer {
    height: 460px;
  }
  .footer_wrapper-2 {
    display: block;
    text-align: center;
  }
  .footer-button {
    margin: 0 auto 60px;
  }
  .footer__copyright {
    padding-top: 40px;
  }
}

.tx_upper { text-transform: uppercase; }