* {
  font-family: "Zen Maru Gothic", serif;
}

.evt {
  visibility: hidden;
}

header {
  position: fixed;
  height: 55px;
  width: 100%;
  border-bottom: 1px solid #48c9b0;
  z-index: 1001;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header_reveal {
  opacity: 1;
}

.header_wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  align-items: center;
  display: flex;
  max-width: 950px;
  margin: 0 auto;
  justify-content: space-between;
}

.hidden {
  display: none;
}

.logo_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.logo_img {
  background-image: url(./images/logo.png);
  background-repeat: no-repeat;
  height: 28px;
  width: 28px;
  background-size: contain;
  display: inline-block;
}

.logo_wrapper span {
  color: #167246;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.hamburger_menu {
  position: relative;
  /* margin-left: auto; */
  height: 55px;
  width: 55px;
}

.hamburger_menu_line {
  position: absolute;
  display: block;
  height: 2px;
  background-color: #5dade2;
  right: 10px;
  font-weight: 500;
}

.hamburger_menu_line:first-child {
  top: 13px;
  width: 32px;
}

.hamburger_menu_line:nth-child(2) {
  top: 21px;
  width: 23px;
}

.hamburger_menu_line:nth-child(3) {
  top: 30px;
  width: 14px;
}

.hamburger_menu_sign {
  position: absolute;
  display: block;
  color: #5dade2;
  font-size: 14px;
  right: 9px;
  top: 33px;
}

.pop-up_menu {
  position: fixed;
  top: 55px;
  height: 0;
  /* opacity: 0; */
  /* visibility: hidden; */
  /* height: 100%; */
  width: 100%;

  z-index: 1000;
  /* transition: opacity 0.5s ease, visibility 0s linear 0.5s; */
  display: flex;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  padding-right: 12px;
  transition: height 0.5s cubic-bezier(1, 0, 0, 1);
}

.pop_up__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 55px);
  background-image: url(./images/sky.jpg);
  background-position: 25% 92%;
  background-size: auto 130%;
  background-repeat: no-repeat;
}

.pop_up__background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(256, 256, 256, 0.3);
  z-index: 1;
}

.pop-up_menu p {
  color: #fff;
  margin-bottom: 10px;
}

.close-button {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-size: 20px;
  color: #5dade2;
  transition: box-shadow 0.7s ease;
  width: 53px;
  height: 53px;
  cursor: pointer;
}

.close-button:active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.close_button_line {
  position: absolute;
  height: 2px;
  width: 27px;
  background-color: #5dade2;
  top: 22px;
  right: 13px;
}

.close_button_line:first-child {
  transform: rotate(45deg);
}

.close_button_line:nth-child(2) {
  transform: rotate(-45deg);
}

.close_button_text {
  position: absolute;
  font-size: 14px;
  top: 33px;
  right: 12px;
  color: #5dade2;
  font-weight: 500;
}

.menu-open {
  height: calc(100vh - 55px);
}

.yoyaku_button {
  position: relative;
  width: 272px;
  height: 53px;
  background-color: #008E44;
  border-radius: 15px;
  z-index: 2;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 26.83vh auto 0 auto;
}

.yoyaku_button::after {
  position: absolute;
  content: "";
  border: 1px solid #ffffff;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  width: 262px;
  height: 43px;
  transform: translate(-50%, -50%);
}

.yoyaku_img {
  background-image: url(./images/yoyaku_white.svg);
  background-size: contain;
  height: 23px;
  width: 24px;
}

.yoyaku_button span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.header_wrapper .yoyaku_button {
  display: none;
}

.pop-up_menu__nav,
.footer_nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2;
  max-width: 300px;
  margin: 50px auto 0 auto;
  gap: 40px;
}

.pop-up_menu__nav a,
.footer_nav a {
  color: #333333;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

.header_menu li:not(:last-child) a {
  position: relative;
  top: 5px;
}

.header_menu li:not(:last-of-type) a::after,
.pop-up_menu__nav a::after,
.footer_nav a::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 5px;
  width: 5px;
  background-color: #000000;
  border-radius: 50%;
}

