body {
  margin: 0;
  font-family: serif;
}

.main {
  padding: 0 4%;
  margin: 100px 0 0 0;
}

.kv__catchcopy {
  color: #101010;
  font-weight: 700;
  font-size: 40px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px 0;
}
.kv__catchcopy__orange {
  color: #f46f52;
}
.kv__catchcopy__green {
  color: #79AC78;
}
.kv__image {
  display: block;
  width: 100%;
  height: 580px;
  background: url("https://mashiro-hkd.sakura.ne.jp/wp1/wp-content/themes/mashiro-hkd/assets/image/webp/main.webp");
  border-radius: 50px;
  box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.04);
  margin: 0 auto 40px auto;
  background-size: cover;
  background-position-y: -93px;
}
.kv__scroll {
  position: relative;
  top: -115px;
  left: 50%;
  width: -moz-fit-content;
  width: fit-content;
}
.kv__scroll span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #79AC78;
  font-size: 10px;
  writing-mode: vertical-rl;
  z-index: 100;
}
.kv__scroll::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #79AC78;
  z-index: 101;
  animation: circlemove 1.6s ease-in-out infinite, circlemovehide 1.6s ease-in-out infinite;
}
.kv__scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 50px;
  background: #dedede;
  z-index: 100;
}
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.kv__scroll__background {
  display: block;
  position: relative;
  top: 32px;
  right: 48px;
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 100px;
}

.title__sub::before {
  content: "";
  display: block;
  width: 500px;
  height: 2px;
  background: #dedede;
  position: relative;
  top: 14px;
  right: 530px;
}
.title__sub::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #79ac78;
  position: relative;
  top: -11px;
  right: 30px;
  animation: slideBar 2s infinite;
}
@keyframes slideBar {
  0% {
    transform: translateX(-500px);
  }
  100% {
    transform: translateX(-24px);
  }
}

.news {
  width: 75%;
  margin: 0 auto 150px auto;
  font-weight: 700;
}
.news p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.news__title__en {
  color: #79ac78;
  font-size: 16px;
}
.news__title__ja h1 {
  color: #2f2626;
  font-size: 40px;
}
.news__button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 40px;
  margin: 0 auto;
  padding: 15px 50px;
  background: #79ac78;
  color: #ffffff;
  font-size: 16px;
  z-index: 100;
  overflow: hidden;
}
.news__button a {
  text-decoration: none;
  color: white;
}
.news__button p {
  display: flex;
}
.news__button p span {
  transition: 0.3s;
}
.news__button p::before {
  content: "";
  display: block;
  border-radius: 20px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  border: none;
  position: relative;
  left: 190px;
  top: 8px;
  z-index: 1000;
}
.news__button p::after {
  content: "";
  display: block;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  background: #d0e7d2;
  position: relative;
  top: 2px;
  left: 33px;
  z-index: 100;
  transition: 0.5s;
  animation: scaleAnimation 0.65s infinite alternate;
}
.news__button:hover {
  cursor: pointer;
}
.news__button:hover p span {
  color: #79ac78;
  z-index: 500;
  transition: 0.8s;
}
.news__button:hover p::after {
  transition: 0.8s;
  scale: 40;
  z-index: 0;
}
@keyframes scaleAnimation {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.1);
  }
}
.news__content {
  display: flex;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  margin: 40px auto 70px auto;
}
.news__content__one {
  display: block;
  width: 280px;
  height: 320px;
  border: 1px #d8d8d8 solid;
  border-radius: 20px;
  margin: 40px 20px 0 20px;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}
