@charset "UTF-8";
/*===================================
 *※※※※※※※※※※※※※※※※※※※※※
 *このファイルはSassで管理されているので
 *cssを直接編集しないでください。
 *※※※※※※※※※※※※※※※※※※※※※
 *===================================*/
h1 {
  margin-bottom: 0 !important;
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}

li {
  list-style: none;
}

.hp_text_link {
  color: #EB6D73;
}
.hp_text_link:hover {
  text-decoration: none;
}

* {
  line-height: 1.5;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFFDED;
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #FFFDED;
  font-size: 16px;
  position: relative;
  scroll-behavior: smooth;
}

.ly_wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.ly_wrapper::before, .ly_wrapper::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 120px;
  height: 132px;
  z-index: 20;
}
@media screen and (min-width: 992px) {
  .ly_wrapper::before, .ly_wrapper::after {
    width: 310px;
    height: 338px;
  }
}
.ly_wrapper::before {
  left: -20px;
  background-image: url("../img/footer_illust__left.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 576px) {
  .ly_wrapper::before {
    left: 0;
  }
}
.ly_wrapper::after {
  right: -20px;
  background-image: url("../img/footer_illust__right.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 576px) {
  .ly_wrapper::after {
    right: 0;
  }
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
h2 img {
  margin: 0 auto 10px;
  display: block;
}

.bl_sns_icon {
  text-align: center;
  font-size: 40px;
}
.bl_sns_icon a {
  text-decoration: none;
}
.bl_sns_icon i, .bl_sns_icon img {
  margin: 0 8px;
  color: white;
  transition: all 0.3s;
  vertical-align: middle;
}
.bl_sns_icon i:hover, .bl_sns_icon img:hover {
  opacity: 0.7;
}

.bl_page_top {
  position: fixed;
  opacity: 0;
  right: 5px;
  bottom: 5px;
  z-index: 100;
  transition: all 0.3s;
}
.bl_page_top.is_in {
  opacity: 1;
}
.bl_page_top a {
  text-decoration: none;
  display: flex;
  text-align: center;
  width: 60px;
  height: 60px;
  background-color: #EB6D73;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  transform-origin: 50% 50%;
}
.bl_page_top a img {
  margin-bottom: 5px;
  width: 24px;
}
.bl_page_top a:hover {
  opacity: 0.7;
}
.bl_page_top span {
  width: 100%;
  font-size: 14px;
  text-align: center;
}

.un_fadeBottom {
  opacity: 0;
}

.un_fadeBottom.is_active {
  animation: fadeBottom forwards 1s ease 0.2s;
}

.un_fade {
  opacity: 0;
}

.un_fade.is_active {
  animation: fade forwards 1s ease 0s;
}

.is_scroll {
  opacity: 0;
  transform: translateY(-100px);
}

@keyframes scaleAnimation {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}
@keyframes headerAnimation {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: none;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeBottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes driveTheme {
  0% {
    transform: translate(0, 0) scale(1, 1);
  }
  25% {
    transform: translate(-50vw, 0) scale(1, 1);
  }
  26% {
    transform: translate(-50vw, 0) scale(-1, 1);
  }
  65% {
    transform: translate(20vw, 0) scale(-1, 1);
  }
  66% {
    transform: translate(20vw, 0) scale(1, 1);
  }
  80% {
    transform: translate(0, 0) scale(1, 1);
  }
}
@keyframes driveInquiry {
  0% {
    transform: translate(0, 0) scale(-1, 1);
  }
  40% {
    transform: translate(100vw, 0) scale(-1, 1);
  }
  41% {
    transform: translate(100vw, 0) scale(1, 1);
  }
  80% {
    transform: translate(-50vw, 0) scale(1, 1);
  }
  81% {
    transform: translate(-50vw, 0) scale(-1, 1);
  }
  90% {
    transform: translate(0, 0) scale(-1, 1);
  }
}
.ly_header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 70px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .ly_header {
    height: auto;
    top: 15px;
    overflow: visible;
  }
}

.un_header_logo {
  position: fixed;
  top: 5px;
  left: 10px;
  z-index: 1000;
}
.un_header_logo img {
  width: auto;
  height: 60px;
}
.un_header_logo img:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (min-width: 1200px) {
  .un_header_logo {
    position: absolute;
    top: -5px;
    left: 10px;
  }
  .un_header_logo img {
    height: 80px;
  }
}

.un_header_insta {
  position: fixed;
  top: 5px;
  height: 60px;
  width: 60px;
  right: 75px;
  z-index: 1000;
  font-size: 48px;
  color: white;
  transition: all 0.3s;
  background: linear-gradient(to right, #FFD600, #FF7A00, #FF0069, #D300C5, #7638FA);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 20px;
}
@media screen and (min-width: 1200px) {
  .un_header_insta {
    position: absolute;
    right: 10px;
    top: 0;
  }
}
.un_header_insta:hover {
  opacity: 0.7;
}

.bl_nav {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100vw;
  transition: ease 0.6s;
  z-index: 900;
}
@media screen and (min-width: 1200px) {
  .bl_nav {
    position: relative;
    overflow: visible;
    right: 0;
    top: 0;
  }
}
.bl_nav.is_active {
  right: 0;
}
@media screen and (min-width: 1200px) {
  .bl_nav.is_active {
    right: auto;
  }
}
.bl_nav_inner {
  background-color: #FFFDED;
  overflow-y: scroll;
  height: max(100vh, 700px);
  width: clamp(320px, 90vw, 600px);
  margin-right: 0;
  margin-left: auto;
  transition: all 0.3s;
}
@media screen and (min-width: 1200px) {
  .bl_nav_inner {
    position: absolute;
    top: 0;
    right: 90px;
    display: flex;
    height: auto;
    width: auto;
    max-width: none;
    transform: none;
    background-color: transparent;
    height: auto;
    overflow: hidden;
  }
}
.bl_nav_inner .bl_sns_icon {
  width: 100%;
}
.bl_nav_inner .bl_sns_icon i {
  color: #2C332E;
}
.bl_nav ul {
  width: 100%;
  text-align: center;
  padding-top: 150px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1200px) {
  .bl_nav ul {
    margin-top: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 0;
    background-color: white;
    border-radius: 20px;
    padding: 0 15px;
  }
}
.bl_nav ul li {
  font-size: 20px;
  font-weight: 500;
  padding: 15px 10px;
  margin-bottom: 10px;
  width: 50%;
}
@media screen and (min-width: 1200px) {
  .bl_nav ul li {
    font-size: 16px;
    padding: 10px 0;
    word-break: keep-all;
    width: auto;
    margin: 0 20px;
  }
}
.bl_nav ul li a {
  display: block;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
  color: #2C332E;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .bl_nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #EF91A7;
    transition: all 0.3s;
  }
}
.bl_nav ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (min-width: 1200px) {
  .bl_nav ul li a:hover::after {
    width: 100%;
  }
}
.bl_nav_en {
  color: #EF91A7;
  display: block;
  font-size: 12px;
}

.bl_hamburger {
  padding-top: 10px;
  width: 60px;
  height: 60px;
  background-color: #FFFDED;
  z-index: 9999;
  position: fixed;
  top: 5px;
  right: 5px;
  border: 2px solid #EF91A7;
  border-radius: 20px;
  box-sizing: border-box;
  transition: all 0.3s;
}
@media screen and (min-width: 1200px) {
  .bl_hamburger {
    display: none;
  }
}
.bl_hamburger span {
  width: 28px;
  height: 2px;
  background-color: #EF91A7;
  position: relative;
  transition: ease 0.4s;
  display: block;
  mix-blend-mode: multiply;
  margin: 0 auto;
}
.bl_hamburger span:nth-child(1) {
  top: 0;
}
.bl_hamburger span:nth-child(2) {
  margin: 7px auto;
}
.bl_hamburger span:nth-child(3) {
  top: 0;
}
.bl_hamburger_text {
  font-size: 12px;
  color: #EF91A7;
}

.bl_nav.is_active .header_nav_inner {
  transform: translateX(0);
}
.bl_nav.is_active .bl_hamburger {
  border: 2px solid transparent;
}
.bl_nav.is_active .bl_hamburger span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.bl_nav.is_active .bl_hamburger span:nth-child(2) {
  opacity: 0;
}
.bl_nav.is_active .bl_hamburger span:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}

.bl_hero {
  background-image: url("../img/hero_bg.svg");
  background-size: auto 100%;
  background-position: center top;
  background-repeat: repeat-x;
  margin-top: 15px;
  margin-bottom: 70px;
  height: 100vh;
  width: 100%;
  position: relative;
  min-height: 800px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .bl_hero {
    margin-bottom: 120px;
  }
}
.bl_hero h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.bl_hero h1 img {
  width: clamp(400px, 140vw, 600px);
}
@media screen and (min-width: 768px) {
  .bl_hero h1 img {
    width: clamp(700px, 80vw, 1000px);
  }
}

.bl_news {
  margin-top: -90px;
  padding-top: 90px;
  margin-bottom: 90px;
}
@media screen and (min-width: 992px) {
  .bl_news {
    margin-bottom: 50px;
    min-height: 350px;
  }
}
@media screen and (min-width: 992px) {
  .bl_news_inner {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .bl_news_title {
    width: 216px;
    margin-right: 50px;
  }
  .bl_news_title img {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .bl_news_title {
    margin-right: 100px;
    margin-left: 70px;
  }
}
@media screen and (min-width: 992px) {
  .bl_news_list {
    flex: 1;
  }
}
.bl_news_item {
  background-color: white;
  padding: 15px;
  border-radius: 20px;
}
.bl_news_date {
  color: #569065;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.bl_news_content {
  color: #2C332E;
}
.bl_news_content a {
  color: #EF91A7;
}
.bl_news_content a:hover {
  text-decoration: none;
}

.bl_theme {
  margin-bottom: 70px;
  position: relative;
  padding: 70px 0 200px;
}
@media screen and (min-width: 992px) {
  .bl_theme {
    padding: 100px 0 150px;
    margin-bottom: 170px;
  }
}
.bl_theme::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg_ryutai.svg");
  background-size: auto 100%;
  background-position: right top;
  background-repeat: no-repeat;
  z-index: -1;
  filter: brightness(0) saturate(100%) invert(51%) sepia(20%) saturate(738%) hue-rotate(83deg) brightness(96%) contrast(91%);
}
@media screen and (min-width: 992px) {
  .bl_theme::before {
    background-size: 100% 100%;
    left: 50%;
    transform: translateX(-50vw);
    width: 95vw;
  }
}
.bl_theme_title {
  margin-bottom: 30px;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .bl_theme_title {
    margin-bottom: 90px;
  }
}
.bl_theme_title__ja {
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 992px) {
  .bl_theme_title__ja {
    width: 488px;
  }
}
.bl_theme_title__en {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .bl_theme_title__en {
    width: 616px;
    top: 50%;
  }
}
.bl_theme_text {
  line-height: 2;
  font-weight: 400;
  padding-right: 20px;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 992px) {
  .bl_theme_text {
    font-size: 20px;
    text-align: center;
  }
}
.bl_theme_deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bl_theme .el_theme_illust__01 {
  position: absolute;
  bottom: calc(100% - 2px);
  left: 5px;
  width: 90px;
}
@media screen and (min-width: 992px) {
  .bl_theme .el_theme_illust__01 {
    width: 168px;
    left: 20px;
  }
}
.bl_theme .el_theme_illust__02 {
  position: absolute;
  top: 0;
  right: 25px;
  width: 36px;
}
@media screen and (min-width: 992px) {
  .bl_theme .el_theme_illust__02 {
    width: 54px;
    right: 86px;
  }
}
.bl_theme .el_theme_illust__03 {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-180px);
  width: 66px;
}
@media screen and (min-width: 768px) {
  .bl_theme .el_theme_illust__03 {
    top: 40px;
    left: 40%;
  }
}
@media screen and (min-width: 992px) {
  .bl_theme .el_theme_illust__03 {
    width: 158px;
    left: 20px;
    top: 60px;
    transform: none;
  }
}
.bl_theme .el_theme_illust__04 {
  position: absolute;
  top: calc(100% - 30px);
  left: 50%;
  width: 118px;
  transform: translateX(-150px);
}
@media screen and (min-width: 768px) {
  .bl_theme .el_theme_illust__04 {
    left: 55%;
  }
}
@media screen and (min-width: 992px) {
  .bl_theme .el_theme_illust__04 {
    width: 172px;
    left: 50%;
    bottom: 0;
    transform: translate(-400px, -20px);
  }
}
.bl_theme .el_theme_img__01 {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(calc(-50% - 110px));
  width: min(48.7179487179vw, 190px);
}
@media screen and (min-width: 768px) {
  .bl_theme .el_theme_img__01 {
    bottom: 50px;
    transform: translateX(calc(-50% - 220px));
  }
}
@media screen and (min-width: 992px) {
  .bl_theme .el_theme_img__01 {
    left: 50%;
    bottom: 50%;
    transform: translate(-640px, 170px);
    width: 240px;
  }
}
.bl_theme .el_theme_img__02 {
  position: absolute;
  bottom: 10px;
  right: 50%;
  transform: translateX(calc(50% + 110px));
  width: min(56.4102564103vw, 220px);
}
@media screen and (min-width: 768px) {
  .bl_theme .el_theme_img__02 {
    bottom: -20px;
    transform: translateX(calc(50% + 220px));
  }
}
@media screen and (min-width: 992px) {
  .bl_theme .el_theme_img__02 {
    right: 50%;
    bottom: 50%;
    transform: translate(700px, 100px);
    width: 360px;
  }
}
.bl_theme .el_theme_img__03 {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(-50px, 150px);
}
@media screen and (min-width: 992px) {
  .bl_theme .el_theme_img__03 {
    display: block;
  }
}

.bl_map {
  margin-bottom: 120px;
  position: relative;
  padding: 70px 0;
}
@media screen and (min-width: 992px) {
  .bl_map {
    padding: 100px 0 150px;
    margin-bottom: 180px;
  }
}
.bl_map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(-1, 1);
  background-image: url("../img/bg_ryutai.svg");
  background-size: auto 100%;
  background-position: right top;
  background-repeat: no-repeat;
  z-index: -1;
  filter: invert(75%) sepia(16%) saturate(1205%) hue-rotate(41deg) brightness(95%) contrast(87%);
}
@media screen and (min-width: 992px) {
  .bl_map::before {
    background-size: 100% 100%;
    right: 50%;
    transform: translateX(5vw) scale(-1, 1);
    width: 95vw;
  }
}
.bl_map_title {
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .bl_map_title {
    margin-bottom: 90px;
  }
}
.bl_map_title__ja {
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 992px) {
  .bl_map_title__ja {
    width: 414px;
  }
}
.bl_map_title__en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .bl_map_title__en {
    width: 426px;
  }
}
.bl_map_deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bl_map .el_map_illust__02 {
  position: absolute;
  bottom: -20px;
  right: 5px;
  width: 90px;
}
@media screen and (min-width: 992px) {
  .bl_map .el_map_illust__02 {
    width: 180px;
    bottom: -30px;
  }
}
.bl_map .el_comingSoon {
  color: #FFFDED;
  font-size: 32px;
  text-align: center;
  padding: 2rem 0;
}
@media screen and (min-width: 992px) {
  .bl_map .el_comingSoon {
    font-size: 48px;
  }
}

