@charset "UTF-8";
/* === 共通
==================================== */
.secttl {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 30px;
}
.secttl .en {
  font-family: "Manrope", sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.36842105;
}
@media (min-width: 769px) {
  .secttl .en {
    font-size: 34px;
  }
}
.secttl .ja {
  font-size: 13px;
}

/* === メインバナー
==================================== */
.home-main-bnr {
  position: relative;
  padding-bottom: 40px;
}
@media (min-width: 769px) {
  .home-main-bnr {
    margin: 0 80px 0 30px;
    padding-top: 140px;
    padding-bottom: 30px;
  }
}
.home-main-bnr .splide {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s 1s;
}
.home-main-bnr .splide.is-initialized {
  opacity: 1;
}
.home-main-bnr .splide.no-slide {
  opacity: 1;
  visibility: visible;
}
.home-main-bnr .splide .splide-wrapper {
  position: relative;
}
.home-main-bnr .splide .splide__slide {
  z-index: 0;
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
}
@media (min-width: 769px) {
  .home-main-bnr .splide .splide__slide a:hover {
    opacity: 1;
  }
  .home-main-bnr .splide .splide__slide a:hover .bg-img, .home-main-bnr .splide .splide__slide a:hover img {
    opacity: 0.6;
  }
}
.home-main-bnr .splide .splide__slide a, .home-main-bnr .splide .splide__slide .slide-in {
  display: block;
  width: 100%;
  height: 100%;
}
.home-main-bnr .splide .splide__slide .slide-in {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  background: #fff;
}
.home-main-bnr .splide .splide__slide .slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 769px) {
  .home-main-bnr .splide .splide__slide .bg-img, .home-main-bnr .splide .splide__slide img {
    transition: opacity 0.4s;
  }
}
.home-main-bnr .splide .splide__slide .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-filter: brightness(1.2) blur(14px);
  filter: brightness(1.2) blur(14px);
}
.home-main-bnr .splide .splide__slide img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-main-bnr .splide .splide__slide.is-prev.is-visible .slide-in {
  right: -100%;
  transition: right 0s;
}
.home-main-bnr .splide .splide__slide.is-prev .slide-in {
  right: -50%;
  transition: right 1s cubic-bezier(0.83, 0, 0.17, 1) 0.2s;
}
.home-main-bnr .splide .splide__slide.is-next.is-visible .slide-in {
  right: 100%;
  transition: right 0s;
}
.home-main-bnr .splide .splide__slide.is-next .slide-in {
  right: 50%;
  transition: right 1s cubic-bezier(0.83, 0, 0.17, 1) 0.2s;
}
.home-main-bnr .splide .splide__slide.is-active {
  z-index: 2;
}
.home-main-bnr .splide .splide__slide.is-active .slide-in {
  animation: slideNext 1.2s cubic-bezier(0.83, 0, 0.17, 1) 0s;
}
.home-main-bnr .splide .slider-control {
  display: none;
  width: 29%;
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 15px;
}
@media (min-width: 769px) {
  .home-main-bnr .splide .slider-control {
    width: auto;
    right: auto;
    left: 47.6%;
  }
}
.home-main-bnr .splide .slider-control .splide__arrows {
  display: flex;
  align-items: center;
  gap: 6px;
}
.home-main-bnr .splide .slider-control .splide__arrow {
  position: relative;
  left: auto;
  right: auto;
  display: block;
  width: 8px;
  height: 8px;
  color: #BD399C;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
  margin: 0;
  border-radius: 0;
  background: none;
}
.home-main-bnr .splide .slider-control .splide__arrow::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.home-main-bnr .splide .slider-control .splide__arrow.splide__arrow--prev {
  transform: rotate(-225deg);
}
.home-main-bnr .splide .slider-control .slide-counter {
  display: flex;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.home-main-bnr .splide .slider-control .slide-counter span {
  min-width: 18px;
}
.home-main-bnr .splide .slider-control .slide-counter #slide-length {
  position: relative;
  display: flex;
  gap: 8px;
}
.home-main-bnr .splide .slider-control .slide-counter #slide-length::before {
  content: "";
  width: 1px;
  height: 14px;
  background: #CECECE;
}
.home-main-bnr .splide.is-overflow .slider-control {
  display: block;
}
@media (min-width: 769px) {
  .home-main-bnr .sub-slider {
    position: absolute;
    top: 0;
    right: 0;
    width: 37.4%;
    aspect-ratio: 470/440;
  }
}
.home-main-bnr .sub-slider .splide__track {
  width: 56%;
  margin-left: auto;
}
@media (min-width: 769px) {
  .home-main-bnr .sub-slider .splide__track {
    width: 100%;
  }
}
.home-main-bnr .sub-slider .splide__slide {
  aspect-ratio: 210/140;
}
@media (min-width: 769px) {
  .home-main-bnr .sub-slider .splide__slide {
    aspect-ratio: 470/440;
  }
}
.home-main-bnr .sub-slider .splide__slide img {
  object-fit: cover;
}
.home-main-bnr .sub-slider .splide__arrows {
  display: none;
}
.home-main-bnr .main-slider {
  margin-top: 11.7333333333vw;
}
@media (min-width: 769px) {
  .home-main-bnr .main-slider {
    position: relative;
    margin-top: 0;
  }
}
.home-main-bnr .main-slider .splide__track {
  width: 71%;
}
@media (min-width: 769px) {
  .home-main-bnr .main-slider .splide__track {
    width: 47.6%;
  }
}
.home-main-bnr .mv-catch {
  margin: 48px 27px 0;
  width: 79.3%;
}
@media (min-width: 769px) {
  .home-main-bnr .mv-catch {
    margin: 0;
    position: absolute;
    top: 38.0673499268vw;
    right: 0;
    width: 37.4%;
    padding-right: 2.8%;
  }
}
.home-main-bnr .scroll {
  position: absolute;
  bottom: 0;
  right: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.home-main-bnr .scroll:after {
  content: "";
  background: #BD399C;
  width: 1px;
  height: 40px;
  animation: scroll 2s infinite;
}
@media (min-width: 769px) {
  .home-main-bnr .scroll {
    right: -5px;
  }
}

@keyframes slideNext {
  0% {
    right: -50%;
    clip-path: inset(0 0 0 100%);
  }
  1% {
    right: -50%;
    clip-path: inset(0 0 0 100%);
  }
  100% {
    right: 0;
    clip-path: inset(0 0 0 0%);
  }
}
@keyframes slidePrev {
  0% {
    right: 50%;
    clip-path: inset(0 100% 0 0);
  }
  1% {
    right: 50%;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    right: 0;
    clip-path: inset(0 0 0 0%);
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
    opacity: 1;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
    opacity: 0;
  }
}
/* === お知らせ
==================================== */
.sec-information {
  margin: 50px 18px;
}
@media (min-width: 769px) {
  .sec-information {
    margin: 140px clamp(30px, 9.5168374817vw, 130px);
  }
  .sec-information .inner {
    width: 100%;
    max-width: 1106px;
    margin: 0 auto;
    display: flex;
    gap: 9.7%;
  }
}
@media (min-width: 769px) {
  .sec-information .secttl {
    flex-shrink: 0;
  }
}
@media (min-width: 769px) {
  .sec-information .list-block {
    flex: 1;
  }
}
.sec-information .information-list {
  border-top: 1px solid #DDDDDD;
}
.sec-information .information-list li.hide {
  display: none;
}
.sec-information .information-list a {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #DDDDDD;
}
@media (min-width: 769px) {
  .sec-information .information-list a {
    position: relative;
    padding: 40px 10px;
  }
  .sec-information .information-list a::after {
    content: "";
    width: 0;
    height: 1px;
    background: #BD399C;
    position: absolute;
    bottom: -1px;
    left: 0;
    transition: 0.4s;
  }
  .sec-information .information-list a:hover::after {
    width: 100%;
  }
}
.sec-information .information-list .no-link {
  pointer-events: none;
}
.sec-information .information-list .date {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 769px) {
  .sec-information .information-list .date {
    font-size: 15px;
  }
}
.sec-information .information-list .icon-new {
  font-size: 12px;
  color: #BD399C;
  font-weight: 700;
}
.sec-information .information-list .text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.625;
}
@media (min-width: 769px) {
  .sec-information .information-list .text {
    font-size: 15px;
    line-height: 1.66666667;
  }
}
.sec-information .cmn-btn-in {
  margin-top: 40px;
}
@media (min-width: 769px) {
  .sec-information .cmn-btn-in {
    width: 240px;
    height: 50px;
    font-size: 13px;
  }
}

/* === ニュースリリース
==================================== */
.sec-release {
  margin: 70px 18px;
  background: #F2F2F2;
  border-radius: 6px;
}
@media (min-width: 769px) {
  .sec-release {
    margin: 140px 80px 140px 60px;
  }
}
.sec-release .inner {
  position: relative;
  padding: 50px 0;
}
@media (min-width: 769px) {
  .sec-release .inner {
    max-width: 1226px;
    margin: 0 auto;
    padding: 140px clamp(30px, 5.1244509517vw, 70px);
  }
}
@media screen and (min-width: 1100px) {
  .sec-release .inner {
    display: flex;
    align-items: flex-start;
    gap: 9.5%;
  }
}
.sec-release .secttl {
  position: relative;
  margin-left: 20px;
  padding-bottom: 13px;
}
@media screen and (min-width: 1100px) {
  .sec-release .secttl {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
  }
}
.sec-release .secttl::after {
  content: "";
  width: 60px;
  height: 1px;
  background: #BD399C;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1100px) {
  .sec-release .secttl::after {
    width: 50px;
    bottom: auto;
    left: auto;
    top: 22px;
    right: -77px;
  }
}
.sec-release .release-list {
  padding: 0 20px;
}
@media screen and (min-width: 1100px) {
  .sec-release .release-list {
    padding: 0;
    margin-top: 10px;
  }
}
.sec-release .release-list li {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .sec-release .release-list li {
    border: 0;
    padding: 0;
    margin: 0;
  }
  .sec-release .release-list li + li {
    margin-top: 40px;
  }
}
.sec-release .release-list a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 769px) {
  .sec-release .release-list a {
    flex-wrap: nowrap;
    gap: 8px;
  }
}
.sec-release .release-list .date {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-right: 6px;
}
@media (min-width: 769px) {
  .sec-release .release-list .date {
    order: 1;
    width: 90px;
    margin: 0;
  }
}
.sec-release .release-list .icon-new {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: #BD399C;
  font-weight: 700;
}
@media (min-width: 769px) {
  .sec-release .release-list .icon-new {
    order: 3;
    display: inline-block;
    margin-top: 4px;
  }
}
@media (min-width: 769px) {
  .sec-release .release-list .news-label {
    order: 2;
    width: 90px;
    text-align: center;
    margin-right: 12px;
  }
}
.sec-release .release-list .text {
  width: 100%;
  font-size: 16px;
  line-height: 1.625;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (min-width: 769px) {
  .sec-release .release-list .text {
    -webkit-line-clamp: 1;
    line-height: 1;
    flex: 1;
    order: 4;
  }
}
.sec-release .cmn-btn {
  margin-top: 40px;
}
@media screen and (min-width: 1100px) {
  .sec-release .cmn-btn {
    margin: 0;
    position: absolute;
    top: 250px;
    left: clamp(30px, 5.1244509517vw, 70px);
  }
  .sec-release .cmn-btn-in {
    width: 250px;
    font-size: 13px;
  }
}

/* === タウンニュース
==================================== */
.sec-townnews {
  margin: 70px 18px;
}
@media (min-width: 769px) {
  .sec-townnews {
    margin: 140px 80px 140px clamp(20px, 9.5168374817vw, 130px);
  }
}
.sec-townnews .inner {
  position: relative;
}
@media (min-width: 769px) {
  .sec-townnews .inner {
    max-width: 1156px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .sec-townnews .townnews-list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 2.9282576867vw, 40px);
  }
}
@media (min-width: 769px) {
  .sec-townnews .townnews-list li {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .sec-townnews .townnews-list li + li {
    margin-top: 20px;
  }
}
.sec-townnews .townnews-list a {
  display: block;
  background: #F2F2F2;
  border-radius: 6px;
  padding: 24px 20px;
}
@media (min-width: 769px) {
  .sec-townnews .townnews-list a {
    height: 100%;
    padding: 30px;
  }
}
.sec-townnews .townnews-list .date {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 769px) {
  .sec-townnews .townnews-list .date {
    font-size: 15px;
  }
}
.sec-townnews .townnews-list .icon-new {
  font-size: 12px;
  color: #BD399C;
  font-weight: 700;
}
.sec-townnews .townnews-list .text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.625;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (min-width: 769px) {
  .sec-townnews .townnews-list .text {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.66666667;
  }
}
.sec-townnews .cmn-btn {
  margin-top: 44px;
}
@media (min-width: 769px) {
  .sec-townnews .cmn-btn {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
  .sec-townnews .cmn-btn-in {
    font-size: 13px;
    width: 250px;
  }
}

/* === イオンタウンの活動
==================================== */
.sec-project {
  padding: 50px 18px;
  background: #F2F2F2;
}
@media (min-width: 769px) {
  .sec-project {
    padding: 140px 80px 140px clamp(20px, 9.5168374817vw, 130px);
  }
}
@media (min-width: 769px) {
  .sec-project .inner {
    max-width: 1156px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .sec-project .secttl-wrap {
    position: relative;
  }
  .sec-project .secttl-wrap::before {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background: #BD399C;
    position: absolute;
    top: 35px;
    left: -130px;
  }
}
@media (min-width: 769px) {
  .sec-project .secttl {
    position: relative;
    margin-bottom: 40px;
  }
  .sec-project .secttl .en {
    font-size: 50px;
  }
  .sec-project .secttl .ja {
    font-size: 13px;
  }
}
.sec-project .project-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 769px) {
  .sec-project .project-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 4.8%;
  }
}
@media (min-width: 769px) {
  .sec-project .project-list .list-in {
    display: flex;
    align-items: flex-start;
    gap: 5.8%;
  }
}
.sec-project .project-list .photo {
  position: relative;
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 472/300;
}
@media (min-width: 769px) {
  .sec-project .project-list .photo {
    width: 49.8%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.sec-project .project-list .photo .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-filter: brightness(1.2) blur(14px);
  filter: brightness(1.2) blur(14px);
}
.sec-project .project-list .photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 769px) {
  .sec-project .project-list .text-area {
    flex: 1;
  }
}
.sec-project .project-list .title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 6px;
}
@media (min-width: 769px) {
  .sec-project .project-list .title {
    font-size: clamp(16px, 1.4641288433vw, 20px);
    line-height: 1.4;
  }
}
.sec-project .project-list .text {
  font-size: 14px;
  line-height: 1.71428571;
}
@media (min-width: 769px) {
  .sec-project .project-list .text {
    font-size: 14px;
    line-height: 1.71428571;
  }
}