.news__content__one:hover {
  scale: 0.9;
  transition: 0.3s;
}
.news__content__one:hover .news__content__one__thumbnail > img {
  scale: 0.8;
  transition: 0.3s;
}
.news__content__one__thumbnail > img {
  display: block;
  width: 288px;
  height: 160px;
  transition: 0.3s;
}
.news__content__one__info {
  display: flex;
  justify-content: space-between;
  border-top: 1px #d8d8d8 solid;
  padding: 12px 18px 10px;
}
.news__content__one__info__category {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 3px 15px 5px 15px;
  background: #79ac78;
  border-radius: 10px;
}
.news__content__one__info__category a {
  color: white;
  text-decoration: none;
  pointer-events: none;
}
.news__content__one__info__category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news__content__one__info__date {
  font-size: 14px;
  color: #797979;
  font-weight: 400;
  padding: 2px 0 0 0;
}
.news__content__one__title {
  line-height: 21px;
  font-weight: 400;
  font-size: 14px;
  padding: 0 18px;
}
.news__content__one__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
}

.about {
  width: 75%;
  margin: 0 auto 80px auto;
  font-weight: 700;
}
.about p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.about__title__en {
  color: #79ac78;
  font-size: 16px;
}
.about__title__ja h1 {
  color: #2f2626;
  font-size: 40px;
}
.about__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.about__content__text {
  width: 380px;
  height: -moz-fit-content;
  height: fit-content;
  margin: 140px 80px 0 0;
}
.about__content__img img {
  display: block;
  width: 380px;
  height: 380px;
}

.can {
  width: 75%;
  margin: 0 auto 150px auto;
  font-weight: 700;
}
.can__title__en {
  color: #79ac78;
  font-size: 16px;
}
.can__title__ja h1 {
  color: #2f2626;
  font-size: 40px;
}
.can__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 50px 0 0 0;
}
.can__content__item {
  display: block;
  width: 330px;
  height: 330px;
  background: rgb(255, 0, 0);
}
.can__content__item__title {
  display: block;
  width: 60%;
  height: -moz-fit-content;
  height: fit-content;
  margin: 100px 0 12px 20%;
  color: #ffffff;
  font-size: 20px;
}
.can__content__item__text {
  display: block;
  width: 60%;
  height: -moz-fit-content;
  height: fit-content;
  color: #ffffff;
  font-size: 16px;
  margin: 0 0 0 20%;
}
.can__content__item:nth-child(1) {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://mashiro-hkd.sakura.ne.jp/wp1/wp-content/themes/mashiro-hkd/assets/image/webp/symptoms-observe.webp");
  background-size: cover;
}
.can__content__item:nth-child(2) {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://mashiro-hkd.sakura.ne.jp/wp1/wp-content/themes/mashiro-hkd/assets/image/webp/medical-m.webp");
  background-size: cover;
}
.can__content__item:nth-child(3) {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://mashiro-hkd.sakura.ne.jp/wp1/wp-content/themes/mashiro-hkd/assets/image/webp/medication-m.webp");
  background-size: cover;
}
.can__content__item:nth-child(4) {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://mashiro-hkd.sakura.ne.jp/wp1/wp-content/themes/mashiro-hkd/assets/image/webp/bedsore.webp");
  background-size: cover;
}
.can__content__item:nth-child(5) {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://mashiro-hkd.sakura.ne.jp/wp1/wp-content/themes/mashiro-hkd/assets/image/webp/main.webp");
  background-size: cover;
}
.can__content__item:nth-child(6) {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://mashiro-hkd.sakura.ne.jp/wp1/wp-content/themes/mashiro-hkd/assets/image/webp/support.webp");
  background-size: cover;
}

.target {
  width: 75%;
  margin: 0 auto 150px auto;
  font-weight: 700;
}
.target p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.target__title__en {
  color: #79ac78;
  font-size: 16px;
}
.target__title__ja h1 {
  color: #2f2626;
  font-size: 40px;
}
.target__content {
  margin: 130px 0 0 0;
}
.target__content__item {
  display: block;
  width: 530px;
  margin: 0 auto 60px auto;
}
.target__content__item div {
  border-bottom: 1px #DEDEDE solid;
}
.target__content__item div:first-child {
  padding: 0 0 15px 0;
}
.target__content__item div:not(:first-child) {
  padding: 12px 0;
}
.target__content__item__title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.target__content__item__text {
  display: flex;
  align-items: center;
}
.target__content__item__text span:first-child {
  position: relative;
  top: -3px;
  color: #000;
  font-size: 12px;
  font-weight: 500;
}
.target__content__item__text span:not(:first-child) {
  display: inline-block;
  position: relative;
  top: 0;
  width: 65%;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding: 0 0 0 20px;
  margin: 0 auto;
}

