@charset "UTF-8";
.appear.up .item {
  transform: translateY(40px);
}

.appear.down .item {
  transform: translateY(-40px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear.zoom .item {
  transform: translateZ(40px);
}

.appear .item {
  transition: all 0.6s ease;
  transform: translate3d(0, 0, 0);
  opacity: 0;
}
.appear.inview .item {
  transform: none;
  opacity: 1;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 1.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 2.1s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 2.4s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 2.7s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 3s;
}

.scaleDown {
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s;
}
.scaleDown.inview {
  opacity: 1;
  transform: scale(1);
}

.fadein {
  opacity: 0;
  transition: all 0.4s 0.4s;
}
.fadein.inview {
  opacity: 1;
}

.rotate3D {
  opacity: 0;
  transform: scale(0) rotateY(0deg);
  transform-style: preserve-3d;
  transition: 0.8s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.rotate3D.inview {
  opacity: 1;
  transform: scale(1) rotateY(360deg);
}

.animate-txt .char {
  opacity: 0;
  transform: translateY(-10px);
}

.animate-txt.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-txt.inview .char:nth-child(1) {
  animation-delay: 0.54s;
}
.animate-txt.inview .char:nth-child(2) {
  animation-delay: 0.58s;
}
.animate-txt.inview .char:nth-child(3) {
  animation-delay: 0.62s;
}
.animate-txt.inview .char:nth-child(4) {
  animation-delay: 0.66s;
}
.animate-txt.inview .char:nth-child(5) {
  animation-delay: 0.7s;
}
.animate-txt.inview .char:nth-child(6) {
  animation-delay: 0.74s;
}
.animate-txt.inview .char:nth-child(7) {
  animation-delay: 0.78s;
}
.animate-txt.inview .char:nth-child(8) {
  animation-delay: 0.82s;
}
.animate-txt.inview .char:nth-child(9) {
  animation-delay: 0.86s;
}
.animate-txt.inview .char:nth-child(10) {
  animation-delay: 0.9s;
}
.animate-txt.inview .char:nth-child(11) {
  animation-delay: 0.94s;
}
.animate-txt.inview .char:nth-child(12) {
  animation-delay: 0.98s;
}
.animate-txt.inview .char:nth-child(13) {
  animation-delay: 1.02s;
}
.animate-txt.inview .char:nth-child(14) {
  animation-delay: 1.06s;
}
.animate-txt.inview .char:nth-child(15) {
  animation-delay: 1.1s;
}
.animate-txt.inview .char:nth-child(16) {
  animation-delay: 1.14s;
}
.animate-txt.inview .char:nth-child(17) {
  animation-delay: 1.18s;
}
.animate-txt.inview .char:nth-child(18) {
  animation-delay: 1.22s;
}
.animate-txt.inview .char:nth-child(19) {
  animation-delay: 1.26s;
}
.animate-txt.inview .char:nth-child(20) {
  animation-delay: 1.3s;
}
.animate-txt.inview .char:nth-child(21) {
  animation-delay: 1.34s;
}
.animate-txt.inview .char:nth-child(22) {
  animation-delay: 1.38s;
}
.animate-txt.inview .char:nth-child(23) {
  animation-delay: 1.42s;
}
.animate-txt.inview .char:nth-child(24) {
  animation-delay: 1.46s;
}
.animate-txt.inview .char:nth-child(25) {
  animation-delay: 1.5s;
}
.animate-txt.inview .char:nth-child(26) {
  animation-delay: 1.54s;
}
.animate-txt.inview .char:nth-child(27) {
  animation-delay: 1.58s;
}
.animate-txt.inview .char:nth-child(28) {
  animation-delay: 1.62s;
}
.animate-txt.inview .char:nth-child(29) {
  animation-delay: 1.66s;
}
.animate-txt.inview .char:nth-child(30) {
  animation-delay: 1.7s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

* {
  transition-property: all;
  transition-duration: 0.3s;
}

html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
}

body {
  font-weight: 400;
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #0D8771;
  background: url("../images/bg_sand.png");
  overflow-x: hidden;
}

.wrapper {
  position: relative;
}

#loading {
  transition: all 1s;
  /*ローディングにかかる時間*/
  background-color: white;
  z-index: 999;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.spin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  border-top-color: #0D8771;
  border-right-color: #0D8771;
  border-bottom-color: #0D8771;
  animation: spin 0.6s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
  transition: 0.3s all;
}

a img {
  transition: 0.3s;
}

a img:hover {
  opacity: 0.5;
}

.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.lg-inner {
  width: min(1080px, 90%);
  margin: 0 auto;
}

.inner {
  width: min(1080px, 90%);
  margin: 0 auto;
  text-align: center;
}

.flex {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  .flex {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.pc {
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}
.mv {
  position: relative;
  z-index: 1;
  padding: 0 0;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 100vh;
  background: url(../images/mv_main_pc.png) no-repeat top center/cover;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .mv {
    background: none;
    height: auto;
    aspect-ratio: auto;
  }
}

.catch {
  position: absolute;
  top: 15%;
  left: 55%;
  transform: translateX(-55%);
}

.catch img {
  width: 200px;
}

.name {
  position: absolute;
  top: 30%;
}
@media screen and (max-width: 960px) {
  .name {
    position: static;
  }
}
.name img {
  width: 400px;
}
@media screen and (max-width: 960px) {
  .name img {
    margin: 0 auto;
    width: 360px;
  }
}
@media screen and (max-width: 600px) {
  .name img {
    width: 260px;
  }
}

#intro {
  padding: 100px 0 100px;
}
@media screen and (max-width: 960px) {
  #intro {
    padding: 50px 0;
  }
}

.intro-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -20px;
}
@media screen and (max-width: 960px) {
  .intro-box {
    margin-left: 0px;
  }
}

.intro-box li:nth-child(1) {
  width: calc(40% - 20px);
  margin-left: 20px;
}
@media screen and (max-width: 960px) {
  .intro-box li:nth-child(1) {
    width: 100%;
    margin: 30px 0px 0;
  }
}

.intro-box li:nth-child(2) {
  width: calc(60% - 20px);
  margin-left: 20px;
}

.intro-box h2 {
  font-size: clamp(2rem, 1.631rem + 1.64vw, 3.6rem);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 23px;
}

.intro-box p {
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  font-weight: 700;
  line-height: 2;
}

#movie {
  padding: 0px 0 100px;
}
@media screen and (max-width: 960px) {
  #movie {
    padding: 50px 0;
  }
}

