/* 
------------
ページ共通
------------
*/
#fb .fb_bg {
  background-color: #E9E5DF;
}
#fb .main_title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  text-align: center;
  color: #4D4D4D;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 4.6rem;
}
@media screen and (max-width: 768px) {
  #fb .main_title {
    font-size: 3rem;
    margin-bottom: 2.3rem;
  }
}

/* 
------------
END ページ共通
------------
*/

/* START FV */
#fb_fv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
#fb_fv picture,
#fb_fv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#fb_fv ._w_catch {
  position: absolute;
  top: 33vh;
  right: 8vw;
}
#fb_fv .main_c {
  color: #E9E5DF;
  font-weight: 600;
  font-size: 8rem;
  letter-spacing: 0.03em;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
#fb_fv .sub_c {
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  color: #FFFFFF;
}
/* 画像フェードイン */
.fb_fadein {
  animation: fb_fadein 1.6s ease-in-out 0s 1 normal;
}
@keyframes fb_fadein { 
  0% {
    opacity: 0;
  } 
  100% {
    opacity: 1;
  } 
}
/* キャッチコピー1 フェードイン */
.fb_fade_catch1 {
  animation: fb_fade_catch1 0.9s ease-in-out 0.8s forwards;
  opacity: 0;
}
@keyframes fb_fade_catch1 {
  0% {
    opacity: 0;
  transform: translateY(20%);
  }
  100% {
    opacity: 1;
  transform: translateY(0);
  }
}
/* キャッチコピー2 フェードイン */
.fb_fade_catch2 {
  animation: fb_fade_catch2 1.2s ease-in-out 1.3s forwards;
  opacity: 0;
}
@keyframes fb_fade_catch2 {
  0% {
    opacity: 0;
    transform: translateY(30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  #fb_fv ._w_catch {
    position: absolute;
    top: initial;
    bottom: 12vh;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
  }
  #fb_fv .main_c {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
  #fb_fv .sub_c {
    font-size: 1.6rem;
  }
}
/* END FV */

/* START Concept */
#concept {
  padding-top: 13rem;
  width: 100%;
  margin: 0;
}
#concept .item {
  display: flex;
  gap: 8rem;
  align-items: center;
}
#concept .item:nth-of-type(even) {
  flex-direction: row-reverse;
}
#concept .item + .item {
  margin-top: 1.2rem;
}
#concept .img {
  width: 65.2%;
  height: auto;
}
#concept .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#concept .item:nth-of-type(even) .text {
  text-align: right;
}
#concept .text {
  width: 34.8%;
  color: #4D4D4D;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #concept {
    padding-top: 6.5rem;
  }
  #concept .item {
    flex-direction: column;
    gap: 1.5rem;
  }
  #concept .item:nth-of-type(even) {
    flex-direction: column;
  }
  #concept .item + .item {
    margin-top: 4rem;
  }
  #concept .img {
    width: 100%;
    height: 40vh;
  }
  #concept .item:nth-of-type(even) .text {
    text-align: center;
  }
  #concept .text {
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
  }
}
/* END Concept */

/* START Products */
#products {
  padding-top: 19.3rem;
}
#products .main_title {
  text-align: left;
}
.inner_wrapper {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
}
#products .swiper-products {
  /* padding: 0 0 57px 13vw; */
  padding-bottom: 57px;
  max-width: 100%;
  margin-right: -5%;
}
#products .swiper-slide {
  /* width: auto!important; */
  height: auto;
}
/* 前へ次への矢印カスタマイズ */
#products .navigation {
  position: absolute;
  right: 187px;
  bottom: 0;
}
#products .swiper-button-prev,
#products .swiper-button-next {
  width: 57px;
  height: 22px;
  background-color: #F5F3EE;
  top: initial;
  bottom: initial;
  left: initial;
  right: initial;
}
#products .swiper-button-prev::after,
#products .swiper-button-next::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}
/* 前への矢印カスタマイズ */
#products .swiper-button-prev {
  right: 8px;
}
#products .swiper-button-prev::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid #252525;
  border-right: 2px solid #252525;
  transform: rotate(-135deg);
  box-sizing: border-box;
}
/* 次への矢印カスタマイズ */
#products .swiper-button-next::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid #252525;
  border-right: 2px solid #252525;
  transform: rotate(45deg);
  box-sizing: border-box;
}