.service {
  width: 75%;
  margin: 0 auto 150px auto;
  font-weight: 700;
}
.service p {
  display: block;
}
.service__title__en {
  color: #79ac78;
  font-size: 16px;
}
.service__title__ja h1 {
  color: #2f2626;
  font-size: 40px;
}
.service__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 50px 0 0 0;
}
.service__content__item {
  display: block;
  width: 330px;
  height: 330px;
  background: rgb(255, 0, 0);
}
.service__content__item__title {
  display: block;
  width: 60%;
  height: -moz-fit-content;
  height: fit-content;
  margin: 100px 0 12px 20%;
  color: #ffffff;
  font-size: 20px;
}
.service__content__item__text {
  display: block;
  width: 60%;
  height: -moz-fit-content;
  height: fit-content;
  color: #ffffff;
  font-size: 16px;
  margin: 0 0 0 20%;
}
.service__content__item:nth-child(1) {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://mashiro-hkd.sakura.ne.jp/wp1/wp-content/themes/mashiro-hkd/assets/image/webp/taxi.webp");
  background-size: cover;
}
.service__content__item:nth-child(2) {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://mashiro-hkd.sakura.ne.jp/wp1/wp-content/themes/mashiro-hkd/assets/image/webp/spirit-m.webp");
  background-size: cover;
}
.service__content__item:nth-child(3) {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://mashiro-hkd.sakura.ne.jp/wp1/wp-content/themes/mashiro-hkd/assets/image/webp/man.webp");
  background-size: cover;
  background-position: right;
}

.overview {
  width: 75%;
  margin: 0 auto 150px auto;
  font-weight: 700;
}
.overview p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.overview__title__en {
  color: #79ac78;
  font-size: 16px;
}
.overview__title__ja h1 {
  color: #2f2626;
  font-size: 40px;
}
.overview__content {
  margin: 130px 0 0 0;
}
.overview__content__item {
  display: block;
  width: 530px;
  margin: 0 auto 60px auto;
}
.overview__content__item div {
  border-bottom: 1px #DEDEDE solid;
}
.overview__content__item div:first-child {
  padding: 0 0 15px 0;
}
.overview__content__item div:not(:first-child) {
  padding: 12px 0;
}
.overview__content__item__title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.overview__content__item__text {
  display: flex;
  align-items: center;
}
.overview__content__item__text span:first-child {
  position: relative;
  top: -3px;
  color: #000;
  font-size: 12px;
  font-weight: 500;
}
.overview__content__item__text span:not(:first-child) {
  display: inline-block;
  position: relative;
  top: 0;
  width: 65%;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding: 0 0 0 20px;
  margin: 0 auto;
}

.contact {
  width: 75%;
  margin: 0 auto 150px auto;
  font-weight: 700;
}
.contact p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.contact__title__en {
  color: #79ac78;
  font-size: 16px;
}
.contact__title__ja h1 {
  color: #2f2626;
  font-size: 40px;
}
.contact__content {
  margin: 130px 0 0 0;
}
.contact__content__item {
  display: block;
  width: 530px;
  margin: 0 auto 60px auto;
}
.contact__content__item div {
  border-bottom: 1px #DEDEDE solid;
}
.contact__content__item div:first-child {
  padding: 0 0 15px 0;
}
.contact__content__item div:not(:first-child) {
  padding: 12px 0;
}
.contact__content__item__title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.contact__content__item__text {
  display: flex;
  align-items: center;
}
.contact__content__item__text span:first-child {
  position: relative;
  top: -3px;
  color: #000;
  font-size: 12px;
  font-weight: 500;
}
.contact__content__item__text span:not(:first-child) {
  display: inline-block;
  position: relative;
  top: 0;
  width: 65%;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding: 0 0 0 20px;
  margin: 0 auto;
}
.contact__button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 40px;
  margin: 0 auto;
  padding: 15px 50px;
  background: #79ac78;
  color: #ffffff;
  font-size: 16px;
  z-index: 100;
  overflow: hidden;
}
.contact__button a {
  text-decoration: none;
  color: white;
}
.contact__button p {
  display: flex;
}
.contact__button p span {
  transition: 0.3s;
}
.contact__button p::before {
  content: "";
  display: block;
  border-radius: 20px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  border: none;
  position: relative;
  left: 255px;
  top: 8px;
  z-index: 1000;
}
.contact__button p::after {
  content: "";
  display: block;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  background: #d0e7d2;
  position: relative;
  top: 2px;
  left: 33px;
  z-index: 100;
  transition: 0.5s;
  animation: scaleAnimation 0.65s infinite alternate;
}
.contact__button:hover {
  cursor: pointer;
}
.contact__button:hover p span {
  color: #79ac78;
  z-index: 500;
  transition: 0.8s;
}
.contact__button:hover p::after {
  transition: 0.8s;
  scale: 40;
  z-index: 0;
}
@keyframes scaleAnimation {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.1);
  }
}

