/*
Theme Name: テーマの名前（必須）
Theme URL: テーマのサイトのURI
*/
@charset "UTF-8";
img {
  max-width: 100%;
  height: auto;
}

html {
  overflow-x: hidden;
}

body {
  overflow: hidden;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-family: "Noto Sans JP", "Noto Sans", serif;
  font-size: 600;
}

.wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 2%;
}

p {
  line-height: 1.5;
  font-size: 16px;
  color: #2e2e2e;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 14px;
  }
}

span {
  line-height: 1.5;
  font-size: 16px;
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.pagetitle h2 {
  color: #338751;
  font-size: 70px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pagetitle h2 {
    font-size: 40px;
  }
}
.pagetitle span {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  color: #2e2e2e;
  margin-top: -12px;
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  .pagetitle span {
    font-size: 16px;
  }
}

.slider {
  height: 53vw;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 80vw;
}

.slick-img img {
  width: 100%;
}

.add-animation {
  -webkit-animation: zoomUp 12s linear 0s normal both;
  animation: zoomUp 12s linear 0s normal both;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); /* 拡大率 */
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); /* 拡大率 */
  }
}
header {
  position: fixed;
  top: 0;
  z-index: 300;
  width: 100%;
  background-color: #fff;
}
header .header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
header .header__inner .header__inner-logo img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 64px;
}
header .header__inner .header__inner-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0px;
}
@media screen and (max-width: 768px) {
  header .header__inner .header__inner-nav {
    display: none;
  }
}
header .header__inner .header__inner-nav a {
  padding: 20px 8px;
  font-weight: bold;
  color: #0f0f0f;
}
header .header__inner .header__inner-nav a.header__inner-nav-tel {
  background-color: rgb(253, 59, 0);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 10px;
  gap: 4px;
  text-align: center;
  color: #fff;
}
header .header__inner .header__inner-nav a.header__inner-nav-tel svg {
  width: 30px;
}
header .header__inner .header__inner-nav a.header__inner-nav-tel span {
  display: block;
}
header
  .header__inner
  .header__inner-nav
  a.header__inner-nav-tel
  span:nth-of-type(2) {
  font-size: 12px;
}
header .header__inner .header__inner-nav a.header__inner-nav-contact {
  background-color: rgb(0, 209, 10);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 10px;
  gap: 4px;
  color: #fff;
}
header .header__inner .header__inner-nav a.header__inner-nav-contact svg {
  width: 30px;
}
header .header__inner .header__inner-nav.header__inner-nav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  header .header__inner .header__inner-nav.header__inner-nav-sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 102vw;
    height: 100vh;
    top: 50%;
    background-color: #ffffff;
  }
  header .header__inner .header__inner-nav.header__inner-nav-sp a {
    color: #2e2e2e;
    border-bottom: 1px solid #0f0f0f;
    margin: 10px;
    padding: 10px;
  }
  header
    .header__inner
    .header__inner-nav.header__inner-nav-sp
    .header__inner-nav-sp-title {
    font-size: 30px;
    font-weight: bold;
    padding-left: 20px;
  }
  header
    .header__inner
    .header__inner-nav.header__inner-nav-sp
    .header__inner-nav-tel {
    border: none;
  }
  header
    .header__inner
    .header__inner-nav.header__inner-nav-sp
    .header__inner-nav-contact {
    border: none;
  }
}
header .header__inner .hamburger {
  position: relative;
	z-index: 999;
  right: 20px;
  display: none;
}
@media screen and (max-width: 768px) {
  header .header__inner .hamburger {
    display: block;
  }
}
header .header__inner .hamburger span {
  width: 30px;
  height: 2px;
  background-color: #000;
  position: relative;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
  z-index: 200;
}
header .header__inner .hamburger span:nth-child(1) {
  top: 0;
}
header .header__inner .hamburger span:nth-child(2) {
  margin: 8px 0;
}
header .header__inner .hamburger span:nth-child(3) {
  top: 0;
}
header .header__inner .header__nav.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
header .header__inner .hamburger.active span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .header__inner .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .header__inner .hamburger.active span:nth-child(3) {
  top: -11px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .header__inner .header__inner-nav.active {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  header .header__inner .header__inner-nav {
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}

.top-area {
  position: relative;
  overflow: hidden;
}
.top-area .MV__inner-decoration {
  position: absolute;
  top: 0;
  left: -13.8888888889vw;
  background-color: rgb(0, 209, 10);
  width: 27.7777777778vw;
  z-index: 104;
  height: 138.8888888889vw;
  opacity: 0.9;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.top-area .MV__inner-decoration3 {
  position: absolute;
  bottom: 0;
  right: -31.25vw;
  background-color: rgb(255, 255, 255);
  width: 27.7777777778vw;
  height: 138.8888888889vw;
  z-index: 100;
  opacity: 0.9;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

#MV .MV__inner {
  height: 100vh;
  position: relative;
}
#MV .MV__inner .MV__inner-decoration2 {
  position: absolute;
  bottom: 0;
  right: 0px;
  background-color: rgb(255, 255, 255);
  width: 100%;
  z-index: 80;
  height: 120px;
  opacity: 0.7;
}
#MV .MV__inner::before {
  position: absolute;
  content: "";
  bottom: 40px;
  right: 6%;
  background-image: url("img/circle.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 200px;
  z-index: 120;
  -webkit-animation: 16s linear infinite rotation;
  animation: 16s linear infinite rotation;
}
@media screen and (max-width: 768px) {
  #MV .MV__inner::before {
    width: 100px;
    height: 100px;
    bottom: 80px;
  }
}
#MV .MV__inner .slick {
  height: 100%;
  overflow: hidden;
}
#MV .MV__inner .slick .slick-list {
  height: 100%;
}
#MV .MV__inner .slick .slick-track {
  height: 100%;
  overflow: hidden;
}
#MV .MV__inner .slick .slick__bg {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
#MV .MV__inner .slick .slick__bg01 {
  background-image: url("img/MV1.webp");
  background-position: bottom;
}
#MV .MV__inner .slick .slick__bg02 {
  background-image: url("img/MV2.webp");
}
#MV .MV__inner .MV__inner-title {
  position: absolute;
  bottom: 30vh;
  left: 13.8888888889vw;
  z-index: 110;
  color: rgb(255, 255, 255);
}
#MV .MV__inner .MV__inner-title span {
  display: block;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  #MV .MV__inner .MV__inner-title {
    margin-left: auto;
    margin-right: auto;
  }
}
#MV .MV__inner .MV__inner-title .MV__inner-title-logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#MV .MV__inner .MV__inner-title .MV__inner-title-logo h1 {
  font-size: 100px;
}
#MV .MV__inner .MV__inner-title .MV__inner-title-logo h1 img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 300px;
}
.header__inner-logo{
	width: 130px;
}
.footer-item{
	width: 130px;
}
.footer-item.footer-item--right{
	width: fit-content;
}
@media screen and (max-width: 768px) {
  #MV .MV__inner .MV__inner-title .MV__inner-title-logo h1 img {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  #MV .MV__inner .MV__inner-title .MV__inner-title-logo h1 {
    font-size: 40px;
  }
}
#MV .MV__inner .MV__inner-title .MV__inner-title-logo span {
  font-size: 24px;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  #MV .MV__inner .MV__inner-title .MV__inner-title-logo span {
    font-size: 20px;
    margin-top: 0;
  }
}
#MV .MV__inner .MV__inner-title .MV__inner-title-text {
  margin-top: 20px;
}
#MV
  .MV__inner
  .MV__inner-title
  .MV__inner-title-text
  .MV__inner-title-text--big {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(70%, transparent),
    color-stop(70%, #008807)
  );
  background: -webkit-linear-gradient(transparent 70%, #008807 70%);
  background: linear-gradient(transparent 70%, #008807 70%);
  font-size: 80px;
  line-height: 1;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 900px) {
  #MV
    .MV__inner
    .MV__inner-title
    .MV__inner-title-text
    .MV__inner-title-text--big {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  #MV
    .MV__inner
    .MV__inner-title
    .MV__inner-title-text
    .MV__inner-title-text--big {
    font-size: 30px;
  }
}
#MV
  .MV__inner
  .MV__inner-title
  .MV__inner-title-text
  .MV__inner-title-text--small {
  margin-top: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  #MV
    .MV__inner
    .MV__inner-title
    .MV__inner-title-text
    .MV__inner-title-text--small {
    font-size: 16px;
  }
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#contact {
  background-color: #bdbdbd;
}
@media screen and (max-width: 768px) {
  #contact {
    padding: 20px 0;
  }
}
#contact .contact__inner {
  padding: 100px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("img/contact-img.jpg");
  background-blend-mode: overlay; /* 合成モード：multiply（乗算） */
}
@media screen and (max-width: 768px) {
  #contact .contact__inner {
    gap: 2%;
    row-gap: 30px;
  }
}
#contact .contact__inner .contact__inner-item {
  width: 49%;
  min-width: 360px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#contact .contact__inner .contact__inner-item p {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contact .contact__inner .contact__inner-item p {
    font-size: 16px;
  }
}
#contact .contact__inner .contact__inner-item .contact__inner-item-img--top {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  padding: 14px 10px;
  border-radius: 20px;
  position: relative;
  z-index: 200;
}
#contact .contact__inner .contact__inner-item .contact__inner-item-img {
  width: 100px;
  height: 100px;
  padding: 10px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  #contact .contact__inner .contact__inner-item .contact__inner-item-img {
    height: 60px;
    width: 60px;
  }
}
#contact .contact__inner .contact__inner-item .contact__inner-item-link {
  margin-top: 10px;
  background-color: rgb(75, 75, 75);
  border-radius: 10px;
  position: relative;
  z-index: 200;
}
@media screen and (max-width: 768px) {
  #contact .contact__inner .contact__inner-item .contact__inner-item-link {
    padding: 0 30px;
  }
}
#contact .contact__inner .contact__inner-item .contact__inner-item-link P {
  color: #fff;
  max-width: 360px;
  width: 100%;
  padding: 20px 40px;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contact .contact__inner .contact__inner-item .contact__inner-item-link P {
    font-size: 16px;
    padding: 10px;
  }
}
.how {
  background-color: #338751;
  padding: 70px 0;
}
.how .how__inner h2 {
  text-align: center;
  font-size: 32px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .how .how__inner h2 {
    font-size: 20px;
  }
}
.how .how__inner .how__inner-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  color: #fff;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .how .how__inner .how__inner-list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}
.how .how__inner .how__inner-list .how__inner-list-item {
  width: 32%;
  height: 100%;
  position: relative;
  min-width: 150px;
}
.how .how__inner .how__inner-list .how__inner-list-item p {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .how .how__inner .how__inner-list .how__inner-list-item p {
    font-size: 16px;
  }
}

