@charset "UTF-8";

/*------------------------
hamburger
----------------------------*/
.header {
  position: relative;
  padding: 20px;
}

.hamburger {
  display: block;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(300px, 26vw, 500px);
  height: 100dvh;
  background: #fff9ee;
  transform: translateX(-100%);
  transition: transform 0.4s;
  z-index: 9998;
  overflow-y: scroll;
}

.nav.active {
  transform: translate(0);
}

.nav__list {
  display: block;
  padding: 70px 0 0;
}

.nav__item {
  padding: 0 35px;
  font-size: clamp(2rem, 1.5vw, 3rem);
  border-bottom: 1px solid #3333334f;
}

.nav__link {
  display: block;
  padding: 30px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.nav__link img {
  width: clamp(50px, 3.723vw, 70px);
  object-fit: cover;
  margin-right: 20px;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background: #333;
  transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}

.hamburger__line:nth-of-type(2) {
  top: 23px;
}

.hamburger__line:nth-of-type(3) {
  top: 32px;
}

.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

/*------------------------
hero
----------------------------*/
.hero-container {
  display: flex;
  width: 95%;
  margin: 40px auto 0;
  background: #ffb469;
  border-radius: 30px;
  position: relative;
}

.hero-container::after {
  position: absolute;
  background-image: url("../img/kadomaru.svg");
  width: 30px;
  height: 30px;
  display: inline-block;
  content: "";
  top: 290px;
  left: 0;
}

.site-btn {
  background: #fff9ee;
  width: 250px;
  padding: 0 10px;
  margin: 20px 50px 20px auto;
  border-radius: 15px;
  border: 2px solid #a08770;
}

.site-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-btn img {
  width: 50px;
  margin-right: 10px;
}

.site-title {
  z-index: 100;
  background: #fff9ee;
  height: 290px;
  padding: 30px;
  border-radius: 30px;
  position: relative;
}

.site-title img {
  width: 200px;
}

.site-title::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #fff9ee;
  top: 0;
  right: 0;
}

.site-title::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #fff9ee;
  bottom: 0;
  left: 0;
}

.hero-wrapper {
  width: 100%;
  margin: 0 0 0 auto;
  padding: 0 0 0 50px;
  position: relative;
}

.hero-wrapper::before {
  background-image: url("../img/kadomaru.svg");
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  top: 0px;
  left: 0;
  position: absolute;
}

.slider {
  position: relative;
  inset: 0px;
  height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0px;
  opacity: 0;
  transition: opacity 0.8s;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.slide.active {
  opacity: 1;
}

.site-img {
  margin-right: 50px;
  margin-bottom: 50px;
}

.site-text {
  position: absolute;
  bottom: 0;
  left: -1px;
  width: 800px;
  display: inline-block;
  z-index: 100;
  max-width: 100%;
}

.site-text img {
  height: clamp(200px, 24vw, 456px);
}

/*================
=================*/
@media (max-width: 899px) {
  .site-title {
    height: 100px;
    width: 140px;
    padding: 0;
  }

  .site-title img {
    width: 80px;
    position: relative;
    z-index: 9999;
    margin-left: 30px;
  }

  .site-title h1 {
    font-size: 1rem;
    position: relative;
    z-index: 9999;
    margin-left: 20px;
  }

  .hero-container::before {
    left: 200px;
  }

  .hero-container::after {
    top: 100px;
  }

  .slider {
    height: 500px;
  }

  .hero-wrapper {
    padding: 0;
  }

  .site-text {
    width: 100%;
  }

  .hero-container {
    display: block;
  }

  .hero-wrapper::before {
    top: -101px;
    left: 140px;
  }

  .site-title::before {
    left: 110px;
  }

  .site-btn {
    width: 50px;
    padding: 10px;
    position: fixed;
    writing-mode: vertical-rl;
    z-index: 9998;
    top: 5%;
    right: 0;
    margin: 0;
    border-radius: 30px 0 0 30px
  }

  .site-btn img {
    margin: 0;
    width: clamp(30px, 5.562vw, 50px);
  }

  .site-img {
    /* margin: 50px; */
    margin: 0;
    padding: 50px;
  }
}

/*================
=================*/
@media (max-width: 599px) {

  .site-img {
    margin-right: 0;
    margin-bottom: 0;
    padding: 20px
  }

  .hero-wrapper::before {
    top: -100px;
    left: 140px;
  }
}

/*------------------------
about
----------------------------*/

.about-wrapper {
  background-image: url(../img/happa.svg);
  width: 80%;
  height: 41vh;
  background-size: 100%;
  margin: 50px auto 0;
}

.about-inner {
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 100%;
  text-align: center;
  width: 100%;
}

.about-inner__text2 {
  margin-top: 20px
}

.about-inner h2 {
  font-size: 2.7rem;
}

.about-bottom__container {
  background: #ffb469;
  width: 95%;
  margin: 0 auto;
  border-radius: 1.596vw;
  padding-bottom: 40px;
  position: relative;
}

.about-bottom__container::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 1.596vw;
  height: 1.596vw;
  background-image: url("../img/kadomaru.svg");
  top: 0;
  right: 1.755vw;
}