.certificationt {
  width: 75%;
  margin: 0 auto 150px auto;
  font-weight: 700;
}
.certificationt p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.certificationt__title__en {
  color: #79ac78;
  font-size: 16px;
}
.certificationt__title__ja h1 {
  color: #2f2626;
  font-size: 40px;
}
.certificationt__content {
  margin: 130px 0 0 0;
}
.certificationt__content__item {
  display: block;
  width: 530px;
  margin: 0 auto 60px auto;
}
.certificationt__content__item div {
  border-bottom: 1px #DEDEDE solid;
}
.certificationt__content__item div:first-child {
  padding: 0 0 15px 0;
}
.certificationt__content__item div:not(:first-child) {
  padding: 12px 0;
}
.certificationt__content__item img {
  width: 200px;
  margin: 0 auto;
  display: block;
}
.certificationt__content__item__title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.certificationt__content__item__text {
  display: flex;
  align-items: center;
}
.certificationt__content__item__text span:first-child {
  position: relative;
  top: -3px;
  color: #000;
  font-size: 12px;
  font-weight: 500;
}
.certificationt__content__item__text span:not(:first-child) {
  display: inline-block;
  position: relative;
  top: 0;
  width: 65%;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding: 0 0 0 20px;
  margin: 0 auto;
}
.certificationt__button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 40px;
  margin: 0 auto;
  padding: 15px 50px;
  background: #79ac78;
  color: #ffffff;
  font-size: 16px;
  z-index: 100;
  overflow: hidden;
}
.certificationt__button a {
  text-decoration: none;
  color: white;
}
.certificationt__button p {
  display: flex;
}
.certificationt__button p span {
  transition: 0.3s;
}
.certificationt__button p::before {
  content: "";
  display: block;
  border-radius: 20px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  border: none;
  position: relative;
  left: 255px;
  top: 8px;
  z-index: 1000;
}
.certificationt__button p::after {
  content: "";
  display: block;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  background: #d0e7d2;
  position: relative;
  top: 2px;
  left: 33px;
  z-index: 100;
  transition: 0.5s;
  animation: scaleAnimation 0.65s infinite alternate;
}
.certificationt__button:hover {
  cursor: pointer;
}
.certificationt__button:hover p span {
  color: #79ac78;
  z-index: 500;
  transition: 0.8s;
}
.certificationt__button:hover p::after {
  transition: 0.8s;
  scale: 40;
  z-index: 0;
}
@keyframes scaleAnimation {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.1);
  }
}

