@charset "UTF-8";
@media (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #000000;
  font-size: 16px;
  line-height: 1.875;
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #00479d;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.5s ease-out;
}
a:hover {
  opacity: 0.6;
}

strong {
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

.big {
  font-size: 18px;
  line-height: 1.8;
}

/* ----------------------------------------------
updates
------------------------------------------------- */
#updates .contents {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
#updates .contents article a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#updates .contents article a:hover {
  opacity: 0.6;
}
#updates .contents article time {
  display: inline-block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  background-color: #00479d;
  padding: 0 17.5px;
  margin-bottom: 22px;
}
#updates .contents article .title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: #00479d;
  margin-bottom: 10px;
}
#updates .contents article .text {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.875;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 999px) {
  #updates .contents article time {
    font-size: 12px;
    padding: 0 10px;
    margin-bottom: 10px;
  }
  #updates .contents article .title {
    font-size: 16px;
  }
  #updates .contents article .text {
    font-size: 14px;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
@keyframes m_fixed {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  99% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: unset;
  }
}
@keyframes remove {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  99% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: unset;
  }
}
#header a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#header a:hover {
  opacity: 0.6;
}
#header .top {
  display: flex;
  align-items: center;
  background: url(../images/h-bg.jpg) no-repeat top center/cover;
  padding: 10px 2.625% 18px 3.375%;
  overflow-x: clip;
  position: relative;
}
#header .top.remove {
  animation: remove 1s forwards;
}
#header .top.m_fixed {
  position: fixed;
  width: 100%;
  z-index: 2;
  animation: m_fixed 1s forwards;
}
#header .logo {
  max-width: 140px;
}
#header #gnav {
  margin-left: auto;
}
#header #gnav ul {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  gap: 10px 16px;
}
#header #gnav ul li a {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 500;
  font-weight: 100;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  display: flex;
  align-items: start;
  -moz-column-gap: 5px;
       column-gap: 5px;
  position: relative;
}
#header #gnav ul li a small {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" -12, "wdth" 100, "wght" 400;
  font-size: 14px;
  line-height: 1.6;
  margin-top: -3px;
}
#header #gnav ul li ul {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  padding-top: 10px;
  position: absolute;
  width: 100vw;
  transition: all 0.5s ease-out;
  display: block;
  z-index: 1;
}
#header #gnav ul li ul li {
  background-color: #00479d;
  padding-left: 25px;
}
#header #gnav ul li ul li a {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#header #gnav ul li ul li a::before {
  content: "";
  width: 10px;
  aspect-ratio: 10/15;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #fff;
}
#header #gnav ul li ul li:first-child {
  padding-top: 30px;
}
#header #gnav ul li ul li:not(:last-child) {
  padding-bottom: 20px;
}
#header #gnav ul li ul li:last-child {
  padding-bottom: 40px;
}
#header #gnav ul li:hover > ul {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 999px) {
  #header .top {
    padding: 10px;
  }
  #header #gnav ul li a {
    font-size: 16px;
  }
  #header #gnav ul li a small {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  #header #gnav ul li a {
    text-shadow: 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000;
  }
}
@media (max-width: 767px) {
  #header .top {
    padding: 5px 80px 5px 5px;
    background: url(../images/h-bg-sp.jpg) no-repeat top center/cover;
  }
  #header .logo img {
    width: 100px;
  }
  #header #gnav ul li a .btn {
    width: 30px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto 0 auto auto;
  }
  #header #gnav ul li a .btn::before, #header #gnav ul li a .btn::after {
    content: "";
    position: absolute;
    width: calc(100% - 10px);
    height: 1px;
    background-color: #fff;
    transition: all 0.5s ease-out;
  }
  #header #gnav ul li a .btn::before {
    transform: rotate(90deg);
  }
  #header #gnav ul li a .btn.open::before {
    transform: unset;
  }
  #header #gnav ul li ul {
    position: unset;
    clip-path: unset;
    display: none;
    padding-top: 0;
    transition: unset;
    width: unset;
  }
  #header #gnav ul li ul li {
    background-color: unset;
    padding: 0 0 0 10px !important;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  background: linear-gradient(90deg, #00479d 0%, #162974 100%);
  text-align: center;
  padding: 58px 10px;
}
#footer a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#footer a:hover {
  opacity: 0.6;
}
#footer .logo {
  max-width: 372px;
  margin: 0 auto 47px;
}
#footer #fnav {
  padding-left: 15px;
  margin-bottom: 50px;
}
#footer #fnav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 46px;
}
#footer #fnav ul li a {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 500;
  font-weight: 100;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
}
#footer .copyright {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 999px) {
  #footer {
    padding: 40px 10px;
  }
  #footer .logo {
    margin-bottom: 30px;
  }
  #footer #fnav {
    margin-bottom: 30px;
  }
  #footer #fnav ul {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  #footer #fnav ul li a {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  #footer {
    padding: 30px 10px;
  }
  #footer .logo {
    margin-bottom: 20px;
  }
  #footer .logo img {
    width: 200px;
  }
  #footer #fnav {
    margin-bottom: 20px;
  }
  #footer #fnav ul {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  #footer #fnav ul li a {
    font-size: 11px;
  }
  #footer .copyright {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */