@charset "UTF-8";
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: calc(10px + 0.5vw);
  line-height: 1.75;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  width: 100%;
  transition: ease-in-out 1s;
}

a {
  transition: all 1s;
}

a:hover {
  opacity: 0.4;
}

.--orange {
  color: #ee7d50;
}

.--green {
  color: #68b82e;
}

.--bg_orange {
  background-color: #ee7d50;
}

.--bg_orange2 {
  background-color: #fdf7f0;
}

.--bg_green {
  background-color: #68b82e;
}

.round_top {
  width: 100%;
}

.round_bottom {
  position: relative;
  transform: rotate(180deg);
  width: 100%;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: white;
  position: fixed;
  width: 100%;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  header {
    justify-content: left;
    padding-left: 2em;
  }
}
header .top_logo {
  width: 20%;
}
@media only screen and (max-width: 768px) {
  header .top_logo {
    width: 60%;
  }
}
header .pc_nav {
  width: 60%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
header .pc_nav .nav_list {
  color: black;
  font-weight: bold;
}
header .pc_nav .tel_frame {
  background-color: #ee7d50;
  border-radius: 4em;
  width: 14em;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: white;
}
header .pc_nav .tel_frame .tel_box {
  line-height: 1;
  padding: 0.5em 0;
  text-align: center;
}
header .pc_nav .tel_frame .tel_icon {
  width: 2em;
  border-right: 1px solid white;
  padding-right: 0.5em;
}
header .pc_nav .tel_frame .tel_num {
  font-weight: bold;
  font-size: calc(12px + 0.6vw);
}
@media only screen and (max-width: 768px) {
  header .pc_nav {
    display: none;
  }
}

/* sp-nav(ナビ) */
/*hamburger(ハンバーガーアイコン)*/
.hamburger {
  position: fixed;
  right: 20px;
  top: 20px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 45px;
  height: 5px;
  right: 0;
  background-color: #ee7d50;
  transition: all 0.5s;
  border-radius: 2px;
}

.hamburger__line--1 {
  top: 1px;
}

.hamburger__line--2 {
  top: 16px;
}

.hamburger__line--3 {
  top: 32px;
}

.hamburger_menu {
  position: absolute;
  top: 36px;
  left: -36px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 11px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 11px;
}

.open .hamburger_menu {
  color: #fdf7f0;
}
.open .hamburger_menu::before {
  content: "Close";
  position: absolute;
  color: black;
}

#nav-wrapper {
  background: #fdf7f0;
  position: fixed;
  width: 85px;
  top: 0;
  right: 0;
  z-index: 15;
  height: 80px;
  border-radius: 5px;
  display: none;
}
@media only screen and (max-width: 768px) {
  #nav-wrapper {
    display: block;
  }
}

.sp-nav {
  position: fixed;
  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 80%; /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #fdf7f0;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  text-align: center;
}
.sp-nav .sp_nav_img {
  width: 20%;
  bottom: 5%;
  left: -10%;
}
.sp-nav ul {
  margin: 10vh 5vw 2vh;
  padding: 2vw;
  border-radius: 10px;
}
.sp-nav li {
  padding: 5vw 1vw;
  padding-left: 10%;
  border-bottom: 1px solid #ee7d50;
}
.sp-nav li a {
  color: black;
  font-size: calc(16px + 1vw);
  font-weight: bold;
}
.sp-nav li .arrow::after {
  border-color: #ee7d50;
}
.sp-nav li:last-child {
  border: none;
}
.sp-nav .sp_contact {
  margin: 5vh 2vh;
}
.sp-nav .sp_contact a {
  color: white;
  font-weight: bold;
}
.sp-nav p {
  width: 100%;
  margin: auto;
  text-align: center;
  font-weight: bold;
}

