@charset "UTF-8";
.main{
  min-height: var(--min-hight-PC-main);
}


/*トップセクション*/
.top{
  width: 100%;
  aspect-ratio: 1366/760;
  margin-top: -85px;  /*header分*/
}
.top > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .top{
    width: 100%;
    aspect-ratio: 425/956;
    margin-top: -60px;  /*header分*/
  }
  .top > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/*carousel-new*/
.carousel-new{
  position: relative;
  width: 100%;
  margin-top: 32px;
}
.carousel-new__inner{
  width: 100%;
  overflow: hidden;
  padding: 10px 0;  /*ドロップシャドウ切れる*/
}
.carousel-new__slide{
  display: flex;
  flex-wrap: nowrap;
  margin: 0 auto;
  /*margin-left: calc(50% - 131px);*/
  transition: transform 1.5s ease;
}
.carousel-new__slide-item{
  display: inline-block;
  border-radius: 6px 6px 0px 0px;
  width: 352px;
  background-color: var(--color-white);
  margin-right: 32px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.25);
}
.carousel-new__slide-img{
  border-radius: 6px 6px 0px 0px;
  width: 352px;
  aspect-ratio: 352/218;
  background-position: center;
  background-size: cover;
}

.carousel-new__slide-caption{
  padding: 8px;
}
.carousel-new__slide-date{
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.15px;
  margin-bottom: 8px;
}
.carousel-new__slide-name{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.64px;
  margin-bottom: 8px;
}
.carousel-new__slide-category{
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.15px;
  margin-bottom: 8px;
}
.carousel-new__slide-price{
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.3px;

}
.carousel-new__slide-price span{
  color: var(--color-red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.3px;
  margin: 0.25em;
}

.carousel-new__indication{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.carousel-new__indicator{
  width: 14px;
  aspect-ratio: 14/14;
  border-radius: 50%;
  background-color: var(--color-lightgray);
  margin: 0 8px;
  cursor: pointer;
}
.carousel-new__indicator.current{
  border: solid 1px var(--color-black);
  background-color: var(--color-lightgray);
  margin: 0 8px;
}
.carousel-new__slide-item-date{
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}
.carousel-new__slide-item-name{
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}
.carousel-new__slide-item-category{
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}
.carousel-new__slide-item-price{
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}
.carousel-new__slide-item-price > span{
  color: var(--color-red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0.5em;
}


/*news*/
.news{
  color: var(--color-white);
  background: linear-gradient(270deg, #002361 0%, #00213B 0.01%, #135589 100%);
  margin-top: 140px;
  padding: 10px var(--margin-h-pc) 24px;
}
.news__inner{
  display: flex;
  justify-content: space-between;
  max-width: var(--max-width-pc);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .news{
    padding: 64px 16px 32px;
  }
  .news__inner{
    max-width: 100%;
    display: block;
  }
}



.news__title-space{
}
.news__title{
  color: var(--color-white);
  font-size: 48px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 1.92px;
}
.news__title-caption{
  color: var(--color-white);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.news__list-space{
  width: 628px;
  display: flex;
  align-items: center;
  margin: 24px 0;
}
.news__list{
  list-style: none;
}
.news__list-item{
  margin-bottom: 12px;
}
.news__list-item:last-child{
  margin-bottom: 0;
}
.news__post-time,
.news__post-category{
  color: var(--color-white);
  display: inline-block;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  margin-right: 16px;
}
.news__post-title{
  color: var(--color-white);
  display: inline-block;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .news__list-space{
    width: 100%;
    display: flex;
    align-items: center;
    margin: 24px 0;
  }
  .news__list-item{
    margin: 12px 0;
  }
  .news__list-item:last-child{
    margin: 0 0;
  }
}

.news__link-button{
  color: var(--color-white);
  display: flex;
  align-items: end;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.56px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .news__link-button{
    justify-content: end;
    align-items: center;
  }
}



/*about*/
.about{
  margin-top: 160px;
  padding: 0 var(--margin-h-pc);
}
.about__inner{
  max-width: var(--max-width-pc);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .about{
    margin-top: 120px;
    padding: 0 0;
  }
  .about__inner{
    max-width: 100%;
  }
}


.about__title{
  max-width: var(--max-width-pc);
  color: var(--color-red);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2.56px;
  text-align: center;
  margin: 0 auto /*48px*/;
}
.about__title > span{
  background: linear-gradient(90deg, #002361 0%, #00213B 0.01%, #135589 100%);
  background-clip: text;
  -webkit-background-clip:  text;
  color:  transparent;
  padding: 0;
}

.about__container{
  display: flex;
}
.about__img-space{/*.pc-only, .sp-onlyでコントロール*/
  width: 640px;
  aspect-ratio: 640/394;
  background-position: center;
  background-size: cover;
}
.about__text-space{
  width: 448px;
  text-align: justify;  /*両端揃え*/
  padding-left: 32px;
}
.about__text-title{
  color: var(--color-white);
  background-color: var(--color-indigoblue);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.12px;
  text-align: center;
  margin-bottom: 24px;
  padding: 10px 0;
}
.about__text-caption{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 1024px) {
  .about__container{
    display: block;
  }
  .about__text-space{
    width: 100%;
    padding-left: 0;
  }
  .about__img-space.sp-only{/*.pc-only, .sp-onlyでコントロール*/
    width: 100%;
    aspect-ratio: 640/394;
    margin-bottom: 24px;
  }
  .about__text-title{
    text-align: center;
    margin-bottom: 48px;
    padding: 10px 0;
  }
  .about__text-caption{
    margin: 0 16px;
  }
}


/*service*/
.service{
  /*背景グラデとクリッピング*/
  background: linear-gradient(90deg, #EDFAFD 0%, rgba(28, 212, 255, 0.35) 50%,  rgba(28, 212, 255, 0.00) 90%);
  /* clip-path: polygon(0 120px, 100% 0, 100% 100%, 0 calc(100% - 120px)); */
  margin-top: 128px;
  /* padding: 205px var(--margin-h-pc) 225px; */
  padding: 96px var(--margin-h-pc) 64px;
}
.service__inner{
  max-width: var(--max-width-pc);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .service{
    /* padding: 200px 16px 96px; */
    padding: 64px 16px 32px;
  }
}

.service__title{
  max-width: var(--max-width-pc);
  color: var(--color-red);
  font-size: 128px;
  font-weight: 600;
  /* line-height: 1.5; */
  letter-spacing: 5.12px;
  margin: 0 auto /*48px*/;
}
.service__title > span{
  background: linear-gradient(90deg, #002361 0%, #00213B 0.01%, #135589 100%);
  background-clip: text;
  -webkit-background-clip:  text;
  color:  transparent;
}
.service__caption{
  max-width: var(--max-width-pc);
  font-size: 18px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: 0.72px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 1024px) {
  .service__title{
    max-width: 100%;
    font-size: 64px;
    letter-spacing: 2.56px;
  }
  .service__caption{
    max-width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0.64px;
    margin: 0 auto 32px;
  }
}

.service__container{
  display: flex;
  justify-content: space-between;
  max-width: var(--max-width-pc);
  margin: 0 auto 148px;
}
.service__container:last-of-type{
  margin: 0 auto 272px;
}
@media screen and (max-width: 1024px) {
  .service__container{
    display: block;
    width: 100%;
    max-width: none;
    margin: 0 auto 64px;
  }
  .service__container:last-of-type{
    margin: 0 auto 88px;
  }
}

.service__img-space{ /*.pc-only, .sp-onlyでコントロール*/
  /* width: 448px; */
  width: calc(100% - 640px - 32px);
  aspect-ratio: 474/303;
  background-size: cover;
  background-position: center;
}

.service__text-space{
  width: 640px;
}
.service__text-title{
  font-size: 48px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.92px;
  margin-bottom: 46px;
}
.service__text-title-inner{
  display: inline-block;
  transform: skewX(var(--text-skewX));
}
.service__text-caption{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 1024px) {
  .service__text-space{
    width: 100%;
  }
  .service__text-title{
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1.12px;
    margin-bottom: 16px;
    text-align: center;
  }
  .service__img-space.sp-only{ /*.pc-only, .sp-onlyでコントロール*/
    /* width: 448px; */
    width: 100%;
    aspect-ratio: 474/303;
    margin-bottom: 24px;
  }
}

.service__button-space{
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .service__button-space .button-red{
    width: 157px;
    margin: 0 auto;
  }
}



/*search*/
.search{
  /* padding: 0 var(--margin-h-pc); */
  margin-top: 80px;
  margin-bottom: 240px;
}
.search-inner{
  /*width: var(--max-width-pc);*/
  max-width: calc(var(--max-width-pc) + var(--margin-h-pc)*2);/*リストの折り返し対策*/
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .search{
    margin-bottom: 120px;
    padding: 0 16px;
  }
  .search-inner{
    width: 100%;
    max-width: none;
  }
}


.search__head{
  padding: 0 var(--margin-h-pc);
  margin-bottom: 64px;
}
.search__title-space{
  max-width: var(--max-width-pc);
  margin: 0 auto;
}
.search__title{
  color: var(--color-indigoblue);
  font-size: 128px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 5.12px;
}
.search__title > span{
  background: linear-gradient(90deg, #002361 0%, #00213B 0.01%, #135589 100%);
  background-clip: text;
  -webkit-background-clip:  text;
  color:  transparent;
}
.search__title-caption{
  color: var(--color-red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1024px) {
  .search__head{
    padding: 0 0;
  }
  .search__title{
    font-size: 64px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 2.56px;
  }
}

.search__type{
  margin-bottom: 48px;
  padding: 0 var(--margin-h-pc);
}
.search__type-inner{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--max-width-pc);
  margin: 0 auto 0;
}
.search__type-button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 352px;
  height: 68px;
  border: solid 1px var(--color-lightgray);
  border-radius: 34px;
  color: var(--color-black);
  background-color: var(--color-white);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}
.search__type-button:nth-child(1){
  margin-right: 32px;
}
.search__type-button.current{
  border: solid 1px var(--color-indigoblue);
  color: var(--color-white);
  background-color: var(--color-indigoblue);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1024px) {
  .search__type{
    margin-bottom: 24px;
    padding: 0 0;
  }
  .search__type-inner{
    display: flex;
    flex-wrap: wrap;
    max-width: none;
    margin: 0 auto 0;
  }
  .search__type-button{
    /* width: 352px; */
    width: 336px;
    height: auto;
    padding: 8px 0;
  }
  .search__type-button:nth-child(1){
    margin-right: 0;
  }
  .search__type-inner > a:first-child{
    margin-bottom: 8px;
  }
}

.search__type-sub{
  padding-left: var(--margin-h-pc);
  margin-bottom: 43px;
}
.search__type-sub-inner{
  max-width: calc(var(--max-width-pc) + var(--margin-h-pc));
}
.search__type-list{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
.search__type-item{
  position: relative;
  width: 256px;
  height: 177px;
  margin-right: 32px;
  margin-bottom: 32px;
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: center 30%;
}
.search__type-item.current{
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.search__type-item-label{
  position: absolute;
  width: 100%;
  bottom: 0;
  color: var(--color-black);
  background-color: #e8e8e8;
  text-align: center;
}
.search__type-item.current .search__type-item-label{
  color: var(--color-white);
  background-color: var(--color-indigoblue);
  /* opacity: 0.88; */
}
@media screen and (max-width: 1024px) {
  .search__type-sub{
    padding-left: 0;
  }
  .search__type-sub-inner{
    max-width: 100%;
  }
  .search__type-list{
    display: block;
  }
  .search__type-item{
    position: relative;
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .search__type-item.current{
    transform: translateY(-2px);
  }
  .search__type-item-label{
    position: static;
    width: 100%;
    bottom: 0;
  }
}

.search__button-space{
  display: flex;
  justify-content: center;
  margin-top: 83px;
}
@media screen and (max-width: 1024px) {
  .search__button-space .button-indigoblue{
    width: 336px;
    height: auto;
    padding: 8px 0;
  }
}


/*「.search-result」以下はsearch、new-postで共有*/
.search-result{
  padding-left: var(--margin-h-pc);
  margin-bottom: calc(64px - 32px);
}
.search-result__inner{
  max-width: calc(var(--max-width-pc) + var(--margin-h-pc));
  display: flex;
  flex-wrap: wrap;
}
.result__item{
  width: 352px;
  min-height: 327px;
  margin-right: 30px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .search-result{
    padding-left: 0;
    margin-bottom: 113px;
  }
  .search-result__inner{
    max-width: none;
    display: block;
  }
  .result__item{
    width: 100%;
    min-height: auto;
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.result__thumbnail{
  width: 100%;
  aspect-ratio: 352/218;
  border-radius: 6px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.25);
  background-position: center;
  background-size: cover;
  margin-bottom: 12px;
}
.result__date{
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.15px;
  margin-bottom: 8px;
}
.result__name{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.64px;
  margin-bottom: 8px;
}
.result__category{
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.15px;
  margin-bottom: 8px;
}
.result__price{
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.15px;
}
.result__price > span{
  color: var(--color-red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.3px;
  margin: 0 0.25em;
}