h2.ttl_color {
  font-size: clamp(2.5rem, 2.28rem + 1.1vw, 3.6rem);
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 1.2rem;
}

.ttl_color div:nth-child(odd) {
  color: #0D8771;
}

.ttl_color div:nth-child(even) {
  color: #F8754E;
}

.ttl_sub {
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  font-weight: 700;
  letter-spacing: 1.5rem;
  margin-bottom: 60px;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

#feature {
  padding: 50px 0 100px;
}
@media screen and (max-width: 960px) {
  #feature {
    padding: 50px 0;
  }
}

.feature_img {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .feature_img {
    width: 100%;
  }
}

.feature_list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 720px;
  margin: 20px auto;
}
@media screen and (max-width: 960px) {
  .feature_list {
    width: 100%;
  }
}

.feature_list li {
  width: 33.3333333333%;
}

.point-ttl {
  width: 100%;
  position: relative;
  margin-top: 60px;
  padding: 0 0px;
}

.point-ttl h3 {
  font-size: clamp(2rem, 1.631rem + 1.64vw, 3.6rem);
  font-weight: 900;
  line-height: 1.8;
  padding: 0 50px;
  text-align: justify;
}
@media screen and (max-width: 960px) {
  .point-ttl h3 {
    padding: 0;
  }
}

.point-ttl h3 span {
  font-size: clamp(1.4rem, 1.18rem + 1.1vw, 2.5rem);
  display: block;
  line-height: 1;
}

.point-ttl::after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: -30px;
  left: 0;
  height: 20px;
  background: url(../images/point_line.svg) no-repeat top center/100%;
  display: block;
}
@media screen and (max-width: 960px) {
  .point-ttl::after {
    bottom: -20px;
  }
}

.point-box {
  text-align: justify;
  margin-top: 60px;
  padding: 0 50px;
  color: #817161;
}
@media screen and (max-width: 960px) {
  .point-box {
    margin-top: 30px;
    padding: 0 10px;
  }
}

.point-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.point-list li:nth-child(odd) {
  width: 40%;
  padding-right: 110px;
}
@media screen and (max-width: 960px) {
  .point-list li:nth-child(odd) {
    width: 100%;
    padding-right: 0px;
  }
}

.point-list li:nth-child(even) {
  width: 60%;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .point-list li:nth-child(even) {
    width: 100%;
    margin: 10px 0;
  }
}

.point-list li h4 {
  font-size: clamp(1.5rem, 1.28rem + 1.1vw, 2.6rem);
  font-weight: 900;
  line-height: 1.4;
  margin: 20px 0;
}
@media screen and (max-width: 960px) {
  .point-list li h4 {
    margin: 10px 0;
  }
}

.point-list li p {
  line-height: 1.8;
  font-weight: 500;
}

.point-list li span,
.point-att {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.1rem, 1.04rem + 0.3vw, 1.4rem);
  line-height: 1.4;
}

#attachment {
  padding: 100px 0 60px;
}
@media screen and (max-width: 960px) {
  #attachment {
    padding: 50px 0 20px;
  }
}

.amt-txt {
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .amt-txt {
    padding: 0px 20px;
    text-align: justify;
  }
}