#service {
  position: relative;
  margin-top: 70px;
}
#service::before {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0px;
  background-color: #b4e4c4;
  width: 80vw;
  height: 100%;
  z-index: 1;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
#service .service__inner {
  position: relative;
  z-index: 20;
}
#service .service__inner .service__inner-content .service__inner-content-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  #service
    .service__inner
    .service__inner-content
    .service__inner-content-list {
    row-gap: 20px;
  }
}
#service
  .service__inner
  .service__inner-content
  .service__inner-content-list
  .service__inner-content-list-item {
  border: 6px solid #2e2e2e;
  width: 30%;
  border-radius: 20px;
  text-align: center;
  -webkit-box-shadow: 0 0 20px #bdbdbd;
  box-shadow: 0 0 20px #bdbdbd;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #service
    .service__inner
    .service__inner-content
    .service__inner-content-list
    .service__inner-content-list-item {
    width: 45%;
  }
}
#service
  .service__inner
  .service__inner-content
  .service__inner-content-list
  .service__inner-content-list-item
  .service__inner-content-list-item-img
  img {
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}
@media screen and (max-width: 768px) {
  #service
    .service__inner
    .service__inner-content
    .service__inner-content-list
    .service__inner-content-list-item
    .service__inner-content-list-item-img
    img {
    height: 150px;
  }
}
#service
  .service__inner
  .service__inner-content
  .service__inner-content-list
  .service__inner-content-list-item
  h3 {
  position: relative;
  text-align: center;
  display: inline-block;
  top: -12px;
  background: #338751;
  color: #fff;
  padding: 2px 20px;
  border-radius: 20px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #service
    .service__inner
    .service__inner-content
    .service__inner-content-list
    .service__inner-content-list-item
    h3 {
    font-size: 14px;
    padding: 2px 10px;
  }
}
#service
  .service__inner
  .service__inner-content
  .service__inner-content-list
  .service__inner-content-list-item
  p {
  margin: 0px 16px 10px 16px;
  text-align: left;
}
#service
  .service__inner
  .service__inner-content
  .service__inner-content-list
  .service__inner-content-list-item--last {
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #service
    .service__inner
    .service__inner-content
    .service__inner-content-list
    .service__inner-content-list-item--last {
    width: 45%;
  }
}
#service
  .service__inner
  .service__inner-content
  .service__inner-content-list
  .service__inner-content-list-item--last
  .service__inner-content-list-item-img {
  width: 90%;
  display: inline-block;
  margin-top: 20px;
}
#strengths {
  position: relative;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  #strengths {
    overflow-y: hidden;
  }
}
#strengths .strengths-area {
  position: relative;
  z-index: 20;
}
#strengths .strengths-area .strengths__title-text {
  margin-bottom: 42px;
  z-index: 10;
  position: relative;
}
#strengths .strengths-area .strengths__list .strength__list-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #strengths .strengths-area .strengths__list .strength__list-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    row-gap: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #strengths
    .strengths-area
    .strengths__list
    .strength__list-card.strength__list-card-sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: column-reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }
}
#strengths
  .strengths-area
  .strengths__list
  .strength__list-card
  .strength__list-card-img {
  width: 48%;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 768px) {
  #strengths
    .strengths-area
    .strengths__list
    .strength__list-card
    .strength__list-card-img {
    width: 90%;
  }
}
#strengths
  .strengths-area
  .strengths__list
  .strength__list-card
  .strength__list-card-img
  img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 400px;
  -o-object-position: center;
  object-position: center;
}
@media screen and (max-width: 768px) {
  #strengths
    .strengths-area
    .strengths__list
    .strength__list-card
    .strength__list-card-img
    img {
    height: 200px;
    -o-object-position: top;
    object-position: top;
  }
}
#strengths
  .strengths-area
  .strengths__list
  .strength__list-card
  .strength__list-card-text {
  width: 48%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #strengths
    .strengths-area
    .strengths__list
    .strength__list-card
    .strength__list-card-text {
    width: 90%;
  }
}
#strengths
  .strengths-area
  .strengths__list
  .strength__list-card
  .strength__list-card-text::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #b4e4c4;
  background-repeat: no-repeat;
  background-size: contain;
  width: 600px;
  height: 600px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #strengths
    .strengths-area
    .strengths__list
    .strength__list-card
    .strength__list-card-text::before {
    width: 100%;
    height: 90vw;
  }
}
#strengths
  .strengths-area
  .strengths__list
  .strength__list-card
  .strength__list-card-text
  h3 {
  border-bottom: 2px solid #2e2e2e;
  padding-bottom: 4px;
  letter-spacing: 0.05em;
  font-size: 20px;
  z-index: 10;
  position: relative;
}
#strengths
  .strengths-area
  .strengths__list
  .strength__list-card
  .strength__list-card-text
  p {
  margin-top: 10px;
  line-height: 2;
  z-index: 10;
  position: relative;
}

