@charset "UTF-8";
#main.page_home {
  background: linear-gradient(167deg, rgba(174, 224, 221, 0.5) 0%, rgba(255, 253, 242, 0.5) 1050px, rgba(255, 253, 242, 0.5) 100%);
  position: relative;
  overflow: hidden;
}

/* 桜の花びらアニメーション */
.sakura-petals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.sakura-petal {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/page_header_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  animation: fall linear infinite, sway ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .sakura-petal {
    width: 15px;
    height: 15px;
  }
}

@keyframes fall {
  0% {
    top: -20%;
    opacity: 0;
  }
  5% {
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    top: 110%;
    opacity: 0;
  }
}
@keyframes sway {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(30px) rotate(90deg);
  }
  50% {
    transform: translateX(0) rotate(180deg);
  }
  75% {
    transform: translateX(-30px) rotate(270deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* ヒーロー */
.hero {
  width: min(100%, 1400px);
  margin: 20px auto 160px;
  position: relative;
  aspect-ratio: 1/0.581;
  transition: all 0.5s;
  opacity: 0;
  animation: 1s fadeIn 0.5s forwards;
}
@media screen and (max-width: 767px) {
  .hero {
    aspect-ratio: 1/1.593;
    margin: 20px auto 60px;
    max-height: 810px;
  }
}
.hero .hero_inner {
  width: 90%;
  margin: 0 auto;
}
.hero .hero_title {
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.3;
  display: inline-flex;
  flex-direction: column;
  row-gap: 15px;
  align-items: start;
  margin: 0;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hero .hero_title {
    top: 38px;
    row-gap: 5px;
  }
}
.hero .hero_title span {
  background-color: #fff;
  border-radius: 13px;
  font-weight: 400;
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  .hero .hero_title span {
    padding: 6px 12px;
  }
}
.hero .hero_image {
  position: absolute;
  height: auto;
}
.hero .hero_image.child {
  left: 2%;
  bottom: 0;
  width: 65%;
  z-index: 2;
}
.hero .hero_image.sakura {
  z-index: 1;
  right: 0;
  bottom: 7px;
  width: 47%;
}
.hero .hero_image.hero_cloud {
  z-index: 0;
  filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.05));
  animation: float ease-in-out infinite 6s;
}
.hero .hero_image.hero_cloud.cloud1 {
  top: 169px;
  left: 32%;
  width: 119px;
  transform: scaleX(-1);
}
.hero .hero_image.hero_cloud.cloud2 {
  top: 116px;
  left: 43%;
  width: 71px;
}
.hero .hero_image.hero_cloud.cloud3 {
  top: 0;
  right: 0;
  width: 149px;
}
@media screen and (max-width: 767px) {
  .hero .hero_image.child {
    width: 100%;
    left: 0%;
  }
  .hero .hero_image.sakura {
    width: 74%;
    bottom: 77px;
  }
  .hero .hero_image.hero_cloud.cloud1 {
    top: 174px;
    left: 15%;
    width: 19%;
  }
  .hero .hero_image.hero_cloud.cloud2 {
    right: 7%;
    left: auto;
    width: 13%;
    top: 213px;
  }
  .hero .hero_image.hero_cloud.cloud3 {
    top: 20px;
    right: 5%;
    width: 28vw;
  }
}

.hero-sub {
  color: var(--muted);
  margin: 0 0 16px;
}

.hero-bullets {
  margin: 0 0 20px 20px;
}

