/* arguments inittial */
/* font style */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
body {
  font-feature-settings: "palt";
}

.fv-content {
  width: 100%;
  height: 60vh;
  position: relative;
}
@media (min-width: 768px) {
  .fv-content {
    height: 70vh;
  }
}
.fv-content-img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/top/fv-img10.webp");
}
.fv-content-img .caption {
  position: absolute;
  left: 10px;
  bottom: 70px;
  font-size: 10px;
  z-index: 3;
  text-align: left;
}
@media (min-width: 768px) {
  .fv-content-img .caption {
    left: none;
    right: 25px;
    text-align: right;
  }
}
.fv-content-img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .fv-content-img {
    background-image: url("../img/top/fv-img10-pc.webp");
  }
}
.fv-content-img:after {
  background: rgba(0, 0, 0, 0.5);
}
.fv-content .bottomline {
  position: absolute;
  width: 100%;
  height: 15px;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.fv-content-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .fv-content-title {
    font-size: 48px;
    line-height: 1.2;
  }
}
.fv-content-title-img {
  max-width: 60%;
}
@media (min-width: 768px) {
  .fv-content-title-img {
    max-width: 100%;
  }
}
.fv-content-text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 15px;
  pointer-events: none;
  justify-content: center;
  height: 100%;
}
@media (min-width: 768px) {
  .fv-content-text {
    padding: 100px 50px;
    /*max-width: 1200px;*/
    margin: 0 auto;
    justify-content: flex-end;
  }
}
.fv-content .scroll {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  height: 60px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fv-content .scroll {
    bottom: 0;
  }
}
.fv-content .scroll:after {
  content: "";
  top: 0;
  left: 50%;
  width: 1px;
  height: 90px;
  position: absolute;
  background: #fff;
  animation: scrollanimation 1.3s infinite;
}

.contact-title {
  padding: 30px 15px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .contact-title {
    font-size: 26px;
    padding: 50px 15px;
  }
}
.contact-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 15px 15px 30px;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .contact-intro {
    padding: 15px 15px 50px;
    padding-top: 50px;
  }
}
.contact-intro-image {
  position: relative;
}
.contact-intro-image .caption {
  position: absolute;
  bottom: 5px;
  left: 5px;
  color: #fff;
}
.contact-intro-text {
  align-self: flex-start;
  padding: 0 15px;
  line-height: 1.8;
}
.contact-intro-text .link {
  text-decoration: underline;
}
.contact-contents {
  background: linear-gradient(90deg, rgba(58, 152, 230, 0.15) 0%, rgba(139, 218, 172, 0.15) 100%);
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .contact-contents {
    padding: 50px 15px;
  }
}
.contact-contents .contents {
  margin: 0 auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-contents .contents-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-contents .contents-col .title {
  color: #0075bc;
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .contact-contents .contents-col .title {
    font-size: 19px;
  }
}
.contact-contents .contents-col .text {
  font-size: 14px;
  line-height: 1.5;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .contact-contents .contents-col .text {
    font-size: 16px;
  }
}
.contact-contents .contents-col .flex {
  display: flex;
  gap: 15px;
  flex-direction: row;
}

.contact-bg {
  background: none;
}

.ft-con .ft-conEx {
  border: 1px solid #000;
  padding: 30px;
}

@keyframes scrollanimation {
  0% {
    top: 15px;
    height: 1px;
  }
  50% {
    top: 15px;
    height: 70px;
  }
  100% {
    top: 80px;
  }
}/*# sourceMappingURL=contact.css.map */