.top_wrapper {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #444;
}
/* kv */
.kv {
  padding: 0 30px;
  position: relative;
}
.kv_img {
  width: 100%;
  display: block;
}
.kv_point {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 36%;
  display: flex;
  justify-content: space-between;
}
.kv_point img {
  width: 31.12%;
}
.kv_text {
  font-size: 12px;
  color: #fff;
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 70%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .kv {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .kv_point {
    width: 88%;
    bottom: 5%;
  }
  .kv_text {
    font-size: 2.666666666666667vw;
    bottom: 1%;
    left: 50%;
  }
}

/* タブ */
.top_tab {
  margin: 60px 0;
}
.top_tab_box {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
  max-width: 950px;
  margin: auto;
}
.top_tab_item {
  border-radius: 15px;
  border: 2px solid #06c755;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  padding: 5px 0 10px;
  text-decoration: none;
  transition: .3s;
}
.top_tab_item:hover {
  opacity: .7;
}
.top_tab_item_text {
  color: #06c755;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 1px;
}
.top_tab_item_text:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("../images/top/arrow-right-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 1px;
}
.top_tab_item:nth-of-type(1) .top_tab_item_img {
  width: 112px;
}
.top_tab_item:nth-of-type(2) .top_tab_item_img {
  width: 58px;
}
.top_tab_item:nth-of-type(3) .top_tab_item_img {
  width: 88px;
}
.top_tab_item:nth-of-type(4) .top_tab_item_img {
  width: 34px;
}
.top_tab_item:nth-of-type(5) .top_tab_item_img {
  width: 39px;
}
@media screen and (max-width: 950px) {
  .top_tab_box {
    gap: 10px;
  }
  .top_tab_item_text {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .top_tab {
    margin: 30px 0;
  }
  .top_tab_box {
    grid-template-columns: repeat(2,1fr);
    max-width: 400px;
  }
  .top_tab_item:nth-of-type(5) {
    grid-column: span 2;
  }
}

/* About us */
.top_about {
  margin-top: 110px;
}
.top_about_title {
  font-size: 21px;
  text-align: center;
  margin-bottom: 7px;
}
.top_about_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}
.top_about_box_textbox {
  width: 51%;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}
.top_about_circle1 {
  position: absolute;
  z-index: -1;
  width: 94px;
  top: -50px;
  left: 31px;
}
.top_about_circle2 {
  position: absolute;
  z-index: -1;
  width: 268px;
  bottom: -125px;
  left: 50%;
  transform: translateX(-50%);
}
.top_about_box_image {
  width: 46.6%;
  position: relative;
}
.top_about_circle3 {
  position: absolute;
  z-index: 1;
  width: 120px;
  top: -60px;
  right: -2px;
}
.top_about_circle4 {
  position: absolute;
  z-index: 1;
  width: 142px;
  bottom: -105px;
  left: 65px;
}
.top_about_box_image_text {
  position: absolute;
  z-index: 2;
  width: 103.5%;
  max-width: inherit;
  bottom: -18%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .top_about {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .top_about_title {
    font-size: 16px;
  }
  .top_about_box {
    flex-direction: column-reverse;
    margin-top: 30px;
    gap: 70px;
  }
  .top_about_box_textbox {
    width: 100%;
    padding: 0 10px;
  }
  .top_about_circle1 {
    width: 22%;
    top: -8%;
    left: inherit;
    right: 5%;
    max-width: 80px;
  }
  .top_about_circle2 {
    width: 63%;
    bottom: -5%;
	  left: 70px;
    max-width: 220px;
  }
  .top_about_box_image {
    width: 100%;
  }
  .top_about_circle3 {
    width: 24%;
    top: -19%;
    right: -2px;
  }
  .top_about_circle4 {
    width: 30%;
    bottom: -31%;
    left: 14%;
  }
}

/* Scene */
.top_scene {
  margin-top: 230px;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f2fff7;
}
.top_scene_box_wrapper {
  background-color: #fff;
  padding: 80px 25px 75px;
  margin-top: 85px;
  position: relative;
  border-radius: 15px;
}
.top_scene_box_title {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.top_scene_box_title_text {
  font-weight: 400;
  font-size: 24px;
  color: #fff;
  line-height: 1;
  display: inline-block;
  padding: 10px 40px;
  clip-path: polygon(0 0, 100% 0, 93% 50%, 100% 100%, 0 100%, 7% 50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.top_scene_box_title_text_small {
  font-size: 18px;
  margin-top: 5px;
}
.top_scene_box {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px 22px;
}
.top_scene_box_item_text {
  font-size: 22px;
  text-align: center;
  margin-top: 5px;
}
.top_scene_box_bottom {
  max-width: 550px;
  margin: 45px auto 0;
  padding: 15px 10px;
}
.top_scene_box_bottom_text {
  text-align: center;
}
.top_scene_box_wrapper:nth-of-type(1) .top_scene_box_title {
  top: -20px;
}
.top_scene_box_wrapper:nth-of-type(1) .top_scene_box_title_text {
  background-color: #06c755;
}
.top_scene_box_wrapper:nth-of-type(1) .top_scene_box_item_text {
  color: #06c755;
}
.top_scene_box_wrapper:nth-of-type(1) .top_scene_box_bottom {
  border-top: 3px dotted #06c755;
  border-bottom: 3px dotted #06c755;
}
.top_scene_box_wrapper:nth-of-type(2) {
  padding-top: 95px;
}
.top_scene_box_wrapper:nth-of-type(2) .top_scene_box_title {
  top: -33px;
}
.top_scene_box_wrapper:nth-of-type(2) .top_scene_box_title_text {
  background-color: #ef91b5;
}
.top_scene_box_wrapper:nth-of-type(2) .top_scene_box_item_text {
  color: #ef91b5;
}
.top_scene_box_wrapper:nth-of-type(2) .top_scene_box_bottom {
  border-top: 3px dotted #ef91b5;
  border-bottom: 3px dotted #ef91b5;
}
@media screen and (max-width: 834px) {
  .top_scene_box_item_text {
    font-size: 16px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .top_scene {
    margin-top: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .top_scene_box_wrapper {
    padding: 50px 15px 45px;
    margin-top: 50px;
  }
  .top_scene_box {
    grid-template-columns: repeat(2,1fr);
    gap: 20px 10px;
  }
  .top_scene_box_title_text {
    font-size: 18px;
    white-space: nowrap;
    padding: 10px 30px;
  }
  .top_scene_box_title_text_small {
    font-size: 14px;
  }
  .top_scene_box_wrapper:nth-of-type(2) .top_scene_box_title {
    top: -29px;
  }
  .top_scene_box_wrapper:nth-of-type(2) {
    padding-top: 65px;
  }
  .top_scene_box_item_text {
    font-size: 12px;
    white-space: inherit;
  }
  .top_scene_box_bottom {
    margin: 30px auto 0;
    padding: 10px 10px;
  }
  .top_scene_box_bottom_text {
    font-size: 14px;
    text-align: left;
  }
}

/* News */
.top_news {
  margin-top: 65px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.news_box {
  margin-top: 100px;
  margin-bottom: 60px;
  display: grid;
  gap: 75px;
}
.news_box_item {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  text-decoration: none;
}
.news_box_item_image {
  width: 320px;
  position: relative;
}
.news_box_item_cat {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 13px;
  color: #444;
  background-color: #fff;
  padding: 0 5px;
}
.news_box_item_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_box_item_textbox {
  flex: 1;
}
.news_box_item_title {
  font-weight: 500;
  font-size: 20px;
  color: #06c755;
}
.news_box_item_text {
  color: #444;
}
@media screen and (max-width: 767px) {
  .top_news {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .news_box_item_image {
    width: 100%;
  }
  .news_box {
    margin-top: 50px;
    margin-bottom: 30px;
    gap: 30px;
  }
  .news_box_item {
    gap: 15px;
  }
  .news_box_item_title {
    font-size: 18px;
  }
}

/* Facebook */
.top_facebook {
  padding-top: 80px;
  padding-bottom: 80px;
}
.top_facebook_box {
  padding: 45px 15px 60px;
  background-color: #eaf3ff;
}
.top_facebook_title {
  text-align: center;
  margin-bottom: 20px;
}
.top_facebook_title span {
  font-size: 30px;
  color: #1877f2;
  display: inline-block;
}
.top_facebook_title span:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 28px;
  background-color: #1877f2;
  transform: translateY(2px) rotate(-15deg);
  margin-right: 20px;
}
.top_facebook_title span:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 28px;
  background-color: #1877f2;
  transform: translateY(2px) rotate(15deg);
  margin-left: 20px;
}
.top_facebook_iframe {
  max-width: 500px;
  margin: auto;
	text-align: center;
}
.top_facebook_iframe iframe {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 767px) {
  .top_facebook_box {
    padding: 30px 10px 40px;
  }
  .top_facebook_title {
    margin-bottom: 10px;
  }
  .top_facebook_title span {
    font-size: 18px;
  }
  .top_facebook_title span:before {
    height: 16px;
    margin-right: 10px;
  }
  .top_facebook_title span:after {
    height: 16px;
    margin-left: 10px;
  }
}

/* Message */
.top_message {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(90deg, rgba(172, 255, 206, .3) 0%, rgba(193, 225, 255, .3) 100%);
}
.top_message_box_wrapper {
  background-color: #fff;
  border-radius: 15px;
  padding: 50px 20px;
  position: relative;
}
.top_message_box_wrapper:before {
  content: "";
  width: 94px;
  height: 8px;
  background-color: #06c755;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top_message .top_section_title_ja:before {
  display: none;
}
.top_message_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}
.top_message_box_image {
  width: 37.6%;
  position: relative;
}
.top_message_box_image_text {
  position: absolute;
  bottom: -7%;
  left: 34%;
  width: 70%;
}
.top_message_box_textbox {
  width: 45%;
}
.top_message_box_textbox_title_sub {
  color: #00b900;
}
.top_message_box_textbox_title {
  font-size: 26px;
  color: #00b900;
  line-height: 1.5;
}
.top_message_box_textbox_text {
  margin: 15px 0 30px;
}
@media screen and (max-width: 767px) {
  .top_message {
    margin-top: 15px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .top_message_box_wrapper {
    border-radius: 15px;
    padding: 30px 15px;
  }
  .top_message_box {
    gap: 20px;
  }
  .top_message_box_image {
    width: 100%;
  }
  .top_message_box_textbox {
    width: 100%;
  }
  .top_message_btn_wrap {
    text-align: center;
  }
}

/* Area */
.top_area {
  margin-top: 30px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.top_area_text {
  max-width: 800px;
  margin: 30px auto 0;
}
.top_area_img {
  width: 100%;
  max-width: 915px;
  margin: 35px auto 50px;
}
.top_area_address {
  display: flex;
  align-items:stretch;
  justify-content: center;
  gap: 5px;
}
.top_area_address_title {
  font-weight: bold;
  background-color: #daf1e4;
  display: grid;
  place-items: center;
  padding: 20px;
}
.top_area_address_text {
  background-color: #f2f2f2;
  display: grid;
  place-items: center;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .top_area {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .top_area_img {
    margin: 15px auto 30px;
  }
  .top_area_address_title {
    font-size: 14px;
    padding: 10px;
    white-space: nowrap;
  }
  .top_area_address_text {
    font-size: 14px;
    padding: 10px;
  }
}


/* Price */
.top_price {
  margin-top: 30px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.top_price_text {
  font-size: 22px;
  text-align: center;
  margin: 50px auto 30px;
}
@media screen and (max-width: 767px) {
  .top_price {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .top_price_text {
    font-size: 16px;
    margin: 50px auto 30px;
  }
}

/* Flow */
.top_flow {
  margin-top: 70px;
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url(../images/top/flow-bg.jpg);
  background-size: cover;
  background-position: 83% bottom;
  background-repeat: no-repeat;
}
.top_flow_box {
  background-color: #fff;
  border-radius: 25px;
  padding: 60px 20px 70px;
}
.top_flow_list {
  margin: 65px auto 0;
  max-width: 800px;
  display: grid;
  gap: 25px;
  padding-left: 0;
  position: relative;
  z-index: 2;
}
.top_flow_list:before {
  content: "";
  width: 5px;
  height: 0;
  background-color: #06c755;
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 59px;
  z-index: -1;
  transition: 2s;
}
.top_flow_list.active:before {
  height: calc(100% - 4px);
}
.top_flow_list_item {
  display: flex;
  align-items: center;
  gap: 30px;
}
.top_flow_list_item_img {
  width: 122px;
}
.top_flow_list_item_text {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .top_flow {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 370px;
    background-position: 95% bottom;
  }
  .top_flow_box {
    padding: 30px 15px 40px;
  }
  .top_flow_list {
    margin-top: 30px;
    gap: 15px;
  }
  .top_flow_list:before {
    width: 3px;
    left: 26px;
  }
  .top_flow_list_item {
    gap: 15px;
  }
  .top_flow_list_item_img {
    width: 55px;
  }
  .top_flow_list_item_text {
    font-size: 16px;
  }
}

/* FAQ */
.top_faq {
  margin-top: 30px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.top_faq_box {
  max-width: 660px;
  margin: 50px auto 0;
  display: grid;
  gap: 10px;
}
.top_faq_item {
  background-color: #f3f3f3;
  border-radius: 10px;
  position: relative;
  padding: 14px 22px 14px 50px;
  cursor: pointer;
}
.top_faq_item:before {
  content: "+";
  font-size: 26px;
  color: #06c755;
  line-height: 1;
  position: absolute;
  top: 19px;
  left: 13px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}
.top_faq_item.active:before {
  content: "−";
  padding-top: 3px;
}
.top_faq_item_text {
  font-size: 22px;
  position: relative;
  padding-left: 1em;
}
.top_faq_item_text:before {
  font-size: 22px;
  line-height: 1.8;
  position: absolute;
  top: 0;
  left: 0;
}
.top_faq_item_q .top_faq_item_text:before {
  content: "Q.";
}
.top_faq_item_a .top_faq_item_text:before {
  content: "A.";
}
.top_faq_item_a {
  margin-top: 10px;
  display: none;
}
@media screen and (max-width: 767px) {
  .top_faq {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .top_faq_box  {
    margin-top: 30px;
  }
  .top_faq_item {
    padding: 12px 10px 12px 40px;
  }
  .top_faq_item:before {
    font-size: 22px;
    top: 13px;
    left: 9px;
  }
  .top_faq_item.active:before {
    padding-top: 0;
  }
  .top_faq_item_text {
    font-size: 16px;
  }
  .top_faq_item_text:before {
    font-size: 16px;
  }
}