.amt-box {
  padding: 0 60px 60px;
  text-align: left;
  color: white;
  width: 100%;
  margin: 40px auto 60px;
  background: linear-gradient(180deg, #0D8771 0%, #0D8771 150px, white 150px, white 100%);
  border-radius: 30px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .amt-box {
    background: linear-gradient(180deg, #0D8771 0%, #0D8771 75px, white 75px, white 100%);
    padding: 0 30px 30px;
  }
}

.amt-box p {
  font-size: clamp(1.7rem, 1.54rem + 0.8vw, 2.5rem);
  font-weight: 900;
  line-height: 1.4;
  padding: 36px 0;
}
@media screen and (max-width: 960px) {
  .amt-box p {
    padding: 10px 0;
  }
}

.amt-list {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin: -100px auto 0;
}
@media screen and (max-width: 960px) {
  .amt-list {
    width: 100%;
    flex-direction: column;
    margin: 0px auto 0;
  }
}

.amt-list li {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 960px) {
  .amt-list li {
    width: 100%;
  }
}

.amt-listimg2 {
  width: 80%;
  margin: 0 auto;
  padding: 0px 0 40px;
}
@media screen and (max-width: 960px) {
  .amt-listimg2 {
    padding: 20px 0;
  }
}

.amt-ptlist {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  color: #0D8771;
  margin: 0px 0 0 0px;
  width: 100%;
}

.amt-list li .amt-ptlist li {
  width: calc((100% - 10px) / 2);
  background: #CEE7E2;
  border: 1px solid #0D8771;
  text-align: center;
  border-radius: 60px;
  line-height: 3;
  margin: 0 0 10px 0;
  font-size: clamp(1.3rem, 1.24rem + 0.3vw, 1.6rem);
  font-weight: 700;
}

.amt-list li .amt-ptlist li.amt-white {
  background: #FFF;
}

.amt-youtube {
  margin: 30px 0 0;
}

#spec {
  padding: 100px 0 100px;
  background: #FFF;
}
@media screen and (max-width: 960px) {
  #spec {
    padding: 50px 0;
  }
}

.spec_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin: 20px auto 0;
}
@media screen and (max-width: 960px) {
  .spec_box {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin: 0px auto 0;
  }
}

.spec_box li {
  width: calc(58% - 50px);
  text-align: left;
  font-size: clamp(1.5rem, 1.44rem + 0.3vw, 1.8rem);
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .spec_box li {
    width: 100%;
  }
}

.spec_box li.l_img {
  width: calc(42% - 50px);
}
@media screen and (max-width: 960px) {
  .spec_box li.l_img {
    width: 70%;
    margin: 30px auto 0;
  }
}

header {
  max-width: 1400px;
  width: 100%;
  padding: 20px 35px 0 35px;
  height: 90px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  header {
    height: 60px;
  }
}
@media screen and (max-width: 600px) {
  header {
    padding: 15px 20px 0;
  }
}

.logo {
  width: 138px;
}
@media screen and (max-width: 960px) {
  .logo {
    width: 120px;
  }
}
@media screen and (max-width: 600px) {
  .logo {
    width: 100px;
  }
}

.footer {
  background: #DBEDEA;
  color: #191919;
  text-align: center;
  padding: 80px 0 40px;
}
.footer a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 960px) {
  .footer {
    padding: 60px 0 30px;
  }
}

.foot-link a {
  width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #0D8771;
  transition: 0.3s all;
  position: relative;
  background: #0D8771;
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 auto;
  line-height: 4;
  border-radius: 10px;
  letter-spacing: 5px;
}
@media screen and (max-width: 960px) {
  .foot-link a {
    width: 80%;
  }
}

.foot-link a::before {
  position: absolute;
  content: "";
  background: url("../images/link_arw.svg") no-repeat center/contain;
  width: 53px;
  height: 6px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  transition: 0.3s all;
}
@media screen and (max-width: 960px) {
  .foot-link a::before {
    right: 20px;
  }
}

.foot-link a:hover::before {
  right: 0.8vw;
}
@media screen and (max-width: 960px) {
  .foot-link a:hover::before {
    right: 2vw;
  }
}

.backtotop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 80px;
  height: 80px;
  z-index: 500;
}
@media screen and (max-width: 480px) {
  .backtotop {
    width: 60px;
    height: 60px;
  }
}
.backtotop a {
  transition: 0.5s all;
}
.backtotop a:hover {
  opacity: 0.5;
}
.backtotop a img {
  width: 100%;
}

.backtotop a {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #0D8771;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50px;
  transition: 0.3s all;
}
.backtotop a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  border: 3px solid white;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
.backtotop a:hover {
  opacity: 0.5;
}

.copy {
  font-family: "Noto Sans JP", sans-serif;
  color: #0D8771;
  margin-top: 60px;
  font-size: clamp(1.1rem, 1.04rem + 0.3vw, 1.4rem);
}/*# sourceMappingURL=style.css.map */