/* 特徴 */
#features {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #features {
    margin-bottom: 30px;
  }
}
#features .feature_item_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 250px;
}
@media screen and (max-width: 767px) {
  #features .feature_item_wrap {
    row-gap: 70px;
  }
}
#features .feature_item {
  display: flex;
  column-gap: 8%;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  position: relative;
}
#features .feature_item::after {
  content: "";
  position: absolute;
  aspect-ratio: 1/0.816;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: -1;
}
@media screen and (min-width: 969px) {
  #features .feature_item {
    flex-direction: row;
    justify-content: space-between;
  }
}
#features .feature_item .feature_item_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 969px) {
  #features .feature_item .feature_item_inner {
    width: 39%;
    margin-bottom: -110px;
  }
  #features .feature_item .feature_item_inner::before {
    content: "";
    position: absolute;
    top: -110px;
    left: -30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 110px;
    aspect-ratio: 1/1;
    z-index: -1;
  }
}
#features .feature_item .feature_item_inner .feature_item__title {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin: 0;
}
@media screen and (min-width: 969px) {
  #features .feature_item .feature_item_inner .feature_item__title {
    margin: 0 0 20px;
  }
}
#features .feature_item .feature_item_inner .feature_item__title .main {
  font-size: clamp(22px, 7vw, 38px);
  line-height: 1.6em;
  letter-spacing: 0.08em;
}
#features .feature_item .feature_item_inner .feature_item__title .sub {
  color: #E88086;
  font-size: clamp(14px, 1.2vw, 18px);
}
#features .feature_item .feature_item_inner .feature_item__desc {
  line-height: 2.13em;
}
#features .feature_item .feature_item_inner .feature_item__desc p:not(:first-of-type) {
  margin-top: 25px;
}
#features .feature_item .feature_item_img {
  position: relative;
  width: 95%;
  order: 1;
  z-index: 0;
}
#features .feature_item .feature_item_img::before {
  content: "";
  position: absolute;
  bottom: 11%;
  right: -2%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 26%;
  aspect-ratio: 1/1;
  z-index: 1;
}
@media screen and (min-width: 969px) {
  #features .feature_item .feature_item_img {
    order: initial;
    flex: 1;
    width: auto;
  }
  #features .feature_item .feature_item_img::before {
    display: none;
  }
}
#features .feature_item .feature_item_img .clip_img {
  width: auto;
  position: absolute;
  z-index: 0;
}
#features .feature_item .feature_item_img .clip_img image {
  height: 100%;
}
#features .feature_item .feature_item_img .chara {
  z-index: 1;
  position: absolute;
}
#features .feature_item.item01::after {
  top: 7%;
  left: -50%;
  width: 240%;
  background-image: url(/assets/img/common/bg_grad_pink.png);
}
@media screen and (min-width: 969px) {
  #features .feature_item.item01::after {
    top: 10%;
    left: -43%;
    width: 91%;
  }
}
@media screen and (min-width: 969px) {
  #features .feature_item.item01 .feature_item_inner::before {
    background-image: url(/assets/img/top/features_num01.svg);
  }
}
#features .feature_item.item01 .feature_item_img {
  aspect-ratio: 1/1.175;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item01 .feature_item_img {
    aspect-ratio: 1/0.862;
  }
}
#features .feature_item.item01 .feature_item_img::before {
  background-image: url(/assets/img/top/features_num01.svg);
}
#features .feature_item.item01 .feature_item_img .chara01_01 {
  width: 23%;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item01 .feature_item_img .chara01_01 {
    width: 18.8%;
  }
}
#features .feature_item.item01 .feature_item_img .chara01_02 {
  width: 30%;
  top: 0;
  right: 0;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item01 .feature_item_img .chara01_02 {
    width: 28.1%;
    top: 0;
    right: 0;
  }
}
#features .feature_item.item01 .feature_item_img .clip_img:first-of-type {
  width: 100%;
  bottom: 10%;
  left: 0;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item01 .feature_item_img .clip_img:first-of-type {
    width: 80.7%;
    bottom: 0;
    left: 10%;
  }
}
#features .feature_item.item01 .feature_item_img .clip_img:nth-of-type(2) {
  top: 13%;
  left: 0;
  width: 39.2%;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item01 .feature_item_img .clip_img:nth-of-type(2) {
    display: none;
  }
}
#features .feature_item.item02::after {
  top: 7%;
  left: -50%;
  width: 240%;
  background-image: url(/assets/img/common/bg_grad_yellow.png);
}
@media screen and (min-width: 969px) {
  #features .feature_item.item02::after {
    top: 10%;
    right: -31%;
    width: 91%;
    left: auto;
  }
}
@media screen and (min-width: 969px) {
  #features .feature_item.item02 .feature_item_inner::before {
    background-image: url(/assets/img/top/features_num02.svg);
  }
}
#features .feature_item.item02 .feature_item_img {
  aspect-ratio: 1/1.383;
}
#features .feature_item.item02 .feature_item_img::before {
  background-image: url(/assets/img/top/features_num02.svg);
  right: auto;
  left: 0;
  bottom: 20%;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item02 .feature_item_img {
    aspect-ratio: 1/0.92;
  }
}
#features .feature_item.item02 .feature_item_img .chara02 {
  width: 50%;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item02 .feature_item_img .chara02 {
    width: 42.9%;
    right: 1%;
  }
}
#features .feature_item.item02 .feature_item_img .clip_img:first-of-type {
  width: 90%;
  top: 19%;
  left: 0;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item02 .feature_item_img .clip_img:first-of-type {
    width: 74.9%;
    top: 12%;
  }
}
#features .feature_item.item02 .feature_item_img .clip_img:nth-of-type(2) {
  width: 44%;
  top: 0;
  right: 0;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item02 .feature_item_img .clip_img:nth-of-type(2) {
    width: 32%;
  }
}
#features .feature_item.item03::after {
  top: 7%;
  left: -50%;
  width: 240%;
  background-image: url(/assets/img/common/bg_grad_pink.png);
}
@media screen and (min-width: 969px) {
  #features .feature_item.item03::after {
    top: 10%;
    left: -43%;
    width: 91%;
  }
}
@media screen and (min-width: 969px) {
  #features .feature_item.item03 .feature_item_inner::before {
    background-image: url(/assets/img/top/features_num03.svg);
  }
}
#features .feature_item.item03 .feature_item_img {
  aspect-ratio: 1/1.241;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item03 .feature_item_img {
    aspect-ratio: 1/0.975;
  }
}
#features .feature_item.item03 .feature_item_img::before {
  bottom: 0;
  background-image: url(/assets/img/top/features_num03.svg);
}
#features .feature_item.item03 .feature_item_img .chara03_01 {
  width: 30.2%;
  bottom: 15%;
  left: 0;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item03 .feature_item_img .chara03_01 {
    width: 31.2%;
    bottom: 0;
  }
}
#features .feature_item.item03 .feature_item_img .chara03_02 {
  width: 29.8%;
  top: 0;
  right: 0;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item03 .feature_item_img .chara03_02 {
    width: 29.8%;
    right: 1%;
    top: 9%;
  }
}
#features .feature_item.item03 .feature_item_img .clip_img:first-of-type {
  width: 74%;
  top: 8%;
  left: 0;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item03 .feature_item_img .clip_img:first-of-type {
    width: 63.7%;
    top: 0;
    left: 1%;
  }
}
#features .feature_item.item03 .feature_item_img .clip_img:nth-of-type(2) {
  width: 51%;
  bottom: 13%;
  right: 0;
}
@media screen and (min-width: 969px) {
  #features .feature_item.item03 .feature_item_img .clip_img:nth-of-type(2) {
    width: 43.7%;
    bottom: 2%;
  }
}

