@charset "utf-8";

/*****************************************
*
* HOME
*
******************************************/

/*------------------------------------------*/
/* main
/*------------------------------------------*/

.topmain {
  position: relative;
}

/* uribou --------------------------------*/
.topmain .uribou {
  position: absolute;
  top: 200px;
  left: 20px;
  z-index: 52;
}

@media screen and (min-width: 768px), print {
  .topmain .uribou {
    left: 40px;
  }
}

@media screen and (min-width: 834px), print {

  /* jsにて位置調整 */
  .topmain .uribou {
    width: calc(calc(260 / 1400) * 100vw);
    top: auto;
    bottom: 0;
    left: 60px;
  }
}

@media screen and (min-width: 1400px), print {
  .topmain .uribou {
    width: 260px;
  }
}


/* catchcopy --------------------------------*/
.topmain .catchcopy {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/top/top_main_catchcopy_sp.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 31/30;
  width: 155px;
  height: auto;
  z-index: 51;
}

@media screen and (min-width: 834px), print {

  /* jsにて位置調整 */
  .topmain .catchcopy {
    background: url('../img/top/top_main_catchcopy.png') no-repeat;
    background-size: 100%;
    aspect-ratio: 668/98;
    width: 668px;
    position: absolute;
    bottom: 0;
    left: 60px;
  }
}


/* slider --------------------------------*/

.slider {
  position: relative;
  margin: 0 auto;
  opacity: 1;
  z-index: 50;
  transition: all 1s cubic-bezier(.25, .46, .45, .94);
}

.slider__list {
  display: inline-block;
}

.slider__img {
  position: relative;
  float: left;
}

.slider__img::before {
  content: '';
  display: block;
  /* (画像の高さ / 画像の横幅) × 100 */
  padding-top: calc(100% * calc(1600 / 1000));
}

