@charset "UTF-8";
[data-anim] {
  --delay: 0;
  --distance: 20px;
  --duration: .4s;
  opacity: 0;
  transition-duration: var(--duration) !important;
  transition-property: transform, opacity;
  transition-delay: var(--delay) !important;
  transition-timing-function: ease-in-out;
}

[data-anim=up] {
  transform: translateY(var(--distance));
}

[data-anim=down] {
  transform: translateY(calc(-1 * var(--distance)));
}

[data-anim=left] {
  transform: translateX(calc(-1 * var(--distance)));
}

[data-anim=right] {
  transform: translateX(var(--distance));
}

[data-anim=end] {
  transform: translate(0, 0);
  opacity: 1;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

:root {
  --mc: #53A716;
  --sc1: #6EC251;
  --sc2: #438215;
  --sc3: #fdb519;
  --lc: #e9f2e3;
  --mc-dark: #3c9000;
  --grad: linear-gradient(90deg, #BED547, #00AB5B);
  --max-width: 1320px;
  --pad: 0 15px;
  --header-height: 60px;
}

@media print, screen and (min-width: 768px) {
  :root {
    --max-width: 1360px;
    --pad: 0 30px;
  }
}
@media print, screen and (min-width: 1280px) {
  :root {
    --header-height: 90px;
  }
}
html {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

html.wf-active, html.wf-inactive {
  visibility: visible;
}

body {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow-x: hidden;
}
body main {
  flex: 1;
}

footer > .inner, main > .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--pad);
}

header {
  background-color: #fff;
  height: var(--header-height);
  z-index: 10000;
}
header.small {
  height: 60px;
  background-color: transparent;
}
header.small .header-pos {
  position: fixed;
  padding: 0 5px;
}
header.small .header-pos > .inner {
  height: 60px;
  border-radius: 0 0 15px 15px !important;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}
header.small .header-pos > .inner .h1-logo {
  width: auto !important;
  flex: 0 0 auto !important;
  height: 100%;
  padding: 0 15px;
}
header.small .header-pos > .inner .h1-logo a {
  height: 60px;
}
header.small .header-pos > .inner .h1-logo .img-wrap {
  display: inline-grid;
  place-items: center;
}
header.small .header-pos > .inner .h1-logo .img-wrap .img-sp {
  display: block;
  width: auto;
  height: 53px;
}
header.small .header-pos > .inner .h1-logo .img-wrap .img-pc {
  display: none;
}
header.small .header-pos > .inner .global-nav.pc .inner > .contact {
  overflow: hidden;
}
header.small .header-pos > .inner .global-nav.pc .inner > .contact a {
  flex-direction: row !important;
  padding: 0 20px;
  border-radius: 0 0 13px 0;
  height: 100% !important;
}
header.small .header-pos > .inner .global-nav.pc .inner > .contact a img {
  margin-right: 10px;
  margin-bottom: 0;
}
header .header-pos {
  width: 100%;
}
header .header-pos > .inner {
  display: flex;
  width: 100%;
  background-color: #fff;
  height: var(--header-height);
  justify-content: space-between;
  transition: all 0.3s;
}
header .h1-logo {
  display: grid;
  place-items: center;
  border-bottom-right-radius: 30px;
  position: relative;
  transition: height 0.3s;
  padding: 0 20px;
  z-index: 9999;
}
header .h1-logo a {
  display: block;
  height: 60px;
}
header .h1-logo .img-wrap {
  height: 100%;
}
header .h1-logo .img-wrap img {
  width: auto;
  height: 100%;
}
header .h1-logo .img-wrap .img-sp {
  display: block;
}
header .h1-logo .img-wrap .img-pc {
  display: none;
}
header .h1-logo .r1, header .h1-logo .r2 {
  position: absolute;
  width: 30px;
  height: 30px;
  overflow: hidden;
  display: none;
}
header .h1-logo .r1::before, header .h1-logo .r2::before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: -30px -30px 0 0 #fff;
}
header .h1-logo .r1 {
  top: var(--header-height);
  left: 100%;
}
header .h1-logo .r2 {
  top: 100%;
  left: 340px;
}

