@charset "UTF-8";
/* ------------------------------
	設定
------------------------------ */
/* ----px → vw---- 書き方：vw(px値) */
/* ----px → vw (pc)---- 書き方：vw-pc(px値) */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400&display=swap");
@import url("https://use.typekit.net/mwc6bmv.css");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300&display=swap");
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .sp-only {
    display: none !important;
  }
}

:root {
  --c-txt: #333;
  --c-bg: #F2F2F2;
  --c-bg-02: #fff;
  --c-accent: #5E4735;
  --c-footer: #1D1814;
}

/* --------------------
	animation
-------------------- */
.fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 2s ease 0.3s;
}
.fadein.active {
  opacity: 1;
  visibility: visible;
}

.scale {
  overflow: hidden;
}
.scale img {
  transform: scale(1.1);
  transition: all 1.5s ease;
}
.scale.active img {
  transform: scale(1);
}

.trun-right {
  position: relative;
}
.trun-right::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-accent);
  z-index: 10;
}
.trun-right.active::after {
  width: 0;
  transition: all 1s cubic-bezier(0.6, 0.09, 0.08, 0.9);
}

.mv__img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  -webkit-animation: blur 1.2s ease-in-out forwards;
          animation: blur 1.2s ease-in-out forwards;
}

@-webkit-keyframes blur {
  0% {
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
  }
  100% {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}

@keyframes blur {
  0% {
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
  }
  100% {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
/* --------------------
	contents
-------------------- */
#contents {
  background-color: var(--c-bg);
  color: var(--c-txt);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  #contents {
    font-size: 1.015625vw;
  }
}
#contents img {
  width: 100%;
  height: auto;
}
#contents p {
  line-height: 2;
  text-align: justify;
}
#contents a {
  display: block;
}
#contents header {
  background: var(--c-bg);
}
@media screen and (min-width: 1000px) {
  #contents header {
    padding-bottom: 4.6875vw;
  }
}
#contents header .mv {
  position: relative;
}
@media screen and (min-width: 1000px) {
  #contents header .mv {
    height: 100%;
  }
}
#contents header .mv__ttl {
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84vw;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  #contents header .mv__ttl {
    width: 600px;
  }
}
@media screen and (min-width: 1000px) {
  #contents header .mv__ttl {
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40.625vw;
  }
}
@media screen and (min-width: 1000px) {
  #contents header p {
    width: 47.65625vw;
    margin: 6.25vw auto 3.125vw;
  }
}
#contents .scroll {
  text-align: center;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.1em;
}
#contents .scroll__text {
  text-align: center;
  line-height: 1;
  margin-bottom: 8vw;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  #contents .scroll__text {
    margin-bottom: 40px;
    font-size: 13px;
  }
}
#contents .scroll div {
  font-size: 3.2vw;
  margin-bottom: min(10px, 2.6666666667vw);
  color: var(--c-accent);
}
@media screen and (min-width: 1000px) {
  #contents .scroll div {
    margin-bottom: 10px;
    font-size: 10px;
  }
}
#contents .scroll__icon {
  display: inline-block;
  -webkit-animation: scrollMove 1.5s infinite;
          animation: scrollMove 1.5s infinite;
  width: 2.4vw;
  color: #88A1C0;
  padding-bottom: 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  #contents .scroll__icon {
    width: 16px;
    padding-bottom: 0;
  }
}
@-webkit-keyframes scrollMove {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scrollMove {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#contents .header-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#contents .header-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/special/260515_kbf_recommend/common/img/mv_img_sp.webp") center/cover no-repeat;
  transform: scale(1.08);
  transition: transform 5s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 0;
  background-size: auto 100%;
  background-color: var(--c-bg);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  #contents .header-wrap::before {
    background-position: top center;
  }
}
@media screen and (min-width: 1000px) {
  #contents .header-wrap::before {
    background: none;
    position: static;
  }
}
#contents .header-wrap-active::before {
  transform: scale(1);
}
#contents #wrapper {
  width: 100%;
  position: relative;
  z-index: 10;
  margin-top: 100vh;
  background: var(--c-bg-02);
}
@media screen and (min-width: 1000px) {
  #contents #wrapper {
    margin-top: 0;
  }
}
#contents #wrapper .sp-header__inner {
  background: var(--c-bg);
}
#contents #wrapper .sp-header__inner p {
  width: 80%;
  margin: 0 auto;
  padding: 16vw 0 13.3333333333vw;
}
#contents section .sec-ttl {
  margin-bottom: 8vw;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: -weight;
  letter-spacing: -spacing;
  line-height: 1.8;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 4.2666666667vw;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  #contents section .sec-ttl {
    margin-bottom: 3.90625vw;
    font-size: 1.71875vw;
  }
}
#contents #sec-01, #contents #sec-02, #contents #sec-03, #contents #sec-04, #contents #sec-05 {
  background: var(--c-bg);
}
#contents .block-1 {
  padding: 0;
  background-color: var(--c-bg-02);
}
@media screen and (min-width: 1000px) {
  #contents .block-1 {
    padding-top: 7.8125vw;
    padding: 7.8125vw 0 0;
  }
}
#contents .block-1__main {
  margin: 0 auto 16vw;
}
@media screen and (min-width: 1000px) {
  #contents .block-1__main {
    width: 46.875vw;
    margin: 0 auto 6.25vw;
  }
}
#contents .block-1__sub {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  #contents .block-1__sub {
    display: flex;
    flex-direction: row-reverse;
    width: 75.78125vw;
    margin-bottom: 9.375vw;
  }
}
#contents .block-1__sub__img {
  margin-bottom: 8vw;
}
@media screen and (min-width: 1000px) {
  #contents .block-1__sub__img {
    width: 31.25vw;
    margin-bottom: 0;
  }
}
#contents .block-1__sub p {
  margin-bottom: 16vw;
}
@media screen and (min-width: 1000px) {
  #contents .block-1__sub p {
    width: 36.71875vw;
    margin-bottom: 4.6875vw;
  }
}
#contents .block-1__main__img {
  position: relative;
  overflow: hidden;
}
#contents .block-1__main__img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  pointer-events: none;
}
#contents .block-1__main__img.animate-blur::after {
  -webkit-animation: blur-out 1s ease-out forwards;
          animation: blur-out 1s ease-out forwards;
}
@-webkit-keyframes blur-out {
  0% {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
  100% {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
}
@keyframes blur-out {
  0% {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
  100% {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
}
#contents .ph {
  position: relative;
  margin-bottom: 16vw;
}
@media screen and (min-width: 1000px) {
  #contents .ph {
    width: 31.25vw;
    margin-left: 7.8125vw;
    margin-bottom: 0;
  }
}
#contents .swiper {
  position: relative;
  overflow: hidden;
}
#contents .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#contents .swiper-button-next {
  right: 0 !important;
  margin-right: 2.6666666667vw;
  width: 2.6666666667vw !important;
  background-image: url("/special/260515_kbf_recommend/common/img/arrow_right.svg") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 20;
}
@media screen and (min-width: 1000px) {
  #contents .swiper-button-next {
    margin-right: 0.9375vw;
    width: 13px !important;
  }
}
#contents .swiper-button-prev {
  left: 0 !important;
  margin-left: 2.6666666667vw;
  width: 2.6666666667vw !important;
  background-image: url("/special/260515_kbf_recommend/common/img/arrow_left.svg") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 20;
}
@media screen and (min-width: 1000px) {
  #contents .swiper-button-prev {
    margin-left: 0.9375vw;
    width: 13px !important;
  }
}
#contents .swiper-button-next::after,
#contents .swiper-button-prev::after {
  content: "";
  display: none !important;
}
#contents .swiper-pagination {
  display: flex;
  position: static !important;
  gap: 2.1333333333vw;
  width: 5.8666666667vw !important;
  margin: 3.2vw auto 0;
}
@media screen and (min-width: 1000px) {
  #contents .swiper-pagination {
    gap: 8px;
    width: 22px !important;
    margin: 1.171875vw auto 0;
  }
}
#contents .swiper-pagination-bullet {
  width: 1.8666666667vw;
  height: 1.8666666667vw;
  margin: 0 !important;
  border: 0;
  background-color: var(--c-bg-02) !important;
  border: 1px solid var(--c-accent);
  border-radius: 0 !important;
  opacity: 1;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1000px) {
  #contents .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}
#contents .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -15px !important;
}
#contents .swiper-pagination-bullet-active {
  background-color: var(--c-accent) !important;
  border: 1px solid var(--c-accent);
}
#contents .block-2 {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-font-smoothing: subpixel-antialiased;
  padding: 16vw 0 0;
  background-color: var(--c-bg-02);
  border-top: solid 1px var(--c-accent);
}
@media screen and (min-width: 1000px) {
  #contents .block-2 {
    padding: 7.03125vw 0 7.8125vw;
    border-top: none;
    background: var(--c-bg);
  }
}
#contents .block-2__inner {
  width: 80%;
  margin: 0 auto;
  background-color: var(--c-bg-02);
}
@media screen and (min-width: 1000px) {
  #contents .block-2__inner {
    padding-right: 2.734375vw;
    width: 56.25vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#contents .block-2__sub {
  text-align: center;
  color: var(--c-accent);
  margin-bottom: 4vw;
  font-size: 2.4vw;
}
@media screen and (min-width: 1000px) {
  #contents .block-2__sub {
    margin-top: 14.21875vw;
    margin-bottom: 0.9375vw;
    font-size: 0.78125vw;
  }
}
#contents .block-2__ttl {
  margin-bottom: 16vw;
  text-align: center;
  font-size: 4.2666666667vw;
  color: var(--c-accent);
}
@media screen and (min-width: 1000px) {
  #contents .block-2__ttl {
    margin-bottom: 11.171875vw;
    font-size: 1.71875vw;
  }
}
#contents .block-2__img {
  margin-bottom: 8vw;
}
@media screen and (min-width: 1000px) {
  #contents .block-2__img {
    width: 27.34375vw;
    margin-bottom: 0;
  }
}
#contents .block-2 p {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  #contents .block-2 p {
    width: 23.4375vw;
    margin-bottom: 3.125vw;
  }
}
#contents .item-list {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-font-smoothing: subpixel-antialiased;
  margin: 0 0 21.3333333333vw 0;
  line-height: 1.8;
  font-size: 3.4666666667vw;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1000px) {
  #contents .item-list {
    width: 23.4375vw;
    margin: 0 0 0 auto;
    font-size: 1.015625vw;
  }
}
#contents .item-list li:not(:last-of-type) {
  margin-bottom: 4.8vw;
}
@media screen and (min-width: 1000px) {
  #contents .item-list li:not(:last-of-type) {
    margin-bottom: 1.5625vw;
  }
}
#contents .item-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}
#contents .item-list li a:hover {
  opacity: 0.5;
  transform: translateY(-5px);
}
#contents .item-list li a .item-list__name span {
  display: block;
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 1000px) {
  #contents .item-list li a .item-list__name span {
    margin-top: 0vw;
    font-size: 0.859375vw;
  }
}
#contents .item-list__btn {
  display: block;
  margin: 0 0 0 auto;
  padding: 1.6vw 5.8666666667vw;
  outline: 1px solid var(--c-accent);
  outline-offset: -1px;
  text-align: center;
  transition: 0.5s;
  color: var(--c-accent);
}
@media screen and (min-width: 1000px) {
  #contents .item-list__btn {
    padding: 6px 22px;
    font-size: 0.9375vw;
  }
}
#contents .item-list li:first-of-type .item-list__btn {
  outline: 0;
  color: #fff;
  background-color: var(--c-accent);
}

