@charset "UTF-8";
/* =============================================================================
   パーシャルファイル
   ========================================================================== */
/* -----------------------------------------------------------------------------
   メディアクエリ
   -------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
   l-mv
   -------------------------------------------------------------------------- */
.l-mv {
  position: relative;
  z-index: 3;
}

.l-mv-inner {
  display: flex;
  overflow: hidden;
  flex-direction: row;
  gap: 0;
}
@media screen and (max-width: 1199px) {
  .l-mv-inner {
    flex-direction: column;
  }
}

.l-mv-ttl-box {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .l-mv-ttl-box {
    width: 50%;
  }
}

.l-mv-ttl-box-inner {
  width: 500px !important;
  margin: 0;
  width: max-content;
  padding-top: 22.1vw;
  white-space: nowrap;
  padding-bottom: 80vw;
  position: relative;
  z-index: 5;
  margin-left: 8vw;
}
@media screen and (max-width: 1400px) {
  .l-mv-ttl-box-inner {
    width: 500px !important;
    margin-left: 7vw;
  }
}
@media screen and (max-width: 1199px) {
  .l-mv-ttl-box-inner {
    width: 55vw !important;
    margin: 20px auto 0;
    padding-left: 0;
    padding: 20vw 0 5vw;
  }
}

.l-mv-ttl-box img {
  width: 100%;
  margin-bottom: 10px;
}
.l-mv-ttl {
  font-size: 39px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #009944;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .l-mv-ttl {
    font-size: 3.6vw;
  }
}

.l-mv-ttl span {
  font-size: 32px;
}
@media screen and (max-width: 1199px) {
  .l-mv-ttl span {
    font-size: 3vw;
  }
}

.l-mv-subttl {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .l-mv-subttl {
    font-size: 2vw;
  }
}

.l-mv-kanransya-box {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .l-mv-kanransya-box {
    width: 50%;
  }
}

.rotate {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 150px;
}

.rotate .rotate-ctn {
  position: relative;
  width: 100%;
  height: 100%;
  animation: 100s linear big-circle infinite; /* 大枠を回転させているアニメーション */
}

.rotate .box {
  position: absolute;
  width: 100px;
  height: 50%;
  transform-origin: 50% 100%;
}

/* 各コンテンツの文字を上向きにする */
.rotate .box.box-1 {
  left: 50%;
  transform: translate(-50%, 0);
}

.rotate .box.box-2 {
  left: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.rotate .box.box-3 {
  left: 50%;
  transform: translate(-50%, 0) rotate(90deg);
}

.rotate .box.box-4 {
  left: 50%;
  transform: translate(-50%, 0) rotate(135deg);
}

.rotate .box.box-5 {
  left: 50%;
  transform: translate(-50%, 0) rotate(180deg);
}

.rotate .box.box-6 {
  left: 50%;
  transform: translate(-50%, 0) rotate(225deg);
}

.rotate .box.box-7 {
  left: 50%;
  transform: translate(-50%, 0) rotate(270deg);
}

.rotate .box.box-8 {
  left: 50%;
  transform: translate(-50%, 0) rotate(315deg);
}

.rotate .box .parts {
  position: relative;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

/* 各コンテンツを回転させるアニメーション */
.rotate .box.box-1 .parts {
  animation: 100s linear circle1 infinite;
}

.rotate .box.box-2 .parts {
  animation: 100s linear circle2 infinite;
}

.rotate .box.box-3 .parts {
  animation: 100s linear circle3 infinite;
}

.rotate .box.box-4 .parts {
  animation: 100s linear circle4 infinite;
}

.rotate .box.box-5 .parts {
  animation: 100s linear circle5 infinite;
}

.rotate .box.box-6 .parts {
  animation: 100s linear circle6 infinite;
}

.rotate .box.box-7 .parts {
  animation: 100s linear circle7 infinite;
}

.rotate .box.box-8 .parts {
  animation: 100s linear circle8 infinite;
}

/* keyframesは下に記述 */
@keyframes big-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circle1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes circle2 {
  0% {
    transform: rotate(315deg);
  }
  100% {
    transform: rotate(-45deg);
  }
}
@keyframes circle3 {
  0% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(-90deg);
  }
}
@keyframes circle4 {
  0% {
    transform: rotate(225deg);
  }
  100% {
    transform: rotate(-135deg);
  }
}
@keyframes circle5 {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(-180deg);
  }
}
@keyframes circle6 {
  0% {
    transform: rotate(135deg);
  }
  100% {
    transform: rotate(-225deg);
  }
}
@keyframes circle7 {
  0% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(-270deg);
  }
}
@keyframes circle8 {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(-315deg);
  }
}
.sample-1 {
  position: relative;
  width: 90vw;
  padding-top: 0;
  margin-top: 0;
  left: 0;
  top: 0;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .sample-1 {
    width: 100vw;
    translate: 18vw 0;
  }
}

