@charset "UTF-8";
/**
 * @ main.css
 *
 * 
 */

/* ==============================
  base
============================== */
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  width: 100%;
  height: 100%;
  text-align: left;
  font-size: 1.6rem;
  color: #000;
  font-weight: 400;
  font-display: swap;
  line-height: 1.75;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "YuGothic", "Yu Gothic Medium", "Yu Gothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  position: relative;
  overflow-x: hidden;
}
a,
a img {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  color: #0075c5;
}
a img:hover {
  transition: 0.3s;
}
figure {
  margin: 0;
}
dl dt,
dl dd {
  margin: 0;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
}

/* ==============================
  utility
============================== */
.u-inner {
  width: 90vw;
  max-width: 1200px;
  margin: auto;
}
.under .u-inner:not(.header__inner, .footer__inner) {
  max-width: 900px;
}
.u-flex {
  display: flex;
}
.u-sp {
  display: none;
}

/* 各ボタン */
.u-btn a {
  width: 195px;
  height: 50px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  position: relative;
  padding: 5px 30px 5px 20px;
}
.u-btn a::before {
  content: "";
  width: 15px;
  height: auto;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.u-btn a::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.u-btn a::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

/* 青ボタン */
.u-btn.--blue a {
  border: 5px solid #ffbc00;
  color: #004572;
}
.u-btn.--blue a::before {
  background: #004572;
}
.u-btn.--blue a:hover {
  background: #ffbc00;
}

/* オレンジボタン */
.u-btn.--orange a {
  border: 1px solid #e73e00;
  color: #e73e00;
}
.u-btn.--orange a::before {
  background: #e73e00;
}
.u-btn.--orange a:hover {
  background: #e73e00;
  color: #fff;
}
.u-btn.--orange a:hover::before {
  background: #fff;
}
.u-btn.--orange a:hover::after {
  border-top: 2px solid #e73e00;
  border-right: 2px solid #e73e00;
}

/* アーカイブ用ボタン */
.u-btn.--archive {
  margin-bottom: 50px;
}
.u-btn.--archive a {
  display: block;
  color: #11517b;
  padding: 10px 30px;
  width: fit-content;
  width: 260px;
  border-radius: 30px;
  text-align: center;
  margin: auto;
  border: 5px solid #ffbc00;
  box-sizing: border-box;
  height: auto;
  position: relative;
}
.u-btn.--archive a::before {
  background: #004572;
}
.u-btn.--archive a:hover {
  background: #ffbc00;
}

@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
  .u-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
}

