@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 .mv {
  position: relative;
  margin-top: 2.7rem;
}
@media screen and (max-width: 750px) {
  .main .mv {
    margin-top: 0.98rem;
  }
}
.main .mv .movie,
.main .mv .mvimage {
  position: relative;
}
.main .mv .skip-btn,
.main .mv .replay-btn {
  position: absolute;
  bottom: 0.7rem;
  left: 0;
  z-index: 20;
  cursor: pointer;
  padding: 0;
  border: none;
  width: 3rem;
  background: transparent;
}
@media screen and (max-width: 750px) {
  .main .mv .skip-btn,
  .main .mv .replay-btn {
    bottom: 0;
    width: 2rem;
  }
}
.main .mv .text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-60%, -50%);
  z-index: 1;
  font-size: 0.7rem;
  line-height: 2;
  color: #fff;
  text-shadow: 0 0 10px #000;
}
@media screen and (max-width: 750px) {
  .main .mv .text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.5rem;
  }
}
.main .mv .text .blurIn span:nth-child(1) {
  transition-delay: 0.4s !important;
}
.main .mv .text .blurIn span:nth-child(2) {
  transition-delay: 0.5s !important;
}
.main .mv .text .blurIn span:nth-child(3) {
  transition-delay: 0.6s !important;
}
.main .mv .text .blurIn span:nth-child(4) {
  transition-delay: 0.7s !important;
}
.main .mv .text .blurIn span:nth-child(5) {
  transition-delay: 0.8s !important;
}
.main .mv .text .blurIn span:nth-child(6) {
  transition-delay: 0.9s !important;
}
.main .mv .text {
  /*&:before {
  	content: "";
  	position: absolute;
  	top: 0;
  	left: 0;
  	height: 100%;
  	width: 0;
  	background: rgba(#fff, 0.9);
  }

  span {
  	position: relative;
  	z-index: 2;
  	opacity: 0;
  	transform: translateX(20px);
  }

  &.scrollIn {
  	&:before {
  		animation: boxReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  		animation-delay: 1s;
  	}

  	span {
  		animation: textReveal 1.2s ease forwards;
  		animation-delay: 1.5s;
  	}
  }*/
}
.main .mv {
  /* アニメーション */
}
@keyframes boxReveal {
  to {
    width: 100%;
  }
}
@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.main .mv .movie {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .main .mv .movie {
    padding-bottom: 36.4583%;
    height: 0;
  }
}
@media screen and (max-width: 750px) {
  .main .mv .movie {
    aspect-ratio: 15/17;
  }
}
.main .mv .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main .mv .mvimage {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/700;
  display: none;
}
@media screen and (max-width: 750px) {
  .main .mv .mvimage {
    aspect-ratio: 375/425;
  }
}
.main .mv .mvimage .bg {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.main .mv .mvimage .bg::before {
  content: "";
  display: block;
  padding-bottom: 36.4583%;
}
@media screen and (max-width: 750px) {
  .main .mv .mvimage .bg::before {
    aspect-ratio: 15/17;
  }
}
.main .mv .mvimage .bg picture,
.main .mv .mvimage .bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.main .mv .mvimage figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 400;
  font-size: 0.24rem;
  letter-spacing: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.05rem 0.1rem 0.1rem;
}
@media screen and (max-width: 750px) {
  .main .mv .mvimage figcaption {
    font-size: 0.2rem;
  }
}
.main .mv .mvimage figcaption.white {
  color: #fff;
}
.main .bg_movie {
  position: relative;
  overflow: hidden;
  padding-top: 1.4rem;
}
@media screen and (max-width: 750px) {
  .main .bg_movie {
    padding-top: 1rem;
  }
}
.main .bg_movie video {
  position: absolute;
  top: 0;
  left: 0;
  width: 32rem;
  min-width: 100%;
}
@media screen and (max-width: 750px) {
  .main .bg_movie video {
    width: 35rem;
    left: -2rem;
  }
}
.main .sec_merit .ttl_entry {
  width: 9rem;
  margin: 0 auto;
  padding: 0.2rem 0;
  font-size: 0.48rem;
  text-align: center;
  background: rgba(168, 151, 103, 0.2);
  border-top: 1px solid;
  border-bottom: 1px solid;
}
@media screen and (max-width: 750px) {
  .main .sec_merit .ttl_entry {
    width: 100%;
    font-size: 0.4rem;
  }
}
.main .sec_merit .h2_ttl {
  margin-top: 1rem;
  font-size: 0.5rem;
  text-align: center;
  font-family: "Shimanami", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", serif;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .main .sec_merit .h2_ttl {
    font-size: 0.4rem;
    margin-top: 0.6rem;
  }
}
.main .sec_merit .h2_ttl sup {
  font-size: 0.2rem;
  top: -0.2rem;
}
@media screen and (max-width: 750px) {
  .main .sec_merit .h2_ttl sup {
    font-size: 0.16rem;
  }
}
.main .sec_merit .h2_ttl small {
  font-size: 0.36rem;
  display: block;
}
@media screen and (max-width: 750px) {
  .main .sec_merit .h2_ttl small {
    font-size: 0.28rem;
  }
}
.main .sec_merit .h2_ttl small sup {
  top: -0.15rem;
}
@media screen and (max-width: 750px) {
  .main .sec_merit .h2_ttl small sup {
    top: -0.1rem;
  }
}
.main .sec_merit .h2_ttl small sup.--02 {
  right: 0.05rem;
}
.main .sec_merit .h2_ttl {
  /*span {
  	position: relative;

  	sup {
  		position: absolute;
  		top: -0.1rem;
  		right: 0.3rem;
  		font-size: 0.24rem;
  	}
  }*/
}
@media screen and (min-width: 751px) {
  .main .sec_merit .wrap {
    width: 100%;
  }
}
.main .sec_merit .fl {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .main .sec_merit .fl {
    display: grid;
  }
}
.main .sec_merit .fl .inner {
  position: relative;
}
@media screen and (min-width: 751px) {
  .main .sec_merit .fl .inner {
    padding: 0 0.5rem;
    border-right: 1px solid;
  }
  .main .sec_merit .fl .inner:nth-child(1) {
    border-left: 1px solid;
  }
}
@media screen and (max-width: 750px) {
  .main .sec_merit .fl .inner {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(147, 129, 75, 0.2);
    text-align: center;
  }
  .main .sec_merit .fl .inner:nth-child(1) {
    border-top: 1px solid rgba(147, 129, 75, 0.2);
  }
}
.main .sec_merit .fl .inner small {
  font-size: 0.24rem;
}
.main .sec_merit .fl .inner span {
  font-size: 0.38rem;
}
@media screen and (max-width: 750px) {
  .main .sec_merit .fl .inner span {
    font-size: 0.32rem;
  }
}
.main .sec_merit .fl .inner em {
  font-size: 0.6rem;
  line-height: 1;
}
.main .sec_merit .fl .inner sup {
  font-size: 0.2rem;
}
.main .sec_merit .fl .inner .note {
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  font-size: 0.24rem;
}
@media screen and (max-width: 750px) {
  .main .sec_merit .fl .inner .note {
    position: static;
    font-size: 0.2rem;
  }
}
.main .sec_merit .fl .inner.--04 {
  text-align: center;
}
@media screen and (min-width: 751px) {
  .main .sec_merit .fl.--b .inner {
    padding: 0 0.5rem;
  }
}
.main .sec_info {
  margin-top: 1.5rem;
}
@media screen and (max-width: 750px) {
  .main .sec_info {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 751px) {
  .main .sec_info .wrap {
    width: 23rem;
  }
}
.main .sec_info .grid {
  background: #fff;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
}
@media screen and (max-width: 750px) {
  .main .sec_info .grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.5rem;
  }
}
.main .sec_info .grid .left_area .ttl {
  font-family: "Arial", sans-serif;
  margin-bottom: 0.5rem;
}
.main .sec_info .grid .right_area .entry a {
  display: block;
  width: 100%;
  padding: 0.2rem 0;
  text-align: center;
  background: #a89767;
  border: 1px solid #a89767;
  color: #fff;
  transition: all 0.3s ease;
}
.main .sec_info .grid .right_area .entry a:hover {
  background: #fff;
  color: #a89767;
  border-color: #a89767;
}
.main .sec_info .grid .right_area .c-footer-contact__ttl {
  font-size: 0.28rem;
  margin-top: 0.5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .main .sec_info .grid .right_area .c-footer-contact__ttl {
    font-size: 0.24rem;
    text-align: center;
  }
}
.main .sec_info .grid .right_area .c-footer-contact__tel {
  padding-left: 1.4rem;
  background: url(../assets/imgs/cmn_freecall_icon_br.svg) left center/1.2rem 0.8rem no-repeat;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .main .sec_info .grid .right_area .c-footer-contact__tel {
    padding-left: 0.9rem;
    background: url(../assets/imgs/cmn_freecall_icon_br.svg) left center/0.8rem 0.5rem no-repeat;
    font-size: 0.7rem;
    white-space: nowrap;
  }
}
.main .sec_info .grid .right_area .c-footer-contact__time {
  font-size: 0.28rem;
  margin-top: 0.1rem;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .main .sec_info .grid .right_area .c-footer-contact__time {
    font-size: 0.24rem;
    text-align: center;
  }
}
.main .sec_entrymerit {
  position: relative;
}
.main .sec_entrymerit .inner {
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 1rem 0;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .main .sec_entrymerit .inner {
    padding: 0.5rem 0;
  }
}
.main .sec_entrymerit .inner .text {
  font-size: 0.4rem;
}
@media screen and (max-width: 750px) {
  .main .sec_entrymerit .inner .text {
    font-size: 0.28rem;
  }
}
.main .sec_entrymerit .inner .btn {
  width: 10rem;
  margin: 0.5rem auto;
}
@media screen and (max-width: 750px) {
  .main .sec_entrymerit .inner .btn {
    width: 100%;
  }
}
.main .sec_entrymerit .inner .btn a {
  display: block;
  padding: 0.4rem 0;
  background: #a89767;
  color: #fff;
  text-align: center;
  font-size: 0.4rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .main .sec_entrymerit .inner .btn a {
    font-size: 0.32rem;
  }
}
.main .sec_entrymerit .inner .btn a:before {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
  width: 1rem;
  height: 1rem;
  top: -2rem;
  left: -1.2rem;
  animation-name: shine-run;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}
