@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: inherit;
  text-decoration-skip-ink: auto;
}
img,
picture,
video,
iframe {
  display: inline-block;
  max-width: 100%;
}
img,
svg,
video,
iframe {
  vertical-align: middle;
}
img[height],
video[height] {
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
}
button {
  border: 0;
  padding: 0;
  background: none;
}
sub {
  vertical-align: baseline;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html.is-behaviorAuto {
  scroll-behavior: auto;
}
body {
  overscroll-behavior: auto;
  overflow-x: hidden;
  color: black;
  font-size: 1em;
  line-height: 2;
  font-family:'メイリオ', 'Meiryo', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
body.is-fixed {
  position: fixed;
  width: 100%;
}
.has-scrollbar body {
  overflow-y: scroll;
}
section[id] {
  scroll-margin-top: 80px;
}
@media screen and (max-width: 767px) {
  section[id] {
    scroll-margin-top: 48px;
  }
}
@media screen and (max-width: 479px) {
  body {
    font-size: 0.875em;
  }
}
/* for Pagetop smooth scroll on iPhone */
#top {
  display: block;
}

:root {
  --scrollBarWidth: 15px;
  --breakout: calc(50% - 50vw);
}
.has-scrollbar {
  --breakout: calc(50% - 50vw + var(--scrollBarWidth));
}

.l-header {
  z-index: 5;
}
.l-menu {
  z-index: 4;
}
.l-fixedmenu {
  z-index: 3;
}
.l-main {
  z-index: 1;
}
.l-footer {
  z-index: 2;
}

/**
 * ヘッダー
 * ---------------------------------------- */
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.l-header .logo {
  font-size: 1em;
  line-height: 1;
}
.l-header .logo img {
  width: auto;
  height: 48px;
}
.l-header .link {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 1em 0.1em;
  border: 3px solid #019261;
  color: white;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  background: #019261;
}
@media (hover: hover) {
  .l-header .link {
    transition: color 0.4s, background 0.4s;
  }
  .l-header .link:hover {
    color: #019261;
    background: white;
    transition-duration: 0.1s;
  }
}
@media print, (min-width: 768px) {
  .l-header {
    padding: 0 40px;
  }
}
@media print, (min-width: 1025px) {
  .l-header .drawer {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .l-header .link {
    margin-left: auto;
  }
  .l-header .drawer {
    cursor: pointer;
    display: block;
    position: relative;
    width: 48px;
    height: 48px;
    margin-left: 24px;
    margin-right: -8px;
    color: #019261;
  }
  .l-header .drawer svg {
    position: absolute;
    top: calc(50% - 2.5px);
    left: 13px;
    width: 25px;
    fill: none;
    stroke: currentcolor;
    stroke-width: 2;
  }
  .l-header .drawer .b1 {
    transform: translateY(-8px);
  }
  .l-header .drawer .b3 {
    transform: translateY(8px);
  }
  .l-header .drawer.is-active .b1 {
    transform: rotate(45deg);
  }
  .l-header .drawer.is-active .b2 {
    opacity: 0;
  }
  .l-header .drawer.is-active .b3 {
    transform: rotate(-45deg);
  }
  .l-header .drawer.is-anim .b1 {
    animation: toggleAnim1 0.3s cubic-bezier(0.3, 1, 0.7, 1);
  }
  .l-header .drawer.is-anim .b2 {
    transition: opacity 0.3s;
  }
  .l-header .drawer.is-anim .b3 {
    animation: toggleAnim3 0.3s cubic-bezier(0.3, 1, 0.7, 1);
  }
  .l-header .drawer.is-anim.is-active .b1,
  .l-header .drawer.is-anim.is-active .b3 {
    animation-direction: reverse;
    animation-timing-function: cubic-bezier(0.3, 0, 0.7, 0);
  }
  @keyframes toggleAnim1 {
    from {
      transform: rotate(45deg);
    }
    50% {
      transform: none;
    }
    to {
      transform: translateY(-8px);
    }
  }
  @keyframes toggleAnim3 {
    from {
      transform: rotate(-45deg);
    }
    50% {
      transform: none;
    }
    to {
      transform: translateY(8px);
    }
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 48px;
    padding: 0 20px;
  }
  .l-header .logo img {
    height: 32px;
  }
  .l-header .link {
    height: 36px;
    font-size: 10px;
  }
  .l-header .drawer {
    margin-left: 16px;
  }
}

/**
 * ドロワー
 * ---------------------------------------- */
.l-menu .list a[aria-current="page"] {
  pointer-events: none;
  color: #019261;
}
@media (hover: hover) {
  .l-menu .list a {
    transition: color 0.4s, background 0.4s;
  }
  .l-menu .list a .arr {
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.7, 1);
  }
  .l-menu .list a:hover {
    color: #019261;
    background: white;
    transition-duration: 0.1s;
  }
  .l-menu .list a:hover .arr {
    transform: translateX(3px);
    transition-duration: 0.1s;
  }
}
@media print, (min-width: 1366px) {
    .l-menu .list {
        font-size: 14px;
    }
}
@media screen and (max-width: 1366px) {
    .l-menu .list {
        font-size: calc(100vw / (1366 / 14));
    }
}
@media print, (min-width: 1025px) {
  .l-menu {
    z-index: 5;
    position: fixed;
    top: 0;
    left: 160px;
    right: 217px;
    margin: 0 auto;
    text-align: center;
  }
  .l-menu .list {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    margin: 0;
    gap: 1em;
    line-height: 1.4;
  }
  .l-menu .list a {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    letter-spacing: -0.05em;
  }
  .l-menu .list a .arr {
    display: none;
  }
  .l-menu .overlay {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .l-menu,
  .l-menu .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .l-menu {
    height: 400px;
  }
  .l-menu .overlay {
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
  }
  .l-menu .list {
    position: relative;
    margin: 0;
    padding: 96px 20px 16px;
    line-height: 1.4;
    background: white;
    font-size: 16px;
  }
  .l-menu .list li {
    border-bottom: 1px solid #ccc;
  }
  .l-menu .list a {
    display: flex;
    align-items: center;
    position: relative;
    height: 64px;
    padding: 0 20px;
    font-family: 'Noto Sans JP', sans-serif;
  }
  .l-menu .list .arr {
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    width: 6px;
    height: 8px;
    fill: none;
    stroke: #019261;
  }
  .l-menu:not(.is-active) {
    pointer-events: none;
  }
  .l-menu .overlay:not(.is-active) {
    opacity: 0;
  }
  .l-menu:not(.is-active) .list {
    opacity: 0;
    transform: translateY(-50%);
  }
  .l-menu .overlay.is-anim {
    transition: opacity 0.6s;
  }
  .l-menu.is-anim .list {
    transition: opacity 0.6s, transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .l-menu:not(.is-active).is-anim .list {
    transition-duration: 0.2s;
  }
  .l-menu.is-active.is-anim .list {
    transition-delay: 0.2s;
    transition-timing-function: cubic-bezier(0.3, 1, 0.7, 1);
  }
}
@media screen and (max-width: 767px) {
  .l-menu .list {
    padding-top: 56px;
  }
}

/**
 * 固定メニュー
 * ---------------------------------------- */
.l-fixedmenu {
  position: fixed;
  right: 0;
}
.l-fixedmenu li {
  border-top: 1px solid white;
}
.c-fixedmenu {
  margin: 0;
}
.c-fixedmenu a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid #019261;
  color: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  background: #019261;
}
.c-fixedmenu .ico {
  width: 32px;
  height: auto;
  margin-bottom: 0.3em;
  fill: currentcolor;
}
.c-fixedmenu img {
  margin-bottom: 0.5em;
  fill: currentcolor;
}
@media (hover: hover) {
  .c-fixedmenu a {
    transition: color 0.4s, background 0.4s;
  }
  .c-fixedmenu a:hover {
    color: #019261;
    background: white;
    transition-duration: 0.1s;
  }
}
@media print, (min-width: 768px) {
  .l-fixedmenu {
    top: calc(50% - 210px);
    width: 104px;
    height: 420px;
  }
  .l-fixedmenu li:first-child {
    border-top: 0;
  }
  .c-fixedmenu a {
    width: 104px;
    height: 104px;
  }
}
@media screen and (max-width: 767px) {
  .l-fixedmenu {
    bottom: 0;
    width: 100%;
  }
  .c-fixedmenu {
    display: flex;
    width: 100%;
  }
  .c-fixedmenu li {
    flex-basis: 25%;
  }
  .c-fixedmenu a {
    height: 96px;
  }
  .c-fixedmenu li + li a {
    border-left: 1px solid currentcolor;
  }
}

/* :::::: ページのいちばん上へ :::::: */
.pagetop {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 0;
    bottom: 82px;
    width: 64px;
    height: 64px;
    border: 3px solid #009261;
    color: white;
    background: #009261;
  }
  .pagetop svg {
    fill: currentcolor;
  }
  .pagetop {
    transition: opacity 0.4s;
  }
  body:not(.is-over) .pagetop {
    pointer-events: none;
    opacity: 0;
    transition-duration: 0.1s;
  }
  @media (hover: hover) {
    .pagetop {
      transition: color 0.4s, background 0.4s, opacity 0.4s;
    }
    .pagetop:hover {
      color: #019261;
      background: white;
      transition-duration: 0.1s;
    }
  }
  @media screen and (min-width: 768px) and (max-height: 859px) {
    .pagetop {
      left: calc(100% - 169px);
    }
  }
  @media screen and (max-width: 1199px) {
    .pagetop {
      margin-right: 0;
    }
  }
  @media screen and (max-width: 767px) {
    .pagetop {
      bottom: 120px;
    }
  }

/**
 * パンくず
 * ---------------------------------------- */
.c-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0.45em 1em;
    border-image: linear-gradient(#f5f5f5, #f5f5f5) fill 0 / 0 / 0 50vw;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
  }
  .c-crumb a {
    position: relative;
    padding: 0.5em;
  }
  .c-crumb .arr {
    display: inline-block;
    width: 6px;
    height: 8px;
    fill: none;
    stroke: #009261;
  }
  @media screen and (max-width: 479px) {
    .c-crumb {
      font-size: 10px;
    }
  }
  
  /**
   * フッター
   * ---------------------------------------- */
  .l-footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px 20px 10px;
    border-image: linear-gradient(#019261, #019261) fill 0 / 0 / 0 50vw;
    color: white;
  }
  .l-footer .link {
    margin-right: 1em;
    padding-top: 0.3em;
    font-size: 12px;
    line-height: 1.4;
  }
  .l-footer .link a {
    margin-right: 1em;
  }
  .l-footer .banner {
    display: flex;
    align-items: center;
    position: relative;
    width: 264px;
    height: 54px;
    color: #666;
  }
  .l-footer .banner .t {
    position: relative;
    padding: 0.4em 1em 0;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .l-footer .banner img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .l-footer .copyright {
    margin-top: 1em;
    font-size: 10px;
    line-height: 1.4;
  }
  .l-footer .copyright small {
    font-size: inherit;
  }
  @media print, (min-width: 768px) {
    .l-footer {
      display: grid;
      grid-template: auto auto / auto 264px;
    }
    .l-footer .banner {
      grid-area: 1 / 2 / 3 / 3;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 120px;
      text-align: center;
    }
    .l-footer .banner {
      order: 1;
      margin-top: 8px;
    }
    .l-footer .copyright {
      margin-top: 24px;
    }
  }

/**
 * utility / javascript
 * -------------------------------------------------- */
.u-visuallyhidden {
    position: absolute;
    top: 0;
    left: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  @media print, (min-width: 768px) {
    .u-mb {
      display: none;
    }
  }
  @media screen and (max-width: 767px) {
    .u-dt {
      display: none;
    }
  }
  
  html.is-touch .u-pointer {
    display: none;
  }
  html:not(.is-touch) .u-touch {
    display: none;
  }
  
  /* inview */
  .js-inview:not(.is-inview) {
    opacity: 0;
    transform: translateY(24px);
  }
  .js-inview.is-anim {
    transition: opacity 0.6s, transform 0.6s var(--easeOut);
  }