﻿@charset "utf-8";

/*==================================================
  GENERAL SETTINGS
==================================================*/

/*==================================================
  TITLE COMMON
==================================================*/


/*
===== SLIDER ==========================================
*/
.indexmainSlider__item {
  margin: 0 10px;
  aspect-ratio: 1180 / 500;
  width: auto;
  height: auto;
  max-height: 500px;
  overflow: hidden;
  border-radius: var(--rad-common);
}

.indexmainSlider__item a:hover {
  opacity: 1;
}

.indexmainSlider__item img {
  transition: transform .3s ease-in-out .1s;
}

@media (any-hover:hover) {
  .indexmainSlider__item a:hover img {
    transform: scale(1.03);
  }
}

.indexmainBox__wrap {
  position: relative;
  width: min(100%, var(--width-content));
  margin: 0 auto;
}

/*dots*/
.indexmainBox .slick-dots {
  bottom: 20px;
}


/*スライドのばらけ防止*/
.indexmainSlider__item:not(:first-child) {
  display: none;
}

.indexmainSlider.slick-initialized .indexmainSlider__item {
  display: block;
}




/*
===== eventBox ==========================================
*/
.eventBox {
  padding: var(--gutter-wide) 0;
  background-color: var(--color-palered);
}

/*
===== SEARCHBOX ==========================================
*/

/*物件検索へのボタン*/
.searchBox__btn {
  margin-top: var(--gutter-narrow);
}

.searchBox__btn a {
  width: min(100%, 300px);
  height: clamp(70px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1.4;
}

.searchBox__btnBigTxt {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
}

/*
===== RECOMBOX 注目物件／リフォーム済みおすすめ物件 ==========================================
*/
/* タブ */
.recomTabBox__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  margin-bottom: var(--gutter-narrow);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
}

.recomTabBox__item {
  border: 2px solid var(--color-black);
  background: #fff;
  border-radius: var(--rad-common);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 1.7em;
  line-height: 1.4;
  font-weight: bold;
  cursor: pointer;
  transition: background-color .1s, color .3s;
  position: relative;
}

.recomTabBox__item.active {
  background-color: var(--color-black);
  color: #fff;
}

.recomTabBox__item::after {
  content: "";
  opacity: none;
  transform: translateX(-50%) translateY(-5px);
  opacity: 0;
  transition: transform .2s;
  z-index: -1;
}

.recomTabBox__item.active::after {
  content: "";
  display: block;
  width: 21px;
  height: auto;
  aspect-ratio: 21 / 15;
  background-color: var(--color-black);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  opacity: 1;
}

@media (any-hover:hover) {
  .recomTabBox__item:hover {
    background-color: var(--color-black);
    color: #fff;
  }
}

/* スライド */
.pickupBox .c-recomList {
  display: flex;
  justify-content: center;
  margin-bottom: var(--gutter);
  flex-wrap: nowrap;
  gap: 0;
}

.pickupBox .c-recomList__item {
  width: 300px;
}

.pickupBox .c-recomList.slick-initialized {
  margin-bottom: 75px !important;
  display: block;
}

.pickupBox .c-recomList .slick-dots {
  bottom: -20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, var(--width-content));
}

.pickupBox .c-recomList .slick-dots li {
  flex: 1;
  margin: 0;
  width: 0 !important;
  height: 0 !important;
}

.pickupBox .c-recomList .slick-dots li button {
  width: 0 !important;
  height: 0 !important;
}

.pickupBox .slick-dots li button::before,
.pickupBox .slick-dots li button::after {
  border-radius: 0;
  border: none;
  height: 10px !important;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  width: 100% !important;
  background-color: var(--color-palegray);
}

.pickupBox .slick-dots li:first-child button::before,
.pickupBox .slick-dots li:first-child button::after {
  border-radius: var(--rad-common) 0 0 var(--rad-common);
  border-left: 1px solid var(--color-black);
}

.pickupBox .slick-dots li:last-child button::before,
.pickupBox .slick-dots li:last-child button::after {
  border-radius: 0 var(--rad-common) var(--rad-common) 0;
  border-right: 1px solid var(--color-black);
}

.pickupBox .slick-dots li.slick-active button:before {
  background: var(--color-black);
}


.pickupBox .c-recomList__item {
  margin: 0 22px;
}

.pickupBox .c-recomList__item:not(.c-recomList__item--member) {
  transition: transform .3s ease-in-out .05s;
}

.pickupBox .c-recomList__normalLink {
  width: 100%;
  height: 100%;
  display: block;
}

@media (any-hover:hover) {
  .pickupBox .c-recomList__item:not(.c-recomList__item--member):hover {
    transform: scale(1.02);
  }

  .pickupBox .c-recomList__normalLink:hover {
    opacity: 1;
  }
}

/*
===== SAKIDORIBOX ==========================================
*/
.sakidoriBox {
  padding: var(--gutter-wide) 0;
  background-color: var(--color-palered);
}

.sakidoriBox__ttlLogo {
  width: min(45%, 200px);
  margin: 0 auto 5px;
}

.sakidoriBox__ttl {
  font-size: clamp(1.4rem, 3.7vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}

.sakidoriBox__ttlMain {
  font-feature-settings: 'palt';
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.15em;
}

.c-sakidoriList {
  margin-bottom: var(--gutter-medium);
}

.c-sakidoriList__itemTtl {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-sakidoriList__comment {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}



/*
===== SERVICEBOX ==========================================
*/
.serviceBox {
  padding: var(--gutter-wide) 0;
  background-color: var(--color-palered);
  margin-bottom: 0;
}

.serviceBox__list {
  display: flex;
  margin-bottom: var(--gutter-medium);
  justify-content: space-around;
  gap: 15px;
}

.serviceBox__item {
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--color-black);
  border-radius: var(--rad-common);
  position: relative;
  background: #fff;
}

.serviceBox__num {
  font-family: var(--font-en);
  color: #fff;
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: bold;
  line-height: 1.8;
  background: var(--color-main);
  width: 2.3em;
  height: auto;
  aspect-ratio: 92 / 57;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 0.15em), 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.serviceBox__imgWrap {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
}

.serviceBox__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--rad-common) var(--rad-common) 0 0;
}

.serviceBox__itemTtlWrap {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.serviceBox__itemTtl {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}

.serviceBox__important {
  color: var(--color-red);
}

.serviceBox__txt {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
}

.serviceBox__itemInner {
  padding: clamp(10px, 2vw, 20px) 10px 30px;
  display: flex;
  text-align: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/*
===== CONCEPTBOX ==========================================
*/
.conceptBox {
  padding: var(--gutter-wide) 0;
  margin-top: 0;
  position: relative;
}

.conceptBox__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 round var(--rad-common));
  z-index: -1;
  pointer-events: none;
}

.conceptBox__bg::after {
  position: fixed;
  content: "";
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to right, var(--color-main) 50%, transparent 50%), url(../img/index/bg_concept_01.webp) no-repeat center right / cover;
  display: block;
  border-radius: var(--rad-common);
  z-index: -1;
  left: 0;
  top: 0;
  pointer-events: none;
}

.conceptBox__wire {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
}

.conceptBox__inner {
  width: min(400px, 100%);
}

.conceptBox__caption {
  color: var(--color-main);
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  padding: 10px 30px 10px 0;
  left: 10px;
  font-weight: bold;
  margin-bottom: 1.3em;
}

.conceptBox__captionSmall {
  font-size: 0.8em;
}