@keyframes shine-run {
  0% {
    transform: scale(0) rotate(50deg);
    opacity: 0;
  }
  40% {
    transform: scale(1) rotate(50deg);
    opacity: 1;
  }
  100% {
    transform: scale(150) rotate(50deg);
    opacity: 0;
  }
}
.main .sec_entrymerit .inner .btn a span {
  position: relative;
  z-index: 2;
}
.main .sec_entrymerit .inner .btn a:hover {
  background: #fff;
  color: #a89767;
}
.main .sec .en_ttl {
  color: #fff;
  font-size: 0.6rem;
  text-align: center;
  letter-spacing: 0.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 750px) {
  .main .sec .en_ttl {
    font-size: 0.5rem;
  }
}
.main .sec .text_area .text {
  font-size: 0.4rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .main .sec .text_area .text {
    font-size: 0.28rem;
  }
}
.main .sec .text_area .readmore {
  margin-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .main .sec .text_area .readmore {
    margin-top: 0.5rem;
  }
}
.main .sec .text_area .readmore a {
  display: inline-block;
  font-family: "Arial", sans-serif;
  letter-spacing: 0.1rem;
  padding: 0.1rem;
  border-bottom: 1px solid;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .main .sec .text_area .readmore a {
    font-size: 0.24rem;
  }
}
.main .sec .text_area .readmore a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 751px) {
  .main .order1 {
    order: 1;
  }
  .main .order2 {
    order: 2;
  }
}
.main .sec_concept {
  margin-top: 1rem;
  position: relative;
}
.main .sec_concept .text_area {
  width: 12rem;
  margin-top: 1rem;
}
@media screen and (max-width: 750px) {
  .main .sec_concept .text_area {
    width: 100%;
    overflow: hidden;
  }
}
.main .sec_concept .text_area .main_ttl {
  width: 9rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .main .sec_concept .text_area .main_ttl {
    width: 5rem;
  }
}
.main .sec_concept .text_area .line.--02 {
  height: 2rem;
  margin-top: 0.8rem;
}
.main .sec_concept .text_area .ttl {
  font-size: 0.44rem;
  margin-top: 0.8rem;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .main .sec_concept .text_area .ttl {
    font-size: 0.36rem;
  }
}
.main .sec_concept .text_area .text {
  margin-top: 0.3rem;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .main .sec_concept .ico-slide {
    width: 1rem;
    margin-left: 0.4rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
  }
}
.main .sec_concept .image-wrap {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 750px) {
  .main .sec_concept .image-wrap {
    margin-top: -1rem;
    aspect-ratio: 16/12;
  }
}
.main .sec_concept .image-wrap .note {
  position: absolute;
  bottom: 1rem;
  right: 0.2rem;
  color: #231810;
  font-size: 0.24rem;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .main .sec_concept .image-wrap .note {
    bottom: 0.2rem;
    right: 0.2rem;
    font-size: 0.2rem;
  }
}
.main .sec_concept .concept-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.4rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .main .sec_concept .concept-nav {
    display: none;
  }
}
.main .sec_concept .concept-nav-btn {
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(35, 24, 16, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #231810;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.3rem;
  line-height: 1;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.main .sec_concept .concept-nav-btn span {
  display: block;
  transform: translateY(-0.02rem);
}
.main .sec_concept .concept-nav-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(35, 24, 16, 0.5);
}
.main .sec_concept .concept-nav-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.main .sec_concept .image-inner {
  height: 100%;
  mix-blend-mode: multiply;
  touch-action: pan-y;
}
@media screen and (max-width: 750px) {
  .main .sec_concept .image-inner {
    transform: translate3d(0, 0, 0);
  }
}
.main .sec_concept .image-inner img {
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transition: object-position 3.5s ease-out;
  cursor: default;
  user-select: none;
  -webkit-user-drag: none;
}
.main .sec_concept .image-inner.scrollIn img {
  object-position: left center;
}
.main .sec_concept .image-inner.is-dragging img {
  transition: none;
  cursor: grabbing;
}
.main .sec_concept .image-inner.is-drag-enabled ~ .concept-nav {
  opacity: 1;
  visibility: visible;
}
.main .sec_concept .image-inner.is-drag-enabled img {
  cursor: grab;
}
.main .sec_position .en_ttl {
  z-index: 2;
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.main .sec_position .position_slide_wrap {
  position: relative;
  overflow: hidden;
}
.main .sec_position .position_slide_wrap .slide {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  animation: infinity-scroll-right 40s linear infinite;
}
.main .sec_position .position_slide_wrap .list {
  display: flex;
  list-style: none;
  padding: 0;
}
.main .sec_position .position_slide_wrap .image img {
  width: auto;
  height: 12rem;
  display: block;
}
@media screen and (max-width: 750px) {
  .main .sec_position .position_slide_wrap .image img {
    height: 5rem;
  }
}
.main .sec_position .position_slide_wrap .image figcaption {
  color: #fff;
  bottom: 0.2rem;
  right: 0.2rem;
}
@media screen and (max-width: 750px) {
  .main .sec_position .position_slide_wrap .image figcaption {
    bottom: 0.1rem;
  }
}
.main .sec_position .text_area {
  margin-top: 1rem;
}
@media screen and (max-width: 750px) {
  .main .sec_position .text_area {
    margin-top: 0.8rem;
  }
}
.main .sec_location,
.main .sec_access,
.main .sec_plan {
  margin-top: 5rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .main .sec_location,
  .main .sec_access,
  .main .sec_plan {
    margin-top: 4rem;
  }
}
.main .sec_location .line,
.main .sec_access .line,
.main .sec_plan .line {
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  height: 7rem;
}
@media screen and (max-width: 750px) {
  .main .sec_location .line,
  .main .sec_access .line,
  .main .sec_plan .line {
    top: -2rem;
    height: 4rem;
  }
}
.main .sec_location .image_wrap,
.main .sec_access .image_wrap,
.main .sec_plan .image_wrap {
  position: relative;
}
@media screen and (max-width: 750px) {
  .main .sec_location .image_wrap .image,
  .main .sec_access .image_wrap .image,
  .main .sec_plan .image_wrap .image {
    height: 5rem;
  }
}
.main .sec_location .image_wrap .image figcaption,
.main .sec_access .image_wrap .image figcaption,
.main .sec_plan .image_wrap .image figcaption {
  color: #fff;
  bottom: 0.2rem;
  right: 0.2rem;
}
@media screen and (min-width: 751px) {
  .main .sec_location .image_wrap .image figcaption,
  .main .sec_access .image_wrap .image figcaption,
  .main .sec_plan .image_wrap .image figcaption {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 750px) {
  .main .sec_location .image_wrap .image figcaption,
  .main .sec_access .image_wrap .image figcaption,
  .main .sec_plan .image_wrap .image figcaption {
    bottom: 0.1rem;
    right: 0.1rem;
  }
}
@media screen and (min-width: 751px) {
  .main .sec_location .image_wrap .image img,
  .main .sec_access .image_wrap .image img,
  .main .sec_plan .image_wrap .image img {
    transition: 1.2s;
  }
  .main .sec_location .image_wrap .image img.scrollIn,
  .main .sec_access .image_wrap .image img.scrollIn,
  .main .sec_plan .image_wrap .image img.scrollIn {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 750px) {
  .main .sec_location .image_wrap .image img,
  .main .sec_access .image_wrap .image img,
  .main .sec_plan .image_wrap .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translate3d(0, 0.4rem, 0);
    transition: 1.2s;
    transition-property: opacity, transform;
  }
  .main .sec_location .image_wrap .image img.scrollIn,
  .main .sec_access .image_wrap .image img.scrollIn,
  .main .sec_plan .image_wrap .image img.scrollIn {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (min-width: 751px) {
  .main .sec_location .image_wrap .image,
  .main .sec_access .image_wrap .image,
  .main .sec_plan .image_wrap .image {
    position: relative;
    overflow: hidden;
    height: 15rem;
  }
  .main .sec_location .image_wrap .image picture,
  .main .sec_access .image_wrap .image picture,
  .main .sec_plan .image_wrap .image picture {
    display: block;
    height: 15rem;
  }
  .main .sec_location .image_wrap .image img,
  .main .sec_access .image_wrap .image img,
  .main .sec_plan .image_wrap .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .main .sec_location .image_wrap .image .img_hover,
  .main .sec_access .image_wrap .image .img_hover,
  .main .sec_plan .image_wrap .image .img_hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0.8);
  }
  .main .sec_location .image_wrap .image .img_hover img,
  .main .sec_access .image_wrap .image .img_hover img,
  .main .sec_plan .image_wrap .image .img_hover img {
    opacity: 0;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .main .sec_location .image_wrap .image:hover .img_default img,
  .main .sec_access .image_wrap .image:hover .img_default img,
  .main .sec_plan .image_wrap .image:hover .img_default img {
    opacity: 0;
  }
  .main .sec_location .image_wrap .image:hover .img_hover img,
  .main .sec_access .image_wrap .image:hover .img_hover img,
  .main .sec_plan .image_wrap .image:hover .img_hover img {
    opacity: 1;
  }
}
.main .sec_location .text_area,
.main .sec_access .text_area,
.main .sec_plan .text_area {
  margin-top: -0.5rem;
}
@media screen and (max-width: 750px) {
  .main .sec_location .text_area,
  .main .sec_access .text_area,
  .main .sec_plan .text_area {
    margin-top: 0.8rem;
  }
}
@media screen and (min-width: 751px) {
  .main .sec_plan .image_wrap .image figcaption {
    bottom: 6vw;
    right: 11vw;
    font-size: 0.24rem;
  }
}
.main .sec_design {
  margin-top: 5rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .main .sec_design {
    margin-top: 4rem;
  }
}
.main .sec_design .line {
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  height: 7rem;
}
@media screen and (max-width: 750px) {
  .main .sec_design .line {
    top: -2rem;
    height: 4rem;
  }
}
.main .sec_design .image_wrap {
  position: relative;
}
@media screen and (min-width: 751px) {
  .main .sec_design .image {
    height: 14rem;
    overflow: hidden;
    transition: height 0.6s ease 0.5s;
  }
  .main .sec_design .image img {
    width: 100%;
    height: auto;
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .main .sec_design .image {
    height: 5rem;
    opacity: 0;
    transform: translate3d(0, 0.4rem, 0);
    transition: 1.2s;
    transition-property: opacity, transform;
  }
  .main .sec_design .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.main .sec_design .image figcaption {
  color: #fff;
  bottom: 0.2rem;
  right: 0.2rem;
}
@media screen and (max-width: 750px) {
  .main .sec_design .image figcaption {
    bottom: 0.1rem;
  }
}
@media screen and (min-width: 751px) {
  .main .sec_design .image_wrap.scrollIn .image {
    height: 11rem;
  }
  .main .sec_design .image_wrap.scrollIn .en_ttl {
    top: 40%;
    transform: translate(-50%, -40%);
  }
}
@media screen and (max-width: 750px) {
  .main .sec_design .image_wrap.scrollIn .image {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.main .sec_design .text_area {
  margin-top: 1rem;
}

.fNote .box {
  margin-top: 0.4rem;
  border: 1px solid #ccc;
  padding: 0.4rem;
}
.fNote .box p + p {
  margin-top: 0.2rem;
}/*# sourceMappingURL=unique.css.map */