@charset "UTF-8";
.link a {
  display: inline-block;
  position: relative;
  padding: 23px 0 27px;
  border-radius: 50px;
}
.link a:hover .link__arrow::before {
  animation-name: transformRightLeft; /* 修正: hover時のアニメーションを指定 */
  animation-delay: 0s;
}
.link a:hover .link__arrow::after {
  animation-name: transformLeftRight; /* 修正: hover時のアニメーションを指定 */
  animation-delay: 0.2s;
}
.link input[type=submit]:hover + .link__arrow::before {
  animation-name: transformRightLeft; /* 修正: hover時のアニメーションを指定 */
  animation-delay: 0s;
}
.link input[type=submit]:hover + .link__arrow::after {
  animation-name: transformLeftRight; /* 修正: hover時のアニメーションを指定 */
  animation-delay: 0.2s;
}
.link__text {
  color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  vertical-align: middle;
}
.link__arrow {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
}
.link__arrow::before, .link__arrow::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/arrow_right_blk.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 14px auto;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  content: "";
}
.link__arrow::after {
  transform: translateX(-100%);
}
@media screen and (max-width: 576px) {
  .link a {
    padding: 18px 0 22px;
  }
  .link__text {
    font-size: 13px;
  }
  .link__arrow::before, .link__arrow::after {
    background-size: 12px auto;
  }
}

@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.arrow {
  display: inline-block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  vertical-align: middle;
  overflow: hidden;
}
.arrow img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
}
@media screen and (max-width: 576px) {
  .arrow {
    width: 36px;
    height: 36px;
  }
  .arrow img {
    width: 12px;
  }
}

.sentence {
  font-weight: 500;
  font-size: 16px;
  line-height: 2.1875;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1200px) {
  .sentence {
    font-size: 14px;
    line-height: 2;
  }
}

.main {
  padding-top: 210px;
}
@media screen and (max-width: 576px) {
  .main {
    padding-top: 150px;
  }
}

.hero__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 91.5%;
  margin: 0 auto 64px;
}
.hero__catch--ja {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.05em;
}
.hero__catch--en {
  width: 682px;
}
.hero__list {
  line-height: 2.5;
  writing-mode: vertical-rl;
}
.hero__item {
  min-width: 45px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.35em;
}
.hero__image {
  position: relative;
  width: 100%;
}
.hero__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__image::after {
  display: block;
  padding-top: 53%;
  content: "";
}
.hero__scroll {
  display: block;
  position: absolute;
  top: 0;
  right: 12%;
  transform: translateY(-48%);
  z-index: 5;
  width: 143px;
}
.hero__scroll-background {
  width: 100%;
  height: auto;
}
.hero__scroll-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 10%);
  width: 27px;
}
@media screen and (max-width: 1200px) {
  .hero__head {
    align-items: flex-end;
    width: 100%;
    margin-bottom: 40px;
  }
  .hero__catch--ja {
    font-size: 20px;
  }
  .hero__catch--en {
    width: 400px;
  }
  .hero__item {
    min-width: 40px;
    font-size: 16px;
  }
  .hero__scroll {
    right: 6%;
    width: 120px;
  }
  .hero__scroll-arrow {
    width: 22px;
  }
}
@media screen and (max-width: 576px) {
  .hero__head {
    margin-bottom: 30px;
  }
  .hero__catch--ja {
    margin-bottom: 5px;
    font-size: 17px;
  }
  .hero__catch--en {
    width: 270px;
  }
  .hero__list {
    display: none;
  }
  .hero__image > img {
    border-radius: 20px;
  }
  .hero__image::after {
    padding-top: 90%;
  }
  .hero__scroll {
    display: none;
  }
}

