* {
  margin: 0;
  padding: 0;
}

:root {
  --scrollnav_color:#eee;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP";
}

section {
  transform: translateZ(0);
}

.normal_main {
  width: 100%;
}

p {
  line-height: 2.2em;
}

.AMASIA_btn_01 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  padding: 1em 3em;
  background: #fff;
  color: #333;
  font-weight: 600;
  border-radius: 0.5em;
  font-size: 1.5em;
  transition: 0.3s;
}
.AMASIA_btn_01:hover {
  background: #333;
  color: #fff;
}

.sp_on {
  display: none;
}

.sp_on_i {
  display: none;
}

.tb_on {
  display: none;
}

@media screen and (max-width: 1100px) {
  .tb_on {
    display: block;
  }
  .AMASIA_btn_01 {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 790px) {
  .sp_on {
    display: block;
  }
  .sp_on_i {
    display: inline;
  }
  .sp_off {
    display: none;
  }
  .AMASIA_btn_01 {
    font-size: 1em;
  }
}
.scrolldown2 {
  position: fixed;
  bottom: 5px;
  right: 5%;
  z-index: 10;
}

.scrolldown2 span {
  position: absolute;
  left: 0.5em;
  bottom: 0.1em;
  color: var(--scrollnav_color);
  font-size: 1.5em;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  font-weight: 600;
}

.scrolldown2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.45em;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: var(--scrollnav_color);
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scrolldown2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 5em;
  background: var(--scrollnav_color);
}

@media screen and (max-width: 1100px) {
  .scrolldown2 {
    right: unset;
    left: 0;
    font-size: 0.8em;
  }
}
.AMASIA_top {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  width: 100%;
  height: 100vh;
  background: url(/asset/img/bg/bg_r&e_pc.png);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
}
.AMASIA_top .AMASIA_logo {
  width: 60%;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 1em auto 3em;
}
.AMASIA_top .AMASIA_home_products {
  display: flex;
  justify-content: center;
  align-items: center;
}
.AMASIA_top .AMASIA_home_products img {
  width: 45%;
  margin-top: -6vw;
}

@media screen and (max-width: 790px) {
  .AMASIA_top {
    background: url(../img/bg/bg_r&e.png);
    background-size: cover;
    background-position: center;
  }
  .AMASIA_top .AMASIA_home_products {
    flex-wrap: wrap;
  }
  .AMASIA_top .AMASIA_home_products img {
    height: auto;
    width: 90%;
    margin: 2em auto;
  }
  .AMASIA_top .AMASIA_home_products .AMASIA_logo {
    width: 80vw;
    height: 20vw;
    margin: 1em auto;
  }
}
.AMASIA_about {
  scroll-snap-align: end;
  scroll-snap-stop: always;
  width: 100%;
  padding: 10vh 0;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8666666667), rgba(255, 255, 255, 0.8784313725));
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  text-align: center;
}
.AMASIA_about h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 60px;
  margin-bottom: 1em;
}
.AMASIA_about h2 .AMASIA_logo {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 400px;
  height: 100px;
  margin-left: -65px;
  margin-right: -35px;
}
.AMASIA_about p {
  color: #fff;
  line-height: 3.5em;
  font-size: 20px;
  padding: 0 1em;
  filter: drop-shadow(1px 1px 3px #777);
}
.AMASIA_about .AMASIA_home_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5em;
  margin: 5em auto 2em;
}
.AMASIA_about .AMASIA_home_nav img {
  width: 300px;
  cursor: pointer;
  transition: 0.3s;
}
.AMASIA_about .AMASIA_home_nav img:hover {
  opacity: 1;
}

