.gallery_outer {
  position: relative;
  background: rgba(220, 220, 190, 0.3);
  background-size: 100% auto;
  margin-bottom: 150px;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 100px 0;
}
@media screen and (max-width: 1200px) {
  .gallery_outer {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .gallery_outer {
    padding: 10vw 0;
  }
}

#gallery {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  position: relative;
  padding: 0 2rem;
  position: relative;
  max-width: 1200px;
  margin: 0 auto 0 auto !important;
}
#gallery > * {
  z-index: 3;
}
#gallery h2 {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.4rem, 2.2vw, 3.2rem);
  font-weight: 500;
  text-align: center;
  width: 100%;
  margin-bottom: 5rem;
}
#gallery .image {
  width: 59.7%;
  position: relative;
}
#gallery .image img {
  vertical-align: top;
}
#gallery .image .slide {
  position: relative;
}
#gallery .image dl dt {
  position: absolute;
  left: 0;
  top: 3rem;
  padding: 5px 1.5rem;
  border-radius: 0 5px 5px 0;
  background: #83AD28;
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  margin-bottom: 1rem;
}
#gallery .thumbs {
  width: 39.1%;
}
#gallery .thumbs .thumbs_parent {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#gallery .thumbs .thumbs_parent::after {
  content: "";
  width: 33%;
  height: 0;
}
#gallery .thumbs .thumbs_parent .slide {
  width: 30%;
  height: 30%;
  border: solid 2px #fff;
  border-radius: 20px;
  margin-bottom: 21px;
  transition: 0.3s;
}
#gallery .thumbs .thumbs_parent .slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  border-radius: 20px;
  cursor: pointer;
}
#gallery .thumbs .thumbs_parent .slide img:hover {
  opacity: 0.6;
}
#gallery .thumbs .thumbs_parent .slide.current {
  border-color: #83AD28;
}
#gallery .thumbs .thumbs_parent .slick-current .slide {
  border-color: #83AD28;
}
#gallery .thumbs .thumbs_parent .arrow {
  top: 50%;
}
#gallery .arrow {
  width: 40px;
  height: 40px;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 4rem);
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s;
}
#gallery .arrow:hover {
  opacity: 0.7;
}
#gallery .arrow span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
#gallery .arrow span::before, #gallery .arrow span::after {
  content: "";
  position: absolute;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
#gallery .arrow span::before {
  width: 100%;
  height: 3px;
}
#gallery .arrow span::after {
  width: 3px;
  height: 100%;
  right: 0;
}
#gallery .arrow.next {
  right: 20px;
}
#gallery .arrow.next span {
  transform: rotate(45deg);
}
#gallery .arrow.prev {
  left: 20px;
}
#gallery .arrow.prev span {
  transform: rotate(-135deg);
}
@media screen and (max-width: 1200px) {
  #gallery .thumbs .thumbs_parent::after {
    width: 11.2784vw;
  }
  #gallery .thumbs .thumbs_parent .slide {
    width: 11.2784vw;
    height: 11.2784vw;
    margin-bottom: 1.69176vw;
  }
}
@media screen and (max-width: 768px) {
  #gallery {
    display: block;
    margin-bottom: 3rem;
  }
  #gallery .image {
    width: auto;
    margin-bottom: 3vw;
  }
  #gallery .thumbs {
    width: auto;
  }
  #gallery .thumbs .thumbs_parent {
    display: block;
  }
  #gallery .thumbs .thumbs_parent::after {
    display: none;
  }
  #gallery .thumbs .thumbs_parent .slide {
    width: 30vw !important;
    height: 30vw;
    margin: 0 1.5vw;
  }
  #gallery .arrow {
    width: 3rem;
    height: 3rem;
    padding: 0.8rem;
  }
  #gallery .arrow.next {
    right: 0.5rem;
  }
  #gallery .arrow.prev {
    left: 0.5rem;
  }
}

/* ------------------------------------
// #feature
------------------------------------ */
#feature .featureContainer {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem clamp(1rem, 4.9vw, 7rem);
}
#feature .featureContainer > section {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  position: relative;
  gap: 0;
  padding-top: calc(3rem + 64%);
}
#feature .featureContainer > section .num {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  color: #FFF;
  font-family: "Dai Banna SIL", serif;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  font-size: clamp(1.4rem, 1.4vw, 2rem);
  display: grid;
  place-content: center;
  place-items: center;
  padding: clamp(1.5rem, 2.1vw, 3rem);
  line-height: 0.8;
  text-transform: uppercase;
}
#feature .featureContainer > section .num::before {
  content: "";
  width: 100%;
  background: #B9AB73;
  border-radius: 100vW;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
