@charset "UTF-8";
.blurIn {
  opacity: 0;
  transform: scale(1.02);
  filter: blur(10px);
  transition: 1.5s;
  transition-property: opacity, transform, filter;
}
.blurIn.scrollIn {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.smooth-left {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.smooth-left.scrollIn {
  clip-path: inset(0);
}

.fadeUp {
  opacity: 0;
  transform: translate3d(0, 0.4rem, 0);
  transition: 1.2s;
  transition-property: opacity, transform;
}
.fadeUp.scrollIn {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.imgZoomOut {
  transition: 1.2s;
}
.imgZoomOut.scrollIn {
  transform: scale(0.8);
}

.fade-in-left {
  transform: translateX(40px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-left.scrollIn {
  transform: translateX(0px);
  opacity: 1;
}

.fade-in-right {
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.5s ease 1s;
}
.fade-in-right.scrollIn {
  transform: translateX(0px);
  opacity: 1;
}

.line {
  width: 1px;
  height: 4rem;
  margin: 0 auto;
  background: #93814b;
  transform: scaleY(0);
  transform-origin: top;
}
.line.scrollIn {
  animation: lineGrow 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes lineGrow {
  to {
    transform: scaleY(1);
  }
}
/* fade in */
.fade-in {
  opacity: 0;
  transition: all 1s ease;
}
.fade-in.inview-on {
  opacity: 1;
}

.inview-on .fade-in {
  opacity: 1;
}

/* fade in zoom */
.fade-in-zoom {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.5s ease;
}
.fade-in-zoom.inview-on {
  transform: scale(1);
  opacity: 1;
}

.inview-on .fade-in-zoom {
  transform: scale(1);
  opacity: 1;
}

/* fade in down */
.fade-in-down {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down.inview-on {
  transform: translateY(0px);
  opacity: 1;
}

.inview-on .fade-in-down {
  transform: translateY(0px);
  opacity: 1;
}

/* fade in up left */
.fade-in-up-left {
  transform: translateY(20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in up right */
.fade-in-up-right {
  transform: translateY(20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down left */
.fade-in-down-left {
  transform: translateY(-20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down right */
.fade-in-down-right {
  transform: translateY(-20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.popup-anime {
  opacity: 0;
}
.popup-anime.inview-on {
  animation: popup 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
.poyopoyo.inview-on {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.smooth-left {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.smooth-left.inview-on {
  clip-path: inset(0);
}

.main {
  margin-top: 2.7rem;
}
@media screen and (max-width: 750px) {
  .main {
    margin-top: 0.98rem;
  }
}
.main .sec--01 {
  padding-top: 2rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .main .sec--01 {
    padding-top: 1.5rem;
  }
}
.main .sec--01 .prepend .en {
  font-size: 0.6rem;
  text-align: center;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .prepend .en {
    font-size: 0.5rem;
    margin-left: 0.2rem;
  }
}
.main .sec--01 .prepend .logo {
  width: 5rem;
  margin: 1rem auto 0;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .prepend .logo {
    width: 3rem;
  }
}
.main .sec--01 .prepend .ttl {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.6rem;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .prepend .ttl {
    font-size: 0.4rem;
  }
}
.main .sec--01 .prepend .text {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.4rem;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .prepend .text {
    font-size: 0.28rem;
  }
}
.main .sec--01 .prepend .image {
  margin-top: 2rem;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .prepend .image {
    margin-top: 1.5rem;
  }
}
.main .sec--01 .promise .ttl {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.6rem;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .promise .ttl {
    font-size: 0.4rem;
  }
}
.main .sec--01 .promise .border {
  width: 1px;
  height: 1rem;
  background: rgba(35, 24, 16, 0.2);
  margin: 0.3rem auto;
  position: relative;
}
.main .sec--01 .promise .border:before, .main .sec--01 .promise .border:after {
  content: "";
  width: 1px;
  height: 1rem;
  background: rgba(35, 24, 16, 0.2);
  position: absolute;
}
.main .sec--01 .promise .border:before {
  left: -0.1rem;
}
.main .sec--01 .promise .border:after {
  right: -0.1rem;
}
.main .sec--01 .promise .text {
  text-align: center;
  font-size: 0.4rem;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .promise .text {
    font-size: 0.28rem;
  }
}
.main .sec--01 .body {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  color: #231810;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .body {
    margin-top: 1.5rem;
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}
.main .sec--01 .body .inner {
  background: #fff;
  padding: 0.3rem 0.3rem 0.5rem;
  text-align: center;
}
.main .sec--01 .body .inner .obi {
  background: #93814b;
  color: #fff;
  font-size: 0.24rem;
  padding: 0.2rem 0;
}
.main .sec--01 .body .inner .obi em {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.1rem;
  line-height: 1.2;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .body .inner .obi em {
    font-size: 0.4rem;
  }
}
.main .sec--01 .body .inner .ttl {
  margin-top: 0.5rem;
}
.main .sec--01 .body .inner .image {
  margin-top: 0.5rem;
}
.main .sec--01 .body .inner .image figcaption {
  color: #fff;
  bottom: 0.1rem;
  right: 0.2rem;
  text-align: right;
}
.main .sec--01 .body .inner .text {
  margin-top: 0.5rem;
  font-size: 0.26rem;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .main .sec--01 .body .inner .text {
    font-size: 0.2rem;
  }
}
.main .sec--02 {
  background: #e8e4e1;
  padding: 2rem 0;
  margin-top: 3rem;
}
@media screen and (max-width: 750px) {
  .main .sec--02 {
    padding: 1rem 0 1.5rem;
    margin-top: 1.5rem;
  }
}
.main .sec--02 .prepend .mainttl {
  font-size: 0.44rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .prepend .mainttl {
    font-size: 0.4rem;
  }
}
.main .sec--02 .prepend .grid {
  margin-top: 1rem;
  display: grid;
  gap: 2rem;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .prepend .grid {
    margin-top: 0.5rem;
    gap: 1rem;
  }
}
.main .sec--02 .prepend .grid .image_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .prepend .grid .image_grid {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
}
.main .sec--02 .prepend .grid .text {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.4rem;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .prepend .grid .text {
    margin-top: 0.3rem;
    font-size: 0.28rem;
  }
}
.main .sec--02 .prepend .grid .text small {
  display: block;
  font-size: 0.28rem;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .prepend .grid .text small {
    font-size: 0.24rem;
  }
}
.main .sec--02 .body {
  margin-top: 3rem;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .body {
    margin-top: 2rem;
  }
}
.main .sec--02 .body .box {
  background: #fff;
  color: #231810;
  padding: 0 0.5rem 1rem;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .body .box {
    padding: 0 0.4rem 1rem;
  }
}
.main .sec--02 .body .box .obi {
  width: calc(100% + 1rem);
  margin-left: -0.5rem;
  background: #93814b;
  color: #fff;
  font-size: 0.5rem;
  text-align: center;
  padding: 0.4rem 0;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .body .box .obi {
    width: calc(100% + 0.8rem);
    margin-left: -0.4rem;
    font-size: 0.32rem;
  }
}
.main .sec--02 .body .box .logo {
  width: 7rem;
  margin: 0.3rem auto;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .body .box .logo {
    width: 4rem;
    margin: 0.2rem auto;
  }
}
.main .sec--02 .body .box .mainttl {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .body .box .mainttl {
    text-align: left;
  }
}
.main .sec--02 .body .box .image_grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .body .box .image_grid {
    grid-template-columns: 1fr;
  }
}
.main .sec--02 .body .box .grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  font-size: 0.24rem;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .body .box .grid {
    grid-template-columns: 1fr;
  }
}
.main .sec--02 .body .box .grid .ttl {
  border-bottom: 1px solid rgba(35, 24, 16, 0.2);
  padding-bottom: 0.2rem;
  margin-bottom: 0.5rem;
  font-size: 0.32rem;
}
@media screen and (max-width: 750px) {
  .main .sec--02 .body .box .grid .ttl {
    font-size: 0.28rem;
  }
}
.main .sec--02 .body .box .grid dl {
  display: grid;
  grid-template-columns: 2rem auto;
}
.main .sec--02 .body .box .grid dl dt,
.main .sec--02 .body .box .grid dl dd {
  padding: 0.1rem 0;
}
.main .sec--02 .body .box .grid dl dt {
  position: relative;
}
.main .sec--02 .body .box .grid dl dt:after {
  content: "／";
  position: absolute;
  top: 0.1rem;
  right: 0.25rem;
}
.main .sec--02 .body .box .grid .text {
  line-height: 2;
}/*# sourceMappingURL=unique.css.map */