#summary {
  background-color: rgba(112, 112, 112, 0.1843137255);
  padding: 40px 0;
}
#summary .summary-content {
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  #summary .summary-content {
    padding: 52px 24px 76px 24px;
  }
}
#summary .summary-content .summary-content__list {
  background-color: #ffffff;
  border: 4px solid #338751;
  border-radius: 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 44px 68px 48px 68px;
  font-size: 1rem;
  color: #0f0f0f;
  font-weight: bold;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  #summary .summary-content .summary-content__list {
    padding: 20px 0 28px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 802px) {
  #summary .summary-content .summary-content__list {
    padding: 44px 28px 48px 28px;
  }
}
#summary .summary-content .summary-content__list .summary-content__list-title {
  width: 20%;
  border-bottom: 1px solid #338751;
  line-height: 1.8;
  letter-spacing: 0.02em;
  padding-bottom: 5.5px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #summary
    .summary-content
    .summary-content__list
    .summary-content__list-title {
    border-bottom: none;
    width: 100%;
    margin-bottom: 0px;
    padding-bottom: 0;
  }
}
#summary
  .summary-content
  .summary-content__list
  .summary-content__list-title:last-of-type {
  margin-bottom: 0;
}
#summary .summary-content .summary-content__list .summary-content__list-text {
  width: 80%;
  border-bottom: 1px solid #338751;
  line-height: 1.8;
  letter-spacing: 0.02em;
  padding-bottom: 5px;
  margin: 0 0 30px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 59px;
}
@media screen and (max-width: 768px) {
  #summary .summary-content .summary-content__list .summary-content__list-text {
    margin-bottom: 26px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 90%;
    display: inline-block;
    gap: 0;
  }
}
#summary
  .summary-content
  .summary-content__list
  .summary-content__list-text:last-child {
  margin-bottom: 0;
}
#summary
  .summary-content
  .summary-content__list
  .summary-content__list-text
  .summary-content__list-text-map
  a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 9.5px;
  background: #338751;
  color: #ffffff;
  padding: 12px 42px 12px 34px;
  border-radius: 27px;
}
@media screen and (max-width: 768px) {
  #summary
    .summary-content
    .summary-content__list
    .summary-content__list-text
    .summary-content__list-text-map
    a {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding: 14px 38px 12px 42px;
    margin-top: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#summary
  .summary-content
  .summary-content__list
  .summary-content__list-text
  .summary-content__list-text-map
  a
  p {
  color: #fff;
}
#summary
  .summary-content
  .summary-content__list
  .summary-content__list-text
  .summary-content__list-text-map
  a
  .summary-content__list-text-map-img {
  line-height: 22.53px;
}

#Form {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  #Form {
    width: 90%;
    margin: 0 auto;
  }
}
#Form .Form {
  margin: 80px auto 0;
  max-width: 720px;
}
@media screen and (max-width: 800px) {
  #Form .Form {
    margin-top: 40px;
  }
}
#Form .Form-Item {
  border-top: 1px solid #ddd;
  padding: 24px 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  #Form .Form-Item {
    padding: 16px 14px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