ul.flower-list li {
  position: absolute;
  z-index: 3;
}
ul.flower-list li img {
  width: 100%;
}
ul.flower-list li:nth-child(1) {
  width: 29.3333333333vw;
  top: 14.6666666667vw;
  right: 6vw;
}
@media screen and (max-width: 1199px) {
  ul.flower-list li:nth-child(1) {
    width: 37.5312760634vw;
    top: 70.892410342vw;
    right: auto;
    left: 31.6930775646vw;
  }
}
ul.flower-list li:nth-child(2) {
  width: 20.4666666667vw;
  top: 42vw;
  right: 31.3333333333vw;
}
@media screen and (max-width: 1199px) {
  ul.flower-list li:nth-child(2) {
    width: 18.3486238532vw;
    top: 37.5312760634vw;
    right: auto;
    left: 3.3361134279vw;
  }
}
ul.flower-list li:nth-child(3) {
  width: 23.8666666667vw;
  top: 53.3333333333vw;
  right: 1.6666666667vw;
}
@media screen and (max-width: 1199px) {
  ul.flower-list li:nth-child(3) {
    width: 21.6847372811vw;
    top: 23.352793995vw;
    right: -2.5020850709vw;
  }
}
ul.flower-list li:nth-child(4) {
  width: 16vw;
  top: 87.3333333333vw;
  right: -1vw;
}
@media screen and (max-width: 1199px) {
  ul.flower-list li:nth-child(4) {
    width: 18.3486238532vw;
    top: 116.763969975vw;
    right: auto;
    left: 4.1701417848vw;
  }
}
ul.flower-list li:nth-child(5) {
  width: 21.3333333333vw;
  top: 106.6666666667vw;
  right: 12vw;
}
@media screen and (max-width: 1199px) {
  ul.flower-list li:nth-child(5) {
    width: 30.0250208507vw;
    top: 133.4445371143vw;
    right: 8.3402835696vw;
  }
}
@media screen and (max-width: 767px) {
  ul.flower-list li:nth-child(5) {
    width: 30.0250208507vw;
    top: 133.4445371143vw;
    right: 8.3402835696vw;
  }
}
@media screen and (max-width: 500px) {
  ul.flower-list li:nth-child(5) {
    width: 30.0250208507vw;
    top: 129.2743953294vw;
    right: 8.3402835696vw;
  }
}
ul.flower-list li:nth-child(6) {
  width: 18.6666666667vw;
  top: 140vw;
  right: -2vw;
}
@media screen and (max-width: 1199px) {
  ul.flower-list li:nth-child(6) {
    display: none;
  }
}
ul.flower-list li:nth-child(7) {
  width: 34.6666666667vw;
  top: 153.3333333333vw;
  right: 6vw;
  max-width: 600px;
}
@media screen and (max-width: 1300px) {
  ul.flower-list li:nth-child(7) {
    width: 29.1909924937vw;
    top: 162.635529608vw;
    right: 12.5104253545vw;
  }
}
@media screen and (max-width: 1199px) {
  ul.flower-list li:nth-child(7) {
    display: none;
  }
}

ul.ball-list li {
  position: absolute;
  z-index: 1;
}
ul.ball-list li img {
  width: 100%;
}
ul.ball-list li:nth-child(1) {
  width: 11.4666666667vw;
  top: 42.3333333333vw;
  left: -1.3333333333vw;
}
@media screen and (max-width: 1199px) {
  ul.ball-list li:nth-child(1) {
    top: 108.6666666667vw;
  }
}
ul.ball-list li:nth-child(2) {
  width: 6.4vw;
  top: 84vw;
  right: 6.6666666667vw;
}
@media screen and (max-width: 1199px) {
  ul.ball-list li:nth-child(2) {
    display: none;
  }
}
ul.ball-list li:nth-child(3) {
  width: 9.6666666667vw;
  top: 123.3333333333vw;
  right: 9.3333333333vw;
}
@media screen and (max-width: 1199px) {
  ul.ball-list li:nth-child(3) {
    width: 12.5104253545vw;
    top: 154.2952460384vw;
    right: 4.1701417848vw;
  }
}
@media screen and (max-width: 500px) {
  ul.ball-list li:nth-child(3) {
    width: 12.5104253545vw;
    top: 150.1251042535vw;
    right: 4.1701417848vw;
  }
}

.ball04 {
  position: absolute;
  z-index: 2;
  width: 23.3333333333vw;
  bottom: 3.3333333333vw;
  left: -2.6666666667vw;
  max-width: 420px;
}
@media screen and (max-width: 1199px) {
  .ball04 {
    width: 24.186822352vw;
    top: 110.0917431193vw;
    left: -3.3361134279vw;
    display: none;
  }
}
.ball04 img {
  width: 100%;
}

