:root {
  --scale: 1;
}

.f16 {
  font-size: calc(4.6vw * var(--scale));
}

.f17 {
  font-size: calc(4.7vw * var(--scale));
}

.f18 {
  font-size: calc(4.8vw * var(--scale));
}

.f19 {
  font-size: calc(4.9vw * var(--scale));
}

.f20 {
  font-size: calc(5vw * var(--scale));
}

.f21 {
  font-size: calc(5.1vw * var(--scale));
}

.f22 {
  font-size: calc(5.2vw * var(--scale));
}

.f23 {
  font-size: calc(5.3vw * var(--scale));
}

.f24 {
  font-size: calc(5.4vw * var(--scale));
}

.f25 {
  font-size: calc(5.5vw * var(--scale));
}

.f26 {
  font-size: calc(5.6vw * var(--scale));
}

.f27 {
  font-size: calc(5.7vw * var(--scale));
}

.f28 {
  font-size: calc(5.8vw * var(--scale));
}

.f29 {
  font-size: calc(5.9vw * var(--scale));
}

.f30 {
  font-size: calc(6vw * var(--scale));
}

.f31 {
  font-size: calc(6.1vw * var(--scale));
}

.f32 {
  font-size: calc(6.2vw * var(--scale));
}

.f33 {
  font-size: calc(6.3vw * var(--scale));
}

.f34 {
  font-size: calc(6.4vw * var(--scale));
}

.f35 {
  font-size: calc(6.5vw * var(--scale));
}

.f36 {
  font-size: calc(6.6vw * var(--scale));
}

.f37 {
  font-size: calc(6.7vw * var(--scale));
}

.f38 {
  font-size: calc(6.8vw * var(--scale));
}

.f39 {
  font-size: calc(6.9vw * var(--scale));
}

.f40 {
  font-size: calc(7vw * var(--scale));
}

.f41 {
  font-size: calc(7.1vw * var(--scale));
}

.f42 {
  font-size: calc(7.2vw * var(--scale));
}

.f43 {
  font-size: calc(7.3vw * var(--scale));
}

.f44 {
  font-size: calc(7.4vw * var(--scale));
}

.f45 {
  font-size: calc(7.5vw * var(--scale));
}

.f46 {
  font-size: calc(7.6vw * var(--scale));
}

.f47 {
  font-size: calc(7.7vw * var(--scale));
}

.f48 {
  font-size: calc(7.8vw * var(--scale));
}

.f49 {
  font-size: calc(7.9vw * var(--scale));
}

.f50 {
  font-size: calc(8vw * var(--scale));
}

@media (min-width: 768px) {
  .f16 {
    font-size: 16px;
  }
  .f17 {
    font-size: 17px;
  }
  .f18 {
    font-size: 18px;
  }
  .f19 {
    font-size: 19px;
  }
  .f20 {
    font-size: 20px;
  }
  .f21 {
    font-size: 21px;
  }
  .f22 {
    font-size: 22px;
  }
  .f23 {
    font-size: 23px;
  }
  .f24 {
    font-size: 24px;
  }
  .f25 {
    font-size: 25px;
  }
  .f26 {
    font-size: 26px;
  }
  .f27 {
    font-size: 27px;
  }
  .f28 {
    font-size: 28px;
  }
  .f29 {
    font-size: 29px;
  }
  .f30 {
    font-size: 30px;
  }
  .f31 {
    font-size: 31px;
  }
  .f32 {
    font-size: 32px;
  }
  .f33 {
    font-size: 33px;
  }
  .f34 {
    font-size: 34px;
  }
  .f35 {
    font-size: 35px;
  }
  .f36 {
    font-size: 36px;
  }
  .f37 {
    font-size: 37px;
  }
  .f38 {
    font-size: 38px;
  }
  .f39 {
    font-size: 39px;
  }
  .f40 {
    font-size: 40px;
  }
  .f41 {
    font-size: 41px;
  }
  .f42 {
    font-size: 42px;
  }
  .f43 {
    font-size: 43px;
  }
  .f44 {
    font-size: 44px;
  }
  .f45 {
    font-size: 45px;
  }
  .f46 {
    font-size: 46px;
  }
  .f47 {
    font-size: 47px;
  }
  .f48 {
    font-size: 48px;
  }
  .f49 {
    font-size: 49px;
  }
  .f50 {
    font-size: 50px;
  }
}
.text-white {
  color: #fff;
}