@media print, screen and (min-width: 1080px) {
  header .h1-logo {
    flex: 0 0 300px;
    height: 120px;
    padding: 0 40px;
    background-color: #fff;
  }
  header .h1-logo a {
    height: auto;
  }
  header .h1-logo .img-wrap .img-sp {
    display: none;
  }
  header .h1-logo .img-wrap .img-pc {
    max-width: 200px;
    display: block;
  }
}
@media print, screen and (min-width: 1340px) {
  header .h1-logo {
    flex: 0 0 400px;
    height: 180px;
  }
  header .h1-logo a {
    height: auto;
  }
  header .h1-logo .img-wrap .img-sp {
    display: none;
  }
  header .h1-logo .img-wrap .img-pc {
    max-width: 100%;
    display: block;
  }
  header .h1-logo .r1, header .h1-logo .r2 {
    display: block;
  }
}
.hamb {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
}
.hamb span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--sc2);
  position: absolute;
  transition: all 0.3s;
}
.hamb span:nth-child(1) {
  top: 0;
}
.hamb span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamb span:nth-child(3) {
  top: 100%;
}
.hamb.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamb.active span:nth-child(2) {
  opacity: 0;
}
.hamb.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media print, screen and (min-width: 1080px) {
  .hamb {
    display: none;
  }
}
.global-nav {
  display: none;
}

.global-nav.sp {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  padding-top: 60px;
  z-index: 1;
  display: block;
}
.global-nav.sp::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: -1;
}
.global-nav.sp .inner {
  flex-direction: column;
  display: flex;
  padding: 20px;
}
.global-nav.sp.open {
  -webkit-animation: fadeIn 0.3s forwards;
          animation: fadeIn 0.3s forwards;
  pointer-events: auto;
}
.global-nav.sp.close {
  pointer-events: none;
  -webkit-animation: fadeOut 0.3s forwards;
          animation: fadeOut 0.3s forwards;
}
.global-nav.sp .list-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.global-nav.sp .list-nav li a {
  display: block;
  width: 100%;
  padding: 13px;
  font-weight: bold;
  font-size: 18px;
  color: var(--sc2);
  text-decoration: none;
  padding-left: 35px;
  position: relative;
  background-image: linear-gradient(to right, #abd6af 5px, transparent 5px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.global-nav.sp .list-nav li a::before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  border-style: solid;
  border-color: var(--sc1) var(--sc2) transparent transparent;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%) rotate(45deg);
}
.global-nav.sp .contact a {
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  text-decoration: none;
  border-radius: 10px;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: 5px;
}
.global-nav.sp .contact a img {
  margin-right: 10px;
}
.global-nav.sp .side .recruit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  background-color: #fff;
  border-radius: 10px;
  letter-spacing: 5px;
  text-decoration: none;
  background-color: #0076AA;
  color: #FFF9DE;
}
.global-nav.sp .side .recruit img {
  width: 24px;
  height: auto;
  margin-right: 10px;
}