/* === イオンタウンについて
==================================== */
.sec-company {
  margin: 70px 18px;
}
@media (min-width: 769px) {
  .sec-company {
    margin: 140px 80px 140px clamp(20px, 9.5168374817vw, 130px);
  }
}
.sec-company .inner {
  position: relative;
}
@media (min-width: 769px) {
  .sec-company .inner {
    max-width: 1156px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .sec-company .secttl-wrap {
    position: relative;
  }
  .sec-company .secttl-wrap::before {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background: #BD399C;
    position: absolute;
    top: 35px;
    left: -130px;
  }
}
@media (min-width: 769px) {
  .sec-company .secttl {
    position: relative;
    margin-bottom: 40px;
  }
  .sec-company .secttl .en {
    font-size: 50px;
  }
  .sec-company .secttl .ja {
    font-size: 13px;
  }
}
.sec-company .company-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 9px;
}
@media (min-width: 769px) {
  .sec-company .company-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    flex: 1;
  }
}
.sec-company .company-list li a {
  display: block;
  position: relative;
}
.sec-company .company-list .photo {
  position: relative;
  width: 100%;
  aspect-ratio: 165/220;
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .sec-company .company-list .photo {
    aspect-ratio: 283/380;
  }
}
.sec-company .company-list .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-company .company-list .text-area {
  color: #fff;
  position: absolute;
  padding: 16px 13px;
  left: 0;
  bottom: 0;
}
@media (min-width: 769px) {
  .sec-company .company-list .text-area {
    padding: 22px 24px;
  }
}
.sec-company .company-list .text {
  font-size: 14px;
  line-height: 1.28571429;
}
@media (min-width: 769px) {
  .sec-company .company-list .text {
    font-size: clamp(16px, 1.4641288433vw, 20px);
    line-height: 1.69230769;
    margin-top: 3px;
  }
}

