@charset "utf-8";

#gnav {}

.gnav {

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: #fff;
}



.gnav__wrapper {
  width: auto;
  height: 100%;
  overflow: auto;

  flex: 0 1 50%;

}

.hamburger {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  z-index: 999;

  display: block;
}

.hamburger__top,
.hamburger__middle,
.hamburger__bottom {
  display: block;
  background-color: var(--yellow);
  width: 56px;
}

.hamburger__top {
  height: 16px;
  border-radius: 50% / 100% 100% 0 0;
}

.hamburger__middle {
  height: 5px;
  margin: 3px 0;
  border-radius: 5px;
  transition: 0.3s;
}

.hamburger.active .hamburger__middle {
  margin: 8px 0;
}

.hamburger__bottom {
  height: 16px;
  border-radius: 50% / 0 0 100% 100%;
}

.gnav__logo {
  margin-top: 40px;
  margin-left: 24px;
  width: 100%;
  max-width: 290px;
}

.gnav__menu {
  margin-top: 40px;
  margin-left: 24px;
  margin-right: 24px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--main);
  font-weight: 500;
}

.gnav__item {
  padding: 8px 0 8px 24px;
  cursor: pointer;
  position: relative;
}

.gnav__item>a {
  color: var(--black);
  text-decoration: none;
}

.gnav__item::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 24px;
  border-radius: 100% 0 0 100% / 50%;
  background-color: var(--yellow);
}

.gnav__child-list {
  padding-top: 16px;
  padding-bottom: 8px;
  font-size: 16px;
}

.gnav__child-list>li {
  padding: 8px 8px 8px 0;
}

.gnav__child-list>li>a {
  color: var(--black);
  text-decoration: none;
  transition: .3s;
}

.gnav__child-list>li>a:hover {
  color: var(--blue);
}

.gnav__pamphlet {
  margin-top: 40px;
}

.gnav__pamplet-btn {
  width: 70%;
  max-width: 240px;
  height: 54px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--main);
  margin-left: 24px;
}

.gnav__pamplet-btn {
  color: var(--black);
  text-decoration: none;
}

.gnav__pamplet-btn>div {}

.gnav__pamplet-btn>div::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3px;
  left: 2px;
  border: 1px solid var(--black);
}

.gnav__pamplet-btn>div::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -3px;
  left: -2px;
  border: 1px solid var(--black);
}

.gnav__second {
  margin-top: 24px;
  margin-left: 24px;
  margin-bottom: 0;
  color: var(--main);
}

.gnav__second-list {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  max-width: 270px;
  font-size: 15px;
}

.gnav__second-list>li {
  flex: 0 1 100%;
}

.gnav__second-list>li a {
  display: block;
  padding: 8px 0;
  color: var(--black);
  text-decoration: none;
  transition: .3s;
}

.gnav__second-list>li a:hover {
  color: var(--blue);
}




@media screen and (min-width: 1025px) {
  #gnav {}

  .hamburger {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    background-color: var(--yellow);
    z-index: 999;

    display: block;
    transition: 0.3s;
    cursor: pointer;
  }

  .hamburger.active {
    background-color: var(--blue);
  }

  .hamburger .hamburger__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .hamburger.active .hamburger__container {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .hamburger__top,
  .hamburger__middle,
  .hamburger__bottom {
    display: block;
    background-color: var(--black);
    width: 30px;
    border: none transition: 0.3s;
  }

  .hamburger.active .hamburger__top,
  .hamburger.active .hamburger__middle,
  .hamburger.active .hamburger__bottom {
    background-color: white;
  }

  .hamburger__top {
    height: 2px;
    border-radius: 0;
    top: calc(50% - 6px);
  }

  .hamburger__middle {
    height: 2px;
    margin: 3px 0;
    border-radius: 5px;
    transition: 0.3s;
  }

  .hamburger.active .hamburger__middle {
    margin: 3px 0;
    background-color: white;
  }

  .hamburger__bottom {
    height: 2px;
    border-radius: 0;
    top: calc(50% + 12px);
  }

  .gnav__wrapper {
    width: auto;
    height: 100%;
    overflow: auto;

    flex: 0 1 50%;

    padding-left: 60px;
  }

  .gnav__menu {
    margin-top: 40px;
    margin-left: 24px;
    margin-right: 24px;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--main);
  }

  .gnav__list {
    position: relative;
    width: 25%;
  }

  .gnav__item {
    width: 270px;
  }

  .gnav__item::before {
    content: '';
    top: 11px;
    transition: .3s;
  }

  .gnav__item:hover::before {
    background-color: var(--blue);
  }

  .gnav__child-list {
    flex-wrap: wrap;
    padding-bottom: 8px;
    font-size: 17px;
    position: absolute;
    top: 0;
    left: 270px;
    padding-top: 0;
    height: 100%;
    width: 270px;
    display: block;
  }

  .gnav__child-list>li {
    flex: 0 1 100%;
    padding: 8px 8px 8px 0;
  }

  .gnav__child-list>li>a {
    transition: .3s;
  }

  .gnav__child-list>li>a:hover {
    color: var(--blue);
  }

  .gnav__second-list {
    display: block;
    width: 100%;
    max-width: 300px;
    font-size: 15px;
    font-weight: 500;
  }

  .gnav__second-list>li {}

  .gnav__second-list>li a {
    display: block;
    padding: 2px 0;
    color: var(--black);
    text-decoration: none;
    transition: .3s;
  }

  .gnav__second-list>li a:hover {
    color: var(--blue);
  }

  .gnav__wwrap-photo {
    display: block;
    background-image: url('./asset/DSC02998.jpg');
    background-size: cover;
    background-position: center center;
    flex: 0 1 50%;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }

}

/* -----------------------------------------フッター----------------------------------------- */

.gfooter {
  background-color: var(--black);
  margin-top: clamp(100px, 20vw, 140px) !important;
}

.footer__wrapper01 {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  padding: 72px 0 48px;
}

.footer__logo {
  width: 300px;
}

.footer__address {
  color: #fff;
  line-height: 2;
  margin-top: 40px;
}

.footer__nav {
  margin-top: 40px;
  width: 100%;
  max-width: 350px;
}

.footer__nav--main>li {}

.footer__nav--main>li>a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 12px 0;
}

.footer-nav--02 {
  display: none;
}

.footer__nav--main>li>a::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.footer__nav--main>li>a::after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.footer__copy {
  display: block;
  margin-top: 48px;
  padding: 16px;
  font-size: 12px;
  color: #fff;
  background-color: var(--blue);
}

@media screen and (min-width:600px) {
  .gfooter {
    background-color: var(--black);
    padding-left: 40px;
  }

  .footer__wrapper01 {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 72px 0 48px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .footer-nav--01 {
    flex: 0 0 375px;
  }

  .footer-nav--02 {
    display: block;
    flex: 0 1 60%;
  }

  .footer-nav {
    column-count: 3;
  }

  .footer-nav>li {
    break-inside: avoid;
    color: white;
    margin-bottom: 50px;
  }

  .footer-nav-child__list {}

  .footer-nav-child__list>li {
    margin: 2px 0;
  }

  .footer-nav>li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
  }

  .footer-nav>li a::before {
    content: '\f0da';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    color: var(--blue);
    margin-right: 6px;
    transition: 0.3s;
  }

  .footer-nav>li a:hover::before {
    color: var(--yellow);
    margin-right: 8px;
  }

  .footer-nav__title {
    font-weight: 500;
    margin-bottom: 0.5em;
  }
}