#products .link {
  display: block;
  text-decoration: none;
  width: 100%;
  transition: .3s;
}
#products ._w_img {
  background-color: #F5F3EE;
  position: relative;
  margin-bottom: .8rem;
  border-radius: 5px;
  /* min-width: 313.5px;
  max-width: 313.5px; */
  width: 100%;
  height: 426px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#products ._w_img img {
  display: block;
  width: 77%;
  /* width: 230px; */
  height: auto;
  display: block;
  margin: 0 auto;
  transition: .6s;
  object-fit: contain;
}
/* ホバー時、画像を拡大 */
#products .link:hover ._w_img img {
  transform: scale(1.05);
}
#products .view {
  position: absolute;
  bottom: 24px;
  right: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(136.87deg, #DDCEB7 28.41%, #A59982 76.27%);
  transform: scale(1);
  transition: transform 0.6s, bottom 0.6s;
  overflow: hidden;
}
/* ホバー時、丸を拡大 */
#products .link:hover .view {
  transform: scale(5); /* 16px × 5 = 約80px */
}
/* 丸の中の文字は最初非表示 */
#products .view .view_text {
  font-family: 'Alata', sans-serif;
  font-weight: 400;
  font-size: .4rem;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s 0.2s; /* 少し遅延させる */
  pointer-events: none;
}
/* ホバーで文字を表示 */
#products .link:hover .view .view_text {
  opacity: 1;
}
#products .name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #4D4D4D;
}
#products .number {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.3rem;
  color: #4D4D4D;
}

@media screen and (max-width: 1023px) {
  #products ._w_img img {
    width: 66%;
  }
}

@media screen and (max-width: 768px) {
  #products {
    padding-top: 9rem;
  }

  #products .swiper-products {
    margin-right: 0;
    margin-left: 20px;
}

  #products .link {
    width: atuo;
  }

  #products ._w_img {
    height: 316px;
  }
  #products ._w_img img {
    width: auto;
    height: 80%;
  }

  #products .navigation {
    right: 100px;
  }
}
/* END Products */

/* START Gallery */
#fb_gallery {
  padding-top: 21.1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 16rem;
}
/* 動画スライダー */
#fb_gallery .swiper-movie {
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  overflow: hidden;
  margin-bottom: 120px;
}
#fb_gallery .swiper-movie .swiper-slide {
  opacity: .5;
  transform: scale(0.8);
  transition: .6s;
}
#fb_gallery .swiper-movie .swiper-slide img {
  height: auto;
  width: 100%;
  border-radius: 4px;
}
#fb_gallery .swiper-movie .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
@media (min-width: 769px) {
  #fb_gallery .swiper-movie {
    max-width: calc(100vw - 8px);
  }
}
@media only screen and (max-width: 768px) {
  #fb_gallery {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  #fb_gallery .swiper-movie .swiper-slide img {
    border-radius: 3px;
  }
  #fb_gallery .swiper-movie {
    margin-bottom: 60px;
  }
}
/* 画像ループ */
#fb_gallery .swiper-imgloop {
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  overflow: hidden;
  /* margin-bottom: 10.5rem; */
}
#fb_gallery ._w_imgloop .swiper-slide {
  width: auto;
  height: auto;
}
#fb_gallery ._w_imgloop .swiper-slide img {
  width: 100%;
  display: block;
}


/*フェードイン*/
.add-fadezoom {
  opacity: 0;
}
.fadezoom {
  animation: fadezoom 1s ease-in-out 0s 1 normal;
}
@keyframes fadezoom { 
  0% {
    opacity: 0;
    transform: scale(0.95);
  } 
  100% {
    opacity: 1;
    transform: scale(1);
  } 
}
@media only screen and (max-width: 640px) {
  #fb_gallery ._w_imgloop .swiper-slide {
    width: 250px!important;
  }
}

/* END Gallery */

/* START コンセプト */
/* END コンセプト */

/* START コンセプト */
/* END コンセプト */

/* START コンセプト */
/* END コンセプト */

#cta {
  margin-top: 0;
}