@media screen and (max-width: 1100px) {
  .AMASIA_about p {
    width: 600px;
    margin: 0 auto;
    font-size: 18px;
    padding: 0;
  }
}
@media screen and (max-width: 790px) {
  .AMASIA_about {
    width: 100%;
    padding: 0;
    padding-top: 10vh;
    height: 89vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .AMASIA_about h2 {
    font-size: 30px;
    margin-bottom: 1em;
  }
  .AMASIA_about h2 .AMASIA_logo {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    width: 200px;
    height: 50px;
    margin-left: -35px;
    margin-right: -20px;
  }
  .AMASIA_about p {
    width: unset;
    line-height: 2.3em;
    font-size: 14px;
    padding: 0;
  }
  .AMASIA_about .AMASIA_home_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    margin: 5em auto 2em;
  }
  .AMASIA_about .AMASIA_home_nav img {
    width: 35vw;
    cursor: pointer;
    transition: 0.3s;
  }
  .AMASIA_about .AMASIA_home_nav img:hover {
    opacity: 1;
  }
}
.AMASIA_home_template {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.AMASIA_home_template .CV_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 0.8em 3em;
  font-size: 1.5em;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  margin-top: 2em;
  transition: 0.3s;
}
.AMASIA_home_template .CV_btn:hover {
  background: #fff;
  color: #333;
}
.AMASIA_home_template .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15vh 0;
  width: 40%;
}
.AMASIA_home_template .left .logo {
  width: 400px;
}
.AMASIA_home_template .left .homecare_logo {
  height: 4em;
  margin: 2em;
}
.AMASIA_home_template .left h2 {
  font-size: 45px;
  margin: 1em auto;
}
.AMASIA_home_template .left p {
  font-size: 25px;
}
.AMASIA_home_template .right {
  width: 50%;
}
.AMASIA_home_template .right .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  padding: 5em 0;
}
.AMASIA_home_template .right .swiper-slide .main_img {
  width: 40em;
  filter: drop-shadow(0px 10px 6px #333);
}
.AMASIA_home_template .right .swiper-slide .name_img {
  height: 9em;
}
.AMASIA_home_template .right .swiper-slide h3 {
  font-size: 3em;
  font-weight: 500;
  margin: 0.5em auto;
}
.AMASIA_home_template .right .swiper-slide p {
  font-size: 2em;
  line-height: 1.5em;
  margin: 1em auto;
  margin-right: 3em;
}
.AMASIA_home_template .right .swiper-slide .textbox {
  margin: 2em auto;
  padding: 1.5em 2em;
  background: rgba(255, 255, 255, 0.6);
  -webkit-clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
  padding-right: 5em;
}
.AMASIA_home_template .right .swiper-slide .textbox h4 {
  font-size: 2em;
}
.AMASIA_home_template .right .swiper-slide .textbox p {
  text-indent: unset;
  margin: auto;
}
.AMASIA_home_template .right .swiper-slide:last-child .textbox {
  -webkit-clip-path: unset;
          clip-path: unset;
  padding-right: 2em;
}
.AMASIA_home_template .right .swiper-button-next,
.AMASIA_home_template .right .swiper-button-prev {
  color: #fff;
}
.AMASIA_home_template .right .swiper-pagination-bullet {
  width: 1em;
  height: 1em;
  background: #fff;
}
.AMASIA_home_template .right .swiper-pagination-bullet-active {
  background: #fff;
}
.AMASIA_home_template .right .CV_btn {
  display: none;
}

@media screen and (max-width: 1500px) {
  .AMASIA_home_template .left {
    padding: 20vh 0;
    width: 35%;
  }
  .AMASIA_home_template .left .logo {
    width: 300px;
  }
  .AMASIA_home_template .left h2 {
    font-size: 40px;
    margin: 1em auto;
  }
  .AMASIA_home_template .left p {
    font-size: 18px;
  }
  .AMASIA_home_template .right {
    width: 60%;
  }
  .AMASIA_home_template .right .swiper-slide {
    font-size: 9px;
    padding: 5em 0;
  }
}
@media screen and (max-width: 1100px) {
  .AMASIA_home_template {
    padding: 10vh 1em;
  }
  .AMASIA_home_template .left {
    padding: 0;
    width: 100%;
  }
  .AMASIA_home_template .left .logo {
    width: 300px;
  }
  .AMASIA_home_template .left .homecare_logo {
    height: 2.5em;
    margin: 1.5em;
  }
  .AMASIA_home_template .left h2 {
    font-size: 40px;
    margin: 1em auto;
  }
  .AMASIA_home_template .left p {
    font-size: 18px;
  }
  .AMASIA_home_template .left .CV_btn {
    display: none;
  }
  .AMASIA_home_template .right {
    width: 100%;
  }
  .AMASIA_home_template .right .swiper-button-next,
  .AMASIA_home_template .right .swiper-button-prev {
    top: 35%;
  }
  .AMASIA_home_template .right .CV_btn {
    display: flex;
    font-size: 1.3em;
    width: -moz-fit-content;
    width: fit-content;
    margin: 3em auto;
  }
}
@media screen and (max-width: 790px) {
  .AMASIA_home_template {
    padding: 5em 1em;
  }
  .AMASIA_home_template .left {
    padding: 0;
    width: 100%;
  }
  .AMASIA_home_template .left .logo {
    width: 60%;
  }
  .AMASIA_home_template .left h2 {
    font-size: 25px;
    margin: 1em auto;
  }
  .AMASIA_home_template .left p {
    font-size: 14px;
  }
  .AMASIA_home_template .right .swiper-slide {
    flex-direction: column;
  }
  .AMASIA_home_template .right .swiper-slide .name_img {
    position: absolute;
    height: 7em;
    top: 5em;
    left: 2em;
  }
  .AMASIA_home_template .right .swiper-slide .main_img {
    width: 35em;
  }
  .AMASIA_home_template .right .swiper-slide h3 {
    font-size: 2em;
    line-height: 1.6em;
    text-align: center;
    font-weight: 600;
  }
  .AMASIA_home_template .right .swiper-slide p {
    font-size: 1.5em;
    margin: 1em;
    text-align: center;
  }
  .AMASIA_home_template .right .swiper-slide ul {
    margin: 0 1em;
  }
  .AMASIA_home_template .right .swiper-slide ul li::before {
    height: 0.8em;
  }
  .AMASIA_home_template .right .swiper-slide .textbox {
    margin: 2em 1em;
  }
  .AMASIA_home_template .right .swiper-slide .textbox p {
    text-align: left;
  }
}
.AMASIA_ruby {
  position: relative;
  z-index: 3;
  background: url(../img/bg/bg_Ruby.jpg);
  background-size: cover;
}
.AMASIA_ruby .textbox {
  color: #9E1C4F;
}

.AMASIA_emerald {
  position: relative;
  z-index: 3;
  background: url(../img/bg/bg_Emerald.jpg);
  background-size: cover;
}
.AMASIA_emerald .left .homecare_logo {
  height: 3.5em;
}
.AMASIA_emerald .textbox {
  color: #116058;
}

.AMASIA_homecare {
  position: relative;
  z-index: 3;
  background: url(../img/bg/bg_homecare.png);
  background-size: cover;
  background-position: center;
}
.AMASIA_homecare .right .swiper-slide .name_img {
  height: unset;
  width: 90%;
}
.AMASIA_homecare .textbox {
  color: #5E5048;
}

@media screen and (max-width: 790px) {
  .AMASIA_emerald .left .homecare_logo {
    height: 2em;
  }
  .AMASIA_homecare .left h2, .AMASIA_homecare .left p, .AMASIA_homecare .left .logo {
    filter: drop-shadow(1px 1px 4px #888);
  }
}
.AMASIA_lastarea {
  padding: 15vh 1em;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #aaa;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 4;
}
.AMASIA_lastarea p {
  text-align: center;
  font-size: 2em;
  line-height: 2em;
}
.AMASIA_lastarea p strong {
  font-size: 1.3em;
}
.AMASIA_lastarea .CV_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 0.8em 3em;
  font-size: 1.5em;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  margin-top: 2em;
  transition: 0.3s;
}
.AMASIA_lastarea .CV_btn:hover {
  background: #fff;
  color: #333;
}

@media screen and (max-width: 790px) {
  .AMASIA_lastarea p {
    font-size: 1em;
    line-height: 2em;
  }
  .AMASIA_lastarea p strong {
    font-size: 1.3em;
  }
  .AMASIA_lastarea .CV_btn {
    font-size: 1em;
    padding: 0.8em 2em;
  }
}/*# sourceMappingURL=home_style.css.map */