.about-bottom__container::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 1.596vw;
  height: 1.596vw;
  background-image: url("../img/kadomaru.svg");
  top: 0;
  left: 1.755vw;
  transform: rotate(90deg);
}

.about-bottom__wrapper {
  background: #fff9ee;
  width: 93%;
  margin: 0 auto;
  position: relative;
  padding: 50px 0;
}

.about-bottom__wrapper::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../img/kadomaruorenzi.svg");
  bottom: 0;
  left: 0;
  transform: rotate(-90deg);
}

.about-bottom__wrapper::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../img/kadomaruorenzi.svg");
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.about-bottom__wrapper p {
  margin: 20px 0;
}

.about-bottom__wrapper h1 {
  font-size: clamp(2rem, 1.596vw, 3rem);
  color: #ffb469;
}

.about-bottom__item {
  display: flex;
  justify-content: space-around;
  margin: 50px auto;
  width: 70%;
  flex-wrap: wrap;
  max-width: 100%;
}

.about-item__inner1,
.about-item__inner2,
.about-item__inner3 {
  width: 250px;
  height: 250px;
  position: relative;
}

.about-item__inner1 img,
.about-item__inner2 img,
.about-item__inner3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-item__inner1::before,
.about-item__inner2::before,
.about-item__inner3::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #3333337d;
  top: 0;
  left: 0;
}

.about-item__inner1::after {
  content: "無理にがんばらなくていい";
  display: inline-block;
  position: absolute;
  font-weight: bold;
  top: 50%;
  right: 50%;
  transform: translate(50%);
  font-size: 1.6rem;
  width: 100%;
  color: #fff;
  text-align: center;
}

.about-item__inner2::after {
  content: "みんなと同じでなくていい";
  display: inline-block;
  position: absolute;
  font-weight: bold;
  top: 50%;
  right: 50%;
  transform: translate(50%);
  width: 100%;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
}

.about-item__inner3::after {
  content: "失敗しても大丈夫";
  display: inline-block;
  position: absolute;
  font-weight: bold;
  top: 50%;
  right: 50%;
  transform: translate(50%);
  width: 100%;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
}

/*================
=================*/
@media (max-width: 899px) {
  .about-bottom__item {
    margin: 0;
    padding: 0 20px;
    flex-direction: column;
    width: 100%;
  }

  .about-item__inner1,
  .about-item__inner2,
  .about-item__inner3 {
    width: clamp(250px, 47.494vw, 400px);
    height: 200px;
    margin: 10px 0;
  }

  .about-item__inner2 {
    align-self: flex-end;
  }

  .about-item__inner1 img,
  .about-item__inner2 img,
  .about-item__inner3 img {
    border-radius: 30px;
  }

  .about-item__inner1::before,
  .about-item__inner2::before,
  .about-item__inner3::before {
    width: 100%;
    border-radius: 30px;
    height: 100%;
  }
}

.about-item__wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 50px 0;
}

.about-item__flex img {
  width: 170px;
}

.about-text__wrapper {
  width: 899px;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 20px;
}

.about-inner h2 {
  font-size: 2rem;
}



/*================
=================*/
@media (max-width: 899px) {
  .about-item__wrapper {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    margin: 0 0 50px;
  }

  .top {
    order: 1;
  }

  .bottom {
    order: -1;
    align-self: flex-end;
  }

  .about-wrapper {
    height: 24vh;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
  }

  .about-item__flex img {
    width: clamp(100px, 18.91vw, 170px)
  }
}

/*================
=================*/
@media (max-width: 599px) {
  .about-inner h2 {
    font-size: 1.8rem;
  }
}

/*------------------------
time
----------------------------*/
.time-container {
  background: #ffb469;
  padding: 50px 0 0;
  margin: 50px 0;
}