.text-black {
  color: #000;
}

.text-bold {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.block-before {
  position: relative;
}
.block-before::before {
  content: "";
  position: absolute;
}

.block-after {
  position: relative;
}
.block-after::after {
  content: "";
  position: absolute;
}

.block-before-x {
  position: relative;
}
.block-before-x::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.block-after-x {
  position: relative;
}
.block-after-x::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.block-before-y {
  position: relative;
}
.block-before-y::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.block-after-y {
  position: relative;
}
.block-after-y::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  main {
    overflow: hidden;
  }
}
.tel-t1 {
  text-align: center;
}
.tel-t1 dt {
  font-size: 14px;
  line-height: 36px;
}
.tel-t1 dd {
  font-size: 26px;
  letter-spacing: 3px;
}
.tel-t1 dd .tel-icon span {
  font-size: 16px;
}

.tel-t2 {
  text-align: center;
}
.tel-t2 dt {
  font-size: 25px;
  letter-spacing: 2px;
}
.tel-t2 dt .tel-icon span {
  font-size: 20px;
}
.tel-t2 dd {
  color: #9e9e9e;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .tel-t2 dt {
    font-size: 35px;
    letter-spacing: 4px;
    margin-bottom: -10px;
  }
  .tel-t2 dt .tel-icon span {
    font-size: 20px;
  }
  .tel-t2 dd {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
}
.btn-web a {
  display: block;
  border: 1px solid #7a7a7a;
  text-align: center;
  padding: 5px;
  width: 230px;
  line-height: 25px;
  box-sizing: border-box;
}
.btn-web a:hover {
  opacity: 0.7;
  cursor: pointer;
}

h2 {
  line-height: 2em;
  letter-spacing: 3px;
}

@media screen and (min-width: 768px) {
  h2 {
    line-height: 60px;
    letter-spacing: 7px;
  }
}
.row-bnr-1 {
  position: relative;
}
.row-bnr-1 .note {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}
.row-bnr-1 .col {
  display: block;
  position: relative;
}
.row-bnr-1 .col .btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15vw;
  width: 30vw;
}
.row-bnr-1 .col-1 .btn {
  bottom: auto;
  top: -15vw;
}

@media screen and (min-width: 768px) {
  .row-bnr-1 {
    position: relative;
  }
  .row-bnr-1 .note {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    width: -moz-max-content;
    width: max-content;
  }
  .row-bnr-1 .col {
    padding-bottom: 70px;
    width: 50%;
    height: 500px;
  }
  .row-bnr-1 .col .col-img {
    height: 500px;
    overflow: hidden;
  }
  .row-bnr-1 .col .col-img img {
    height: 500px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0.3s;
  }
  .row-bnr-1 .col .btn {
    bottom: -10px;
    width: -moz-max-content;
    width: max-content;
  }
  .row-bnr-1 .col:hover .col-img img {
    scale: 1.1;
    transition: 0.3s;
    filter: blur(5px);
  }
  .row-bnr-1 .col-1 .btn {
    top: auto;
  }
}
.btn-t1 a {
  display: block;
  position: relative;
  width: 100%;
}
.btn-t1 a::before {
  content: "";
  background: #fff;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
  z-index: -1;
}
.btn-t1 a span {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  background: url(../img/shared/pt1.jpg);
  padding-left: 10px;
}