.conceptBox__caption::after {
  width: 100vw;
  height: 100%;
  content: "";
  position: absolute;
  right: 0;
  z-index: -1;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.conceptBox__ttl {
  font-size: 1em;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
}

.conceptBox__ttlSmall {
  font-size: 1.78em;
}

.conceptBox__ttlNormal {
  font-size: 2.2em;
  padding-top: 10px;
  display: inline-block;
}

.conceptBox__ttlLogo {
  height: 5em;
  padding-left: 0.4em;
}

.conceptBox__txt {
  font-size: 1em;
  line-height: 2;
  color: #fff;
  margin: 2.22em 0;
  font-weight: 500;
}

/* ボタン */
.conceptBox__btnList {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.conceptBox__btnList .btn_archive a {
  margin: 0;
}

/*
===== NOTICEBOX（未使用） ==========================================
*/
.noticeBox__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* お知らせ・コラム共通 */
.noticeBox__iconWrap {
  display: flex;
  gap: 5px 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.noticeBox__date {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.4;
  font-family: var(--font-en);
}

.noticeBox__itemTtl {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
  transition: color .3s ease-in-out .1s;
}

.topicsBox,
.columnBox {
  width: calc((100% - 60px) / 2);
  position: relative;
  display: flex;
  flex-direction: column;
}

.topicsBox__list,
.columnBox__list {
  margin-bottom: var(--gutter-medium);
  flex: 1;
}

.topicsBox__inner,
.columnBox__inner {
  margin-bottom: var(--gutter-medium);
}

/* topicsBox */
.topicsBox__itemLink {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-black);
  padding: 20px 0;
  position: relative;
  transition: color .3s ease-in-out .1s;
}

.topicsBox__item:first-child .topicsBox__itemLink {
  padding-top: 0;
}

.topicsBox__itemLink::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  position: absolute;
  bottom: -1px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s ease-in-out .1s;
  ;
}

@media (any-hover:hover) {
  .topicsBox__itemLink:hover {
    opacity: 1;
  }

  .topicsBox__itemLink:hover .topicsBox__itemTtl {
    color: var(--color-red);
  }

  .topicsBox__itemLink:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}


/* columnBox */
.columnBox__list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.columnBox__itemLink {
  display: flex;
  gap: 15px 20px;
  align-items: flex-start;
}

.columnBox__photo {
  width: min(35%, 160px);
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: var(--rad-common);
  overflow: hidden;
  flex-shrink: 0;
}

.columnBox__photoImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease-in-out .05s;
}

@media (any-hover:hover) {
  .columnBox__itemLink:hover {
    opacity: 1;
  }

  .columnBox__itemLink:hover .columnBox__photoImg {
    transform: scale(1.1);
  }
}




/*
===== indexColumnBox ==========================================
*/

/* indexColumnBox */
.indexColumnBox__list {
  display: flex;
  margin-bottom: var(--gutter-medium);
  justify-content: center;
}

.indexColumnBox__item {
  width: calc((100% - 120px) / 3);
  position: relative;
  max-width: 360px;
  margin: 0 20px;
}


.indexColumnBox__itemLink {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px 20px;
}

.indexColumnBox__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--rad-common);
  position: relative;
}

.indexColumnBox__photoImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease-in-out .05s;
}

@media (any-hover:hover) {
  .indexColumnBox__itemLink:hover {
    opacity: 1;
  }

  .indexColumnBox__itemLink:hover .indexColumnBox__photoImg {
    transform: scale(1.1);
  }
}

/*
===== SPECIALBOX ==========================================
*/
.specialBox__inner {
  position: relative;
}

.specialBox__list {
  text-align: center;
  display: flex;
  gap: clamp(15px, 2vw, 30px);
  justify-content: center;
}

.specialBox__list.slick-initialized {
  margin-bottom: 30px !important;
  display: block;
}

.specialBox__item {
  width: min(100%, 380px);
}

.specialBox__item a {
  width: 100%;
  height: 100%;
  display: block;
  transition: .3s;
}

.specialBox__item img {
  border-radius: var(--rad-common);
}

.specialBox__list.slick-initialized .specialBox__item {
  margin: 0 15px;
}

@media (any-hover:hover) {
  .specialBox__item a:hover {
    opacity: 1;
    transform: scale(1.02);
  }
}

/*
===== SNSBOX ==========================================
*/
.SNSBox {
  background: var(--color-palegray);
  padding: 50px;
}