#feature .featureContainer > section .num > * {
  z-index: 2;
}
#feature .featureContainer > section .num span {
  font-family: "Kaisei HarunoUmi", serif;
  font-size: clamp(4rem, 4.9vw, 7rem);
}
#feature .featureContainer > section .photo {
  margin: 3rem 3rem 0 3rem;
  position: absolute;
  left: 0;
  top: 3rem;
  z-index: 1;
}
#feature .featureContainer > section .box {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  gap: 3rem;
  background: #FFF;
  border-radius: 20px;
  margin-top: -3rem;
  padding: 6rem 3rem;
}
#feature .featureContainer > section h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.8rem, 1.5vw, 2.2rem);
  font-weight: 500;
  text-align: center;
}
#feature .featureContainer > section p {
  text-align: justify;
  font-size: clamp(1.5rem, 1.3vw, 1.8rem);
}
#feature .featureContainer > section .link a {
  margin: 0 auto;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  #feature .featureContainer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #feature .featureContainer > section {
    display: grid;
    grid-template-rows: auto;
    gap: 1rem;
    position: relative;
  }
}

/* ------------------------------------
// #equipment
------------------------------------ */
#equipment {
  margin-top: 10rem;
}
#equipment h2 {
  text-align: center;
  font-size: clamp(2rem, 2.2vw, 3.2rem);
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 4rem;
}
#equipment .equipcontainer section {
  padding: 3rem 3rem;
  background: #FFF;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "eqtext eqphoto";
  gap: 1rem clamp(3rem, 4.2vw, 6rem);
}
#equipment .equipcontainer section .eqphotobox {
  grid-area: eqphoto;
}
#equipment .equipcontainer section .eqtext {
  grid-area: eqtext;
}
#equipment .equipcontainer section:nth-child(2n-1) {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "eqphoto eqtext";
}
#equipment .equipcontainer section + section {
  margin-top: 5rem;
}
#equipment .equipcontainer section h3 {
  font-size: clamp(1.8rem, 1.4vw, 2rem);
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  border-bottom: 1px solid #C2BFB1;
}
@media screen and (max-width: 768px) {
  #equipment .equipcontainer section {
    padding: 2rem 2rem;
    border-radius: 10px;
    grid-template-columns: 1fr;
    grid-template-areas: "eqtext" "eqphoto";
    gap: 2rem;
  }
  #equipment .equipcontainer section:nth-child(2n-1) {
    grid-template-columns: 1fr;
    grid-template-areas: "eqtext" "eqphoto";
  }
  #equipment .equipcontainer section + section {
    margin-top: 3rem;
  }
  #equipment .equipcontainer section h3 {
    font-size: clamp(1.8rem, 1.4vw, 2rem);
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    border-bottom: 1px solid #C2BFB1;
  }
}

/* ------------------------------------
// #cleaness
------------------------------------ */
#cleaness {
  margin-top: 10rem;
}
#cleaness h2 {
  text-align: center;
  font-size: clamp(2rem, 2.2vw, 3.2rem);
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 4rem;
}
#cleaness h2 span {
  display: block;
  font-size: clamp(1.6rem, 1.7vw, 2.4rem);
}
#cleaness .cleanesscontainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem clamp(3rem, 4.2vw, 6rem);
}
#cleaness .cleanesscontainer section {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  padding: 3rem 3rem;
  background: #FFF;
  border-radius: 20px;
}
#cleaness .cleanesscontainer section .eqphotobox {
  margin-top: 2rem;
}
#cleaness .cleanesscontainer section h3 {
  font-size: clamp(1.8rem, 1.4vw, 2rem);
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  border-bottom: 1px solid #C2BFB1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #cleaness .cleanesscontainer {
    grid-template-columns: 1fr;
  }
  #cleaness .cleanesscontainer section {
    padding: 2rem 2rem;
    border-radius: 10px;
  }
  #cleaness .cleanesscontainer section h3 {
    font-size: clamp(1.8rem, 1.4vw, 2rem);
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    border-bottom: 1px solid #C2BFB1;
  }
}

/* ------------------------------------
// #forcustmer
------------------------------------ */
#forcustmer {
  margin-top: 10rem;
}
#forcustmer h2 {
  text-align: center;
  font-size: clamp(2rem, 2.2vw, 3.2rem);
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 4rem;
}
#forcustmer h2 span {
  font-size: clamp(1.6rem, 1.7vw, 2.4rem);
}
#forcustmer dt {
  font-size: clamp(1.8rem, 1.4vw, 2rem);
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 1rem;
  border-bottom: 1px solid #C2BFB1;
  margin-bottom: 1rem;
}
#forcustmer dd + dt {
  margin-top: 4rem;
}