.contact_wrapper {
  display: flex;
  justify-content: space-evenly;
  margin-top: 4em;
}
.contact_wrapper .contact_frame {
  border-radius: 4em;
  width: 30%;
  padding: 1em 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.contact_wrapper .contact_frame .contact_icon {
  width: 2em;
  border-right: 1px solid white;
  padding-right: 1em;
}
.contact_wrapper .contact_frame .contact_txt {
  padding-left: 1em;
  color: white;
  font-size: calc(12px + 1vw);
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .contact_wrapper {
    display: block;
  }
  .contact_wrapper .contact_frame {
    width: 80%;
    margin: 0 auto 2em;
  }
}

.sp_contact {
  font-size: calc(12px + 1vw);
}
.sp_contact .contact_wrapper .contact_frame {
  margin: 0.5em auto;
}
.sp_contact .contact_wrapper .contact_frame a {
  color: white;
  border-color: white;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}

/* black-bg(ハンバーガーメニュー解除用bg) */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.6;
  visibility: visible;
}

main {
  display: flex;
  justify-content: center;
  position: relative;
}
main .top_img_left {
  width: 30%;
  position: relative;
}
main .top_img_left .walk_img,
main .top_img_left .walk_img2 {
  position: absolute;
  width: 17%;
  top: 50%;
  right: 0;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  main .top_img_left .walk_img,
main .top_img_left .walk_img2 {
    width: 20%;
  }
}
main .top_img_left .walk_img2 {
  top: 80%;
}
main .top_img_left .top_img_leftup {
  margin-top: 2em;
  width: 90%;
  position: relative;
}
main .top_img_left .top_box {
  margin-top: 2em;
  display: flex;
  position: relative;
}
main .top_img_left .top_box .chat_img {
  position: absolute;
  width: 25%;
  bottom: 0;
  left: 25%;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  main .top_img_left .top_box .chat_img {
    display: none;
  }
}
main .top_img_left .top_box .top_phrase {
  font-size: calc(12px + 0.6vw);
  font-weight: bold;
  color: #ee7d50;
  width: 40%;
  line-height: 2;
}
main .top_img_left .top_box .top_img_leftdown {
  width: 60%;
}
main .top_img_right {
  width: 50%;
  margin: 0 0 0 4em;
}
main .top_img_right img:nth-of-type(1) {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
main .chat2_img {
  position: absolute;
  width: 12%;
  right: 5%;
  bottom: -5%;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  main .chat2_img {
    width: 25%;
  }
}
main img {
  border-radius: 1em;
}
@media only screen and (max-width: 768px) {
  main {
    flex-wrap: wrap;
  }
  main .top_img_left {
    width: 90%;
  }
  main .top_img_left .top_img_leftup {
    width: 100%;
  }
  main .top_img_left .top_img_leftdown {
    padding-top: 4em;
  }
  main .top_img_left .top_box .top_phrase {
    font-size: calc(16px + 1vw);
    width: 50%;
  }
  main .top_img_right {
    width: 45%;
    z-index: 2;
    margin-top: -2em;
    padding-right: 40%;
  }
}

.--section_center {
  width: 80%;
  padding: 3% 10% 7%;
}
@media only screen and (max-width: 768px) {
  .--section_center {
    width: 90%;
    padding: 5%;
  }
}

.about_section {
  display: flex;
  justify-content: space-evenly;
  padding-top: 4em;
}
.about_section .about_frame {
  width: 45%;
}
.about_section .about_frame .about_ttl {
  font-size: calc(12px + 0.6vw);
  font-weight: bold;
}
.about_section .about_frame .about_subttl {
  font-weight: bold;
  color: #68b82e;
  margin: 1.5em 0;
}
.about_section .about_imgs {
  width: 45%;
  display: flex;
  justify-content: space-evenly;
}
.about_section .about_imgs img {
  border-radius: 0.5em;
}
.about_section .about_imgs .about_img_left_frame {
  width: 45%;
}
.about_section .about_imgs .about_img_left_frame .about_img_left {
  margin-top: 1.5em;
  position: relative;
}
.about_section .about_imgs .about_img_left_frame .about_img_left .walk_img {
  position: absolute;
  width: 20%;
  bottom: -30%;
  right: -20%;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  .about_section .about_imgs .about_img_left_frame .about_img_left .walk_img {
    width: 35%;
  }
}
.about_section .about_imgs .about_img_right {
  width: 45%;
  position: relative;
}
.about_section .about_imgs .about_img_right .right_pic {
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_section .about_imgs .about_img_right .wheel_img {
  position: absolute;
  width: 25%;
  bottom: -8%;
  right: 10%;
}
@media only screen and (max-width: 768px) {
  .about_section .about_imgs .about_img_right .wheel_img {
    width: 35%;
  }
}
@media only screen and (max-width: 768px) {
  .about_section {
    display: block;
  }
  .about_section .about_frame {
    width: 100%;
  }
  .about_section .about_imgs {
    width: 100%;
    padding-top: 2em;
  }
}

.section_ttl_frame {
  text-align: center;
  padding: 2em;
}
.section_ttl_frame .ttl_roof {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
}
.section_ttl_frame .ttl_roof .line {
  width: 3.5em;
  height: 5px;
  border-radius: 10px;
}
.section_ttl_frame .ttl_roof .line.--left {
  transform: rotate(-20deg) translateX(4px);
}
.section_ttl_frame .ttl_roof .line.--right {
  transform: rotate(20deg) translateX(-4px);
}
.section_ttl_frame .ttl_en {
  font-size: calc(10px + 0.2vw);
  font-weight: bold;
}
.section_ttl_frame .ttl_jp {
  font-size: calc(16px + 1vw);
  font-weight: bold;
}

.strength_wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
}
.strength_wrapper .strength_frame {
  width: 25%;
  background-color: white;
  text-align: center;
  padding: 0 2em 2em 2em;
  border-radius: 0.5em;
  margin-bottom: 2em;
}
.strength_wrapper .strength_frame .strength_num {
  width: 4em;
  height: 2em;
  background-color: #ee7d50;
  border-radius: 0 0 5em 5em;
  color: white;
  font-size: calc(12px + 1vw);
  font-weight: bold;
  margin: auto;
  position: relative;
}
.strength_wrapper .strength_frame .strength_num::before {
  width: 200%;
  height: 6px;
  border-radius: 5px;
  background-color: #ee7d50;
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
}
.strength_wrapper .strength_frame .strength_icon {
  display: flex;
  align-items: center;
  width: 3.5em;
  height: 4em;
  margin: auto;
  margin-top: 1em;
}
.strength_wrapper .strength_frame .strength_ttl {
  font-weight: bold;
  margin: 1em 0;
}
.strength_wrapper .strength_frame .strength_txt {
  text-align: start;
}
@media only screen and (max-width: 768px) {
  .strength_wrapper .strength_frame {
    width: 40%;
    padding: 0 1em 1em 1em;
  }
}

.inst_area {
  padding: 5% 10%;
  width: 80%;
}
.inst_area .inst_wrapper {
  display: flex;
  justify-content: space-evenly;
}
.inst_area .inst_wrapper .inst_imgs {
  width: 50%;
}
.inst_area .inst_wrapper .inst_imgs .house_slide_top img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1em;
  height: 50vh;
}
.inst_area .inst_wrapper .inst_imgs .house_slide_bottom {
  margin-top: 0.5em;
}
.inst_area .inst_wrapper .inst_imgs .house_slide_bottom .swiper-slide {
  margin-top: 0.5em;
  opacity: 0.4;
}
.inst_area .inst_wrapper .inst_imgs .house_slide_bottom .swiper-slide img {
  border-radius: 0.2em;
}
.inst_area .inst_wrapper .inst_imgs .house_slide_bottom .swiper-slide-thumb-active {
  opacity: 1;
}
.inst_area .inst_wrapper .inst_frame {
  width: 40%;
}
.inst_area .inst_wrapper .inst_frame .inst_ttl {
  font-size: calc(12px + 0.6vw);
  font-weight: bold;
  margin-bottom: 1em;
}
.inst_area .inst_wrapper .inst_frame .inst_ttl .tag {
  color: white;
  font-weight: bold;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  margin-right: 0.5em;
  font-size: calc(10px + 0.4vw);
}
.inst_area .inst_wrapper .inst_frame .inst_ttl .tag.--male {
  background-color: #0075c0;
}
.inst_area .inst_wrapper .inst_frame .inst_ttl .tag.--female {
  background-color: #e36060;
}
.inst_area .inst_wrapper .inst_frame .inst_ttl .tag.--sale {
  background-color: #ee7d50;
}
.inst_area .inst_wrapper .inst_frame .inst_ttl .tag.--full {
  background-color: gray;
}
.inst_area .inst_wrapper .inst_frame .inst_contents {
  display: flex;
  margin-top: 0.5em;
}
.inst_area .inst_wrapper .inst_frame .inst_contents .ttl {
  font-weight: bold;
  margin-right: 1em;
  width: 15%;
}
.inst_area .inst_wrapper .inst_frame .inst_contents .txt {
  width: 85%;
}
@media only screen and (max-width: 768px) {
  .inst_area .inst_wrapper {
    display: block;
  }
  .inst_area .inst_wrapper .inst_imgs {
    width: 100%;
  }
  .inst_area .inst_wrapper .inst_frame {
    padding-top: 2em;
    width: 100%;
  }
}
.inst_area .inst_box {
  margin-top: 1em;
  background-color: #fdf7f0;
  border-radius: 1em;
  padding: 2em;
  font-size: calc(10px + 0.2vw);
  line-height: 2;
  position: relative;
}
.inst_area .inst_box .fee_ttl {
  font-size: calc(10px + 0.4vw);
  font-weight: bold;
  margin: 1em 0;
  width: 9em;
  text-align: center;
  margin: auto;
  background: linear-gradient(transparent 60%, #ee7d50 60% 80%, transparent 80%);
}
.inst_area .inst_box .fee_icon {
  position: absolute;
  width: 15%;
  right: 5%;
  bottom: -15%;
  transform: translateY(50%);
}
.inst_area .more_frame {
  padding: 1em 4em;
  border-radius: 5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #68b82e;
  margin: 2em auto;
  font-size: calc(12px + 0.6vw);
  font-weight: bold;
  color: white;
  text-align: center;
  position: relative;
  display: block;
}
.inst_area .more_frame::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 3em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg) translateY(-70%);
  transition: all 1s;
}
.inst_area .more_frame:hover::after {
  right: 2.5em;
}