.SNSBox ul {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.SNSBox ul li {
  width: 48%;
  margin-bottom: 30px;
}

.SNSBox ul li.col1 {
  width: 100%;
}

/*==================================================
  tablet SETTINGS : Min768px Max1080px
==================================================*/
@media screen and (min-width: 768px) and (max-width: 1080px) {


  /*
===== SAKKIDORIBOX ==========================================
*/

  .sakidoriBox .c-sakidoriList__item:nth-child(n+5) {
    display: none;
  }


  /*
===== CONCEPTBOX ==========================================
*/
  .conceptBox__caption {
    margin-right: auto;
  }

  .conceptBox__bg::after {
    background: linear-gradient(to right, var(--color-main) 50%, transparent 50%), url(../img/index/bg_concept_01.webp) no-repeat center right 25% / cover;
  }

  /*
===== NOTICEBOX ==========================================
*/
  /* topicsBox */
  .noticeBox__itemTtl {
    font-size: 1.4rem;
  }
}

/*==================================================
  SP SETTINGS : Max767px
==================================================*/

@media screen and (max-width: 767px) {

  .indexmainBox {
    margin-top: 5px;
  }

  .indexmainBox .slick-dots {
    bottom: -20px;
  }

  .indexmainSlider .slick-arrow.slick-prev {
    left: 0 !important;
  }

  .indexmainSlider .slick-arrow.slick-next {
    right: 0 !important;
  }

  .slick-arrow.slick-prev {
    left: 0 !important;
  }

  .indexmainSlider .slick-arrow.slick-prev {
    left: 0 !important;
  }

  .indexmainSlider .slick-arrow.slick-next {
    right: 0 !important;
  }

  .indexmainSlider .slick-arrow.slick-next {
    right: 0 !important;
  }

  .indexmainSlider .slick-list.draggable {
    padding: 0 15px !important;
  }

  .indexmainSlider__item {
    margin: 0 5px;
    aspect-ratio: 750 / 750;
    max-height: inherit;
  }

  .indexmainSlider:not(.slick-initialized) .indexmainSlider__item {
    margin: 0 auto;
  }

  /*
  ===== spInfoBox - SP   ==========================================
  */
  .spInfoBox {
    width: 100%;
    margin: 20px auto 0;
    padding: 10px;
  }

  .spInfoBox__countAll {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.2;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 3% 5%;
    background: var(--color-main);
    color: #fff;
  }

  .spInfoBox__countAllTxt--num {
    font-size: 1.9em;
  }

  .spInfoBox__countDetail {
    padding: 10px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 5%;
  }

  .spInfoBox__detailItem {
    margin: 10px 0;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
  }

  .spInfoBox__detailItemTxt--num {
    font-size: 1.8em;
  }

  .spInfoBox__detailItemTtl-general,
  .spInfoBox__detailItemTxt-general {
    color: var(--color-lightblue);
  }

  .spInfoBox__detailItemTtl-emember,
  .spInfoBox__detailItemTxt-emember {
    color: var(--color-orange);
  }

  .spInfoBox__detailItemTtl-shop,
  .spInfoBox__detailItemTxt-shop {
    color: var(--color-black);
  }

  .spInfoBox__btnBox {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 3%;
    font-weight: bold;
  }

  .spInfoBox__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48.5%;
    /*種別の数に応じて変更*/
    padding: 1em 0.5em;
    text-align: center;
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    position: relative;
    border: 2px solid var(--color-black);
    border-radius: 3px;
  }

  .spInfoBox__btn::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left: 4px solid var(--color-black);
    top: 50%;
    right: 1%;
    transform: translateY(-50%);
  }

  .spInfoBox__btnTxt {
    line-height: 1.3;
  }

  /*
===== eventBox - SP ==========================================
*/
  .eventBox {
    padding: var(--gutter) 0;
  }


  /*
  ===== PICKUPBOX・RECOMBOX ==========================================
  */

  /* タブ */
  .recomTabBox__list {
    font-size: clamp(1rem, 2.8vw, 1.3rem);
    gap: 3px;
    align-items: stretch;
  }

  .recomTabBox__item {
    width: calc(100% / 5);
    padding: 0;
    text-align: center;
    line-height: 1.2;
    padding: 0.8em 0;
  }

  /* スライド */
  .pickupBox .c-recomList__item {
    max-width: 300px;
    margin: 0 10px;
  }

  /*スライドのばらけ防止*/
  .pickupBox .c-recomList__item:not(:first-child) {
    display: none;
  }

  .pickupBox .c-recomList.slick-initialized .c-recomList__item {
    display: block;
  }


  /*
  ===== SAKIDORIBOX ==========================================
  */
  .sakidoriBox__ttl {
    margin-bottom: var(--gutter);
  }

  /* SP版トップのみスライダー */
  .c-sakidoriList--spCarousel.slick-initialized {
    margin-bottom: 80px !important;
    display: block;
  }

  .c-sakidoriList--spCarousel .slick-dots {
    bottom: -40px;
  }

  .c-sakidoriList--spCarousel .c-sakidoriList__listInner {
    width: min(100%, 300px);
    margin: 0 10px;
    gap: 30px;
    display: flex;
    flex-direction: column;
  }

  /*スライドのばらけ防止*/
  .c-sakidoriList--spCarousel .c-sakidoriList__listInner:not(:first-child) {
    display: none;
  }

  .c-sakidoriList--spCarousel.slick-initialized .c-sakidoriList__listInner {
    display: flex;
  }

  /*
  ===== SERVICEBOX ==========================================
  */
  .serviceBox {
    padding: var(--gutter) 0;
  }

  .serviceBox__list {
    flex-direction: column;
  }

  .serviceBox__item {
    width: 100%;
    flex-direction: row;
    align-items: stretch;
  }

  .serviceBox__num {
    font-size: 3rem;
    left: 10px;
    transform: none;
  }

  .serviceBox__itemTtlWrap {
    justify-content: flex-start;
  }

  .serviceBox__itemTtl {
    font-size: clamp(1.8rem, 4.7vw, 2rem);
  }

  .serviceBox__txt {
    font-size: clamp(1.2rem, 3vw, 1.3rem);
  }

  .serviceBox__itemInner {
    text-align: left;
    padding: clamp(10px, 4.7vw, 20px);
    width: 55%;
  }

  .serviceBox__imgWrap {
    width: 45%;
    aspect-ratio: inherit;
  }

  .serviceBox__img {
    border-radius: var(--rad-common) 0 0 var(--rad-common);
  }

  /*
===== CONCEPTBOX ==========================================
*/
  .conceptBox {
    background: var(--color-main);
  }

  .conceptBox__bg {
    display: none;
  }

  .conceptBox__wire {
    width: 100%;
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    text-align: center;
  }

  .conceptBox__ttl {
    margin-bottom: var(--gutter);
  }

  .conceptBox__spCaptionWrap {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: var(--rad-common);
    margin: 2.22em 0;
    z-index: 1;
    position: relative;
  }

  .conceptBox__spCaptionWrapInner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0 0 round var(--rad-common));
  }

  .conceptBox__spCaptionWrapInner::after {
    position: fixed;
    content: "";
    width: 100vw;
    height: 100vh;
    background: url(../img/index/bg_concept_01.webp) no-repeat center right -90px / cover;
    display: block;
    border-radius: var(--rad-common);
    z-index: -1;
    left: 0;
    top: 0;
    pointer-events: none;
  }

  .conceptBox__caption {
    font-size: clamp(1.6rem, 4.1vw, 2rem);
    position: absolute;
    transform: translateY(-50%);
  }

  .conceptBox__caption::after {
    border: 2px solid var(--color-main);
  }

  .conceptBox__txt {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }

  .conceptBox__btnList .btn_archive a {
    margin: 0 auto;
  }

  /*
  ===== noticeBox（未使用）  ==========================================
  */
  .noticeBox__inner {
    flex-direction: column;
    gap: var(--gutter-superwide);
  }

  .topicsBox,
  .columnBox {
    width: 100%;
  }

  .topicsBox__item:nth-child(n+3) {
    display: none;
  }

  .columnBox__item:nth-child(n+3) {
    display: none;
  }

  .columnBox__itemLink {
    flex-direction: column;
  }

  .columnBox__photo {
    width: 100%;
    margin: 0 auto;
  }

  .columnBox__item:first-child {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-black);
  }

  /*
===== indexColumnBox ==========================================
*/

  .indexColumnBox__list {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .indexColumnBox__item {
    width: 100%;
    margin: 0;
  }

  .indexColumnBox__item:nth-child(n+3) {
    display: none;
  }

  .indexColumnBox__itemLink {
    flex-direction: column;
  }

  .indexColumnBox__photo {
    width: 100%;
    margin: 0 auto;
  }

  .indexColumnBox__item:first-child {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-black);
  }

  /*
===== SPECIALBOX ==========================================
*/
  .specialBox__item {
    width: 85vw;
  }

  .specialBox__list.slick-initialized .specialBox__item {
    margin: 0 1.5vw;
  }

  /*
  ===== SNSBOX ==========================================
  */
  .SNSBox {
    padding: 10% 2%;
  }

  .SNSBox ul {
    flex-direction: column;
    gap: 10px;
  }

  .SNSBox ul li {
    width: 100%;
  }
}