.sec-movie {
  padding-bottom: 21.3333333333vw;
  background-color: var(--c-bg);
}
@media screen and (min-width: 1000px) {
  .sec-movie {
    padding: 6.25vw 0;
    border-top: solid 1px var(--c-accent);
  }
}

.c-video {
  position: relative;
}
.c-video__frame {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 9/16;
}
@media screen and (min-width: 1000px) {
  .c-video__frame {
    margin: 0 auto;
    padding-top: 0;
    width: 434px;
    height: 772px;
  }
}
.c-video__frame.is-loaded iframe {
  opacity: 1;
  visibility: visible;
}
.c-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.003);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: auto;
  visibility: hidden;
  transition-property: opacity, visibility;
}
@media screen and (min-width: 1000px) {
  .c-video iframe {
    margin: 0 auto;
    width: 434px;
    height: 772px;
  }
}

.aside {
  background-color: var(--c-bg);
}
.aside h3 {
  text-align: center;
  color: var(--c-accent);
  font-weight: 400;
  font-size: 5.3333333333vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .aside h3 {
    margin-bottom: 0.390625vw;
    font-size: 20px;
  }
}
.aside__wrap {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-font-smoothing: subpixel-antialiased;
  width: 100%;
  margin: 0 auto 21.3333333333vw;
  padding-top: 21.3333333333vw;
  overflow: hidden;
  border-top: solid 1px var(--c-accent);
}
@media screen and (min-width: 1000px) {
  .aside__wrap {
    padding: 4.6875vw 0 7.8125vw;
    margin-bottom: 0;
    width: 600px;
  }
}
.aside__wrap p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-bottom: 10.6666666667vw;
  font-size: 3.2vw;
  text-align: center !important;
  color: var(--c-accent);
}
@media screen and (min-width: 1000px) {
  .aside__wrap p {
    margin-bottom: 2.34375vw;
    font-size: 13px;
  }
}