.about {
  margin-bottom: -20px;
  padding-left: 6%;
}
.about__inner {
  display: flex;
}
.about__contents {
  position: relative;
  z-index: 5;
  width: 481px;
  margin-right: -65px;
  padding-top: 136px;
}
.about__heading {
  margin-bottom: 65px;
}
.about__sentence {
  margin-bottom: 60px;
}
.about__image {
  flex: 1;
  margin-right: -30px;
}
.about__link a {
  padding-right: 91px;
  padding-left: 71px;
  background-color: #37BCB0;
}
@media screen and (max-width: 1200px) {
  .about {
    margin-bottom: 40px;
    padding: 0;
  }
  .about__inner {
    align-items: flex-end;
  }
  .about__contents {
    position: relative;
    z-index: 5;
    width: 340px;
    padding-top: 60px;
  }
  .about__heading {
    margin-bottom: 30px;
  }
  .about__heading .heading--en {
    width: 270px;
  }
  .about__sentence {
    margin-bottom: 40px;
  }
  .about__link a {
    padding-right: 80px;
    padding-left: 50px;
  }
}
@media screen and (max-width: 576px) {
  .about {
    margin-bottom: -10px;
  }
  .about__inner {
    display: block;
  }
  .about__heading {
    margin-bottom: 20px;
  }
  .about__heading .heading--en {
    width: 200px;
  }
  .about__sentence {
    margin-bottom: 30px;
  }
  .about__link {
    text-align: center;
  }
  .about__link a {
    padding-right: 70px;
    padding-left: 40px;
  }
  .about__image {
    position: relative;
    left: 45%;
    transform: translateX(-50%);
    z-index: -1;
    width: calc(110% + 30px);
    margin: 0;
  }
}