/* === 会社案内
==================================== */
.sec-annai {
  margin: 70px 18px;
}
@media (min-width: 769px) {
  .sec-annai {
    margin: 140px 80px 140px clamp(20px, 9.5168374817vw, 130px);
  }
}
.sec-annai .inner {
  position: relative;
}
@media (min-width: 769px) {
  .sec-annai .inner {
    max-width: 1156px;
    margin: 0 auto;
  }
}
.block-ttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .block-ttl {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
.box {
  padding: 30px 20px;
  background: #F2F2F2;
  border-radius: 6px;
}
@media (min-width: 769px) {
  .box {
    padding: 80px 5.4%;
  }
}
.box .block-ttl {
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .box .block-ttl {
    margin-bottom: 20px;
  }
}
.box .text {
  font-size: 16px;
  line-height: 1.625;
}
@media (min-width: 769px) {
  .box .text {
    font-size: 15px;
    line-height: 1.66666667;
  }
}
.box-annai {
  position: relative;
  text-align: center;
}
@media (min-width: 769px) {
  .box-annai {
    margin-top: 130px !important;
    min-height: 298px;
    text-align: left;
  }
}
.box-annai .img {
  width: 200px;
  margin: 30px auto;
  box-shadow: 6px 6px 20px 0 rgba(0, 0, 0, 0.16);
}
@media (min-width: 769px) {
  .box-annai .img {
    position: absolute;
    top: -50px;
    right: clamp(40px, 5.2015604681vw, 160px);
    margin: 0;
  }
}
@media screen and (min-width: 900px) {
  .box-annai .img {
    right: clamp(40px, 11.7130307467vw, 160px);
  }
}
.box-annai .text-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
@media (min-width: 769px) {
  .box-annai .text-link {
    flex-direction: row;
    gap: 16px;
    font-size: 15px;
  }
}
.box-annai .text-link a {
  text-decoration: underline;
}
.box-annai .text-link span {
  display: inline-block;
  color: #BD399C;
  border: 1px solid;
  border-radius: 99px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  padding: 2px 15px;
}
/*# sourceMappingURL=map/home.css.map */