@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-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  color: #464646;
  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;
  }
}
.subat {
  font-size: clamp(1.3rem, 1.254rem + 0.21vw, 1.5rem);
}

.mv {
  position: relative;
  z-index: 1;
  padding: 0 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 800px;
  background: url(../images/mv_pc.webp) no-repeat top center/cover;
  text-align: center;
}
.mv::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 10px;
  background: #0D8771;
  background: linear-gradient(90deg, rgb(13, 135, 113) 16%, rgb(4, 41, 34) 100%);
  opacity: 0.9;
}
@media screen and (max-width: 1680px) {
  .mv {
    min-height: 580px;
  }
}
@media screen and (max-width: 960px) {
  .mv {
    background: url(../images/mv_sp.webp) no-repeat top center/cover;
    overflow: hidden;
  }
}

.catch {
  position: absolute;
  left: 80%;
  top: 50%;
  transform: translate(-80%, -50%);
  width: 50vw;
}
@media screen and (max-width: 1680px) {
  .catch {
    width: 45vw;
    left: auto;
    right: 5%;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 960px) {
  .catch {
    width: 102%;
    top: 18vw;
    transform: translateY(0);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .catch img {
    width: 100%;
  }
}

.mv_nameWrap {
  position: absolute;
  right: 0;
  bottom: 9px;
  width: 60%;
  -webkit-clip-path: polygon(100px 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(100px 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 960px) {
  .mv_nameWrap {
    width: 95%;
    -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  }
}

.mv_name,
.mv_model {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mv_name {
  font-size: 5rem;
  padding: 2rem 15vw 2rem 1rem;
}
@media screen and (max-width: 1680px) {
  .mv_name {
    font-size: clamp(2.4rem, 2.123rem + 1.23vw, 3.6rem);
    padding: 1rem 10vw 1rem 1rem;
  }
}
@media screen and (max-width: 960px) {
  .mv_name {
    padding-right: 5vw;
  }
}
.mv_name::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(0, 93, 79, 0.8) 0%, rgba(13, 135, 113, 0.8) 60%, rgba(0, 170, 113, 0.8) 100%);
}
.mv_name span {
  position: relative;
  z-index: 1;
  color: white;
}

.mv_modelWrap {
  position: relative;
  width: 50%;
  margin-left: auto;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 60px 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 60px 100%);
}
@media screen and (max-width: 960px) {
  .mv_modelWrap {
    width: 90%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
  }
}

.mv_model {
  font-size: 3rem;
  padding: 1rem 15vw 1rem 1rem;
}
@media screen and (max-width: 1680px) {
  .mv_model {
    font-size: clamp(1.8rem, 1.662rem + 0.62vw, 2.4rem);
    padding-right: 10vw;
  }
}
@media screen and (max-width: 960px) {
  .mv_model {
    padding-right: 5vw;
  }
}
.mv_model::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  left: 0;
  top: 0;
  background: #206054;
  background: linear-gradient(90deg, rgb(32, 96, 84) 0%, rgb(4, 41, 34) 100%);
}
.mv_model span {
  position: relative;
  z-index: 1;
  color: white;
}

#intro {
  overflow: hidden;
  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-ttl {
  font-size: clamp(2.6rem, 2.138rem + 2.05vw, 4.6rem);
  font-weight: 900;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  color: #0D8771;
  display: inline;
  background: linear-gradient(transparent 70%, #EDEDED 70%);
}

.intro-txt {
  font-size: clamp(1.4rem, 1.262rem + 0.62vw, 2rem);
  line-height: 2;
  margin: 3rem 0 60px;
  font-weight: 600;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .intro-txt {
    margin: 2rem 0 40px;
    letter-spacing: 0.075rem;
  }
}

.intro_img span {
  display: block;
  width: 106vw;
  margin: 0 calc(50% - 55vw) 100px;
}
@media screen and (max-width: 960px) {
  .intro_img span {
    width: 125vw;
    margin: 0 calc(50% - 65vw) 50px;
  }
}

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

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

#product {
  padding: 50px 0 100px;
  background: #0D8771;
  color: white;
  text-align: left;
}
@media screen and (max-width: 960px) {
  #product {
    overflow: hidden;
  }
}
#product .l_box,
#product .r_box {
  width: 50%;
}
@media screen and (max-width: 960px) {
  #product .l_box,
  #product .r_box {
    width: 100%;
  }
}
#product .product-ttl {
  font-size: 4rem;
  font-weight: 900;
  text-align: left;
}
@media screen and (max-width: 960px) {
  #product .product-ttl {
    font-size: clamp(2.2rem, 1.923rem + 1.23vw, 3.4rem);
  }
}
#product .product-ttl span {
  margin-top: 1rem;
  padding: 0.5rem 2rem;
  background: #FA6623;
}
@media screen and (max-width: 960px) {
  #product {
    padding: 50px 0;
  }
}
#product .border-txt {
  margin-top: 2rem;
  text-align: left;
}
#product .border-txt span {
  padding: 0.25rem 1rem;
  display: inline-block;
  border: 1px solid white;
}
#product .subat {
  text-align: left;
}