#information {
  text-align: center;
}
#information .cta_area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px 22px;
}
#information .cta_area .btn {
  display: flex;
  width: 70%;
  padding: 15px 14px;
}
@media screen and (min-width: 969px) {
  #information .cta_area {
    flex-direction: row;
  }
  #information .cta_area .btn_mail {
    width: 265px;
  }
  #information .cta_area .btn_line {
    width: 299px;
  }
}
#information .map_wrap {
  margin: 50px 0 0px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, #514131 50%, #514131 100%);
}
#information .map_wrap iframe {
  border-radius: 20px;
  overflow: hidden;
  width: min(85%, var(--container));
  margin: 0 auto;
}
@media screen and (min-width: 969px) {
  #information .map_wrap iframe {
    border-radius: 30px;
  }
}
#information .map_wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 113px;
  aspect-ratio: 1/1;
  background-image: url(/assets/img/top/sakura.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #fff;
  background-size: 70% auto;
  border-radius: 999px;
}
@media screen and (min-width: 969px) {
  #information .map_wrap::after {
    width: 200px;
  }
}
#information .info_bottom {
  background-color: #514131;
  color: #938270;
}
@media screen and (max-width: 767px) {
  #information .info_bottom {
    padding-top: 70px;
  }
}
#information .info_bottom a {
  color: #938270;
}
#information .info_bottom .info_bottom_inner {
  text-align: left;
  flex-direction: column;
  width: min(85%, var(--container));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media screen and (min-width: 969px) {
  #information .info_bottom .info_bottom_inner {
    flex-direction: row;
    align-items: center;
  }
}
#information .info_bottom .info_bottom_inner .detail_link::after {
  background-color: #938270;
}