.aside__btn {
  position: relative;
  overflow: hidden;
  width: 80vw;
  height: 40vw;
  margin: 0 auto;
  text-align: center;
  font-size: 5.86667vw;
}
@media screen and (min-width: 1000px) {
  .aside__btn {
    font-size: 23px;
    width: 100%;
    height: 290px;
  }
}

.aside__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/special/260515_kbf_recommend/common/img/staff.webp) no-repeat center/cover;
  transition: transform 0.8s ease-in-out;
}

.aside__btn:hover::before {
  transform: scale(1.05);
}

.aside__btn a {
  position: relative;
  display: block;
  color: #fff;
  transition: color 0.5s ease;
  font-weight: 500;
  line-height: 51.7333333333vw;
  filter: drop-shadow(0px 0px 26px rgba(54, 53, 53, 0.7));
}
@media screen and (min-width: 1000px) {
  .aside__btn a {
    line-height: 290px;
    height: 360px;
  }
}

/* --------------------
		footer
-------------------- */
footer {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-font-smoothing: subpixel-antialiased;
  font-weight: 400;
  padding: 21.3333333333vw 8%;
  background-color: var(--c-footer);
  color: var(--c-bg-02);
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1000px) {
  footer {
    padding: 80px 8%;
  }
}
footer img {
  width: 100%;
  height: auto;
}
footer .label-top {
  margin-bottom: 4.5333333333vw;
  width: 84vw;
  text-align: center;
  border: 1px solid var(--c-bg-02);
  line-height: 12.2666666667vw;
  font-size: 3.7333333333vw;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1000px) {
  footer .label-top {
    margin: 0 auto 30px;
    width: 434px;
    line-height: 55px;
    font-size: 16px;
  }
  footer .label-top:hover {
    opacity: 0.5;
  }
}
footer .label-top a {
  display: block;
  transition: all 0.3s ease;
}
footer p {
  padding-right: 7.4666666667vw;
}
@media screen and (min-width: 1000px) {
  footer p {
    padding-right: 28px;
    font-size: 16px !important;
  }
}