.product-name {
  font-size: clamp(2rem, 1.769rem + 1.03vw, 3rem);
  margin-top: 3rem;
  text-align: left;
}
.product-name img {
  width: 250px;
}
@media screen and (max-width: 960px) {
  .product-name img {
    width: 170px;
  }
}
.product-name span {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product_list {
  margin-top: 4rem;
  -webkit-clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
  padding-bottom: 2px;
}
@media screen and (max-width: 960px) {
  .product_list {
    width: 108vw;
    margin: 2rem 0 0 calc(50% - 50vw);
  }
}
.product_list li {
  font-size: clamp(2rem, 1.815rem + 0.82vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.075rem;
  text-align: left;
  position: relative;
  padding: 1rem 2rem 2rem;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.8) 0%, rgba(79, 79, 79, 0.8) 60%, rgba(84, 84, 84, 0.8) 100%);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}
.product_list li span {
  font-size: clamp(1.5rem, 1.385rem + 0.51vw, 2rem);
}
.product_list li small {
  vertical-align: top;
  margin-left: 0.25rem;
  font-size: 1.3rem;
}
.product_list li::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1rem;
  width: 100%;
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(79, 79, 79) 60%, rgb(84, 84, 84) 100%);
}

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

.feature_list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 960px) {
  .feature_list {
    margin-left: 0;
  }
}
.feature_list .sub-ttl {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.1rem;
  color: #000;
  border-left: #FA6623 8px solid;
  background: white;
  text-align: left;
  padding: 0.5rem 1.5rem;
}
@media screen and (max-width: 1680px) {
  .feature_list .sub-ttl {
    letter-spacing: 0;
    font-size: clamp(1.8rem, 1.662rem + 0.62vw, 2.4rem);
  }
}
.feature_list .sub-txt {
  line-height: 1.6;
  padding: 2rem;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .feature_list .sub-txt {
    padding: 2rem 1rem;
  }
}
.feature_list li {
  width: calc(50% - 5rem);
  margin-left: 5rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 960px) {
  .feature_list li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 6rem;
  }
}

#spec {
  padding: 100px 0 100px;
  background: #FFF;
}
#spec .sub-ttl {
  color: #000;
  font-weight: 900;
  text-align: left;
  border-left: #FA6623 14px solid;
  padding-left: 1.5rem;
  font-size: clamp(2rem, 1.815rem + 0.82vw, 2.8rem);
}
@media screen and (max-width: 960px) {
  #spec .sub-ttl {
    border-left: #FA6623 10px solid;
    padding-left: 1rem;
  }
}
@media screen and (max-width: 960px) {
  #spec {
    padding: 50px 0;
  }
}

.spec_box {
  width: 100%;
  margin: 2rem 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;
  }
}

.ttlWrap {
  padding: 5rem 0;
  position: relative;
  z-index: 0;
  background: url(../images/lineup_ttl_bg.png) no-repeat center/cover;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .ttlWrap {
    padding: 3rem 0;
  }
}
.ttlWrap::before {
  position: absolute;
  content: "";
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0F876E;
  background: linear-gradient(0deg, rgba(15, 135, 110, 0.8) 0%, rgba(8, 68, 55, 0.8) 100%);
}
.ttlWrap span {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(3.8rem, 3.523rem + 1.23vw, 5rem);
  font-style: italic;
  letter-spacing: 0.1rem;
  color: white;
}

#lineup {
  background: #EAEAEA;
}
#lineup .sub-ttl {
  font-size: clamp(1.8rem, 1.662rem + 0.62vw, 2.4rem);
  font-weight: 900;
  position: relative;
  border-left: 8px solid #FA6623;
  text-align: left;
  margin-bottom: 2rem;
}
#lineup .sub-ttl::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 0;
  background: linear-gradient(-90deg, rgb(15, 135, 110) 0%, rgb(8, 68, 55) 100%);
}
#lineup .sub-ttl span {
  -webkit-clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  display: inline-block;
  padding: 0.5rem 8rem 0.5rem 2rem;
  color: white;
  background: linear-gradient(90deg, rgb(15, 135, 110) 0%, rgb(8, 68, 55) 100%);
}
@media screen and (max-width: 960px) {
  #lineup .sub-ttl span {
    padding-left: 1.5rem;
  }
}
#lineup .sub-txt {
  font-size: clamp(1.4rem, 1.262rem + 0.62vw, 2rem);
  line-height: 1.6;
  margin-top: 1rem;
  font-weight: 600;
  color: white;
}
#lineup .subat {
  text-align: left;
}

.lineup_list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3rem;
  margin-bottom: 6rem;
}
.lineup_list:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .lineup_list {
    margin-left: 0;
    margin-bottom: 3rem;
  }
}
.lineup_list li {
  width: calc(50% - 3rem);
  margin-left: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 960px) {
  .lineup_list li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 2rem;
  }
}

.lineup_block {
  padding: 50px 0;
}

header {
  position: absolute;
  z-index: 1000;
  width: 100%;
  padding: 20px 35px;
  margin: 0 auto;
}
@media screen and (max-width: 1680px) {
  header {
    padding: 15px 25px;
  }
}
header::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.footer {
  color: #464646;
  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: linear-gradient(180deg, rgb(15, 135, 110) 0%, rgb(8, 68, 55) 100%);
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 auto;
  line-height: 4;
  border-radius: 5px;
  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 */