@media screen and (min-width: 768px) {
  .btn-t1 a {
    font-size: 20px;
  }
  .btn-t1 a::before {
    content: "";
    background: #fff;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    position: absolute;
    z-index: -1;
  }
  .btn-t1 a span {
    display: block;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    background: url(../img/shared/pt1.jpg);
    padding-left: 10px;
  }
}
.btn-cus {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.btn-cus a {
  display: block;
  font-size: 15px;
  line-height: 70px;
  height: 65px;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
  max-width: 350px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .btn-cus a {
    z-index: 0;
  }
  .btn-cus a::before {
    content: "";
    background: #fff;
    height: 1px;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: -3;
  }
  .btn-cus a span {
    display: block;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    position: relative;
    padding-left: 10px;
  }
  .btn-cus a span::before {
    content: "";
    background: url(../img/shared/btn_t1_on.png) no-repeat 0 0/100%;
    width: 70px;
    height: 70px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  .btn-cus a span::after {
    content: "";
    background: url(../img/shared/pt1.jpg);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
  }
}
@media screen and (min-width: 768px) {
  .btn-cus:hover {
    position: relative;
  }
  .btn-cus:hover::after {
    content: "";
    background: url(../img/shared/btn_t1_on.png) no-repeat 0 0/100%;
    width: 90px;
    height: 90px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }
  .btn-radi-out a:hover:after,
  .btn-cus.bg-none a:hover .arrow:after {
    transform: scale(2);
  }
  .btn-cus.bg-none a {
    overflow: hidden;
    padding-bottom: 1px;
  }
  .btn-cus.bg-none a .text {
    display: inline-block;
    background: url(../img/shared/pt1.jpg);
  }
  .btn-cus.bg-none a:hover .text {
    animation: textAni 0.6s linear;
  }
  .btn-cus.bg-none a:hover .arrow img {
    filter: none;
  }
  .btn-cus.bg-none a {
    background: none;
    font-size: 20px;
    line-height: 33px;
    text-align: right;
    height: 30px;
    border: none;
  }
  .btn-cus.bg-none:before {
    content: "";
    position: absolute;
    top: 55%;
    left: 0;
    width: calc(100% - 235px);
    height: 2px;
    transform: translateY(-50%);
    background: #ece4d9;
  }
  .bg-none:hover:before {
    animation: lineAni 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  @keyframes lineAni {
    0% {
      -webkit-clip-path: inset(0 0 0 0);
      clip-path: inset(0 0 0 0);
    }
    49% {
      -webkit-clip-path: inset(0 0 0 100%);
      clip-path: inset(0 0% 0 100%);
    }
    51% {
      -webkit-clip-path: inset(0 100% 0 0);
      clip-path: inset(0 100% 0% 0);
    }
    100% {
      -webkit-clip-path: inset(0 0 0 0);
      clip-path: inset(0 0 0 0);
    }
  }
  @keyframes textAni {
    0% {
      transform: translateY(0%);
    }
    48% {
      opacity: 1;
    }
    49% {
      transform: translateY(-100%);
      opacity: 0;
    }
    51% {
      transform: translateY(100%);
    }
    99% {
      opacity: 1;
    }
    100% {
      transform: translateY(0%);
    }
  }
}
.txt-effect {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(100deg, #222 0, #222 30%, transparent 50%, transparent 100%);
  background-position: 100% 50%;
  background-size: 400% 100%;
  will-change: background-position;
  color: transparent;
  transition: color 5s cubic-bezier(1, 0.405, 0.24, 1), background-position 5s cubic-bezier(0.115, 0.405, 0.24, 1);
  opacity: 0;
}

.txt-effect-w {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(100deg, #fff 0, #fff 30%, transparent 50%, transparent 100%);
  background-position: 100% 50%;
  background-size: 400% 100%;
  will-change: background-position;
  color: transparent;
  transition: color 5s cubic-bezier(1, 0.405, 0.24, 1), background-position 5s cubic-bezier(0.115, 0.405, 0.24, 1);
  opacity: 0;
}

.animated {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.txt-effect[style*=visible] {
  background-position: 0 50%;
  color: #333333;
  opacity: 1;
}

.txt-effect-w[style*=visible] {
  background-position: 0 50%;
  color: #fff;
  opacity: 1;
}

.title[style*=visible] {
  color: #333333;
  background-position: 0 50%;
  opacity: 1;
}/*# sourceMappingURL=global.css.map */