.header_menu li:not(:last-of-type) a:hover::after {
  background-color: #5dade2;
}

.pop-up_menu .logo_wrapper {
  justify-content: center;
  position: relative;
  top: 180px;
  margin: 0 auto;
  z-index: 2;
  margin-left: 0;
}

.header_menu {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

.fv__content__circle {
  width: calc(100% - 20px);
  aspect-ratio: 1 / 1;
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  border: 2px solid #07693a;
  position: absolute;
  top: 66px;
  top: 17.6vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background-color: white;
  background-image: url(./images/logo_2.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 30px;
  flex-direction: column;
  z-index: 3;
}

.fv__content__circle h2 {
  font-size: 10.1vw;
  font-weight: 500;
  text-align: center;
  line-height: 13.3vw;
}

.fv__content__circle span {
  color: #333333;
  font-size: 4.3vw;
}

.fv__content__circle__text {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #48c9b0;
  width: calc(100% - 20px);
  height: 81px;
  border-radius: 40.5px;
  position: absolute;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  bottom: -11px;
  padding: 12px 35px;
  line-height: 1.2;
}

.fv__content__circle__decor {
  position: absolute;

  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.fv__content__circle__decor.f01 {
  top: 10.67vw;
  left: 16vw;
  width: 31.33vw;
  height: 18.67vw;
  /* max-width: 163px;
  max-height: 97px; */
  max-width: 165.6px;
  max-height: 99px;
  background-image: url(./images/flower_3.svg);
  transform: translate(-50%, -50%);
}

.fv__content__circle__decor.f02 {
  width: 25.87vw;
  /* max-width: 97px; */
  max-width: 137px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid #f7dc6f;
  box-sizing: content-box;
  top: -25.1%;
  left: -7%;
  /* top: -23.73vw;
  left: -6.67vw; */
}

.fv__content__circle__decor.f02::after {
  /* top: 3px;
  right: 1px; */
  top: 3%;
  right: 1%;
  position: absolute;
  display: block;
  content: "";
  /* max-width: 97px; */
  max-width: 137px;
  width: 25.87vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-image: url(./images/girl_2.jpg);
  background-size: 115%;
  background-position: 30% top;
  filter: brightness(115%);
  z-index: -1;
}

.fv__content__circle__decor.f02::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(./images/flower_2.svg);
  background-repeat: no-repeat;
  width: 9.1vw;
  /* max-width: 34px; */
  max-width: 48px;
  aspect-ratio: 1 / 1;
  background-size: contain;
}

.fv__content__circle__decor.f03 {
  /* max-width: 98px; */
  width: 26.1vw;
  max-width: 137px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid #48c9b0;
  box-sizing: content-box;
  /* top: -20px;
  right: 10px; */
  top: -9%;
  right: -5%;
}

.fv__content__circle__decor.f03::after {
  /* top: -3px; */
  top: -2%;
  right: 1%;
  position: absolute;
  display: block;
  content: "";
  /* max-width: 96px; */
  width: 26.5vw;
  max-width: 139px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-image: url(./images/man_5.jpg);
  background-size: 115%;
  background-position: 30% top;
  z-index: -1;
}

.fv__content__circle__decor.f03::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(./images/flower.svg);
  background-repeat: no-repeat;
  /* max-width: 32px; */
  max-width: 45px;
  width: 8.53vw;
  aspect-ratio: 1 / 1;
  background-size: contain;
}

.fv__content__circle__decor.f04 {
  /* max-width: 150px; */
  max-width: 211.5px;
  width: 40vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  box-sizing: content-box;
  /* bottom: -150px;
  right: -15px; */
  bottom: -42%;
  right: -4.2%;
  z-index: 2;
  background-image: url(./images/doctor_4.jpg);
  background-size: 115%;
  background-position: right top;
  filter: drop-shadow(0px 0px 20px #5dade2);
}

.fv__content__circle__decor.f04::after {
  top: 1.7%;
  left: 0.67%;
  position: absolute;
  display: block;
  content: "";
  width: 40.8vw;
  /* max-width: 153px; */
  max-width: 216px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid #5dade2;
}

.fv__content__circle__decor.f04::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 18%;
  background-image: url(./images/flower_4.svg);
  background-repeat: no-repeat;
  width: 10.67vw;
  height: 16.8vw;
  /* max-width: 40px;
  max-height: 63px; */
  max-width: 56px;
  aspect-ratio: 40 / 63;
  background-size: contain;
  z-index: 2;
}

.fv__img__decor {
  position: absolute;
  background-image: url(./images/building_2.png);
  width: 100vw;
  aspect-ratio: 375 / 158;
  background-size: 115%;
  background-repeat: no-repeat;
  background-position: 85% top;
  bottom: -70%;
  left: -3%;
  z-index: 3;
  max-width: 433px;
}

@media (min-width: 506px) {
  .fv__img__decor {
    left: calc(248px - 50vw);
  }
}

@media (min-width: 521px) {
  .fv__content__circle__decor.f01 {
    top: 55px;
    left: 83px;
  }

  .fv__content__circle span {
    font-size: 22px;
  }

  .fv__content__circle h2 {
    font-size: 56px;
    line-height: 75px;
  }

  .fv__content__circle {
    top: 93px;
  }
}

@media (min-width: 768px) {
  header {
    height: 80px;
    opacity: 1;
  }

  .header_wrapper {
    gap: 72px;
    justify-content: center;
    max-width: 950px;
  }

  .logo_wrapper {
    margin: 0;
    width: 200px;
  }

  .hamburger_menu {
    display: none;
  }

  .header_menu {
    position: relative;
    display: initial;
  }

  .header_menu ul {
    display: flex;
    width: 44vw;
    max-width: 602px;
    width: 602px;
    margin: 0 auto;
    gap: 30px;
    align-items: center;
  }

  .header_menu ul li:last-child {
    position: relative;
    width: 100px;
  }

  .header_menu ul li:last-child a {
    position: absolute;
    top: -40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .header_menu a {
    color: #333333;
    font-weight: 500;
  }

  .header_menu a:hover {
    color: #5dade2;
  }

  .header_wrapper .yoyaku_button {
    display: block;
    transform: none;
    margin: 0;
    flex-direction: column;
    width: 100px;
    height: 107px;
    min-width: 100px;
    border-radius: 0px 0px 13px 13px;
    transition: background-color 0.5s ease-in-out;
  }

  .header_wrapper .yoyaku_button:hover {
    background-color: #008E44;
  }

  .header_wrapper .yoyaku_button:hover span {
    color: #008E44;
  }

  .header_wrapper .yoyaku_button:hover .yoyaku_img {
    background-image: url(./images/yoyaku_green.svg);
    background-size: contain;
    height: 23px;
    width: 24px;
    z-index: 2;
  }

  .header_wrapper .yoyaku_button::after {
    width: 94px;
    height: 104px;
    top: calc(50% - 1px);
    border-radius: 0px 0px 10px 10px;
    border-top: none;
  }

  .header_wrapper .yoyaku_button:hover::after {
    box-sizing: content-box;
    background-color: #ffffff;
    border-color: #008E44;
    z-index: 1;
  }

  header .yoyaku_button span {
    font-size: 16px;
    text-align: center;
    line-height: 18px;
    margin-top: 0px;
    z-index: 2;
  }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .header {
    width: 100%;
  }

  .header_wrapper {
    gap: 30px;
  }

  .header_menu ul {
    width: 60.2vw;
    gap: 20px;
  }
}

@media (min-width: 900px) {
  .fv__content__circle span {
    font-size: 24px;
  }

  .fv__content__circle h2 {
    font-size: 68px;
    line-height: 88px;
  }

  .fv__content__circle {
    max-width: 703px;
    max-height: 703px;
    top: 30px;
  }

  .fv__content__circle__text {
    font-size: 28px;
    padding: 24px 35px;
    height: 109px;
    max-width: 650px;
    border-radius: 54.5px;
    bottom: 100px;
  }

  .fv__content__circle__decor.f01 {
    max-width: 242px;
    max-height: 145px;
    top: 85px;
    left: 120px;
  }
}

@media (min-width: 768px) {
  .fv__content__circle__decor.f02 {
    max-width: 240px;
    max-height: 240px;
    top: 85px;
    left: 120px;
    left: -40%;
    top: 3%;
  }

  .fv__content__circle__decor.f02::after {
    max-width: 240px;
    max-height: 240px;
    top: 2%;
    right: 2%;
    background-position: 40% 95%;
  }

  .fv__content__circle__decor.f02::before {
    content: "";
    position: absolute;
    right: initial;
    left: 0;
    bottom: 0;
    max-width: 84px;
    aspect-ratio: 1 / 1;
    background-size: contain;
  }

  .fv__content__circle__decor.f03 {
    max-width: 184px;
    max-height: 184px;
    top: 7%;
    right: -42%;
  }

  .fv__content__circle__decor.f03::after {
    max-width: 186px;
    max-height: 186px;
    top: -3%;
    right: 2%;
  }

  .fv__content__circle__decor.f03::before {
    max-width: 60px;
    left: initial;
    right: 0;
  }

  .fv__content__circle__decor.f04 {
    max-width: 338px;
    max-height: 338px;
    bottom: 0;
    right: -41%;
  }

  .fv__content__circle__decor.f04::after {
    max-width: 342px;
    max-height: 342px;
  }

  .fv__content__circle__decor.f04::before {
    background-image: url(./images/flower_5.svg);
    width: 112px;
    height: 78px;
    max-width: none;
    max-height: none;
    left: initial;
    top: initial;
    right: 10%;
    bottom: 0;
  }

  .fv__img__decor {
    max-width: 743px;
    bottom: -20%;
    left: calc(350px - 50vw);
    background-size: 105%;
    background-position: center 80%;
  }
}

@media (min-width: 768px) and (max-width: 1312px) {
  .fv__content__circle__decor.f02 {
    left: -25%;
    top: 25%;
  }

  .fv__content__circle__decor.f03 {
    top: 7%;
    right: -22%;
  }

  .fv__content__circle__decor.f04 {
    max-width: 338px;
    max-height: 338px;
    bottom: -22%;
    right: -32%;
  }

  .fv__img__decor {
    max-width: 600px;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .fv__img__decor {
    left: calc(250px - 50vw);
    bottom: -50%;
  }

  .fv__content__circle__decor.f02 {
    left: -25%;
    top: -15%;
    max-width: 120px;
    max-height: 120px;
  }

  .fv__content__circle__decor.f02::after {
    max-width: 120px;
    max-height: 120px;
  }

  .fv__content__circle__decor.f02::before {
    max-width: 36px;
    max-height: 36px;
  }

  .fv__content__circle__decor.f03 {
    top: 7%;
    right: -20%;
    max-width: 120px;
    max-height: 120px;
  }

  .fv__content__circle__decor.f03::after {
    max-width: 120px;
    max-height: 120px;
    top: -2%;
  }

  .fv__content__circle__decor.f04 {
    max-width: 220px;
    max-height: 220px;
    bottom: -40%;
    right: -25%;
    z-index: 5;
  }

  .fv__content__circle__decor.f04::after {
    max-width: 220px;
    max-height: 220px;
  }
}

@media (min-width: 900px) and (max-width: 1036px) {
  .fv__content__circle__decor.f02::before {
    left: initial;
    right: 0;
  }

  .fv__content__circle__decor.f03::before {
    left: 0;
    right: initial;
  }
}