.inst_area:nth-of-type(2n-1) {
  background-color: #fdf7f0;
}
.inst_area:nth-of-type(2n-1) .inst_wrapper .inst_frame .inst_box {
  background-color: white;
}
.inst_area:nth-of-type(2n-1) .more_frame {
  background-color: #ee7d50;
}

.family_img {
  width: 20%;
  margin: 2em auto;
}
@media only screen and (max-width: 768px) {
  .family_img {
    width: 35%;
  }
}

.family_wrapper {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.family_wrapper .family_frame {
  width: 35%;
  padding: 3%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  border-radius: 0.5em;
  margin-bottom: 5%;
  position: relative;
  background-color: white;
}
.family_wrapper .family_frame::after {
  position: absolute;
  top: 100%;
  left: 30%;
  content: "";
  width: 2em;
  height: 2em;
  transform: rotate(45deg) translateY(-1.414em);
  background-color: white;
}
.family_wrapper .family_frame .family_ttl {
  font-size: calc(12px + 0.6vw);
  color: #ee7d50;
  font-weight: bold;
  padding-bottom: 0.5em;
  padding-left: 2.5em;
  position: relative;
}
.family_wrapper .family_frame .family_ttl::before {
  background-image: url(../assets/illu/voice_orange.svg);
  position: absolute;
  top: 0;
  left: 0;
  width: 2em;
  height: 2em;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
.family_wrapper .family_frame:nth-of-type(2n) {
  margin-top: 10%;
}
@media only screen and (max-width: 768px) {
  .family_wrapper {
    display: block;
  }
  .family_wrapper .family_frame {
    width: 80%;
    margin: auto;
    margin-bottom: 4em;
  }
  .family_wrapper .family_frame:nth-of-type(2n) {
    transform: translateX(2em);
  }
  .family_wrapper .family_frame:nth-of-type(2n + 1) {
    transform: translateX(-2em);
  }
}

.trial_ttl {
  text-align: center;
  font-size: calc(12px + 0.6vw);
  color: #68b82e;
  font-weight: bold;
}

.trial_txt {
  margin: 2em auto;
  width: 80%;
  text-align: center;
}

.highlight--orange {
  background: linear-gradient(transparent 60%, #ee7d50 60% 80%, transparent 80%);
  display: inline-block;
  font-weight: bold;
}

.highlight--green {
  background: linear-gradient(transparent 60%, #68b82e 60% 80%, transparent 80%);
  display: inline-block;
  font-weight: bold;
}

.--tag_orange {
  background-color: #ee7d50;
  padding: 0 0.5em;
  border-radius: 1em;
  height: 2em;
  text-align: center;
  font-weight: bold;
  color: white;
  white-space: nowrap;
}

.trial_frame {
  display: flex;
  justify-items: center;
  border: 1px dashed #68b82e;
  border-radius: 1em;
  width: 80%;
  margin: auto;
}
.trial_frame .trial_box {
  width: 50%;
  padding: 0 2em;
  margin: 3em 0;
}
.trial_frame .trial_box:first-of-type {
  border-right: 1px dashed #68b82e;
}
@media only screen and (max-width: 768px) {
  .trial_frame .trial_box:first-of-type {
    border-right: none;
    padding-bottom: 2em;
  }
}
.trial_frame .trial_box .subttl {
  font-weight: bold;
  margin: 1em 0;
}
.trial_frame .trial_box .fee_txt {
  display: flex;
}
.trial_frame .trial_box .fee_txt .ttl {
  width: 4em;
  margin-right: 0.5em;
}
.trial_frame .trial_box .fee_box {
  border-radius: 1em;
  padding: 1em;
  margin-top: 1em;
}
.trial_frame .trial_box .fee_box li {
  margin-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 768px) {
  .trial_frame {
    display: block;
    width: 100%;
  }
  .trial_frame .trial_box {
    width: 80%;
    padding: 1em 0;
    margin: auto;
    border-bottom: 1px dashed #68b82e;
  }
}

.step_wrapper {
  display: flex;
  justify-content: center;
}
.step_wrapper .step_frame {
  border: 1px solid #68b82e;
  border-radius: 4px;
  width: 23%;
  padding: 3%;
  background-color: white;
}
.step_wrapper .step_frame .step_img {
  width: 80%;
  margin: auto;
  position: relative;
}
.step_wrapper .step_frame .step_img img {
  height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5em;
}
.step_wrapper .step_frame .step_tag {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
  padding: 3% 10% 3% 5%;
  border-radius: 0 2em 2em 0;
  background-color: #68b82e;
  color: white;
  white-space: nowrap;
  font-size: calc(10px + 0.2vw);
  font-weight: bold;
}
.step_wrapper .step_frame .step_tag .step_num {
  font-size: calc(10px + 0.4vw);
  font-weight: bold;
  line-height: 1;
}
.step_wrapper .step_frame .step {
  font-size: calc(10px + 0.2vw);
  padding-top: 1em;
}
.step_wrapper .step_frame .step_ttl {
  padding-top: 2em;
  font-weight: bold;
}
.step_wrapper .step_frame .step_txt {
  padding-top: 1em;
}
.step_wrapper .step_arrow {
  width: 2em;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .step_wrapper {
    display: inline-grid;
  }
  .step_wrapper .step_frame {
    width: 80%;
    margin: auto;
  }
  .step_wrapper .step_arrow {
    width: 100%;
    height: 2em;
  }
  .step_wrapper .arrow::after {
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .step_wrapper .step_ttl,
.step_wrapper .step_txt {
    padding: 1em 10% 0;
  }
}

.around {
  position: relative;
}

.around::before {
  position: absolute;
  content: "";
  width: 3em;
  height: 3em;
  background-color: #68b82e;
  border-radius: 2em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.arrow {
  position: relative;
}

.arrow::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  border-radius: 1px;
  transform: translate(0.5em, -50%) rotate(-45deg);
  z-index: 2;
}

.qa_wrapper .qa_frame {
  text-align: left;
  background-color: white;
  position: relative;
  cursor: pointer;
  padding: 2% 4%;
  margin-bottom: 1em;
  border-radius: 2em 10px 10px 10px;
}
.qa_wrapper .qa_frame .qa_title {
  margin-bottom: 0.5em;
  font-weight: bold;
}
.qa_wrapper .qa_frame .qa_num {
  font-size: calc(12px + 0.6vw);
  color: #ee7d50;
  padding-right: 1em;
  font-weight: bold;
}
.qa_wrapper .qa_frame .a_num {
  font-size: calc(12px + 0.6vw);
  color: #ee7d50;
  padding: 0 1em;
  font-weight: bold;
}
.qa_wrapper .qa_frame .plus::after {
  content: "+";
  color: #ee7d50;
  font-size: calc(12px + 1vw);
  float: right;
}
.qa_wrapper .qa_frame .plus::after.minus {
  display: none;
}
.qa_wrapper .qa_frame .minus::after {
  content: "-";
  color: #ee7d50;
  font-size: calc(12px + 1vw);
  float: right;
}
.qa_wrapper .qa_frame .answer_frame {
  margin-top: 0.5em;
  display: none;
  border-top: 1px solid #ee7d50;
}
.qa_wrapper .qa_frame .answer_frame .answer_box {
  display: flex;
}
.qa_wrapper .qa_frame .answer_frame .answer_txt {
  padding-top: 1%;
}

footer {
  background-color: #ee7d50;
  color: white;
  position: relative;
  border-radius: 10em 0 0 0;
  width: 80%;
  padding: 5% 10%;
}
footer.orange_add {
  position: relative;
}
footer.orange_add::before {
  position: absolute;
  width: 10em;
  height: 10em;
  content: "";
  background-color: #fdf7f0;
  left: 0;
  top: 0;
  z-index: -1;
}
footer .name_frame {
  width: 80%;
  margin: auto;
  position: relative;
}
footer .name_frame .name1,
footer .name_frame .name3 {
  font-size: calc(12px + 0.6vw);
}
footer .name_frame .name3 {
  font-size: calc(12px + 1vw);
}
footer .name_frame .footer_img {
  width: 12%;
  position: absolute;
  bottom: 100%;
  left: -10%;
}
@media only screen and (max-width: 768px) {
  footer .name_frame .footer_img {
    width: 25%;
    left: -20%;
  }
}
footer .adress_frame {
  padding-top: 3em;
  width: 80%;
  margin: auto;
}
footer .adress_frame .adress_list span {
  margin-top: 0.5em;
  background: white;
  display: inline-block;
  width: 3em;
  text-align: center;
  border-radius: 1em;
  margin-right: 0.5em;
  color: #ee7d50;
}
footer .footer_right {
  position: absolute;
  top: 25%;
  right: 10%;
  width: 16em;
  text-indent: 2em;
  border-bottom: 0.5px solid white;
}
footer .footer_right .footer_nav_list {
  line-height: 4;
  border-top: 0.5px solid white;
  color: white;
}
footer .copyright {
  padding-top: 3%;
  font-size: calc(10px + 0.1vw);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  footer .footer_right {
    position: initial;
    width: 80%;
    margin: 2em auto;
  }
}

.page_img {
  width: 10%;
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
@media only screen and (max-width: 768px) {
  .page_img {
    width: 25%;
  }
}

.about_top {
  padding-top: 4em;
}
.about_top .left_txt {
  width: 80%;
  font-weight: bold;
  margin-bottom: 1em;
}
.about_top .top_img_leftdown {
  margin-left: 40%;
}
.about_top .right_txt {
  width: 70%;
  margin-left: 25%;
  margin-top: 2em;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .about_top .right_txt {
    width: 100%;
    margin: 1em auto;
  }
}
@media only screen and (max-width: 768px) {
  .about_top {
    padding-bottom: 2em;
  }
  .about_top .top_box {
    margin: auto;
  }
  .about_top .top_box .top_img_leftdown {
    padding-top: 2em;
  }
  .about_top .top_img_right {
    margin: -2em auto 2em;
    width: 50%;
  }
  .about_top .top_img_right .right_txt {
    position: absolute;
  }
}

.ttl2 {
  text-align: center;
  margin: 2em auto 1em;
}
.ttl2 .--en {
  font-size: calc(10px + 0.2vw);
  font-weight: bold;
  position: relative;
}
.ttl2 .--en::before, .ttl2 .--en::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 1.2em;
  border-radius: 2px;
  top: 50%;
}
.ttl2 .--en::before {
  transform: translate(-1.5em, -50%);
}
.ttl2 .--en::after {
  transform: translate(1.5em, -50%);
}
.ttl2 .--en.--orange::before, .ttl2 .--en.--orange::after {
  background-color: #ee7d50;
}
.ttl2 .--en.--green::before, .ttl2 .--en.--green::after {
  background-color: #68b82e;
}
.ttl2 .--jp {
  font-size: calc(12px + 1vw);
  font-weight: bold;
}

.represent_wrapper {
  display: flex;
  justify-content: space-evenly;
}
.represent_wrapper .represent_frame {
  width: 60%;
}
.represent_wrapper .represent_frame .represent_name .--jp {
  font-size: calc(12px + 1vw);
  font-weight: bold;
}
.represent_wrapper .represent_frame .represent_name .--en {
  margin-left: 1em;
  letter-spacing: 0.2em;
  color: #ee7d50;
}
.represent_wrapper .represent_frame .--job {
  padding-top: 0.5em;
}
.represent_wrapper .represent_frame .--job span {
  background-color: #ee7d50;
  color: white;
  padding: 0.2em 1em;
  border-radius: 1em;
  margin-right: 1em;
  font-weight: bold;
}
.represent_wrapper .represent_frame .person_ttl {
  padding: 1em 0;
  font-weight: bold;
  border-bottom: 2px solid #ee7d50;
}
.represent_wrapper .represent_frame .person_txt {
  padding-top: 1em;
}
.represent_wrapper .represent_img {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .represent_wrapper {
    display: block;
  }
  .represent_wrapper .represent_frame {
    width: 90%;
    margin: auto;
    padding-top: 2em;
  }
  .represent_wrapper .represent_img {
    width: 80%;
    margin: 2em auto 0;
  }
  .represent_wrapper .represent_img img {
    border-radius: 0.5em;
  }
}

.staff_wrapper {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.staff_wrapper .staff_frame {
  padding: 2em;
  width: 25%;
  margin: 2% 0 3%;
}
.staff_wrapper .staff_img {
  width: 100%;
  position: relative;
}
.staff_wrapper .staff_img img {
  max-height: 15em;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1em;
}
.staff_wrapper .staff_img .staff_job {
  position: absolute;
  color: #ee7d50;
  background-color: #fdf7f0;
  padding: 0.5em 1em 0.5em 2em;
  border-radius: 0 4px 0 0;
  bottom: 0;
  left: 0;
}
.staff_wrapper .staff_ttl {
  font-size: calc(12px + 0.6vw);
  padding: 0.5em 0;
}
@media only screen and (max-width: 768px) {
  .staff_wrapper {
    display: block;
  }
  .staff_wrapper .staff_frame {
    width: 80%;
    margin: 0 auto 2em;
  }
}

.person_icon::before {
  background-image: url(../assets/illu/person_icon.svg);
  content: "";
  position: absolute;
  width: 1em;
  background-size: contain;
  height: 1em;
  left: 0.5em;
  top: 50%;
  transform: translateY(-50%);
}

.philosophy {
  counter-reset: count 0;
  width: 80%;
  margin: auto;
}
.philosophy li::before {
  content: counter(count) ".";
  counter-increment: count 1;
  color: #68b82e;
}

.company_table {
  border-radius: 0.5em;
  width: 70%;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  border-radius: 0.5em;
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .company_table {
    width: 100%;
  }
}
.company_table td {
  padding: 2%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}
.company_table td:nth-child(2n-1) {
  width: 8%;
  background-color: #ee7d50;
  vertical-align: middle;
  text-align: center;
  color: white;
  font-weight: bold;
}
.company_table td:nth-child(2n) {
  width: 12%;
  background-color: white;
}
.company_table td:last-child {
  border-right: none;
}
.company_table tr:last-child td {
  border-bottom: none;
}

.house_wrapper {
  display: flex;
  justify-content: space-evenly;
}
.house_wrapper .house_frame {
  width: 30%;
  background-color: #fdf7f0;
  border-radius: 0.8em;
  text-align: center;
  padding: 2em 0;
}
.house_wrapper .house_frame .--en {
  font-weight: bold;
}
.house_wrapper .house_frame .house_name {
  margin: 0.5em 0 1.5em;
  margin-bottom: 1.5em;
  font-weight: bold;
}
.house_wrapper .house_frame .more_btn {
  width: 70%;
  padding: 0.2em 3em;
  margin: 1em 0;
  background: white;
  border: 1px solid #68b82e;
  border-radius: 4em;
}
.house_wrapper .house_frame .--arrow_down {
  position: relative;
}
.house_wrapper .house_frame .--arrow_down::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 2em;
  width: 0.5em;
  height: 0.5em;
  border-bottom: 2px solid #68b82e;
  border-right: 2px solid #68b82e;
  border-radius: 2px;
  transform: rotate(45deg) translateY(-90%);
}
.house_wrapper .house_frame .more_btn.--orange {
  border-color: #ee7d50;
}
.house_wrapper .house_frame .more_btn.--orange.--arrow_down::after {
  border-bottom: 2px solid #ee7d50;
  border-right: 2px solid #ee7d50;
}
@media only screen and (max-width: 768px) {
  .house_wrapper {
    padding-top: 4em;
  }
}

.house_section {
  width: 100%;
  overflow: hidden;
}
.house_section .house_slide_top {
  width: 50%;
  overflow: inherit;
}
.house_section .house_slide_top .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1em;
  height: 50vh;
}
.house_section .house_slide_top .swiper-button-next,
.house_section .house_slide_top .swiper-button-prev {
  padding: 0.5em 1em;
  border: 2px solid #68b82e;
  background-color: white;
  border-radius: 4em;
}
.house_section .house_slide_top .swiper-button-next.--orange,
.house_section .house_slide_top .swiper-button-prev.--orange {
  border: 2px solid #ee7d50;
}
.house_section .house_slide_top .swiper-button-next.--orange::after,
.house_section .house_slide_top .swiper-button-prev.--orange::after {
  color: #ee7d50;
}
.house_section .house_slide_top .swiper-button-next {
  right: -2.5em;
}
.house_section .house_slide_top .swiper-button-prev {
  left: -2.5em;
}
.house_section .house_slide_top .swiper-button-next::after,
.house_section .house_slide_top .swiper-button-prev::after {
  font-size: 1.3em;
  font-weight: bold;
  color: #68b82e;
}
.house_section .house_slide_bottom {
  width: 80%;
  margin-top: 1em;
}
.house_section .house_slide_bottom .swiper-slide {
  opacity: 0.4;
}
.house_section .house_slide_bottom .swiper-slide img {
  border-radius: 0.5em;
}
.house_section .house_slide_bottom .swiper-slide-thumb-active {
  opacity: 1;
}
.house_section .inst_box {
  width: 40%;
  font-size: calc(10px + 0.4vw);
}
@media only screen and (max-width: 768px) {
  .house_section .inst_box {
    width: 85%;
  }
}
.house_section .house02_wrapper .inst_box {
  background-color: white;
}

.schedule_wrapper {
  display: flex;
  justify-content: space-evenly;
}
.schedule_wrapper .schedule_frame {
  width: 30%;
  border: 2px dashed #ee7d50;
  border-radius: 1em;
  padding: 1em 6em 1em 2em;
  background-color: white;
  position: relative;
}
.schedule_wrapper .schedule_frame .schedule_img {
  position: absolute;
  width: 22%;
  bottom: 0;
  right: 3%;
  transform: translateY(50%);
}
.schedule_wrapper .schedule_frame .schedule_ttl {
  margin-bottom: 1em;
}
.schedule_wrapper .schedule_frame table td {
  padding-bottom: 0.5em;
}
.schedule_wrapper .schedule_frame table td:first-child {
  border-right: 1px solid #ee7d50;
  width: 4em;
  font-weight: bold;
  padding-left: 1em;
}
.schedule_wrapper .schedule_frame table td:nth-of-type(2n) {
  padding-left: 2em;
}
.schedule_wrapper .schedule_frame:nth-of-type(2n) {
  border: 2px dashed #68b82e;
}
.schedule_wrapper .schedule_frame:nth-of-type(2n) table td:first-child {
  border-right: 1px solid #68b82e;
}
@media only screen and (max-width: 768px) {
  .schedule_wrapper {
    display: block;
  }
  .schedule_wrapper .schedule_frame {
    width: 70%;
  }
  .schedule_wrapper .schedule_frame:first-of-type {
    margin-bottom: 4em;
  }
}

.first_section {
  padding-top: 120px;
}

.last_section {
  padding-bottom: 5em;
}/*# sourceMappingURL=style.css.map */