ul.sp-obj li {
  z-index: 3;
  position: absolute;
  display: none;
}
@media screen and (max-width: 1199px) {
  ul.sp-obj li {
    display: block;
  }
}
ul.sp-obj li img {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  ul.sp-obj li:nth-child(1) {
    width: 26.6666666667vw;
    bottom: 46.6666666667vw;
    right: 0vw;
  }
}
@media screen and (max-width: 1199px) {
  ul.sp-obj li:nth-child(2) {
    width: 10vw;
    bottom: 33.3333333333vw;
    right: 8vw;
  }
}
@media screen and (max-width: 1199px) {
  ul.sp-obj li:nth-child(3) {
    width: 33.3333333333vw;
    bottom: -2vw;
    right: 10vw;
  }
}

.sample-2 {
  position: absolute;
  top: -21vw;
  left: -9vw;
  width: 50%;
  padding-top: 50%;
}
@media screen and (min-width: 480px) {
  .sample-2 {
    top: -20vw;
    left: -14vw;
  }
}
@media screen and (min-width: 1000px) {
  .sample-2 {
    top: -24vw;
    left: -18vw;
  }
}
@media screen and (min-width: 1200px) {
  .sample-2 {
    left: -18vw;
  }
}

.sample-2 .rotate {
  padding: 10px;
}
@media screen and (min-width: 480px) {
  .sample-2 .rotate {
    padding: 40px;
  }
}
@media screen and (min-width: 768px) {
  .sample-2 .rotate {
    padding: 80px;
  }
}
@media screen and (min-width: 1000px) {
  .sample-2 .rotate {
    padding: 90px;
  }
}
.sample-2 .rotate .box {
  height: 58%;
}
@media screen and (min-width: 480px) {
  .sample-2 .rotate .box {
    height: 54%;
  }
}
@media screen and (min-width: 768px) {
  .sample-2 .rotate .box {
    height: 65%;
  }
}
@media screen and (min-width: 1000px) {
  .sample-2 .rotate .box {
    height: 54%;
  }
}
@media screen and (min-width: 1200px) {
  .sample-2 .rotate .box {
    height: 47%;
  }
}

.sample-2 .rotate .box .parts {
  border-radius: 50%;
  background-size: cover;
}

.sample-2 .rotate .box.box-1 .parts {
  width: 12.6vw;
  height: 12.6vw;
  background-image: url(../img/index/deco_img04.png);
  background-size: 9vw;
  background-position: center;
}
@media screen and (min-width: 480px) {
  .sample-2 .rotate .box.box-1 .parts {
    width: 9.6vw;
    height: 9.6vw;
    background-size: 7vw;
  }
}
.sample-2 .rotate .box.box-2 .parts {
  width: 12.6vw;
  height: 12.6vw;
  background-image: url(../img/index/deco_img01.png);
}
@media screen and (min-width: 480px) {
  .sample-2 .rotate .box.box-2 .parts {
    width: 9.6vw;
    height: 9.6vw;
  }
}
.sample-2 .rotate .box.box-3 .parts {
  width: 12.6vw;
  height: 12.6vw;
  background-image: url(../img/index/deco_img02.png);
  background-size: 9vw;
  background-position: center;
}
@media screen and (min-width: 480px) {
  .sample-2 .rotate .box.box-3 .parts {
    width: 9.6vw;
    height: 9.6vw;
    background-size: 7vw;
  }
}
.sample-2 .rotate .box.box-4 .parts {
  width: 12.6vw;
  height: 12.6vw;
  background-image: url(../img/index/deco_img03.png);
}
@media screen and (min-width: 480px) {
  .sample-2 .rotate .box.box-4 .parts {
    width: 9.6vw;
    height: 9.6vw;
  }
}
.sample-2 .rotate .box.box-5 .parts {
  width: 12.6vw;
  height: 12.6vw;
  background-image: url(../img/index/deco_img04.png);
  background-size: 9vw;
  background-position: center;
}
@media screen and (min-width: 480px) {
  .sample-2 .rotate .box.box-5 .parts {
    width: 9.6vw;
    height: 9.6vw;
    background-size: 7vw;
  }
}
.sample-2 .rotate .box.box-6 .parts {
  width: 9.6vw;
  height: 9.6vw;
  background-image: url(../img/index/deco_img01.png);
}
@media screen and (min-width: 480px) {
  .sample-2 .rotate .box.box-6 .parts {
    width: 9.6vw;
    height: 9.6vw;
  }
}
.sample-2 .rotate .box.box-7 .parts {
  width: 12.6vw;
  height: 12.6vw;
  background-image: url(../img/index/deco_img02.png);
  background-size: 9vw;
  background-position: center;
}
@media screen and (min-width: 480px) {
  .sample-2 .rotate .box.box-7 .parts {
    width: 9.6vw;
    height: 9.6vw;
    background-size: 7vw;
  }
}
.sample-2 .rotate .box.box-8 .parts {
  width: 12.6vw;
  height: 12.6vw;
  background-image: url(../img/index/deco_img03.png);
}
@media screen and (min-width: 480px) {
  .sample-2 .rotate .box.box-8 .parts {
    width: 9.6vw;
    height: 9.6vw;
  }
}
/* -----------------------------------------------------------------------------
   l-index-about
   -------------------------------------------------------------------------- */