.charge {
  width: 75%;
  margin: 0 auto 150px auto;
  font-weight: 700;
}
.charge p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.charge__title__en {
  color: #79ac78;
  font-size: 16px;
}
.charge__title__ja h1 {
  color: #2f2626;
  font-size: 40px;
}
.charge__button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 40px;
  margin: 0 auto;
  padding: 15px 50px;
  background: #79ac78;
  color: #ffffff;
  font-size: 16px;
  z-index: 100;
  overflow: hidden;
}
.charge__button a {
  text-decoration: none;
  color: white;
}
.charge__button p {
  display: flex;
}
.charge__button p span {
  transition: 0.3s;
}
.charge__button p::before {
  content: "";
  display: block;
  border-radius: 20px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  border: none;
  position: relative;
  left: 127px;
  top: 8px;
  z-index: 1000;
}
.charge__button p::after {
  content: "";
  display: block;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  background: #d0e7d2;
  position: relative;
  top: 2px;
  left: 33px;
  z-index: 100;
  transition: 0.5s;
  animation: scaleAnimation 0.65s infinite alternate;
}
.charge__button:hover {
  cursor: pointer;
}
.charge__button:hover p span {
  color: #79ac78;
  z-index: 500;
  transition: 0.8s;
}
.charge__button:hover p::after {
  transition: 0.8s;
  scale: 40;
  z-index: 0;
}
@keyframes scaleAnimation {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .main {
    padding: 0;
    margin: 100px 0 0 0;
  }
  .kv__catchcopy {
    color: #101010;
    font-weight: 700;
    font-size: 25px;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 60px 4%;
  }
  .kv__catchcopy__orange {
    color: #f46f52;
  }
  .kv__catchcopy__green {
    color: #79AC78;
  }
  .kv__image {
    display: block;
    width: 90vw;
    height: 50vh;
    background: url("https://mashiro-hkd.sakura.ne.jp/wp1/wp-content/themes/mashiro-hkd/assets/image/webp/main.webp");
    border-radius: 50px;
    box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.04);
    margin: 0 auto 40px auto;
    background-size: cover;
    background-position-y: 0px;
    background-position-x: -92px;
  }
  .kv__scroll {
    position: relative;
    top: -115px;
    left: 50%;
    width: -moz-fit-content;
    width: fit-content;
  }
  .kv__scroll span {
    position: absolute;
    left: 10px;
    bottom: 10px;
    color: #79AC78;
    font-size: 10px;
    writing-mode: vertical-rl;
    z-index: 100;
  }
  .kv__scroll::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #79AC78;
    z-index: 101;
    animation: circlemove 1.6s ease-in-out infinite, circlemovehide 1.6s ease-in-out infinite;
  }
  .kv__scroll::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 50px;
    background: #dedede;
    z-index: 100;
  }
  @keyframes circlemove {
    0% {
      bottom: 45px;
    }
    100% {
      bottom: -5px;
    }
  }
  @keyframes circlemovehide {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 0.9;
    }
    100% {
      opacity: 0;
    }
  }
  .kv__scroll__background {
    display: block;
    position: relative;
    top: 32px;
    right: 48px;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 100px;
  }
  .about {
    width: 75%;
    margin: 0 auto 80px auto;
    font-weight: 700;
  }
  .about p {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
  }
  .about__title__en {
    color: #79ac78;
    font-size: 16px;
  }
  .about__title__ja h1 {
    color: #2f2626;
    font-size: 40px;
  }
  .about__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .about__content__text {
    width: 380px;
    height: -moz-fit-content;
    height: fit-content;
    margin: 140px 0 0 0;
  }
  .about__content__img img {
    display: block;
    width: 80vw;
    height: 380px;
  }
  .target {
    width: 75%;
    margin: 0 auto 150px auto;
    font-weight: 700;
  }
  .target p {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
  }
  .target__title__en {
    color: #79ac78;
    font-size: 16px;
  }
  .target__title__ja h1 {
    color: #2f2626;
    font-size: 40px;
  }
  .target__content {
    margin: 130px 0 0 0;
  }
  .target__content__item {
    display: block;
    width: 85vw;
    margin: 0 auto 60px auto;
  }
  .target__content__item div {
    border-bottom: 1px #DEDEDE solid;
  }
  .target__content__item div:first-child {
    padding: 0 0 15px 0;
  }
  .target__content__item div:not(:first-child) {
    padding: 12px 0;
  }
  .target__content__item__title {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .target__content__item__text {
    display: flex;
    align-items: center;
  }
  .target__content__item__text span:first-child {
    position: relative;
    top: -3px;
    color: #000;
    font-size: 12px;
    font-weight: 500;
  }
  .target__content__item__text span:not(:first-child) {
    display: inline-block;
    position: relative;
    top: 0;
    width: 65%;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 0 0 0 20px;
    margin: 0 auto;
  }
  .overview {
    width: 75%;
    margin: 0 auto 150px auto;
    font-weight: 700;
  }
  .overview p {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
  }
  .overview__title__en {
    color: #79ac78;
    font-size: 16px;
  }
  .overview__title__ja h1 {
    color: #2f2626;
    font-size: 40px;
  }
  .overview__content {
    margin: 130px 0 0 0;
  }
  .overview__content__item {
    display: block;
    width: 85vw;
    margin: 0 auto 60px auto;
  }
  .overview__content__item div {
    border-bottom: 1px #DEDEDE solid;
  }
  .overview__content__item div:first-child {
    padding: 0 0 15px 0;
  }
  .overview__content__item div:not(:first-child) {
    padding: 12px 0;
  }
  .overview__content__item__title {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .overview__content__item__text {
    display: flex;
    align-items: center;
  }
  .overview__content__item__text span:first-child {
    position: relative;
    top: -3px;
    color: #000;
    font-size: 12px;
    font-weight: 500;
  }
  .overview__content__item__text span:not(:first-child) {
    display: inline-block;
    position: relative;
    top: 0;
    width: 65%;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 0 0 0 20px;
    margin: 0 auto;
  }
  .contact {
    width: 75%;
    margin: 0 auto 150px auto;
    font-weight: 700;
  }
  .contact p {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
  }
  .contact__title__en {
    color: #79ac78;
    font-size: 16px;
  }
  .contact__title__ja h1 {
    color: #2f2626;
    font-size: 40px;
  }
  .contact__content {
    margin: 130px 0 0 0;
  }
  .contact__content__item {
    display: block;
    width: 85vw;
    margin: 0 auto 60px auto;
  }
  .contact__content__item div {
    border-bottom: 1px #DEDEDE solid;
  }
  .contact__content__item div:first-child {
    padding: 0 0 15px 0;
  }
  .contact__content__item div:not(:first-child) {
    padding: 12px 0;
  }
  .contact__content__item__title {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .contact__content__item__text {
    display: flex;
    align-items: center;
  }
  .contact__content__item__text span:first-child {
    position: relative;
    top: -3px;
    color: #000;
    font-size: 12px;
    font-weight: 500;
  }
  .contact__content__item__text span:not(:first-child) {
    display: inline-block;
    position: relative;
    top: 0;
    width: 65%;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 0 0 0 20px;
    margin: 0 auto;
  }
  .contact__button {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 40px;
    margin: 0 auto;
    padding: 15px 50px;
    background: #79ac78;
    color: #ffffff;
    font-size: 16px;
    z-index: 100;
    overflow: hidden;
  }
  .contact__button a {
    text-decoration: none;
    color: white;
  }
  .contact__button p {
    display: flex;
  }
  .contact__button p span {
    transition: 0.3s;
    font-size: 12px;
  }
  .contact__button p::before {
    content: "";
    display: block;
    border-radius: 20px;
    width: 7px;
    height: 7px;
    background: #ffffff;
    border: none;
    position: relative;
    left: 202px;
    top: 8px;
    z-index: 1000;
  }
  .contact__button p::after {
    content: "";
    display: block;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    background: #d0e7d2;
    position: relative;
    top: 2px;
    left: 33px;
    z-index: 100;
    transition: 0.5s;
    animation: scaleAnimation 0.65s infinite alternate;
  }
  .contact__button:hover {
    cursor: pointer;
  }
  .contact__button:hover p span {
    color: #79ac78;
    z-index: 500;
    transition: 0.8s;
  }
  .contact__button:hover p::after {
    transition: 0.8s;
    scale: 40;
    z-index: 0;
  }
  @keyframes scaleAnimation {
    0% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1.1);
    }
  }
  .certificationt {
    width: 75%;
    margin: 0 auto 150px auto;
    font-weight: 700;
  }
  .certificationt p {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
  }
  .certificationt__title__en {
    color: #79ac78;
    font-size: 16px;
  }
  .certificationt__title__ja h1 {
    color: #2f2626;
    font-size: 40px;
  }
  .certificationt__content {
    margin: 130px 0 0 0;
  }
  .certificationt__content__item {
    display: block;
    width: 50vw;
    margin: 0 auto 60px auto;
  }
  .certificationt__content__item img {
    width: 150px;
    display: block;
    margin: 0 auto;
  }
  .certificationt__content__item div {
    border-bottom: 1px #DEDEDE solid;
  }
  .certificationt__content__item div:first-child {
    padding: 0 0 15px 0;
  }
  .certificationt__content__item div:not(:first-child) {
    padding: 12px 0;
  }
  .certificationt__content__item__title {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .certificationt__content__item__text {
    display: flex;
    align-items: center;
  }
  .certificationt__content__item__text span:first-child {
    position: relative;
    top: -3px;
    color: #000;
    font-size: 12px;
    font-weight: 500;
  }
  .certificationt__content__item__text span:not(:first-child) {
    display: inline-block;
    position: relative;
    top: 0;
    width: 65%;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 0 0 0 20px;
    margin: 0 auto;
  }
  .certificationt__button {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 40px;
    margin: 0 auto;
    padding: 15px 50px;
    background: #79ac78;
    color: #ffffff;
    font-size: 16px;
    z-index: 100;
    overflow: hidden;
  }
  .certificationt__button a {
    text-decoration: none;
    color: white;
  }
  .certificationt__button p {
    display: flex;
  }
  .certificationt__button p span {
    transition: 0.3s;
    font-size: 12px;
  }
  .certificationt__button p::before {
    content: "";
    display: block;
    border-radius: 20px;
    width: 7px;
    height: 7px;
    background: #ffffff;
    border: none;
    position: relative;
    left: 202px;
    top: 8px;
    z-index: 1000;
  }
  .certificationt__button p::after {
    content: "";
    display: block;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    background: #d0e7d2;
    position: relative;
    top: 2px;
    left: 33px;
    z-index: 100;
    transition: 0.5s;
    animation: scaleAnimation 0.65s infinite alternate;
  }
  .certificationt__button:hover {
    cursor: pointer;
  }
  .certificationt__button:hover p span {
    color: #79ac78;
    z-index: 500;
    transition: 0.8s;
  }
  .certificationt__button:hover p::after {
    transition: 0.8s;
    scale: 40;
    z-index: 0;
  }
  @keyframes scaleAnimation {
    0% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1.1);
    }
  }
  .news {
    width: 75%;
    margin: 0 auto 150px auto;
    font-weight: 700;
  }
  .news p {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
  }
  .news__title__en {
    color: #79ac78;
    font-size: 16px;
  }
  .news__title__ja h1 {
    color: #2f2626;
    font-size: 40px;
  }
  .news__button {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 40px;
    margin: 0 auto;
    padding: 15px 50px;
    background: #79ac78;
    color: #ffffff;
    font-size: 16px;
    z-index: 100;
    overflow: hidden;
  }
  .news__button a {
    text-decoration: none;
    color: white;
  }
  .news__button p {
    display: flex;
  }
  .news__button p span {
    transition: 0.3s;
  }
  .news__button p::before {
    content: "";
    display: block;
    border-radius: 20px;
    width: 7px;
    height: 7px;
    background: #ffffff;
    border: none;
    position: relative;
    left: 190px;
    top: 8px;
    z-index: 1000;
  }
  .news__button p::after {
    content: "";
    display: block;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    background: #d0e7d2;
    position: relative;
    top: 2px;
    left: 33px;
    z-index: 100;
    transition: 0.5s;
    animation: scaleAnimation 0.65s infinite alternate;
  }
  .news__button:hover {
    cursor: pointer;
  }
  .news__button:hover p span {
    color: #79ac78;
    z-index: 500;
    transition: 0.8s;
  }
  .news__button:hover p::after {
    transition: 0.8s;
    scale: 40;
    z-index: 0;
  }
  @keyframes scaleAnimation {
    0% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1.1);
    }
  }
  .news__content {
    display: flex;
    flex-wrap: wrap;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: center;
    margin: 40px auto 70px auto;
  }
  .news__content__one {
    display: block;
    width: 280px;
    height: 320px;
    border: 1px #d8d8d8 solid;
    border-radius: 20px;
    margin: 40px 0;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
  }
  .news__content__one:hover {
    scale: 0.9;
    transition: 0.3s;
  }
  .news__content__one:hover .news__content__one__thumbnail > img {
    scale: 0.8;
    transition: 0.3s;
  }
  .news__content__one__thumbnail > img {
    display: block;
    width: 288px;
    height: 160px;
    transition: 0.3s;
  }
  .news__content__one__info {
    display: flex;
    justify-content: space-between;
    border-top: 1px #d8d8d8 solid;
    padding: 12px 18px 10px;
  }
  .news__content__one__info__category {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 3px 15px 5px 15px;
    background: #79ac78;
    border-radius: 10px;
  }
  .news__content__one__info__category a {
    color: white;
    text-decoration: none;
    pointer-events: none;
  }
  .news__content__one__info__category ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .news__content__one__info__date {
    font-size: 14px;
    color: #797979;
    font-weight: 400;
    padding: 2px 0 0 0;
  }
  .news__content__one__title {
    line-height: 21px;
    font-weight: 400;
    font-size: 14px;
    padding: 0 18px;
  }
  .news__content__one__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
  }
  .title__sub {
    display: block;
    width: 80vw;
  }
  .title__sub::before {
    content: "";
    display: block;
    width: 500px;
    height: 2px;
    background: #dedede;
    position: relative;
    top: 14px;
    right: 530px;
  }
  .title__sub::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: #79ac78;
    position: relative;
    top: -11px;
    right: 30px;
    animation: slideBar 2s infinite;
  }
  @keyframes slideBar {
    0% {
      transform: translateX(-500px);
    }
    100% {
      transform: translateX(-24px);
    }
  }
  p.title__sub {
    width: 80vw;
  }
  .charge {
    width: 75%;
    margin: 0 auto 150px auto;
    font-weight: 700;
  }
  .charge p {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
  }
  .charge__title__en {
    color: #79ac78;
    font-size: 16px;
  }
  .charge__title__en p {
    width: 80vw;
  }
  .charge__title__ja h1 {
    color: #2f2626;
    font-size: 40px;
  }
  .charge__button {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 40px;
    margin: 50px auto;
    padding: 15px 50px;
    background: #79ac78;
    color: #ffffff;
    font-size: 16px;
    z-index: 100;
    overflow: hidden;
  }
  .charge__button a {
    text-decoration: none;
    color: white;
  }
  .charge__button p {
    display: flex;
  }
  .charge__button p span {
    transition: 0.3s;
    font-size: 12px;
  }
  .charge__button p::before {
    content: "";
    display: block;
    border-radius: 20px;
    width: 7px;
    height: 7px;
    background: #ffffff;
    border: none;
    position: relative;
    left: 107px;
    top: 8px;
    z-index: 1000;
  }
  .charge__button p::after {
    content: "";
    display: block;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    background: #d0e7d2;
    position: relative;
    top: 2px;
    left: 33px;
    z-index: 100;
    transition: 0.5s;
    animation: scaleAnimation 0.65s infinite alternate;
  }
  .charge__button:hover {
    cursor: pointer;
  }
  .charge__button:hover p span {
    color: #79ac78;
    z-index: 500;
    transition: 0.8s;
  }
  .charge__button:hover p::after {
    transition: 0.8s;
    scale: 40;
    z-index: 0;
  }
  @keyframes scaleAnimation {
    0% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1.1);
    }
  }
}/*# sourceMappingURL=home.css.map */