@charset "utf-8";
.top_title {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.25;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
}
/*mv*/
.mv {
  background-color: var(--primary_bg01);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  position: relative;
  z-index: 0;
}
.mv_inner {
  width: 85%;
  max-width: 900px;
  text-align: center;
  margin: auto;
}
.mv_inner {
  position: relative;
}
.mv_inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%) rotate(-20deg);
  background: url("../img/top/bg_flower01.png") center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.mv_inner.is-rotate-show::after {
  animation: rotateFadeLoop 8s ease-in-out infinite;
}
/* 回転＋フェード */
@keyframes rotateFadeLoop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-20deg);
  }
  25% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  37.5% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  62.5% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(20deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(20deg);
  }
}
.tx_mv01 {
  display: inline-block;
  font-weight: bold;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1;
  color: var(--primary);
  background-color: #fff;
  border: 2px solid;
  border-radius: 5px;
  padding: 10px;
}
.mv_inner .tx_mv02 {
  position: relative;
  font-size: clamp(25px, 3.5vw, 40px);
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, 0 -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF;
  margin-bottom: 1em;
  margin-top: .25em;
}
.person_box {
  display: flex;
  gap: 50px 30px;
}
.person_item {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex: 1;
  min-height: 300px;
}
.person_item.person02 {
  flex-direction: row-reverse;
}
.person_item figure {
  position: relative;
  width: 100%;
}
.person_item .comment::before,
.person_item .im_person::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.person_item .comment {
  width: 40%;
}
.person_item .im_person {
  width: 60%;
}
.person_item .dc_flower {
  position: absolute;
  min-height: 120px;
  z-index: 10;
}
.person_item .dc_flower img {
  position: absolute;
  height: auto;
}
.person_item.person01 .dc_flower {
  width: 25%;
  bottom: -10%;
  left: 25%;
  transform: rotate(-105deg);
}
.person_item.person02 .dc_flower {
  width: 30%;
  bottom: -12%;
  right: 25%;
  transform: rotate(-10deg);
}
.person_item .on,
.person_item .off {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.25s ease;
}
.person_item .off {
  opacity: 1;
  z-index: 2;
}
.person_item .on,
.mv_inner .tx_mv02 {
  z-index: 3;
}
.person_item.is-on .on {
  opacity: 1;
}
.person_item .dc_flower .on {
  transition: opacity 1s ease;
}
/*mv-end-*/
.dc_item {
  position: relative;
  display: block;
  margin: auto;
}
.dc_item img {
  position: absolute;
  z-index: 10;
}
.sec_top_news .flower03 {
  width: 100px;
  height: auto;
  right: -5%;
  bottom: -50px;
}
.sec_top_about .flower01,
.sec_top_about .flower02 {
  width: 150px;
  height: auto;
}
.sec_top_about .flower01 {
  top: -300px;
  left: 0;
  /* transform: rotate(0deg); */
}
.sec_top_about .flower02 {
  bottom: -80px;
  right: -5%;
}
.sec_top_news .flex_all .link01 {
  max-width: 230px;
}
.sec_top_about {
  padding: 100px 0;
  background-color: var(--primary_bg01);
}
.sec_top_about .top_title {
  justify-content: center;
}
.sec_top_about .about_box {
  margin-top: 50px;
}
.sec_top_about .about_item {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
}
.sec_top_about .about_item h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
}
.sec_top_about .text_wrap {
  position: relative;
  margin-bottom: 20px;
}
.sec_top_about .text_wrap::before {
  content: "";
  position: absolute;
  width: 25%;
  height: 50px;
}
.sec_top_about .text_wrap.counseling::before {
  background: url(../img/top/ic_counseling.svg) no-repeat center / contain;
}
.sec_top_about .text_wrap.support::before {
  background: url(../img/top/ic_support.svg) no-repeat center / contain;
}
.sec_top_link .ul_link {
  display: flex;
  flex-wrap: wrap;
}
.sec_top_link .ul_link > li a {
  display: block;
  background-color: var(--primary_bg01);
  padding: 1em;
  border-radius: 1em;
}
@media (min-width: 769px) {
  .mv {
    min-height: calc( 100vh - 170px);
  }
  .person_box {
    flex-direction: row;
  }
  .sec_top_about .text_wrap {
    padding-left: 30%;
  }
  .sec_top_about .text_wrap::before {
    left: 0;
    top: 5px;
  }
  .sec_top_link .ul_link {
    gap: 30px 50px;
  }
  .sec_top_link .ul_link > li {
    flex: 0 0 calc(50% - 25px);
  }
  .sec_top_link .ul_link > li a {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .header .header_logo {
    margin-left: 0;
    margin-right: 0;
  }
  .top_title > * {
    flex: 0 0 100%;
  }
  .mv {
    min-height: calc( 100vh - 200px);
  }
  .mv_inner::after {
    top: 10%;
    width: 55%;
  }
  .tx_mv01 {
    position: absolute;
    top: 30px;
    right: 5px;
    line-height: normal;
  }
  .mv_inner .tx_mv02 {
    margin-bottom: 50px;
  }
  .person_box {
    flex-direction: column;
    width: 90%;
    margin: auto;
  }
  .person_item {
    min-height: auto;
  }
  .person_item .dc_flower {
    min-height: 50px;
  }
  .person_item.person01 .dc_flower {
    bottom: -5%;
    left: 0%;
  }
  .person_item.person02 .dc_flower {
    bottom: 0%;
    right: 5%;
  }
  .sec_top_news .flower03 {
    width: 60px;
    right: -5%;
    bottom: -30px;
  }
  .sec_top_news .flex_all .top_title {
    width: 50%;
  }
  .sec_top_news .flex_all .link01 {
    width: 50%;
    font-size: 16px;
    text-align: left;
  }
  .sec_top_about .flower01,
  .sec_top_about .flower02 {
    width: 85px;
  }
  .sec_top_about .flower01 {
    top: 30px;
    left: -5%;
  }
  .sec_top_about .flower02 {
    bottom: -30px;
  }
  .sec_top_about .about_item {
    flex: 0 0 100%;
    max-width: 450px;
  }
  .sec_top_about .text_wrap {
    padding-top: 50px;
    margin-bottom: 1em;
  }
  .sec_top_about .text_wrap::before {
    left: 50%;
    transform: translateX(-50%);
    top: -5px;
  }
  .sec_top_about .text_wrap .title02 {
    text-align: center;
    margin-bottom: 10px;
  }
  .sec_top_link .ul_link {
    row-gap: 20px;
  }
  .sec_top_link .ul_link > li {
    flex: 0 0 100%;
  }
}