.time-wrapper {
  background: #fff9ee;
  padding: 50px 50px 0;
  border-radius: 500px 500px 0 0;
}

.time-container img {
  width: clamp(50px, 5.319vw, 100px);
}

.time-container h1 {
  font-size: clamp(2.5rem, 2.128vw, 4rem);
}

.time-container h2 {
  font-size: 3rem;
}

.time-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.time-title h1 {
  margin-left: 30px;
}

.time-titme__text {
  text-align: center;
  margin: 30px 0;
}

.time-titme__text h2 {
  margin-bottom: 15px;
  color: #ffb469;
}

.time-inner {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: 0 auto;
  padding: 50px 30px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.time-inner::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 100%;
  height: calc(100% - 50px);
  border-right: 2px dashed #8d6f52;
  right: 50%;
  z-index: -1;
  box-sizing: border-box;
}

.time-item {
  margin: 20px;
  background: #fff9ee;
  width: 500px;
}

.time-item img {
  width: 100px;
  margin-right: 20px;
}

.right {
  align-self: flex-end;
  display: flex;
  align-items: center;
}

.left {
  display: flex;
  align-items: center;
}

.more a {
  position: relative;
  text-align: right;
  display: flex;
  align-items: center;
  margin-right: 50px;
  justify-content: right;
  gap: 10px;
  transition: 0.3s ease;
  /* padding-bottom: 50px; */
}

.more img {
  width: 50px;
}

.more h3 {
  font-size: 2.5rem;
}

.more a:hover {
  color: #ffb469;
  cursor: pointer;
}

/*================
=================*/
@media (max-width: 899px) {
  .time-title {
    flex-direction: column;
  }

  .time-container h1 {
    /* font-size: 3rem; */
    margin-left: 0;
  }

  .time-title img {
    margin-bottom: 5px;
  }
}

/*================
=================*/
@media (max-width: 799px) {

  .time-container h2 {
    font-size: 2.5rem;
  }

  .time-title,
  .time-inner,
  .right,
  .left {
    flex-direction: column;
    width: 100%;
    padding: 50px 10px;
  }

  .time-title img {
    width: 70px;
  }

  .right {
    align-self: flex-start;
  }

  .time-item {
    width: 100%;
    margin: 30px 0;
  }

  .time-item img {
    width: 70px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .more {
    margin-top: 20px;
  }

  .more h3 {
    font-size: 2rem;
  }

  .more img {
    width: 30px;
  }
}

/*================
=================*/
@media (max-width: 499px) {
  .time-container h1 {
    /* font-size: 2.5rem; */
  }

  .time-container h2 {
    font-size: 2rem;
  }

  .time-title img {
    width: 50px;
  }

  .time-title,
  .time-inner,
  .right,
  .left {
    padding: 15px 10px;
  }

  .more a {
    margin-right: 0;
  }

  .time-wrapper {
    padding: 50px 15px 0;
  }
}

/*------------------------
katudou
----------------------------*/
.katudou-container {
  background: #ffb469;
  padding-bottom: 50px;
  margin: 50px 0 0;
}

.katudou-wrapper {
  background: #fff9ee;
  border-radius: 0 0 100px 100px;
  padding: 0 50px 50px;
}

.katudou-flex {
  display: flex;
  justify-content: space-around;
  max-width: 100%;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}

.katudou-title {
  display: flex;
  align-items: center;
}

.katudou-title img {
  width: clamp(50px, 5.319vw, 100px);
  margin-right: 20px;
}

.katudou-title h1 {
  font-size: clamp(2.5rem, 2.128vw, 4rem);
}

.katudou-slider__wrapper {
  display: flex;
  overflow: hidden;
  margin: 30px 0 0;
}

.katudou-slider {
  animation: scroll-left 30s infinite linear .5s both;
  display: flex;
}

.katudou-slide {
  width: calc(100vw / 3);
  cursor: pointer;
  overflow: hidden;
  padding: 20px;
}

.katudou-slide img {
  width: 100%;
  display: block;
  transition: transform 0.4s;
}

.katudou-slide img:hover {
  transform: scale(1.1);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/*================
=================*/
@media (max-width: 899px) {
  .katudou-title h1 {
    /* font-size: 3rem; */
  }

  .katudou-title img {
    /* width: 70px; */
    margin-right: 0;
    margin-bottom: 5px;
  }

  .katudou-title {
    flex-direction: column;
  }
}

/*================
=================*/
@media (max-width: 599px) {
  .katudou-title h1 {
    /* font-size: 2.5rem; */
  }

  .katudou-title img {
    width: 50px;
  }

  .katudou-slide {
    width: calc(100vw / 2);
  }
}

/*================
=================*/
@media (max-width: 499px) {
  .katudou-wrapper {
    padding: 0 15px 50px;
  }
}

/*------------------------
staff
----------------------------*/
.staff-container {
  padding-block: 50px;
  padding-inline: clamp(10px, 2.506vw, 50px);
}

.staff-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.staff-title h1 {
  font-size: clamp(2.5rem, 2.128vw, 4rem);
}

.staff-title img {
  width: clamp(50px, 5.319vw, 100px);
  margin-right: 20px;
}

.staff-wrapper {
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.staff-inner img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.staff-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  margin-inline: auto;
  max-width: 100%;
  padding: 50px;
  /* flex-wrap: wrap; */
  /* flex-flow: row wrap-reverse; */
  flex-direction: column;
}

.staff-inner__text h2 {
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

/*------------------------
staff one
----------------------------*/

.one .staff-inner__img {
  background: #f9b837;
  border-radius: 50%;
  position: relative;
  /* margin-right: 50px; */
  width: 300px;
  height: 300px;
}

.one .staff-inner__img::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 350px;
  height: 350px;
  border: 5px solid #f9b837;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.one .staff-inner__text {
  position: relative;
  padding: clamp(10px, 2.66vw, 50px);
  max-width: 100%;
  display: flex;
  align-items: center;
  /* width: 480px; */
  flex-direction: column;
  gap: 10px;
  margin-bottom: 60px;
}

.one .staff-inner__text::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 100%;
  height: 50%;
  border: 2px solid #f9b837;
  border-top: none;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  box-sizing: border-box;
  bottom: -6px;
  left: 50%;
  translate: -50%;
}

.one .staff-inner__text::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: calc(100% + 8px);
  left: 50%;
  width: 30px;
  height: 2px;
  box-sizing: border-box;
  background: #f9b837;
  rotate: 125deg;
  translate: -50%;
}