.guide__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.guide__item {
  width: calc(50% - 10px);
  border-radius: 50px;
}
.guide__item--individuals {
  background-color: #37BCB0;
}
.guide__item--individuals .guide__link a::before {
  background-color: #37BCB0;
}
.guide__item--businesses {
  background-color: #3AA9C4;
}
.guide__item--businesses .guide__link a::before {
  background-color: #3AA9C4;
}
.guide__item--pest {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #FCA519;
}
.guide__item--pest .guide__image {
  position: relative;
  width: 430px;
  margin-right: 99.5px;
  border-radius: 20px;
  overflow: hidden;
}
.guide__item--pest .guide__image::after {
  display: block;
  padding-top: 136%;
  content: "";
}
.guide__item--pest .guide__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.guide__item--pest .guide__contents {
  width: 525px;
  margin-left: 33.5px;
}
.guide__item--pest .guide__heading {
  margin-bottom: 70px;
}
.guide__item--pest .guide__sentence {
  margin-bottom: 55px;
  color: #fff;
}
.guide__item--individuals, .guide__item--businesses {
  padding-top: 106px;
  padding-bottom: 50px;
}
.guide__item--individuals .guide__heading, .guide__item--businesses .guide__heading {
  width: 531px;
  margin-bottom: 40px;
  margin-left: 12.45%;
}
.guide__item--individuals .guide__image, .guide__item--businesses .guide__image {
  position: relative;
  width: 75.1%;
  margin: auto;
  border-radius: 50px;
  overflow: hidden;
}
.guide__item--individuals .guide__image img, .guide__item--businesses .guide__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.guide__item--individuals .guide__image::after, .guide__item--businesses .guide__image::after {
  display: block;
  padding-top: 54.54%;
  content: "";
}
.guide__item--individuals .guide__link, .guide__item--businesses .guide__link {
  position: relative;
  transform: translateY(-50%);
  z-index: 5;
  text-align: center;
}
.guide__item--individuals .guide__link a::before, .guide__item--businesses .guide__link a::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 41px;
  content: "";
}
.guide__heading .heading--ja {
  margin-top: -30px;
  color: #fff;
}
.guide__link a {
  padding-right: 96px;
  padding-left: 58px;
  background-color: #2C3942;
}
@media screen and (max-width: 1200px) {
  .guide__item {
    padding-top: 50px;
    padding-bottom: 20px;
    border-radius: 20px;
  }
  .guide__item--individuals .guide__heading, .guide__item--businesses .guide__heading {
    width: 270px;
    margin-bottom: 25px;
    margin-left: 5%;
  }
  .guide__item--individuals .guide__image, .guide__item--businesses .guide__image {
    width: 90%;
    border-radius: 20px;
  }
  .guide__item--individuals .guide__link, .guide__item--businesses .guide__link {
    transform: translateY(-30%);
  }
  .guide__item--pest {
    padding: 40px 3%;
    align-items: normal;
  }
  .guide__item--pest .guide__image {
    flex: 1;
    margin-right: 25px;
  }
  .guide__item--pest .guide__contents {
    width: 350px;
    margin: 0;
  }
  .guide__item--pest .guide__heading {
    margin-bottom: 30px;
    margin-left: 0;
  }
  .guide__item--pest .guide__heading .heading--en {
    width: 240px;
  }
  .guide__item--pest .guide__heading .heading--ja {
    margin-top: -15px;
    font-size: 16px;
  }
  .guide__item--pest .guide__sentence {
    margin-bottom: 35px;
  }
  .guide__heading {
    margin-bottom: 25px;
    margin-left: 5%;
  }
  .guide__heading .heading--ja {
    margin-top: -15px;
    font-size: 16px;
  }
  .guide__link a {
    padding-right: 70px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 576px) {
  .guide__item {
    width: 100%;
    padding-top: 35px;
    padding-bottom: 15px;
  }
  .guide__item:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .guide__item--individuals .guide__heading, .guide__item--businesses .guide__heading {
    width: 220px;
    margin-bottom: 15px;
  }
  .guide__item--individuals .guide__image, .guide__item--businesses .guide__image {
    border-radius: 15px;
  }
  .guide__item--individuals .guide__image::after, .guide__item--businesses .guide__image::after {
    padding-top: 62.5%;
  }
  .guide__item--pest {
    display: block;
    margin-top: 0;
    padding: 20px 5% 35px;
  }
  .guide__item--pest .guide__image {
    width: 100%;
    margin: 0 auto 20px;
    border-radius: 15px;
  }
  .guide__item--pest .guide__image::after {
    padding-top: 115%;
  }
  .guide__item--pest .guide__contents {
    width: 100%;
  }
  .guide__item--pest .guide__heading {
    margin-bottom: 20px;
  }
  .guide__item--pest .guide__heading .heading--en {
    width: 200px;
  }
  .guide__item--pest .guide__sentence {
    margin-bottom: 25px;
  }
  .guide__item--pest .guide__link {
    text-align: center;
  }
}

.products {
  padding-top: 90px;
  padding-bottom: 120px;
}
.products__head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 60px;
  padding-left: 90px;
}
.products__heading {
  width: 510px;
  margin-right: 89.5px;
}
.products__lead {
  width: 432px;
}
.products__list {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.products__item {
  width: calc(25% - 20px);
  margin: 0 20px;
}
.products__image {
  position: relative;
  margin-bottom: 19px;
}
.products__ranking {
  position: absolute;
  top: 6.47%;
  left: 8.64%;
  width: 18.85%;
}
.products__catch {
  margin-bottom: 10px;
}
.products__catch span {
  display: inline-block;
  padding: 3px 10px;
  border: 2px solid #d8d8d8;
  border-radius: 18px;
  color: #919191;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}
.products__title {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.products__link {
  text-align: center;
}
.products__link a {
  padding-right: 84px;
  padding-left: 56px;
  background-color: #2C3942;
}
.products__link a br {
  display: none;
}
@media screen and (max-width: 1200px) {
  .products {
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .products__head {
    margin-bottom: 30px;
    padding: 0;
  }
  .products__heading {
    width: 250px;
    margin-right: 40px;
  }
  .products__lead {
    flex: 1;
  }
  .products__list {
    justify-content: space-between;
    margin-bottom: 45px;
  }
  .products__item {
    width: calc(25% - 10px);
    min-width: 220px;
    margin: 0;
  }
  .products__image {
    margin-bottom: 15px;
  }
  .products__catch {
    margin-bottom: 5px;
  }
  .products__catch span {
    font-size: 11px;
  }
  .products__title {
    font-size: 13px;
  }
}
@media screen and (max-width: 576px) {
  .products {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .products__head {
    display: block;
  }
  .products__heading {
    width: 210px;
    margin: 0 0 25px;
  }
  .products__lead {
    width: 100%;
  }
  .products__list {
    width: calc(100% + 15px);
    margin-bottom: 30px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .products__list::-webkit-scrollbar {
    display: none;
  }
  .products__item {
    margin: 0 25px 0 0;
  }
  .products__link a {
    text-align: left;
  }
  .products__link a br {
    display: block;
  }
}/*# sourceMappingURL=front-page.css.map */