.bl_gardening {
  position: relative;
}
.bl_gardening_inner {
  position: relative;
  padding: 90px 0 40px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .bl_gardening_inner {
    padding: 100px 0 50px;
  }
}
.bl_gardening_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 77%;
  background-image: url("../img/gardening_bg.svg");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .bl_gardening_inner::before {
    width: 100%;
    height: 75%;
  }
}
.bl_gardening .el_gardening_illust__01 {
  position: absolute;
  top: -30px;
  left: 20px;
  width: 42px;
  height: 53px;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .bl_gardening .el_gardening_illust__01 {
    width: 84px;
    height: 107px;
    bottom: -60px;
    left: 50%;
    top: -60px;
    transform: translateX(-350px);
  }
}
.bl_gardening .el_gardening_illust__02 {
  display: none;
}
@media screen and (min-width: 992px) {
  .bl_gardening .el_gardening_illust__02 {
    width: 84px;
    height: 107px;
    display: block;
    z-index: -1;
    position: absolute;
    left: 50%;
    top: -60px;
    transform: translateX(-500px);
  }
}
.bl_gardening .el_gardening_illust__03 {
  position: absolute;
  top: -60px;
  right: 0;
  width: 122px;
  height: 99px;
}
@media screen and (min-width: 992px) {
  .bl_gardening .el_gardening_illust__03 {
    width: 200px;
    height: 162px;
    top: -100px;
    right: 50%;
    transform: translateX(460px);
  }
}
@media screen and (min-width: 1200px) {
  .bl_gardening .el_gardening_illust__03 {
    transform: translateX(600px);
  }
}
.bl_gardening_title {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .bl_gardening_title {
    margin-bottom: 60px;
  }
}
.bl_gardening_title img {
  width: 100%;
  margin: 0 auto;
}
.bl_gardening_title__ja {
  max-width: 340px;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 992px) {
  .bl_gardening_title__ja {
    max-width: 635px;
  }
}
.bl_gardening_title__en {
  max-width: 368px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .bl_gardening_title__en {
    max-width: 1048px;
  }
}
.bl_gardening_lead {
  color: #2C332E;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .bl_gardening_lead {
    display: flex;
    gap: 15px;
  }
}
@media screen and (min-width: 992px) {
  .bl_gardening_lead {
    gap: 30px;
  }
}
.bl_gardening_lead_img a {
  border-radius: 40px;
  overflow: hidden;
  display: block;
  margin-bottom: 10px;
}
.bl_gardening_text {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .bl_gardening_text {
    width: 50%;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 992px) {
  .bl_gardening_text {
    font-size: 20px;
  }
}
.bl_gardening .js_modal {
  position: relative;
}
.bl_gardening .js_modal img {
  transition: all 0.3s;
}
.bl_gardening .js_modal::before {
  position: absolute;
  content: "";
  bottom: -5px;
  right: -5px;
  transform: translate(10px, 10px);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  background-color: #569065;
  transition: all 0.3s;
  z-index: 1;
}
.bl_gardening .js_modal::after {
  position: absolute;
  content: "";
  bottom: -5px;
  right: -5px;
  transform: translate(-15px, -15px);
  width: 26px;
  height: 26px;
  z-index: 10;
  transition: all 0.3s;
  background-image: url("../img/icon_plus.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bl_gardening .js_modal:hover::before {
  transform: translate(10px, 10px) scale(1.2);
}
.bl_gardening .js_modal:hover::after {
  transform: translate(-15px, -15px) scale(1.2);
}
.bl_gardening .js_modal:hover img {
  transform: scale(1.1);
}
.bl_gardening .el_award {
  position: relative;
}
.bl_gardening .el_award::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 83px;
  height: 109px;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .bl_gardening .el_award::before {
    width: 99px;
    height: 130px;
    top: -20px;
    left: -20px;
  }
}
.bl_gardening .el_award__gold::before {
  background-image: url("../img/award_gold.svg");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
.bl_gardening .el_award__silver::before {
  background-image: url("../img/award_silver.svg");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
.bl_gardening .el_award__silver::after {
  position: absolute;
  top: 18px;
  left: 8px;
  z-index: 10;
  color: #807D7D;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  .bl_gardening .el_award__silver::after {
    font-size: 20px;
    top: 15px;
    left: 0px;
  }
}
.bl_gardening .el_award__second::after {
  content: "準大賞";
}
.bl_gardening .el_award__sns::after {
  content: "SNS賞";
}
.bl_gardening .el_award__special::after {
  content: "特別賞";
}
.bl_gardening .el_award__special::after {
  content: "特別賞";
}
.bl_gardening .el_award__promotion::after {
  content: "奨励賞";
}
.bl_gardening .bl_slider {
  position: relative;
}
.bl_gardening .bl_slider::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 5%;
  width: 116px;
  height: 110px;
  z-index: 1;
  background-image: url("../img/gardening_slider_deco.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 992px) {
  .bl_gardening .bl_slider::after {
    top: 10px;
    width: 176px;
    height: 166px;
  }
}
.bl_gardening .bl_slider_title {
  color: #569065;
  font-size: 20px;
  text-align: center;
  position: relative;
  margin-bottom: 70px;
}
@media screen and (min-width: 992px) {
  .bl_gardening .bl_slider_title {
    font-size: 32px;
  }
}
.bl_gardening .bl_slider_title::before, .bl_gardening .bl_slider_title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 24px;
  background-image: url("../img/gardening_slider_title.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 992px) {
  .bl_gardening .bl_slider_title::before, .bl_gardening .bl_slider_title::after {
    width: 112px;
    height: 50px;
  }
}
.bl_gardening .bl_slider_title::before {
  transform: translate(calc(-50% - 135px), -50%);
}
@media screen and (min-width: 992px) {
  .bl_gardening .bl_slider_title::before {
    transform: translate(calc(-50% - 230px), -50%);
  }
}
.bl_gardening .bl_slider_title::after {
  transform: translate(calc(-50% + 135px), -50%) scale(-1, 1);
}
@media screen and (min-width: 992px) {
  .bl_gardening .bl_slider_title::after {
    transform: translate(calc(-50% + 230px), -50%) scale(-1, 1);
  }
}
.bl_gardening .bl_slider_list {
  margin-bottom: 30px;
}
.bl_gardening .bl_slider_item {
  margin: 15px 15px 0;
}
@media screen and (min-width: 1200px) {
  .bl_gardening .bl_slider_item {
    margin: 25px 25px 0;
  }
}
.bl_gardening .bl_slider_item:nth-child(odd) {
  margin: 30px 15px 0;
}
@media screen and (min-width: 1200px) {
  .bl_gardening .bl_slider_item:nth-child(odd) {
    margin: 50px 25px 0;
  }
}
.bl_gardening .bl_slider a {
  border-radius: 20px;
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.bl_gardening .bl_slider a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.bl_gardening .bl_slider_text {
  text-align: center;
  margin-top: 10px;
  color: #2C332E;
}
.bl_gardening .bl_slider_arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.bl_gardening .slick-prev, .bl_gardening .slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
  position: relative;
  display: block;
  left: 0;
  right: 0;
  top: 0;
}
.bl_gardening .slick-prev img, .bl_gardening .slick-next img {
  width: 100%;
}
.bl_gardening .slick-prev::before, .bl_gardening .slick-next::before {
  display: none;
}

.modaal-gallery-label {
  display: block;
}

.bl_banner {
  margin-bottom: 120px;
}
@media screen and (min-width: 992px) {
  .bl_banner {
    margin-bottom: 200px;
  }
}
.bl_banner .bl_banner_slider .el_slide_item {
  margin: 0 5px;
}
.bl_banner .bl_banner_slider .el_slide_item a img {
  transition: all 0.3s;
}
.bl_banner .bl_banner_slider .el_slide_item a img:hover {
  opacity: 0.5;
}
.bl_banner .bl_banner_slider .banner_border {
  border: 1px solid #ccc;
}
.bl_banner .bl_banner_slider .slick-track {
  display: flex;
  margin-bottom: 20px;
}

#outline {
  padding-top: 90px;
  margin-top: -90px;
}

.bl_outline {
  background-color: #569065;
  position: relative;
  padding: 50px 0 0;
}
@media screen and (min-width: 992px) {
  .bl_outline {
    padding: 80px 0 0;
  }
}
.bl_outline::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100px;
  background-image: url("../img/outline_bg_top.svg");
  background-size: 1200px 100%;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .bl_outline::before {
    top: -80px;
    background-size: cover;
  }
}
.bl_outline_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.bl_outline .el_outline_illust__01 {
  position: absolute;
  top: -90px;
  left: 15px;
}
@media screen and (min-width: 992px) {
  .bl_outline .el_outline_illust__01 {
    width: 120px;
    left: 50%;
    transform: translateX(-500px);
    top: -120px;
  }
}
.bl_outline .el_outline_illust__02 {
  position: absolute;
  top: -70px;
  right: 15px;
}
@media screen and (min-width: 992px) {
  .bl_outline .el_outline_illust__02 {
    width: 229px;
    right: 50%;
    transform: translateX(520px);
    top: -130px;
  }
}
.bl_outline .el_outline_illust__03 {
  display: none;
}
@media screen and (min-width: 1200px) {
  .bl_outline .el_outline_illust__03 {
    display: block;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-600px);
  }
}
.bl_outline .el_outline_illust__04 {
  display: none;
}
@media screen and (min-width: 1200px) {
  .bl_outline .el_outline_illust__04 {
    display: block;
    position: absolute;
    top: 40%;
    right: 0;
  }
}
.bl_outline .container {
  max-width: 750px;
}
.bl_outline dl {
  border-bottom: 1px solid #FFFDED;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .bl_outline dl {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.bl_outline dl:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.bl_outline dt {
  margin-bottom: 7px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .bl_outline dt {
    width: 120px;
    flex-shrink: 0;
    text-align: center;
    margin-right: 30px;
  }
}