/*------------------------
staff two
----------------------------*/
.two .staff-inner__img {
  background: #024677;
  border-radius: 50%;
  position: relative;
  /* margin-left: 50px; */
  width: 300px;
  height: 300px;
}

.two .staff-inner__img::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 350px;
  height: 350px;
  border: 5px solid #024677;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.two .staff-inner__text {
  position: relative;
  padding: clamp(10px, 2.66vw, 50px);
  max-width: 100%;
  display: flex;
  align-items: center;
  /* width: 480px; */
  flex-direction: column;
  gap: 10px;
  margin-bottom: 60px;
}

.two .staff-inner__text::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 100%;
  height: 50%;
  border: 2px solid #024677;
  border-top: none;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  box-sizing: border-box;
  bottom: -6px;
  left: 50%;
  translate: -50%;
}

.two .staff-inner__text::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: calc(100% + 8px);
  left: 50%;
  width: 30px;
  height: 2px;
  box-sizing: border-box;
  background: #024677;
  rotate: 125deg;
  translate: -50%;
}

/*------------------------
staff three
----------------------------*/
.three .staff-inner__img {
  background: #77ced5;
  border-radius: 50%;
  position: relative;
  /* margin-right: 50px; */
  width: 300px;
  height: 300px;
}

.three .staff-inner__img::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 350px;
  height: 350px;
  border: 5px solid #77ced5;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.three .staff-inner__text {
  position: relative;
  padding: clamp(10px, 2.66vw, 50px);
  max-width: 100%;
  display: flex;
  align-items: center;
  /* width: 480px; */
  flex-direction: column;
  gap: 10px;
  margin-bottom: 60px;
}

.three .staff-inner__text::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 100%;
  height: 50%;
  border: 2px solid #77ced5;
  border-top: none;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  box-sizing: border-box;
  bottom: -6px;
  left: 50%;
  translate: -50%;
}

.three .staff-inner__text::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: calc(100% + 8px);
  left: 50%;
  width: 30px;
  height: 2px;
  box-sizing: border-box;
  background: #77ced5;
  rotate: 125deg;
  translate: -50%;
}

/*------------------------
staff four
----------------------------*/
.four .staff-inner__img {
  background: #ffb469;
  border-radius: 50%;
  position: relative;
  /* margin-left: 50px; */
  width: 300px;
  height: 300px;
}