.sns__flex {
  display: flex;
  width: 75.2vw;
  margin: 0 auto 16vw;
}
@media screen and (min-width: 1000px) {
  .sns__flex {
    width: 292px;
    margin: 0 auto 60px;
  }
}
.sns__flex p {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 7.4666666667vw;
  font-size: 3.7333333333vw;
  color: var(--c-bg_main);
}
@media screen and (min-width: 1000px) {
  .sns__flex p {
    padding-right: 28px;
  }
}
.sns__flex__inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
  border-left: solid 1px var(--c-bg-02);
}
.sns__flex__inner a:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7.7333333333vw;
  margin-left: 7.4666666667vw;
  margin-right: 4.8vw;
}
@media screen and (min-width: 1000px) {
  .sns__flex__inner a:first-child {
    width: 29px;
    margin-left: 28px;
    margin-right: 18px;
  }
}
@media screen and (min-width: 1000px) {
  .sns__flex__inner a:first-child:hover {
    opacity: 0.5;
  }
}
.sns__flex__inner a:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11.2vw;
}
@media screen and (min-width: 1000px) {
  .sns__flex__inner a:last-child {
    width: 42px;
  }
}
@media screen and (min-width: 1000px) {
  .sns__flex__inner a:last-child:hover {
    opacity: 0.5;
  }
}

.footer__logo {
  width: min(120px, 32vw);
  margin: 0 auto min(16px, 4.2666666667vw);
  transition: all 0.3s ease;
}
@media screen and (min-width: 1000px) {
  .footer__logo {
    width: min(130px, 10.15625vw);
    margin: 0 auto 1.25vw;
  }
}
@media screen and (min-width: 1000px) {
  .footer__logo:hover {
    opacity: 0.5;
  }
}

.footer__copyright {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-font-smoothing: subpixel-antialiased;
  text-align: center;
  color: #fff;
  letter-spacing: 0.08em;
  font-size: min(12px, 3.2vw);
}
@media screen and (min-width: 1000px) {
  .footer__copyright {
    font-size: min(13px, 1.015625vw);
  }
}

.link__none {
  pointer-events: none;
  opacity: 0.4;
}
.link__none .item-list__btn {
  padding: 1.6vw 0 !important;
  outline: none !important;
  font-size: 2.9333333333vw !important;
  text-align: end;
}
@media screen and (min-width: 1000px) {
  .link__none .item-list__btn {
    padding: 6px 0 !important;
    font-size: 0.859375vw !important;
  }
}
/*# sourceMappingURL=260515_kbf_recommend_style.css.map */