/* ==============================
  .header
============================== */
.header {
  padding: 20px 0;
  border-bottom: 4px solid #0075c5;
  margin-bottom: 10px;
}
.home .header {
  margin-bottom: 30px;
}
.header__inner {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__logo h1 {
  width: 110px;
  height: auto;
}
.header__logo a:hover img {
  opacity: 0.6;
}
.home .header__logo a {
  pointer-events: none;
}

/* .menu */
.header__menu-inner {
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.header__menu-list {
  align-items: center;
  gap: 30px;
}
.header__menu-link {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}
.header__menu-link:hover img {
  opacity: 0.6;
}

/* .search */
/* reset */
.header__search * {
  margin: 0 !important;
}
.header__search .gsc-control-cse {
  padding: 0 !important;
}
.header__search .gsc-search-button-v2 {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.header__search .gsib_a {
  padding: 0 !important;
}
.header__search table.gsc-search-box td.gsc-input {
  padding-right: 0 !important;
}
.header__search .gsc-input-box {
  border: none !important;
  background: none !important;
}
/* layout */
.header__search .gsc-control-searchbox-only-ja {
  border: 1px solid #ddd !important;
}
.header__search .gsc-search-button-v2 svg {
  fill: #0162f3 !important;
  width: 20px;
  height: 20px;
}
.header__search .gsc-control-searchbox-only-ja {
  border: 1px solid #0075c1 !important;
  border-radius: 5px;
  padding: 0 10px !important;
  background: none !important;
  width: 240px;
}

/* ハンバーガーメニュー */
@media screen and (min-width: 1200px) {
  .hamburger-menu,
  .hamburger-menu-mask {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .header__logo h1 img {
    width: 120px;
  }
  .header__logo-sp {
    display: block;
    margin-bottom: 20px;
  }
  /* メニュー中身 */
  .header__menu {
    position: fixed;
    right: -400px;
    top: 0;
    transition: all 0.5s;
    z-index: 99;
    opacity: 0;
    height: 100%;
    width: 400px;
    background: #fff;
    padding: 100px 50px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .header__menu-inner {
    flex-direction: column-reverse;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }
  .header__menu-list {
    flex-direction: column;
  }

  /* ハンバーガーメニュー */
  .hamburger-menu {
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    z-index: 999;
  }
  .hamburger-menu__bar {
    display: inline-block;
    width: 60%;
    height: 2px;
    background: #242424;
    position: absolute;
    transition: 0.5s;
    right: 0;
  }
  .hamburger-menu__bar:first-child {
    top: 16px;
  }
  .hamburger-menu__bar:nth-child(2) {
    top: 24px;
  }
  .hamburger-menu__bar:last-child {
    top: 32px;
  }

  /* .is-open */
  html.is-open {
    overflow: hidden;
  }
  .header__menu.is-open {
    right: 0;
    transition: 0.5s;
    opacity: 1;
  }
  .hamburger-menu.is-open .hamburger-menu__bar {
    top: 50%;
  }
  .hamburger-menu.is-open .hamburger-menu__bar:first-child {
    transform: rotate(45deg);
  }
  .hamburger-menu.is-open .hamburger-menu__bar:last-child {
    transform: rotate(-45deg);
  }
  .hamburger-menu.is-open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }

  /* マスク */
  .hamburger-menu-mask {
    display: none;
    transition: all 0.5s;
  }
  .hamburger-menu-mask.is-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 10px 0px;
  }
  .home .header {
    margin-bottom: 5vw;
  }
  /* メニュー中身 */
  .header__menu {
    right: -100vw;
    width: 100vw;
  }
}
@media screen and (max-width: 480px) {
  .header {
    margin-bottom: 5vw;
  }
  .header__logo h1 img {
    width: 90px;
  }
  .header__menu {
    padding: 100px 5%;
  }
}
/* ==============================
  .footer
============================== */
.footer {
  background: #004572;
  padding: 90px 0 55px;
}
.footer * {
  color: #fff;
}
.footer__menu {
  justify-content: flex-end;
  gap: 30px;
  width: 90%;
  margin: auto auto 80px;
}
.footer__menu-item {
  position: relative;
  font-size: 1.5rem;
}
.footer__menu-item:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 1em;
  background: #fff;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}
.footer__bottom {
  text-align: center;
}
.footer__bottom * {
  font-size: 1.6rem;
}
.footer__menu-link:hover {
  text-decoration: underline;
  color: inherit;
}
footer .footer__address p {
  gap: 0 1em;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__copyright small {
  font-size: 1.2rem;
  line-height: 1.5;
  display: block;
}

@media screen and (max-width: 1199px) {
  .footer__menu {
    gap: 10px 30px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 930px) {
  .footer__menu-item::before {
    content: "";
    width: 1px;
    height: 1em;
    background: #fff;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 50px 0 80px;
  }
  .footer__menu {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
  }
  .footer__menu-item {
    text-align: center;
  }
  .footer__menu-item::before {
    content: none !important;
  }
}
/* ==============================
  トップへ戻る
============================== */
.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px;
  text-align: center;
  background: #0075c5;
  color: #fff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.4rem;
  overflow: hidden;
  transition: 0.3s;
}
.page-top::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 0;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.page-top p {
  text-indent: -99999px;
}
.page-top:hover {
  background: #01538a;
  transition: 0.3s;
}