.slider__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 833px) {
  .slider {
    width: 100%;
    margin-top: 30px;
  }

  .slider__img img {
    border-radius: 20px;
  }

  .js-slider1 {
    width: 38%;
    margin-left: -60px;
  }

  .js-slider2 {
    width: 60%;
    margin-left: 20px;
  }

  .js-slider3 {
    display: none;
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .slider__img img {
    border-radius: 10px;
  }
}

@media screen and (min-width: 834px), print {
  .slider {
    padding-left: calc(calc(200 / 1400) * 100vw);
  }

  .slider__img img {
    border-radius: 20px;
  }

  .js-slider1 {
    width: calc(calc(300 / 1400) * 100vw);
    margin-bottom: calc(calc(120 / 1400) * 100vw);
  }

  .js-slider2 {
    width: calc(calc(420 / 1400) * 100vw);
    margin-left: calc(calc(40 / 1400) * 100vw);
  }

  .js-slider3 {
    width: calc(calc(300 / 1400) * 100vw);
    margin-left: calc(calc(40 / 1400) * 100vw);
    margin-bottom: calc(calc(60 / 1400) * 100vw);
  }
}

/*
@media screen and (min-width: 1400px), print {
  .slider {
    padding-left: 260px;
  }

  .js-slider1 {
    width: 300px;
  }

  .js-slider2 {
    width: 420px;
    margin-left: 40px;
  }

  .js-slider3 {
    width: 300px;
    margin-left: 40px;
  }
}
*/

/*------------------------------------------*/
/* intro
/*------------------------------------------*/

.top-intro figure img {
  width: 100%;
}


/*------------------------------------------*/
/* お知らせ
/*------------------------------------------*/


@media screen and (min-width: 834px), print {
  .top-news .top-news-box {
    display: grid;
    grid-template-columns: 300px 1fr;
  }
}

@media screen and (min-width: 1400px), print {
  .top-news .top-news-box {
    grid-template-columns: 340px 1fr;
  }
}

/* 見出し --------------------------------*/
.top-news .top-news__heading .en {
  color: var(--color-orange);
  font-family: var(--font-limelight);
  font-size: 3rem;
  font-weight: 500;
}

.top-news .top-news__heading .jp {
  display: inline-block;
  background: var(--color-orange);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.1;
}

@media screen and (min-width: 834px), print {
  .top-news .top-news__heading .en {
    font-size: 4.5rem;
  }

  .top-news .top-news__heading .jp {
    font-size: 1.4rem;
  }
}


/*------------------------------------------*/
/* contents
/*------------------------------------------*/

.top-contents {
  position: relative;
}

@media screen and (min-width: 768px), print {
  .top-contents {
    display: flex;
  }

  .top-contents .cont {
    width: 100%;
  }

  .top-contents.reverse {
    flex-direction: row-reverse;
  }
}

/* 画像 --------------------------------*/
.top-contents figure img {
  width: 100%;
  border-radius: 20px 100px 20px 20px;
}

.top-contents figure {
  overflow: hidden;
}

.top-contents.reverse figure img {
  border-radius: 100px 20px 20px 20px;
}

@media screen and (min-width: 768px), print {
  .top-contents figure img {
    border-radius: 20px 100px 20px 20px;
  }

  .top-contents.reverse figure img {
    border-radius: 100px 20px 20px 20px;
  }

  .top-contents figure {
    flex-shrink: 0;
    width: calc(calc(500 / 1400) * 100vw);
    margin-right: calc(calc(60 / 1400) * 100vw);
  }

  .top-contents.reverse figure {
    margin-right: 0;
    margin-left: calc(calc(60 / 1400) * 100vw);
  }
}

@media screen and (min-width: 834px), print {
  .top-contents figure img {
    border-radius: 20px 200px 20px 20px;
  }

  .top-contents.reverse figure img {
    border-radius: 200px 20px 20px 20px;
  }

  .top-contents figure {
    width: calc(calc(600 / 1400) * 100vw);
    margin-right: calc(calc(100 / 1400) * 100vw);
  }

  .top-contents.reverse figure {
    margin-right: 0;
    margin-left: calc(calc(100 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .top-contents figure {
    width: 600px;
    margin-right: 100px;
  }

  .top-contents.reverse figure {
    margin-right: 0;
    margin-left: 100px;
  }
}

/* 見出し --------------------------------*/
.top-contents .top-heading__en {
  position: relative;
  display: inline-block;
  color: var(--color-light-main);
  font-family: var(--font-limelight);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  z-index: 2;
}

.top-contents .top-heading__en .en {
  font-family: var(--font-limelight);
}

.top-contents .top-heading__en::before {
  content: '';
  display: inline-block;
  background: url('../img/common/heading-back.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 515/88;
  width: 220px;
  height: auto;
  opacity: 1;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  transition: all .5s ease;
  z-index: -1;
}

.top-contents .top-heading__jp {
  display: inline-block;
  background: var(--color-main);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.1;
}

@media screen and (max-width: 767px) {
  .top-contents .top-heading__en {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 768px), print {
  .top-contents .top-heading__en-wrap {
    text-align: right;
  }

  .top-contents.reverse .top-heading__en-wrap {
    text-align: left;
  }

  .top-contents .top-heading__en {
    font-size: calc(calc(108 / 1400) * 100vw);
  }

  .top-contents .top-heading__en::before {
    width: calc(calc(515 / 1400) * 100vw);
    bottom: calc(calc(10 / 1400) * 100vw);
  }

  .top-contents .top-heading__jp {
    font-size: calc(calc(38 / 1400) * 100vw);
    text-align: left;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    text-orientation: upright;
    position: absolute;
    top: calc(calc(180 / 1400) * 100vw);
    right: 0;
  }

  .top-contents.reverse .top-heading__jp {
    right: auto;
    left: 0;
  }
}

@media screen and (min-width: 1400px), print {
  .top-contents .top-heading__en {
    font-size: 6rem;
  }

  .top-contents .top-heading__en::before {
    width: 515px;
    bottom: 10px;
  }

  .top-contents .top-heading__jp {
    font-size: 2.4rem;
    top: 180px;
  }
}

/* テキスト --------------------------------*/
.top-contents .text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 3;
  margin-top: 20px;
}

@media screen and (min-width: 768px), print {
  .top-contents .text {
    margin-top: calc(calc(40 / 1400) * 100vw);
  }

  .top-contents.reverse .text {
    margin-left: calc(calc(60 / 1400) * 100vw);
  }
}

@media screen and (min-width: 834px), print {
  .top-contents .text {
    font-size: calc(calc(20 / 1400) * 100vw);
    margin-top: calc(calc(60 / 1400) * 100vw);
  }

  .top-contents.reverse .text {
    margin-left: calc(calc(100 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .top-contents .text {
    font-size: 1.2rem;
    margin-top: 60px;
  }

  .top-contents.reverse .text {
    margin-left: 120px;
  }
}


/*------------------------------------------*/
/* インスタ
/*------------------------------------------*/

.insta-heading-wrap {
  width: 100%;
}

.insta-heading {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size:0;
  display: inline-block;
  background: url('../img/top/insta_logo.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 368/80;
  width: calc(368px / 2);
  height: auto;
}