.l-index-about {
  position: relative;
  margin-top: -35vw;
  background-image: url(../img/common/main_bg.jpg);
  background-size: cover;
  border-radius: 0 0 26.7vw 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-index-about {
    margin-top: -40vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-index-about {
    margin-top: -60vw;
  }
}

.l-index-about-txt-box {
  margin-left: 10vw;
  border-top: 3px solid #009944;
  border-left: 3px solid #009944;
  border-radius: 6.7vw 0 0 0;
}
@media screen and (max-width: 1199px) {
  .l-index-about-txt-box {
    margin-top: 33vw;
  }
}

.l-index-about-txt-box-inner {
  width: 100%;
  padding: 9vw 40px 12vw 40px;
}
@media screen and (min-width: 768px) {
  .l-index-about-txt-box-inner {
    padding: 75px 40px 12.8vw 40px;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-about-txt-box-inner {
    width: 80vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-index-about-txt-box-inner {
    width: 40vw;
    padding: 8.8vw 0 8.8vw 6.7vw;
  }
}
@media screen and (max-width: 500px) {
  .l-index-about-txt-box-inner {
    padding: 9vw 40px 20vw 40px;
  }
}

.l-index-about-head {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0;
  color: #009944;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-index-about-head {
    font-size: 3.6rem;
    letter-spacing: 0.1em;
  }
}
.l-index-about-head span {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .l-index-about-head span {
    font-size: 2.8rem;
  }
}
.l-index-about-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .l-index-about-desc {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
}
.l-index-about-desc span {
  font-weight: 700;
  color: #009944;
}

.l-index-about-img-box {
  position: relative;
  aspect-ratio: 1500/1100;
  margin-top: -50px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .l-index-about-img-box {
    aspect-ratio: 750/600;
  }
}

.l-index-about-img-deco01 {
  width: 64vw;
  position: absolute;
  top: 0;
  left: -6.6666666667vw;
  z-index: 3;
  background-color: #fff;
}
@media screen and (max-width: 1199px) {
  .l-index-about-img-deco01 {
    top: 5vw;
  }
}

.l-index-about-img-deco01-slide-img {
  position: relative;
}

.l-index-about-img-deco01-slide-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: slideShow 15s infinite;
}

/* 1枚目 */
.l-index-about-img-deco01-slide-img img:nth-child(1) {
  animation-delay: 0s;
}

/* 2枚目 */
.l-index-about-img-deco01-slide-img img:nth-child(2) {
  animation-delay: 5s;
}

/* 3枚目 */
.l-index-about-img-deco01-slide-img img:nth-child(3) {
  animation-delay: 10s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.l-index-about-img-deco02 {
  width: 56vw;
  position: absolute;
  bottom: 6.7vw;
  right: 14.7vw;
}
@media screen and (min-width: 768px) {
  .l-index-about-img-deco02 {
    width: 28.7vw;
    right: 6.7vw;
  }
}
.l-index-about-img-deco03 {
  width: 30.6vw;
  position: absolute;
  top: 64vw;
  right: -3.3vw;
}
@media screen and (min-width: 768px) {
  .l-index-about-img-deco03 {
    width: 13.7vw;
    top: 22vw;
  }
}
.l-index-about-img-deco04 {
  width: 28vw;
  position: absolute;
  left: -5.3vw;
  bottom: 56.7vw;
}
@media screen and (min-width: 768px) {
  .l-index-about-img-deco04 {
    width: 19.3vw;
    bottom: 2.7vw;
  }
}
.l-index-about-img-deco05 {
  width: 20vw;
  position: absolute;
  right: -11vw;
  top: 6.7vw;
}
@media screen and (min-width: 768px) {
  .l-index-about-img-deco05 {
    width: 13.3vw;
    right: 22vw;
  }
}
/* -----------------------------------------------------------------------------
   l-index-services
   -------------------------------------------------------------------------- */
.l-index-services {
  position: relative;
  margin-top: -24vw;
}
.l-index-services-inner {
  position: relative;
  aspect-ratio: none;
  background-color: #009944;
  border-radius: 0 0 0 26.7vw;
  padding: 31vw 40px 15vw;
}
@media screen and (min-width: 1000px) {
  .l-index-services-inner {
    aspect-ratio: 1500/1080;
    padding: 0 80px;
  }
}
.l-index-services-contents {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-index-services-contents {
    width: max-content;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-services-contents {
    top: 36vw;
    left: 43vw;
  }
}
.l-index-services-contents .m-cmn-ttl-wrap {
  margin-bottom: 20px;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .l-index-services-contents .m-cmn-ttl-wrap {
    margin-bottom: 40px;
  }
}

.l-index-services-contents .m-cmn-txt {
  margin-bottom: 30px;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .l-index-services-contents .m-cmn-txt {
    margin-bottom: 50px;
  }
}

.l-index-services-img-box {
  width: 32vw;
  position: absolute;
  bottom: 5vw;
  left: 6vw;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  .l-index-services-img-box {
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
}

.l-index-services-img-box2 {
  width: 13vw;
  position: absolute;
  top: 60vw;
  left: 28vw;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  .l-index-services-img-box2 {
    width: 35vw;
    top: 96vw;
    left: 56vw;
    z-index: 2;
  }
}
@media screen and (max-width: 500px) {
  .l-index-services-img-box2 {
    top: 86vw;
    width: 30vw;
    left: 65vw;
  }
}

.l-index-services-bg {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.l-index-instagram {
  position: relative;
  padding: 70px 20px;
}
@media screen and (min-width: 768px) {
  .l-index-instagram {
    padding: 100px 40px;
  }
}
.l-index-instagram-bg {
  position: absolute;
  bottom: -45vw;
  left: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .l-index-instagram-bg {
    bottom: -50vw;
  }
}
.l-index-instagram-inner {
  max-width: 800px;
  margin: 0 auto;
}

.l-index-instagram .m-cmn-ttl-wrap {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-index-instagram .m-cmn-ttl-wrap {
    margin-bottom: 40px;
  }
}
.l-index-instagram-ttl {
  text-align: center;
  color: #009944;
  margin-top: 20px;
}

.l-index-instagram-ttl span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .l-index-instagram-ttl span {
    font-size: 2.9rem;
  }
}
.l-index-instagram-desc {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .l-index-instagram-desc {
    margin-bottom: 20px;
  }
}

.l-index-instagram-btn {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .l-index-instagram-btn {
    margin-top: 20px;
  }
}

/* -----------------------------------------------------------------------------
   l-index-lineup
   -------------------------------------------------------------------------- */
.l-index-lineup {
  position: relative;
  padding: 70px 0;
  background-color: #f0f0f0;
  border-radius: 0 0 26.7vw 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-index-lineup {
    padding: 100px 0;
  }
}
.l-index-lineup-ttl-box {
  max-width: 1080px;
  padding: 0 40px;
  margin: 0 auto 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (min-width: 1000px) {
  .l-index-lineup-ttl-box {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    margin: 0 auto 50px;
  }
}
.l-index-lineup-ttl {
  width: max-content;
  color: #009944;
}

.l-index-lineup-loop {
  display: flex;
  gap: 15px;
  overflow: hidden;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .l-index-lineup-loop {
    gap: 30px;
  }
}
.l-index-lineup-loop-box {
  display: flex;
  align-items: center;
  gap: 15px;
  animation: loop-list 100s linear infinite;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .l-index-lineup-loop-box {
    gap: 30px;
  }
}
.l-index-lineup-loop-item {
  display: block;
  flex-shrink: 0; /* これが重要 */
}

.l-index-lineup-loop-item.w-340 {
  width: 170px;
}
@media screen and (min-width: 768px) {
  .l-index-lineup-loop-item.w-340 {
    width: 340px;
  }
}
.l-index-lineup-loop-item.w-220 {
  width: 110px;
}
@media screen and (min-width: 768px) {
  .l-index-lineup-loop-item.w-220 {
    width: 220px;
  }
}
.l-index-lineup-loop-item.w-200 {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .l-index-lineup-loop-item.w-200 {
    width: 200px;
  }
}
.l-index-lineup-loop-item img {
  width: 100%;
}

@keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.l-index-lineup-btn {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-index-lineup-btn a span {
    translate: -10px 0;
    display: block;
  }
}

.l-index-gift {
  position: relative;
  aspect-ratio: unset;
  background-color: #b0e3a6;
  padding: 33.9vw 0;
  margin-top: -27vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-index-gift {
    aspect-ratio: 1500/1340;
    padding: 31.9vw 0 0 0;
  }
}
.l-index-gift-inner {
  overflow: hidden;
}

.l-index-gift-contents-box {
  width: 120%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding-left: 0;
  overflow: hidden;
  background-image: url(../img/index/gift_bg.png);
  background-size: cover;
  background-position: bottom;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-index-gift-contents-box {
    width: 62.7vw;
    position: absolute;
    left: 36.3vw;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1000px) {
  .l-index-gift-contents-box {
    width: 55.7vw;
    padding-left: 5vw;
  }
}
.l-index-gift-contents-box-inner {
  display: flex;
  flex-direction: column;
  width: 350px;
}
@media screen and (min-width: 768px) {
  .l-index-gift-contents-box-inner {
    width: 33.3vw;
  }
}
.l-index-gift-contents-box-inner .m-cmn-ttl-wrap {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l-index-gift-contents-box-inner .m-cmn-ttl-wrap {
    text-align: left;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-gift-contents-box-inner .m-cmn-ttl-wrap {
    margin-bottom: 55px;
  }
}
.l-index-gift-contents-box-inner .m-cmn-txt {
  font-size: 1.1rem;
  color: #fff;
  line-height: 2.2;
  margin-bottom: 30px;
}
@media screen and (min-width: 1000px) {
  .l-index-gift-contents-box-inner .m-cmn-txt {
    font-size: 1.1vw;
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
}
.l-index-gift-btn {
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .l-index-gift-btn {
    margin: 0;
  }
}
.l-index-gift-deco01 {
  position: absolute;
  width: 59vw;
  left: 0;
  top: auto;
  bottom: -10vw;
  z-index: 2;
}
@media screen and (min-width: 480px) {
  .l-index-gift-deco01 {
    width: 53vw;
  }
}
@media screen and (min-width: 768px) {
  .l-index-gift-deco01 {
    width: 42.7vw;
    top: 30vw;
    bottom: auto;
  }
}
.l-index-gift-deco02 {
  position: absolute;
  width: 34vw;
  left: 56.7vw;
  bottom: 2vw;
  z-index: 2;
}
@media screen and (min-width: 480px) {
  .l-index-gift-deco02 {
    left: 57.7vw;
  }
}
@media screen and (min-width: 768px) {
  .l-index-gift-deco02 {
    width: 21.3vw;
    left: 20vw;
    bottom: -4vw;
  }
}
.l-index-gift-deco03 {
  position: absolute;
  width: 33vw;
  right: 0;
  top: 27vw;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-index-gift-deco03 {
    width: 17vw;
    top: 25vw;
  }
}
.l-index-store {
  position: relative;
  background-color: #b0e3a6;
}
@media screen and (max-width: 768px) {
  .l-index-store {
    margin-top: 0;
  }
}

.l-index-store-bg {
  width: 100%;
  position: absolute;
  top: 32vw;
  right: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .l-index-store-bg {
    top: -8vw;
  }
}
.l-index-store-inner {
  aspect-ratio: 1500/1000;
  background-image: url(../img/common/main_bg.jpg);
  background-size: cover;
  border-radius: 22vw 0 0 0;
  padding: 120px 40px 70px;
}
@media screen and (min-width: 480px) {
  .l-index-store-inner {
    padding: 80px 40px 70px;
  }
}
@media screen and (min-width: 768px) {
  .l-index-store-inner {
    padding: 150px 40px 70px;
  }
}
@media screen and (min-width: 1200px) {
  .l-index-store-inner {
    padding: 200px 40px 150px;
  }
}

.l-index-store-contents {
  position: relative;
  max-width: 100%;
  margin: 0 auto 50px;
}
@media screen and (min-width: 768px) {
  .l-index-store-contents {
    margin: 0 auto 80px;
    max-width: 70vw;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-store-contents {
    margin: 0 auto 12vw;
    max-width: 70vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-index-store-contents {
    margin: 0 auto 27vw;
    max-width: 66.7vw;
  }
}

.l-index-store-ttl-box {
  width: 100%;
  padding-right: 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-index-store-ttl-box {
    padding-right: 6.7vw;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-store-ttl-box {
    width: 30vw;
  }
}
.l-index-store-contents .m-cmn-ttl-wrap {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .l-index-store-contents .m-cmn-ttl-wrap {
    margin-bottom: 40px;
  }
}
.l-index-store-contents .m-cmn-ttl {
  color: #009944;
}

.l-index-store-items-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  position: relative;
  top: 0;
  right: 0;
  margin-bottom: 50px;
}
@media screen and (min-width: 1000px) {
  .l-index-store-items-box {
    width: calc(100% - 30vw);
    position: absolute;
    margin-bottom: 0;
  }
}
.l-index-store-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  opacity: 1;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .l-index-store-item {
    border-radius: 20px;
  }
}
.l-index-store-item:hover {
  opacity: 0.7;
}

.l-index-store-item a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.l-index-store-item a::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../img/common/cmn_ico_btn_arrow_white.png);
  background-size: cover;
  position: absolute;
  bottom: 1.3vw;
  right: 2vw;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1000px) {
  .l-index-store-item a::after {
    width: 2.9vw;
    height: 2.9vw;
  }
}
.l-index-store-item-name {
  font-size: 3.7vw;
  letter-spacing: 0.05em;
  color: #009944;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fbf9f0;
  padding: 12px 20px;
  border-radius: 0 5px 0 0;
  opacity: 0.9;
}
@media screen and (min-width: 768px) {
  .l-index-store-item-name {
    font-size: 1.6vw;
  }
}
.l-index-store-btn-box .m-cmn-btn {
  margin: 0 auto 10px;
}
@media screen and (min-width: 1000px) {
  .l-index-store-btn-box .m-cmn-btn {
    margin: 0 0 15px 0;
  }
}
.l-index-store-movie-ttl {
  text-align: center;
}

.l-index-store-movie-ttl .m-cmn-ttl {
  color: #009944;
}

.l-index-store-youtube-wrapper {
  max-width: 800px;
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  .l-index-store-youtube-wrapper {
    margin: 50px auto 0;
  }
}
.l-index-store-youtube-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}

.l-index-store-youtube-wrap iframe {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .l-index-store-youtube-wrap iframe {
    border-radius: 40px;
  }
}
.l-index-faq-wrap {
  padding: 70px 0;
  background-color: #f0f0f0;
}
@media screen and (min-width: 1000px) {
  .l-index-faq-wrap {
    padding: 100px 0;
  }
}
.l-index-faq {
  position: relative;
  padding: 0;
}
@media screen and (min-width: 1000px) {
  .l-index-faq {
    padding: 0 12.9vw 0 60vw;
  }
}
.l-index-faq-ttl-box {
  padding: 0 40px;
}
@media screen and (min-width: 1000px) {
  .l-index-faq-ttl-box {
    padding: 0;
  }
}
.l-index-faq-ttl-box .m-cmn-ttl-wrap {
  margin-bottom: 20px;
}

.l-index-faq-ttl-box .m-cmn-ttl {
  color: #009944;
}

.l-index-faq-desc {
  margin-bottom: 40px;
}

.l-index-faq-contents-box {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  margin-bottom: 40px;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  .l-index-faq-contents-box {
    position: absolute;
    width: 55vw;
    margin-bottom: 0;
  }
}
.l-index-faq-contents-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .l-index-faq-contents-ttl {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}
.loop-banner {
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .loop-banner {
    margin-bottom: 20px;
  }
}
.loop-banner:nth-of-type(2) {
  padding-left: 100px;
}

.loop-banner-track {
  display: flex;
  width: max-content;
  animation: loopRightToLeft 40s linear infinite;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .loop-banner-track {
    gap: 20px;
  }
}
.loop-banner-list {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .loop-banner-list {
    gap: 20px;
  }
}
.loop-banner-item {
  flex-shrink: 0;
}

.loop-banner-item a {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 450px;
  height: 80px;
  padding: 0 20px;
  border-radius: 10px;
  text-decoration: none;
  color: #1d5f3a;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .loop-banner-item a {
    padding: 0 28px;
    border-radius: 20px;
    height: 100px;
  }
}
.loop-banner-item a::after {
  content: "";
  width: 36px;
  height: 36px;
  display: block;
  background-image: url(../img/index/faq_arrow_icon.png);
  background-size: contain;
}

.loop-banner-item:nth-of-type(odd) a {
  background-color: #aae6c4;
}

.loop-banner-item:nth-of-type(even) a {
  background-color: #b0e3a6;
}

.loop-banner-item a img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.loop-banner-item a span {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .loop-banner-item a span {
    font-size: 2rem;
  }
}
@keyframes loopRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .l-index-faq-btn {
    margin: 0 40px;
  }
}

.l-index-company {
  position: relative;
  padding: 150px 0 0 0;
}
@media screen and (min-width: 1000px) {
  .l-index-company {
    padding: 150px 0 0 0;
  }
}
.l-index-company-bg {
  width: 100%;
  position: absolute;
  top: 5vw;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .l-index-company-bg {
    width: 60vw;
    top: -10vw;
  }
}
.l-index-company-inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 6vw;
  margin-left: 10vw;
  border-top: 3px solid #009944;
  border-left: 3px solid #009944;
  border-radius: 6.7vw 0 0 0;
  padding: 0 0 100px 40px;
}
@media screen and (min-width: 1000px) {
  .l-index-company-inner {
    flex-direction: row;
    padding: 6.7vw 0 6.7vw 6.7vw;
  }
}
.l-index-company-txt-box {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .l-index-company-txt-box {
    width: 35vw;
  }
}
.l-index-company-txt-box .m-cmn-ttl-wrap {
  margin-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  .l-index-company-txt-box .m-cmn-ttl-wrap {
    margin-bottom: 40px;
  }
}
.l-index-company-txt-box .m-cmn-ttl {
  color: #009944;
}

.l-index-company-desc {
  margin-bottom: 30px;
  padding-right: 40px;
}
@media screen and (min-width: 1000px) {
  .l-index-company-desc {
    margin-bottom: 50px;
    padding-right: 0;
  }
}
.l-index-company-img-box {
  position: relative;
  width: 78.7vw;
  margin-top: -25vw;
  z-index: 2;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-index-company-img-box {
    margin-top: -12vw;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-company-img-box {
    width: 65vw;
    margin-left: 0;
    margin-top: -9vw;
  }
}
.l-index-company-img-box img {
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 1000px) {
  .l-index-company-img-box img {
    border-radius: 40px 0 0 40px;
  }
}
.l-index-recruit {
  position: relative;
  background-color: #009944;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .l-index-recruit {
    margin-top: 0;
  }
}

.l-index-recruit-bg {
  width: 100%;
  position: absolute;
  top: -30vw;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-index-recruit-bg {
    width: 40vw;
    top: -10vw;
  }
}
.l-index-recruit-inner {
  overflow: hidden;
  position: relative;
  background-image: url(../img/common/main_bg.jpg);
  background-size: cover;
  border-radius: 0 0 0 26.7vw;
}

.l-index-recruit-inner::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 16%;
  background-image: url(../img/common/cmn_ico_green.png);
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 35%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 480px) {
  .l-index-recruit-inner::before {
    width: 36vw;
    height: 7.8vw;
    left: 45%;
  }
}
.l-index-recruit-contents {
  position: relative;
  aspect-ratio: 1/1;
  width: 125vw;
  margin: 0 auto;
  background-color: #e3f5df;
  border-radius: 50%;
  bottom: -10vw;
  left: -11vw;
  margin-top: -10vw;
}
@media screen and (min-width: 480px) {
  .l-index-recruit-contents {
    bottom: -45vw;
    margin-top: -45vw;
  }
}
@media screen and (min-width: 768px) {
  .l-index-recruit-contents {
    width: 70vw;
    bottom: -13vw;
    left: 0;
    margin-top: -13vw;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-recruit-contents {
    width: 65vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-index-recruit-contents {
    width: 60vw;
  }
}
@media screen and (max-width: 768px) {
  .l-index-recruit-contents {
    padding-bottom: 50vw;
    width: 120vw;
  }
}
@media screen and (max-width: 600px) {
  .l-index-recruit-contents {
    padding-bottom: 70vw;
  }
}
@media screen and (max-width: 480px) {
  .l-index-recruit-contents {
    padding-bottom: 50vw;
    min-height: auto;
  }
}

.l-index-recruit-contents-inner {
  position: relative;
  width: 85vw;
  margin: 0 auto;
  text-align: center;
  padding-top: 21vw;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-index-recruit-contents-inner {
    width: 50vw;
    padding-top: 9.3vw;
  }
}
@media screen and (min-width: 1000px) {
  .l-index-recruit-contents-inner {
    width: 43vw;
  }
}
.l-index-recruit-contents-inner .m-cmn-ttl {
  color: #009944;
  margin-bottom: 2.5vw;
}

.l-index-recruit-contents-inner .m-cmn-btn {
  margin: 0 auto;
}

.l-index-recruit-desc {
  font-size: 1.4rem;
  margin-bottom: 30px;
}
@media screen and (min-width: 1000px) {
  .l-index-recruit-desc {
    font-size: 1.1vw;
  }
}
.l-index-recruit-bold-txt {
  display: none;
  font-size: 1.3vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #009944;
  margin-bottom: 3vw;
}
@media screen and (min-width: 1000px) {
  .l-index-recruit-bold-txt {
    display: block;
  }
}
.l-index-recruit-deco01 {
  width: 35vw;
  position: absolute;
  top: -11vw;
  left: 0;
}
@media screen and (min-width: 768px) {
  .l-index-recruit-deco01 {
    width: 28vw;
    top: -3vw;
  }
}
@media screen and (max-width: 768px) {
  .l-index-recruit-deco01 {
    z-index: 1;
  }
}
@media screen and (max-width: 480px) {
  .l-index-recruit-deco01 {
    left: -1vw;
    width: 40vw;
  }
}

.l-index-recruit-deco02 {
  width: 25vw;
  position: absolute;
  bottom: 3vw;
  left: -3vw;
}
@media screen and (min-width: 768px) {
  .l-index-recruit-deco02 {
    width: 20vw;
    bottom: -4vw;
    left: 4vw;
    top: auto;
    right: auto;
  }
}
@media screen and (max-width: 480px) {
  .l-index-recruit-deco02 {
    width: 30vw;
  }
}

.l-index-recruit-deco03 {
  width: 27vw;
  position: absolute;
  top: auto;
  right: auto;
  top: 3vw;
  right: -5vw;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-index-recruit-deco03 {
    width: 20vw;
    top: 3vw;
    right: 0;
    bottom: auto;
    left: auto;
  }
}
@media screen and (max-width: 480px) {
  .l-index-recruit-deco03 {
    width: 30vw;
  }
}

.l-index-recruit-deco04 {
  width: 24.7vw;
  position: absolute;
  bottom: -4vw;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .l-index-recruit-deco04 {
    width: 39vw;
    right: -6vw;
  }
}

.l-index-recruit-deco01.show,
.l-index-recruit-deco02.show,
.l-index-recruit-deco03.show,
.l-index-recruit-deco04.show,
.l-index-recruit-contents.show {
  opacity: 1;
}