#Form .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
#Form .Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 800px) {
  #Form .Form-Item-Label {
    max-width: inherit;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
  }
}
#Form .Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 800px) {
  #Form .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
#Form .Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding: 8px 0;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #338751;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  #Form .Form-Item-Label-Required {
    border-radius: 4px;
    padding: 4px 0;
    width: 32px;
    font-size: 10px;
  }
}
#Form .Form-Item-Input,
#Form .Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding: 0 1em;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 800px) {
  #Form .Form-Item-Input,
  #Form .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    font-size: 15px;
  }
}
#Form .Form-Item-Input {
  height: 48px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  max-width: 410px;
}
@media screen and (max-width: 800px) {
  #Form .Form-Item-Input {
    height: 40px;
    -webkit-box-flex: inherit;
    -webkit-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
  }
}
#Form .Form-Item-Textarea {
  height: 216px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  max-width: 410px;
}
@media screen and (max-width: 800px) {
  #Form .Form-Item-Textarea {
    height: 200px;
    -webkit-box-flex: inherit;
    -webkit-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
  }
}
#Form .Form-Btn {
  border-radius: 6px;
  margin: 32px auto 0;
  padding: 20px 0;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #338751;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 800px) {
  #Form .Form-Btn {
    margin-top: 24px;
    padding: 8px 0;
    width: 160px;
    font-size: 16px;
  }
}

footer {
  background-color: #b4e4c4;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 40px 0 0 0;
  }
}
footer .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  max-width: 600px;
}
footer .wrapper .footer-item .footer-logo img {
  height: 64px;
}
footer .wrapper .footer-item h3 {
  font-size: 30px;
}
footer .wrapper .footer-item li {
  font-size: 20px;
}
footer .wrapper .footer-item li a {
  font-size: 16px;
}
footer .copy {
  text-align: center;
  display: block;
} /*# sourceMappingURL=style.css.map */
