@charset "UTF-8";
:root {
  /* viewport */
  --pc-base-width: 1400 *100vw;
  --sp-base-width: 375 *100vw;
  --max-width: 1920px;
  --vw-base: 100vw;
  /* color property */
  --main-clr: #2F7A6D;
  --sub-clr:#6B9F96;
  --main-bg-clr:#EBEFEE;
  --bg:#F7F7F7;
  --base-font-size: clamp(12px, calc(15 / var(--pc-base-width)), 20px);
  --base-sp-font-size: calc(14 / var(--sp-base-width));
}

/* footer */
footer {
  font-size: var(--base-font-size);
}

footer img {
  width: auto;
}

.twitter-share img {
  width: 14px;
}

@media screen and (max-width: 991px) {
  nav ul li {
    margin-bottom: 25px;
  }
  footer nav .footer-menu li a {
    font-size: 16px;
    font-weight: normal;
  }
  footer .copyright {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  footer .social-share {
    display: none;
  }
}
header {
  font-family: "Roboto", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  padding: 0;
}

.header-nav {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 10;
}
.header-nav .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: calc(1200 / var(--pc-base-width));
  margin: 0 auto;
  padding: 0;
}
.header-nav .logo {
  width: calc(180 / var(--pc-base-width));
  padding: calc(8 / var(--pc-base-width)) 0;
}
.header-nav .hamburger {
  display: none;
}
.header-nav .nav-list {
  display: flex;
  gap: calc(32 / var(--pc-base-width));
  padding-right: calc(124 / var(--pc-base-width));
}
.header-nav .nav-list a {
  display: block;
  padding: 8px 0;
  font-weight: normal;
}
.header-nav .entry {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100 / var(--pc-base-width));
  height: calc(100 / var(--pc-base-width));
  line-height: calc(100 / var(--pc-base-width));
  text-align: center;
}
.header-nav .entry a {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--main-clr);
  border: 1px solid var(--main-clr);
  border-top: none;
  color: #fff;
  font-weight: bold;
  font-size: clamp(12px, 24 / var(--pc-base-width), 50px);
}

@media screen and (min-width: 769px) {
  .header-nav .nav-list a {
    transition: all 0.3s ease;
    background: linear-gradient(var(--main-clr), var(--main-clr)) no-repeat bottom right/0 1px;
    font-size: clamp(10px, 15 / var(--pc-base-width), 20px);
  }
  .header-nav .nav-list a:hover {
    background: linear-gradient(var(--main-clr), var(--main-clr)) no-repeat bottom left/100% 1px;
    color: var(--main-clr);
    text-decoration: none;
    opacity: 1;
  }
  .header-nav .nav-list a:focus {
    outline: none;
    opacity: 1;
    text-decoration: none;
  }
  .header-nav .entry a span {
    position: relative;
    z-index: 1;
  }
  .header-nav .entry a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 50%;
    width: 130%;
    height: calc(100% + 2px);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    background-color: #fff;
    transform: translateX(-100%);
    transition: all 0.4s;
  }
  .header-nav .entry a:hover {
    background: #fff;
    color: var(--main-clr);
    opacity: 1;
    text-decoration: none;
  }
  .header-nav .entry a:hover::before {
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .header-nav .content {
    justify-content: space-between;
    width: 100%;
    padding: 0 calc(16 / var(--sp-base-width));
  }
  .header-nav .logo {
    width: calc(137 / var(--sp-base-width));
    padding: calc(8 / var(--sp-base-width)) 0;
  }
  .header-nav .logo img {
    width: 100%;
  }
  .header-nav .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 20;
    width: calc(40 / var(--sp-base-width));
    height: calc(40 / var(--sp-base-width));
    margin-left: 8px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .header-nav .hamburger span {
    display: block;
    width: calc(28 / var(--sp-base-width));
    height: 2px;
    background: #333;
    transition: transform 0.3s, opacity 0.3s;
  }
  .header-nav .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header-nav .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .header-nav .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header-nav .nav-list {
    position: fixed;
    top: calc(55 / var(--sp-base-width));
    right: 0;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(32 / var(--sp-base-width));
    width: 100%;
    padding: calc(32 / var(--sp-base-width)) 0 calc(16 / var(--sp-base-width));
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .header-nav .nav-list.active {
    transform: translateX(0);
  }
  .header-nav .nav-list a {
    padding: calc(8 / var(--sp-base-width));
    font-size: calc(14 / var(--sp-base-width));
  }
  .header-nav .entry {
    right: calc(82 / var(--sp-base-width));
    width: auto;
  }
  .header-nav .entry a {
    padding: calc(14 / var(--sp-base-width)) calc(24 / var(--sp-base-width));
    font-size: calc(13 / var(--sp-base-width));
  }
}/*# sourceMappingURL=headerfooter.css.map */