@charset "UTF-8";

/* ==================================
loader
==================================*/
.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: var(--primary-darkgray);
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading_logo {
  width: 200px;
}

.pc__mainimg {
  height: 100vh;
  /* 画面の高さ100% */
  overflow: hidden;
}

.pc__mainimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 画像をはみ出さずに拡大・トリミングして表示 */
}

/* ローダーを非表示にするクラス */
.hidden {
  display: none !important;
}

/* フェードアップアニメーション */
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUp {
  opacity: 0;
}

.fadeUp.animated {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

/* ==================================
header 
==================================*/
.header__caption {
  width: 375px;
  height: auto;
  margin-top: 88px;
  position: relative;
}

.header__caption .logo {
  display: none;
}

.header__caption .title {
  background-color: rgba(233, 230, 230, 0.5);
  width: 16.2px;
  height: auto;
  color: var(--primary-darkgray);
  font-size: 1.2rem;
  font-weight: 500;
  writing-mode: vertical-lr;
  position: absolute;
  top: 18px;
  right: 11%;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.scroll-wrapper {
  position: relative;
  width: 100px;
  /* 好きな幅に調整 */
  margin: 40px auto 0;
  /* 中央寄せ */
  animation: upDown 2.5s infinite;
}

.scroll {
  font-family: "Nothing You Could Do";
  font-size: 1.6rem;
  text-align: center;
  /* transform: translateX(-50%) translateY(-50%);
  margin-left: 50%;
  margin-top: 40px; */
}


/* .scroll::before {
  content: '';
  display: inline-block;
  background-color: var(--primary-darkgray);
  transform: translateX(-50%);
  width: 0.5px;
  height: 49px;
  animation: scroll 2.5s infinite;
} */

.line {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5px;
  height: 49px;
  background-color: var(--primary-darkgray);
}

@keyframes upDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

/* pc */
@media screen and (min-width:769px) {
  .header__caption {
    padding-top: 320px;
    width: 530px;
  }

  .header__caption .title {
    font-size: 1.8rem;
    font-weight: 400;
    right: 50%;
    letter-spacing: 1.4px;
  }


  .header__caption .logo {
    display: block;
    width: 110px;
    margin: 5px auto 0;
  }

  .scroll {
    font-size: 2rem;
    margin-top: 38px;
  }

  .scroll::before {
    margin-top: 24px;
    height: 60px;
  }
}

/*==================================
main
==================================*/

/*==================================
article
==================================*/
.article__txtbox {
  margin: 0px 8.6% 41px 11%;
}

.article__txt {
  margin-top: 50px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.article__txt:first-child {
  margin-bottom: 28px
}

.article__img {
  max-width: 322px;
  margin-left: auto;
  display: block;
  margin-left: auto;
}

.article__txt:last-child {
  margin-top: 35px;
}

.article__subimg {
  max-width: 322px;
  margin-top: 53px;
}

/* pc */
@media screen and (min-width:769px) {
  .article__txtbox {
    margin: 0px 14.3% 60px 16%;
  }

  .article__txt {
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 1.36px;
  }

  .article__img,
  .article__subimg {
    max-width: 420px;
  }
}

/*==================================
concept
==================================*/
.section--concept {
  background-color: var(--primary-lightgrayR);
  margin: 0 auto;
}

.section--concept .section__title {
  text-align: center;
}

.section--concept .section__title::before {
  content: '';
  display: block;
  width: 1px;
  height: 49px;
  background: #FFF;
  margin: 0 auto;
}

.concept__box {
  display: inline-block;
  border-radius: 150px;
  background: #FFF;
  text-align: center;
  margin: 48px 6% 43px;
  padding: 72px 9% 42px;

}

.concept__subtitle {
  font-size: 1.8rem;
  display: inline-block;
  text-align: left;
}

.concept__txt {
  font-size: 1.6rem;
  line-height: 2;
  display: inline-block;
  text-align: left;
  text-align: justify;
  margin-top: 40px;
}

.concept__img {
  width: 67px;
  height: auto;
  display: inline-block;
  margin-top: 24px;
}

/* pc */
@media screen and (min-width:769px) {
  .section--concept .section__title {
    font-size: 3.8rem;
  }

  .section--concept .section__title::before {
    height: 60px;
  }

  .concept__box {
    margin: 48px 8% 100px;
  }

  .concept__img {
    margin-top: 55px;
    width: 92px;
    height: auto;
  }
}

/*==========================
slick
==========================*/
.slick-slider {
  overflow: hidden;
}

.slider__item {
  width: auto;
}

.slick-dots {
  position: static;
  padding-top: 20px;
  padding-bottom: 50px;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

/* pc */
@media screen and (min-width:769px) {
  .slider__item {
    margin: 0 auto;
  }
}



/*==================================
about
==================================*/

.title__box {
  background-color: #232321;
  width: auto;
  height: 88px;
}

.section--about .section__title {
  text-align: right;
  padding-right: 4%;
}

.section--about .section__title::before {
  content: '';
  display: block;
  width: 0.8px;
  height: 49px;
  background: #FFF;
  margin-left: 90%;
}

.topic {
  padding: 0 8.6% 66px;
  background-color: rgba(205, 205, 192, 0.86);
}

.topic__img {
  width: 310px;
  height: auto;
}

.topic__title {
  color: #232321;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  margin-top: 38px;
  padding: 0 11px;
}

.topic__decorete {
  color: rgba(46, 35, 0, 0.63);
  font-family: "Nothing You Could Do";
  font-size: 2rem;
  line-height: 1;
  text-align: right;
  margin-right: 3%;
  margin-top: 3px;
}

.topic:nth-of-type(1) .topic__decorete {
  margin-right: 10%;
}

.topic__txt {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 30px;
  text-align: justify;
  padding: 0 4%;
}


.arrow {
  margin-top: 30px;
  text-decoration: none;

}

.arrow:hover {
  animation: zoom .5s;
}

@keyframes zoom {
  50% {
    transform: scale(1.05);
  }
}

.arrow__txt {
  font-size: 1.4rem;
  text-align: right;
  padding-right: 3rem;
}

.arrow__img {
  text-align: right;
  margin-top: -15px;
}


.topic:nth-of-type(3) .topic__img {
  width: 60%;
  margin: 0 auto;
}


/* pc */

@media screen and (min-width:769px) {
  .title__box {
    height: 104px;
  }

  .section--about .section__title {
    font-size: 3.8rem;
  }

  .topic__decorete {
    margin-right: 8%;
  }

  .topic:nth-of-type(1) .topic__decorete {
    margin-right: 36%;
  }

  .topic:nth-of-type(3) .topic__title {
    margin-left: 16%;
  }

  .topic:nth-of-type(3) .topic__decorete {
    margin-right: 16%;
  }

  .topic:nth-of-type(3) .topic__text {
    padding: 0 40px;
  }

  .topic {
    padding: 0 9% 90px;
  }

  .topic__img {
    width: 420px;
    height: auto;
  }


  .topic:nth-of-type(4) .topic__title br {
    display: none;
  }
}



/*==================================
access
==================================*/
.section--access .section__title {
  text-align: right;
  padding-right: 4%;
}

.section--access .section__title::before {
  content: '';
  display: block;
  width: 1px;
  height: 49px;
  background: #FFF;
  margin-left: 86%;
}

.map-wrap {
  max-width: 100vw;
  margin: 0 auto;
}

/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 60%;
}

/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.access__contents {
  margin: 20px 14% 50px;
  letter-spacing: 1.36px;
}

.address {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 20px;
}

.access__txt {
  font-size: 1.6rem;
  line-height: 2.8rem;
}

.access__subtxt {
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin-top: 20px;
}

.icon {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 50px;
}

.icon__item {
  display: inline-block;
  width: 30px;
  height: 30px;
}

.icon__item:first-of-type {
  margin-right: 28px;
}

/*==================================
instagram
==================================*/

.instagram {
  background-color: #232321;
  padding: 20px 22% 30px;
}

.instagram__item {
  margin-bottom: 16px;
}

.instagram__icon {
  text-align: center;
  margin-top: 16px;
}

.instagram__icon:hover {
  animation: zoom .5s;
}

@keyframes zoom {
  50% {
    transform: scale(1.05);
  }
}

.instagram__txt {
  color: #fff;
  font-family: "Nothing You Could Do";
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  margin-top: 16px;
}



/* pc */
@media screen and (min-width:769px) {
  .section--access .section__title {
    font-size: 3.8rem;
  }

  .map {
    width: 420px;
    height: auto;
    margin: 0 auto;
  }

  .access__contents {
    margin: 20px 12% 60px;
    line-height: 2;
    letter-spacing: 0.98px;
  }

  .address .spBr {
    display: none;
  }

  .address span {
    padding-left: 1em;
  }

  .access__txt {
    margin-bottom: 16px;
  }

  .section--instagram {
    padding-left: 30%;
    padding-right: 30%;
  }

}