.four .staff-inner__img::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 350px;
  height: 350px;
  border: 5px solid #ffb469;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.four .staff-inner__text {
  position: relative;
  padding: clamp(10px, 2.66vw, 50px);
  max-width: 100%;
  display: flex;
  align-items: center;
  /* width: 480px; */
  flex-direction: column;
  gap: 10px;
  margin-bottom: 60px;
}

.four .staff-inner__text::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 100%;
  height: 50%;
  border: 2px solid #ffb469;
  border-top: none;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  box-sizing: border-box;
  bottom: -6px;
  left: 50%;
  translate: -50%;
}

.four .staff-inner__text::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: calc(100% + 8px);
  left: 50%;
  width: 30px;
  height: 2px;
  box-sizing: border-box;
  background: #ffb469;
  rotate: 125deg;
  translate: -50%;
}

/*================
=================*/
@media (max-width: 899px) {

  .staff-title {
    flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
  }

  .staff-title img {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .staff-wrapper {
    flex-direction: column;
  }

  .staff-inner {
    margin-block: 15px;
  }

  .one {
    padding: 0;
    position: relative;
    background: #f9b837;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .two {
    padding: 0;
    position: relative;
    background: #73a7cd;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .three {
    padding: 0;
    position: relative;
    background: #77ced5;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .four {
    padding: 0;
    position: relative;
    background: #ffb469;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .one .staff-inner__text,
  .two .staff-inner__text,
  .three .staff-inner__text,
  .four .staff-inner__text {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 0;
    padding-top: clamp(10px, 5.562vw, 50px);
    position: relative;
  }

  .one .staff-inner__text p,
  .two .staff-inner__text p,
  .three .staff-inner__text p,
  .four .staff-inner__text p {
    font-size: 1.6rem;
  }

  .one .staff-inner__img,
  .two .staff-inner__img,
  .three .staff-inner__img,
  .four .staff-inner__img {
    margin-right: 0;
    margin-left: 0;
    border-radius: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: transparent;
  }

  .one::before,
  .two::before,
  .three::before,
  .four::before {
    width: 90%;
    height: 90%;
    border-left: 2px dashed #fff9ee;
    border-right: 2px dashed #fff9ee;
    content: "";
    display: inline-block;
    position: absolute;
  }

  .staff-inner__img img {
    width: 100%;
    height: clamp(100px, 33.37vw, 300px);
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .one .staff-inner__text::after,
  .two .staff-inner__text::after,
  .three .staff-inner__text::after,
  .four .staff-inner__text::after {
    display: none;
  }

  .one .staff-inner__text::before,
  .two .staff-inner__text::before,
  .three .staff-inner__text::before,
  .four .staff-inner__text::before {
    display: none;
  }

  .one .staff-inner__img::before,
  .two .staff-inner__img::before,
  .three .staff-inner__img::before,
  .four .staff-inner__img::before {
    display: none;
  }
}



/*------------------------
qa info
----------------------------*/
.qa-info__container {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 50px;
}

/*------------------------
qa
----------------------------*/
.qa-inner {
  border: 10px solid #ff8810;
  padding: 55px 55px 20px;
  border-radius: 30px;
  width: 455px;
}

.qa-wrapper {
  display: flex;
}

.qa-text h1 {
  font-size: 3rem;
  margin-bottom: 15px
}

.qa-img {
  width: 70px;
}

.qa-btn img {
  width: 50px;
  position: relative;
  z-index: 101;
  padding: 5px;
  transition: transform 0.5s ease;
  transform: translateX(0);
}

.qa-btn {
  position: relative;
  text-align: left;
  background: #ff8810;
  padding: 10px;
  width: 260px;
  margin: 30px auto 0;
  border-radius: 30px;
  overflow: hidden;
}

.qa-btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 50px;
  height: 40px;
  background: #fff9ee;
  border-radius: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.5s ease;
  left: 5%;
  z-index: 100;
}

.qa-inner a:hover .qa-btn::before {
  transform: translateX(185px) translateY(-50%);
}

.qa-inner a:hover .qa-btn img {
  transform: translateX(188px);
}

/*------------------------
info
----------------------------*/
.info-inner {
  border: 10px solid #3fac69;
  padding: 55px 55px 20px;
  border-radius: 30px;
  width: 455px;
}

.info-wrapper {
  display: flex;
}

.info-text h1 {
  font-size: 3rem;
  margin-bottom: 15px
}

.info-img {
  width: 100px;
}

.info-btn img {
  width: 50px;
  position: relative;
  z-index: 101;
  padding: 5px;
  transition: transform 0.5s ease;
  transform: translateX(0);
}

.info-btn {
  position: relative;
  text-align: left;
  background: #3fac69;
  padding: 10px;
  width: 260px;
  margin: 30px auto 0;
  border-radius: 30px;
  overflow: hidden;
}

.info-btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 50px;
  height: 40px;
  background: #fff9ee;
  border-radius: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.5s ease;
  left: 5%;
  z-index: 100;
}

.info-inner a:hover .info-btn::before {
  transform: translateX(185px) translateY(-50%);
}

.info-inner a:hover .info-btn img {
  transform: translateX(188px);
}

/*================
=================*/
@media (max-width: 1099px) {
  .qa-info__container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .qa-inner,
  .info-inner {
    width: 699px;
  }

  .qa-btn,
  .info-btn {
    width: 320px;
  }

  .qa-wrapper,
  .info-wrapper {
    justify-content: center;
  }

  .qa-inner a:hover .qa-btn::before,
  .info-inner a:hover .info-btn::before {
    transform: translateX(240px) translateY(-50%);
  }

  .qa-inner a:hover .qa-btn img,
  .info-inner a:hover .info-btn img {
    transform: translateX(246px);
  }
}



/*================
=================*/
@media (max-width: 699px) {

  .qa-inner,
  .info-inner {
    width: 599px;
  }

  .qa-text h1,
  .info-text h1 {
    font-size: 2.5rem;
  }
}

/*================
=================*/
@media (max-width: 599px) {
  .qa-info__container {
    padding: 50px 30px;
  }

  .qa-inner,
  .info-inner {
    width: 350px;
    padding: 55px 20px 20px;
  }

  .qa-btn,
  .info-btn {
    width: 200px;
  }

  .qa-inner a:hover .qa-btn::before,
  .info-inner a:hover .info-btn::before {
    transform: translateX(130px) translateY(-50%);
  }

  .qa-inner a:hover .qa-btn img,
  .info-inner a:hover .info-btn img {
    transform: translateX(130px);
  }
}

/*------------------------
footer
----------------------------*/
.footer-container {
  background: #ffb469;
  margin-top: 50px;
  padding-top: 100px;
  padding-inline: clamp(20px, 3.33vw, 100px);
}

.footer-inner {
  background: #fff9ee;
  border-radius: 50px;
  display: flex;
  padding-block: 50px;
  gap: 50px;
  padding-inline: 20px;
}

.footer-left img {
  width: clamp(100px, 10vw, 200px);
}

.footer-left h1 {
  font-size: clamp(1.4rem, 1vw, 2.2rem);
}

.footer-left {
  text-align: center;
  width: 30%;
}

.tel {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.tel h2 {
  font-size: clamp(2rem, 2vw, 4rem);
  color: #3fac69;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70%;
}

.footer-text h2 {
  font-size: clamp(2.1rem, 3.6vw, 4rem);
}

.footer-nav h3 {
  font-size: clamp(1.8rem, 3vw, 2rem);
}

.footer-nav {
  padding-top: 70px;
}

.footer-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.footer-nav li {
  position: relative;
  padding-inline: 30px;
  cursor: pointer;
  display: flex;
  transition: 0.4s ease;
  margin-bottom: 20px;
}

.footer-nav span {
  width: 5px;
  height: 5px;
  background: #3fac69;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}

.footer-nav li::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 5px;
  height: 50%;
  top: 0;
  left: 0;
  background: #3fac69;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  border-radius: 2.5px 2.5px 0 0;
}

.footer-nav li:hover::before {
  transform: scaleY(1);
}

.footer-nav li::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 5px;
  height: 50%;
  bottom: 0;
  left: 0;
  background: #3fac69;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  border-radius: 0 0 2.5px 2.5px;
}

.footer-nav li:hover::after {
  transform: scaleY(1);
}

.footer-nav li:hover {
  letter-spacing: 0.3rem;
}

.copy h1 {
  font-size: clamp(2rem, 3.333vw, 3rem);
  margin-bottom: 20px;
}

.copy p {
  font-size: 1.3rem;
}

.copy {
  text-align: center;
  padding-block: 30px;
  background: #ffb469;
}

/*================
=================*/
@media (max-width: 899px) {
  .footer-inner {
    flex-direction: column;
  }

  .footer-left {
    width: 100%;
  }

  .footer-right {
    width: 100%;
  }

  .footer-nav {
    padding-inline: 20px;
  }
}

/*================
=================*/
@media (max-width: 699px) {
  .footer-nav ul {
    flex-direction: column;
  }
}