@-webkit-keyframes fadeIn {
  from {
    transform: translateY(-5px);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    transform: translateY(-5px);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-5px);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-5px);
  }
}
.global-nav.pc {
  display: flex;
}
.global-nav.pc .inner {
  display: flex;
}
.global-nav.pc .list-nav {
  display: flex;
  font-size: 14px;
}
.global-nav.pc .list-nav li {
  position: relative;
}
.global-nav.pc .list-nav li:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #ccc;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(10deg);
}
.global-nav.pc .list-nav li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 10px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}
.global-nav.pc .contact {
  display: flex;
  align-items: center;
}
.global-nav.pc .contact a {
  height: calc(var(--header-height) + 10px);
  padding: 10px 10px 0 10px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-weight: bold;
  border-bottom-left-radius: 10px;
  color: #fff;
  background: linear-gradient(90deg, #BED547, #00AB5B);
  text-decoration: none;
  letter-spacing: 5px;
}
.global-nav.pc .contact a img {
  width: 26px;
  margin-bottom: 10px;
}
.global-nav.pc .side {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.global-nav.pc .side a {
  display: inline-grid;
  place-items: center;
  writing-mode: vertical-rl;
  padding: 50px 10px 20px 0;
  line-height: 1;
  background-color: #fff;
  border-radius: 6px 0 0 6px;
  letter-spacing: 5px;
  word-spacing: 0;
  text-decoration: none;
  background-color: #0076AA;
  color: #FFF9DE;
  transition: all 0.3s;
  width: 50px;
  transform: translateX(7px);
}
.global-nav.pc .side a span {
  display: block;
}
.global-nav.pc .side a:hover {
  transform: translateX(0);
}
.global-nav.pc .side img {
  position: absolute;
  top: 15px;
  left: calc(50% - 3px);
  transform: translateX(-50%);
  width: 24px;
  height: auto;
}

@media print, screen and (min-width: 1280px) {
  .global-nav.pc .list-nav {
    font-size: 16px;
  }
  .global-nav.pc .list-nav li a {
    padding: 0 20px;
  }
  .global-nav.pc .contact a {
    padding: 10px 20px 0 20px;
  }
}
@media print, screen and (min-width: 1620px) {
  .global-nav.pc .list-nav {
    font-size: 16px;
  }
  .global-nav.pc .list-nav li a {
    padding: 0 40px;
  }
  .global-nav.pc .contact a {
    padding: 10px 40px 0 40px;
  }
}
footer {
  position: relative;
  border-top: solid 1px #ddd;
  background-color: #fff;
}
footer > .inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 300px;
  padding: 0;
}
footer > .inner.static {
  position: static;
}
footer > .inner .info-wrap {
  order: 2;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
footer > .inner .info-wrap img {
  width: 100%;
  max-width: 258px;
  height: auto;
  margin-bottom: 10px;
}
footer > .inner .dum {
  width: 100%;
}
footer > .inner .contact-wrap {
  order: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
footer > .inner .contact-wrap .head {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
footer > .inner .contact-wrap .tel {
  font-size: 36px;
  font-weight: bold;
  padding-left: 30px;
  background-image: url("../img/tel.png");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center left;
  margin-bottom: 5px;
}
footer > .inner .contact-wrap .btn {
  text-align: center;
}
footer > .inner .contact-wrap .btn a {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  padding: 5px 50px 5px 70px;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  background-image: url("../img/mail.png"), var(--grad);
  background-repeat: no-repeat, repeat;
  background-size: 20px, auto;
  background-position: 30px center, 0 0;
}
footer > .inner .gmap {
  order: 1;
  width: 100%;
  font-size: 0;
  border-left: solid 1px #ddd;
  margin-bottom: 30px;
}
footer > .inner .gmap iframe {
  width: 100%;
  height: 300px;
}

@media print, screen and (min-width: 1080px) {
  footer > .inner {
    display: grid;
    grid-template-columns: 30% 30% 40%;
    padding: var(--pad);
  }
  footer > .inner .info-wrap {
    align-items: flex-start;
    order: 1;
    margin-bottom: 0;
  }
  footer > .inner .contact-wrap {
    order: 2;
    margin-bottom: 0;
  }
  footer > .inner .dum {
    order: 3;
  }
  footer > .inner .gmap {
    order: unset;
    width: 40vw;
    position: absolute;
    top: 0;
    right: 0;
    margin-bottom: 0;
  }
}
.dl-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 15px;
  place-items: start;
  margin-bottom: 30px;
}
.dl-notice dt {
  display: flex;
  align-items: center;
}
.dl-notice dt::after {
  color: var(--main-color);
  display: inline-block;
  margin-right: 10px;
  line-height: 1;
  width: 6em;
  font-size: 12px;
  color: #fff;
  padding: 3px;
  box-sizing: content-box;
  border-radius: 10px;
  text-align: center;
  margin-left: 30px;
}
.dl-notice dt.album::after {
  content: "アルバム";
  background-color: #3D88E9;
}
.dl-notice dt.notice::after {
  content: "お知らせ";
  background-color: #6BB518;
}
.dl-notice dt.public_info::after {
  content: "公開情報";
  background-color: #FFA500;
}
@media print, screen and (max-width: 1080px) {
  .dl-notice {
    grid-template-columns: 1fr;
  }
  .dl-notice dt::after {
    margin-left: 10px;
  }
}