@charset "UTF-8";
body {
  display: grid;
  align-items: start;
  grid-auto-rows: auto 1fr auto;
  grid-template-columns: 1fr;
  min-height: 100vh;
  /* ===RESET=== */
  margin: 0;
  /* ===COLOR=== */
  --main-color: #2EB180;
  --font-color: #5A6863;
  --sub-color: #899D96;
  background-color: #FDFDFD;
  /* ===IMG=== */
  /* ===FONT=== */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--font-color);
  line-height: 1.6;
  /* ===FLEX=== */
  /* ===MARGIN=== */
  /* ===ANCHOR=== */
  /* ===HEADER FOOTER=== */
  /* ===FOOTER=== */
  /* ===MAIN=== */
  /* ===SLIDER=== */
}
@media screen and (max-width: 430px) {
  body {
    display: block;
  }
}
body h1, body h2, body h3, body h4, body p, body span, body ul, body ol, body li, body dl, body dd, body dt, body figure, body figcaption, body a {
  margin: 0;
  padding: 0;
}
body ol, body ul, body a, body li {
  text-decoration: none;
  list-style: none;
}
body img {
  vertical-align: bottom;
  /* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}
body .img--radius {
  display: inline-block;
  border-radius: 4px;
  overflow: hidden;
}
body .img--block {
  display: block;
}
body .font--small {
  font-size: 0.8rem;
}
body .flex {
  display: flex;
}
body .flex--row {
  flex-direction: row;
}
body .flex--column {
  flex-direction: column;
}
body .mt40 {
  margin-top: 40px;
}
body .mt80 {
  margin-top: 80px;
}
body a:link {
  color: var(--font-color);
}
body a:visited {
  color: var(--font-color);
}
body header .site__logo, body footer .site__logo {
  position: relative;
  display: inline-block;
}
body header .site__logo--parts, body footer .site__logo--parts {
  fill: #2EB180;
}
body header .site__logo::before, body footer .site__logo::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 10px;
  right: 10px;
  display: block;
  background-color: #103f84;
  -webkit-mask-image: url(../images/top/logo07.svg);
          mask-image: url(../images/top/logo07.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
body header {
  width: 1120px;
  margin: 80px auto 0;
  position: relative;
  grid-column: 1/2;
  grid-row: 1/2;
}
body header h1 {
  width: 100%;
  margin: 0;
}
body header .site__menu {
  position: fixed;
  top: 0;
  right: 0;
  transition: all 0.5s ease;
  z-index: 2;
}
body header .site__menu .menu-botton {
  margin-top: 40px;
  position: relative;
  cursor: pointer;
}
body header .site__menu .menu-botton--click {
  position: absolute;
  width: 48px;
  top: 0;
  right: 1rem;
}
body header .site__menu .menu-botton--click p {
  font-weight: 500;
  text-align: center;
}
body header .site__menu .menu-botton--click .menu__dottes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
body header .site__menu .menu-botton--click .menu__dottes span {
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--main-color);
  border-radius: 2px;
}
body header .site__menu .menu__list {
  display: none;
}
body header .site__menu.navActive {
  height: 100vh;
  z-index: 100;
  width: 160px;
  background-color: rgba(9, 55, 38, 0.9);
}
body header .site__menu.navActive .menu-botton--click p {
  color: #FDFDFD;
}
body header .site__menu.navActive .menu-botton--click .menu__dottes span {
  background-color: #FDFDFD;
}
body header .site__menu.navActive .menu-botton--click .menu__dottes span:nth-of-type(2n) {
  opacity: 0;
}
body header .site__menu.navActive .menu__list {
  display: block;
  margin-top: 7rem;
  margin-left: 2rem;
}
body header .site__menu.navActive .menu__list ul li {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.5rem;
}
body header .site__menu.navActive .menu__list ul li a {
  color: #FDFDFD;
}
body header .site__menu.navActive .menu__list ul li:hover::before {
  display: inline-block;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background-color: #FDFDFD;
  -webkit-mask-image: url("../images/top/arrow.svg");
          mask-image: url("../images/top/arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  vertical-align: -4px;
}
@media screen and (max-width: 1119px) {
  body header {
    width: 90%;
  }
  body header .site__menu.navActive {
    height: auto;
    width: 100%;
  }
  body header .site__menu.navActive .menu__list {
    display: block;
    margin-top: 0;
    margin-left: 0;
  }
  body header .site__menu.navActive .menu__list ul {
    padding: 1.5rem;
    padding-right: 10rem;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: flex-end;
  }
  body header .site__menu.navActive .menu__list ul li::before {
    display: inline-block;
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    background-color: #FDFDFD;
    -webkit-mask-image: url("../images/top/arrow.svg");
            mask-image: url("../images/top/arrow.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    vertical-align: -4px;
  }
}
@media screen and (max-width: 430px) {
  body header {
    margin-top: 2.5rem;
    width: 98%;
  }
  body header .site__menu .menu-botton {
    margin-top: 1rem;
  }
  body header .site__menu.navActive .menu__list ul {
    padding: 1.25rem;
    padding-right: 6rem;
    gap: 1.5rem;
  }
  body header .site__menu.navActive .menu__list ul li {
    font-size: 1.125rem;
  }
  body header .site__menu.navActive .menu__list ul li::before {
    display: none;
  }
}
body footer {
  width: 100%;
  margin-top: 80px;
  background-color: var(--main-color);
}
body footer .footer__contents {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 0 16px;
}
body footer .footer__contents .site__logo .logo--white {
  fill: #FDFDFD;
}
body footer .footer__contents .site__logo::before {
  background-color: #F1E97F;
}
body footer .footer__contents--grid {
  display: grid;
  grid-template-columns: 0.4fr 1fr 1.5fr;
  grid-template-rows: 1fr;
  gap: 2.5rem;
  align-items: center;
}
body footer .footer__contents--grid .sns__icon ul {
  gap: 0 1rem;
}
body footer .footer__contents--grid .sns__icon ul .bluesky a, body footer .footer__contents--grid .sns__icon ul .litlink a {
  align-items: center;
}
body footer .footer__contents--grid .sns__icon ul .bluesky a .img--block, body footer .footer__contents--grid .sns__icon ul .litlink a .img--block {
  width: auto;
  height: 2rem;
}
body footer .footer__contents--grid .sns__icon ul .bluesky a p, body footer .footer__contents--grid .sns__icon ul .litlink a p {
  color: #FDFDFD;
  font-size: 0.75rem;
}
body footer .footer__contents--nav__list {
  justify-content: space-between;
}
body footer .footer__contents--nav__list li::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  background-color: #FDFDFD;
  margin-right: 4px;
  vertical-align: 4px;
}
body footer .footer__contents--nav__list li a {
  color: #FDFDFD;
  font-weight: 500;
  transition: all 0.5s ease;
}
body footer .footer__contents--nav__list li a:hover {
  color: #F1E97F;
}
body footer .footer__contents--attention ul {
  border: 1px solid #FDFDFD;
  border-radius: 4px;
  padding: 1rem;
}
body footer .footer__contents--attention ul li {
  color: #FDFDFD;
  font-size: 0.65rem;
  line-height: 1.6;
}
body footer .footer__contents--attention ul li::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  background-color: #FDFDFD;
  margin-right: 4px;
  vertical-align: 4px;
}
body footer .footer__contents--copyright {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #FDFDFD;
  text-align: center;
}
@media screen and (max-width: 1119px) {
  body footer .footer__contents {
    max-width: 100%;
    margin: 0;
    padding: 1.5rem;
  }
  body footer .footer__contents--nav {
    margin-top: 1.5rem;
  }
  body footer .footer__contents--grid {
    grid-template-columns: 4.5rem 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  body footer .footer__contents--grid .bluesky {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  body footer .footer__contents--nav__list {
    grid-column: 2/3;
    grid-row: 1/2;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    justify-content: flex-start;
  }
  body footer .footer__contents--attention {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 430px) {
  body footer .footer__contents--grid {
    grid-template-columns: 1fr;
    grid-template-rows: 3rem 3rem 1fr;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
  }
  body footer .footer__contents--grid .bluesky {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  body footer .footer__contents--nav__list {
    grid-column: 1/2;
    grid-row: 2/3;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    justify-content: flex-start;
  }
  body footer .footer__contents--nav__list li {
    font-size: 0.8rem;
  }
  body footer .footer__contents--attention {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
body main {
  width: 1120px;
  margin: 40px auto 0;
}
body main h2 {
  color: var(--main-color);
  font-size: 1.5rem;
  font-weight: 500;
}
body main .main__contents--wrap {
  padding: 0 2.5rem;
}
@media screen and (max-width: 1119px) {
  body main {
    width: 100%;
    margin: 40px 0 0;
  }
  body main .main__contents--wrap {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 430px) {
  body main .main__contents {
    margin-top: 0 !important;
  }
  body main .main__contents--wrap {
    padding: 0 1rem;
  }
}
body .splide__pagination {
  display: none;
}
body .img-slide .splide .splide__track .splide__list {
  width: 100%;
}
body .img-slide .splide .splide__track .splide__list .splide__slide {
  width: 100%;
  aspect-ratio: 5.6/1;
}
body .img-slide .splide .splide__track .splide__list .splide__slide img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1119px) {
  body .img-slide .splide .splide__track .splide__list .splide__slide .img--radius {
    border-radius: 0;
  }
}/*# sourceMappingURL=common.css.map */