.bl_inquiry {
  background: #569065;
  padding: 70px 15px 50px;
}
@media screen and (min-width: 992px) {
  .bl_inquiry {
    padding: 70px 15px;
  }
}
.bl_inquiry_inner {
  background-color: #FFFDED;
  border-radius: 30px;
  padding: 15px;
  color: #2C332E;
  max-width: 750px;
  position: relative;
}
.bl_inquiry_inner::after {
  content: "";
  position: absolute;
  background-image: url("../img/inquiry_illust__car.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  bottom: -35px;
  right: -5px;
  width: 110px;
  height: 65px;
}
@media screen and (min-width: 992px) {
  .bl_inquiry_inner::after {
    width: 202px;
    height: 120px;
    bottom: -60px;
    right: -40px;
  }
}
@media screen and (min-width: 992px) {
  .bl_inquiry_inner {
    padding: 30px;
  }
}
.bl_inquiry_title {
  margin-top: -40px;
  margin-bottom: 20px;
}
.bl_inquiry_title img {
  max-width: 100%;
}
.bl_inquiry_btn {
  margin: 0 auto 20px;
  max-width: 500px;
}
.bl_inquiry_btn a {
  display: block;
  background-color: #EB6D73;
  color: #FFFDED;
  border-radius: 15px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  font-weight: bold;
  box-shadow: 0 6px 0px rgba(115, 0, 5, 0.4);
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  .bl_inquiry_btn a {
    font-size: 20px;
  }
}
.bl_inquiry_btn a:hover {
  box-shadow: none;
  transform: translateY(6px);
}
.bl_inquiry_btn a:hover span::before {
  transform: translate(30%, 30%) scale(1.5);
}
.bl_inquiry_btn a span {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  padding: 20px;
}
.bl_inquiry_btn a span::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #FFFDED;
  transform: translate(30%, 30%);
  transition: all 0.3s;
}
.bl_inquiry_btn a span::after {
  position: absolute;
  content: "";
  bottom: 8px;
  right: 6px;
  width: 20px;
  height: 14px;
  background-image: url("../img/btn_arrow_inquiry.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.bl_inquiry p {
  font-size: 14px;
}

.ly_footer {
  padding: 0 0 70px;
  color: white;
  background-color: #569065;
  position: relative;
}
.ly_footer .bl_sns_icon {
  margin-bottom: 10px;
}
.ly_footer .el_copy {
  text-align: center;
  font-size: 12px;
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */