@charset "UTF-8";
@font-face {
  font-family: "Jost";
  src: url("../font/Jost-Regular.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 101;
  background: #39b282;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
  overflow: hidden;
}
#loading img {
  width: 300px;
  height: auto;
  animation: fade-inout 0.4s infinite alternate;
}

@keyframes fade-inout {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
#loading.hide {
  width: 0;
  visibility: hidden;
}

.green-bg {
  background: #39b282;
}

#section01 {
  background: url("../images/home/bg01.jpg") no-repeat;
  background-size: cover;
  background-position: top left;
  display: flex;
  width: 100%;
}

#section01 .content {
  width: 50%;
  padding-right: 40px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#section01 .content h2 {
  font-size: 5.2rem;
  font-weight: normal;
  line-height: 1.4;
  color: #39b282;
  margin-left: 70px;
  margin-bottom: 90px;
}
#section01 .content img {
  max-width: 100%;
}

#section01 .sp {
  display: none;
}

#section03 .content {
  color: #fff;
}
#section03 .content h2 {
  font-size: 4.2rem;
  font-weight: normal;
  margin-bottom: 24px;
}
#section03 .content p {
  font-size: 1.8rem;
  line-height: 2.7;
  margin-bottom: 45px;
  letter-spacing: normal;
}

.product {
  display: flex;
  align-items: center;
  gap: 0 85px;
}

.product .txt {
  color: #fff;
}
.product .txt p {
  font-size: 2.4rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.product .txt h2 {
  font-size: 4.5rem;
  line-height: 1.35;
  font-weight: normal;
}
.product .txt .btn {
  margin-top: 22px;
}

.product .img img {
  max-width: 100%;
  height: auto;
}

.product .img a {
  transition: opacity 0.3s linear;
}

#section05 .product .img {
  max-width: 338px;
}

#section07 .product .img {
  max-width: 512px;
}

#section09 .title-style1 {
  color: #fff;
}
#section09 .title-style1 span {
  color: #fff;
}

.section-title {
  text-align: center;
  color: #fff;
  font-size: 2.8rem;
  font-weight: normal;
  margin-bottom: 54px;
}
.section-title .font-en {
  font-size: 1.8rem;
  font-weight: normal;
  color: #9cd8c0;
  display: block;
  margin-top: 7px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
}

.products-grid .col {
  max-width: 280px;
}
.products-grid .col .img {
  max-width: 280px;
  min-height: 280px;
  border-radius: 10px;
  overflow: hidden;
  background: #FFF;
  aspect-ratio: 1/1;
  position: relative;
}
.products-grid .col .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.6s ease;
  line-height: 0;
  display: block;
}
.products-grid .col .img.default-image img {
  transform: scale(0.6);
}
.products-grid .col a:hover img {
  transform: scale(1.05);
}
.products-grid .col a:hover .img.default-image img {
  transform: scale(0.65);
}
.products-grid .col a:hover {
  opacity: 1;
}

.product-lead {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
  margin-top: 18px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
}
.product-lead strong {
  font-weight: normal;
  font-size: 2.1rem;
}

.product-name {
  color: #231815;
  margin-top: 10px;
  line-height: 1.5;
  font-size: 1.4rem;
}
.product-name strong.font-en {
  font-size: 1.8rem;
  font-weight: normal;
}
.product-name span.font-en {
  font-size: 1.4rem;
  font-weight: 300;
}

.price {
  font-size: 2rem;
}
.price small {
  font-size: 1.4rem;
}
.price .font-en {
  font-weight: 300;
}

.btn {
  background: #fff;
  display: inline-block;
  padding: 19px 0 20px;
  width: 250px;
  color: #39b282;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 100px;
  margin-top: 55px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.svg::after {
  content: "";
  display: block;
  width: 250px;
  height: 64px;
  border-radius: 100px;
  border: 1.1px solid #6ac5a1;
  box-sizing: border-box;
  position: absolute;
  top: 1px;
  left: 0;
  z-index: -1;
}

.svg svg {
  width: 248px;
  height: 66px;
}

.svg-border {
  fill: none;
  stroke: #fff;
  stroke-width: 1.1;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 1s ease;
}

.btn:hover .svg-border {
  stroke-dashoffset: 0;
}

.btn:hover {
  color: #fff;
  background: none;
  opacity: 1;
}

#section11 .content {
  width: 100%;
}

.youtube-wrap {
  margin: auto;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16/9;
}

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

#bg-container .scroll-container {
  overflow: hidden;
  position: relative;
  height: 100%;
  background: #39b282;
}

#bg-container .scrolling-track {
  width: 200%;
  height: 100%;
  animation: scroll-left 60s linear infinite, fade-loop 60s ease-in-out infinite;
}

#bg-container .scrolling-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes fade-loop {
  0% {
    opacity: 0;
  }
  0.5% {
    opacity: 1;
  }
  99.5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#bg-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

#bg-container .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#bg-container .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#bg-container .active {
  z-index: 1;
}

/* pc layout */
@media only screen and (min-width: 1001px) {
  header {
    background: none;
  }
  header #navi {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  }
  #scroll-container {
    max-width: none;
    width: auto;
    min-height: auto;
    padding-bottom: 0;
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    font-family: "ZenKakuGothicNew";
    font-weight: normal;
    display: flex;
  }
  .content-section {
    width: 110%;
    height: 100%;
    flex-shrink: 0;
    letter-spacing: 0.04em;
  }
  .bg {
    width: 90vw;
    height: 100%;
    flex-shrink: 0;
  }
  #scroll-container {
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
  }
  #scroll-container .content-section {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #section12 {
    width: 100%;
  }
  #pagetop {
    border: 0;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translate(0, -50%);
    background: #38b181;
    color: #fff;
    display: inline-block;
    width: 140px;
    height: 65px;
    line-height: 65px;
    padding-left: 23px;
    text-align: left;
    border-radius: 100px 0 0 100px;
    font-size: 1.8rem;
  }
  #pagetop::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    background: url("../images/home/ico-pagetop.svg") no-repeat;
    vertical-align: -3px;
    margin-right: 9px;
  }
  #pagetop:hover {
    right: -5px;
  }
}
/* sp */
@media only screen and (max-width: 1000px) {
  #loading img {
    width: 180px;
    height: auto;
  }
  #loading.hide {
    width: 100vw;
    height: 0;
    visibility: hidden;
  }
  header {
    background: none;
  }
  header #navi {
    background: none;
  }
  #bg-container {
    z-index: -1;
  }
  #scroll-container {
    max-width: none;
    width: auto;
    min-height: auto;
    padding-bottom: 0;
    margin: 0;
    font-family: "ZenKakuGothicNew";
    font-weight: normal;
  }
  .content-section {
    width: 100vw;
    height: 100vh;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .bg {
    width: 100vw;
    height: 100vh;
  }
  #bg-container .scrolling-track {
    animation: scroll-left 40s linear infinite;
  }
  #section01 {
    margin-top: -64px;
    background: none;
    padding: 0;
    flex-direction: column;
  }
  #section01 .img.sp {
    display: block;
    width: 100%;
    height: 50%;
    background: url("../images/home/bg01-sp.jpg") no-repeat;
    background-size: cover;
    background-position: top left;
  }
  #section01 .img.sp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #section01 .content {
    width: 100%;
    height: 50%;
    padding-right: 0;
    background: #39b282;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #section01 .content h2 {
    font-size: 2.5rem;
    margin-left: 0px;
    margin-bottom: 20px;
    color: #fff;
  }
  #section01 .content img {
    max-width: 100%;
    width: 280px;
    height: auto;
  }
  #section01 .sp {
    display: block;
  }
  #section01 .pc {
    display: none;
  }
  .bg {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  #scroll-container .content-section {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #section03 .content h2 {
    font-size: 2rem;
  }
  #section03 .content p {
    font-size: 1.4rem;
    line-height: 2.2;
    margin-bottom: 30px;
  }
  #section03 .content br.pc {
    display: none;
  }
  #section03 .content .logo {
    text-align: center;
  }
  #section03 .content .logo img {
    width: 260px;
    height: auto;
  }
  .product {
    flex-direction: column-reverse;
    gap: 20px 0;
    text-align: center;
  }
  .product .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product .txt p {
    font-size: 1.6rem;
    text-align: left;
  }
  .product .txt h2 {
    font-size: 2.8rem;
    text-align: left;
  }
  .flex-c-sp {
    display: flex;
    align-items: center;
  }
  #section05 .product img {
    width: 200px;
    height: auto;
  }
  #section07 .product img {
    width: 280px;
    height: auto;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
  #section09 {
    height: auto;
    padding: 70px 20px;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-title .font-en {
    font-size: 1.3rem;
  }
  .products-grid .col {
    max-width: 280px;
  }
  .products-grid .col .img {
    margin: auto;
  }
  #section12 {
    position: relative;
  }
  #section12 .content img {
    width: 200px;
  }
  #pagetop {
    border: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    background: #38b181;
    color: #fff;
    display: inline-block;
    width: 80px;
    height: 80px;
    text-align: center;
    border-radius: 100px 100px 0 0;
    font-size: 1.8rem;
    padding-top: 34px;
  }
  #pagetop::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    background: url("../images/home/ico-pagetop.svg") no-repeat;
    transform: rotate(90deg);
    position: absolute;
    top: 25px;
    left: 30px;
  }
  #pagetop:hover {
    right: -5px;
  }
}
/*ノートPC*/
@media only screen and (min-width: 1024px) and (max-height: 880px) {
  #scroll-container .content-section {
    padding-top: 100px;
  }
  #section03 .content h2 {
    font-size: 3.2rem;
    margin-bottom: 16px;
  }
  #section03 .content p {
    font-size: 1.6rem;
    line-height: 2.5;
    margin-bottom: 30px;
  }
  #section03 .content .logo img {
    width: 420px;
    height: auto;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .products-grid {
    gap: 50px;
  }
  .products-grid .col .img {
    max-width: 220px;
    min-height: 220px;
    margin-left: auto;
    margin-right: auto;
    background: #FFF;
  }
  .btn {
    margin-top: 30px;
  }
  .youtube-wrap {
    min-width: 600px;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 750px) {
  .products-grid .col .img {
    max-width: 150px;
  }
  .product-lead {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  .product-lead strong {
    font-size: 1.8rem;
  }
  .btn {
    padding: 13px 0 14px;
  }
}