@charset "UTF-8";
/* ------------------------------
	設定
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300&display=swap");
html {
  font-size: 62.5%;
}

/* ----px → vw---- 書き方：vw(px値) */
/* ----px → vw (pc)---- 書き方：vw-pc(px値) */
@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: #7E7A79;
  --c-line: #CBD3D9;
  --c-bg-inamiki: #FAFAFA;
  --c-bg-kumapro: #fff;
  --c-white: #fff;
  --c-bg-profile: #F4F4F4;
  --c-sec_inamiki: #C7ABAB;
  --c-sec_kumapro: #A4B0BD;
  --c-btn_inamiki: #D4BFBF;
  --c-btn_kumapro: #D5DBE1;
}

.fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease 0.3s;
}

.fadein.fadein-active {
  opacity: 1 !important;
  visibility: visible;
}

/* ------------------------------
	style
------------------------------ */
#contents {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--c-txt);
  background-color: var(--c-white);
  overflow: hidden;
  z-index: 0;
}
#contents p {
  line-height: 2;
  letter-spacing: 0.1em;
}
#contents img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1000px) {
  #contents {
    display: flex !important;
  }
}

#wrapper {
  background-color: var(--c-white);
}
@media screen and (min-width: 1000px) {
  #wrapper {
    width: 50vw;
    max-width: 50%;
  }
}
#wrapper h2, #wrapper h3 {
  font-family: "urw-din-condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}
#wrapper .content__inner-wrap {
  margin-top: 100vh;
}
@media screen and (min-width: 1000px) {
  #wrapper .content__inner-wrap {
    margin-top: 0;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  header {
    position: static;
  }
}

.header-wrap {
  position: fixed;
  inset: 0;
  overflow: hidden;
  height: 100vh;
}
@media screen and (min-width: 1000px) {
  .header-wrap {
    position: relative;
    z-index: 10;
    width: 50vw;
  }
}

.header-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/special/260424_kbf_benishoga/common/img/top_image_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: #c8d3db;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header-wrap::before {
    background-position: top center;
  }
}

.header-wrap-active::before {
  transform: scale(1);
}

/* ロゴ */
.header-wrap h1 {
  position: absolute;
  left: 50%;
  bottom: 15% !important;
  transform: translateX(-50%);
  width: min(190px, 40vw);
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header-wrap h1 {
    width: 190px;
  }
}
.header-wrap h1 img {
  width: 100%;
  height: auto;
}

.header-wrap-pc {
  position: relative;
}
@media screen and (min-width: 1000px) {
  .header-wrap-pc {
    position: fixed;
    top: 0;
    left: 0;
    width: 50vw;
    max-width: 50%;
    height: 100vh;
    overflow: hidden;
  }
}
.header-wrap-pc .mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(/special/260424_kbf_benishoga/common/img/top_image_pc.webp) center/cover no-repeat;
  transform: scale(1.08);
  transition: transform 6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.header-wrap-pc .mv__bg-active {
  transform: scale(1);
}

/* ロゴ */
.header-wrap-pc h1 img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1000px) {
  .header-wrap-pc h1 {
    position: absolute;
    left: 50%;
    bottom: 0vw;
    transform: translate(-50%, -50%);
    bottom: 7.03125vw;
    width: min(210px, 15.625vw);
    transform: translateX(-50%);
    z-index: 2;
  }
}

#wrapper {
  width: 100%;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 1000px) {
  #wrapper {
    margin-left: 50%;
  }
}
#wrapper .sec__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  position: relative;
  background-color: var(--c-white);
}
@media screen and (min-width: 1000px) {
  #wrapper .sec__lead {
    padding-top: 0;
    height: 100vh;
  }
}
#wrapper .sec__lead__inner {
  width: 81.3333333333vw;
  margin: 0 auto;
  padding-top: 16vw;
  padding-bottom: 16vw;
}
@media screen and (min-width: 1000px) {
  #wrapper .sec__lead__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max(358px, 27.96875vw);
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
  }
}
#wrapper .sec__lead__inner .sec__lead__ttl {
  font-family: "urw-din-condensed", sans-serif;
  font-size: 5.3333333333vw;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 8.5333333333vw;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  #wrapper .sec__lead__inner .sec__lead__ttl {
    width: min(125px, 9.765625vw);
    margin: 0 auto 5.46875vw;
  }
}
#wrapper .sec__lead__inner .sec__lead__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  border-bottom: solid 1px var(--c-line);
  line-height: 2.3;
  letter-spacing: 0.08em;
  margin-bottom: 16vw;
  padding-bottom: 16vw;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  #wrapper .sec__lead__inner .sec__lead__text {
    padding-bottom: 4.6875vw;
    margin-bottom: 4.6875vw;
    font-size: 13px;
  }
}
#wrapper .sec__lead__inner .scroll {
  text-align: center;
  font-family: "urw-din-condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1em;
}
#wrapper .sec__lead__inner .scroll__text {
  text-align: center;
  line-height: 1;
  margin-bottom: 8vw;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  #wrapper .sec__lead__inner .scroll__text {
    margin-bottom: 40px;
    font-size: 13px;
  }
}
#wrapper .sec__lead__inner .scroll div {
  font-size: 3.2vw;
  margin-bottom: min(10px, 2.6666666667vw);
}
@media screen and (min-width: 1000px) {
  #wrapper .sec__lead__inner .scroll div {
    margin-bottom: 10px;
    font-size: 12px;
  }
}
#wrapper .sec__lead__inner .scroll__icon {
  display: inline-block;
  -webkit-animation: scrollMove 1.5s infinite;
          animation: scrollMove 1.5s infinite;
  width: 2.4vw;
  color: #88A1C0;
}
@media screen and (min-width: 1000px) {
  #wrapper .sec__lead__inner .scroll__icon {
    width: 9px;
  }
}
@-webkit-keyframes scrollMove {
  0% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
}
@keyframes scrollMove {
  0% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
}

.main section:not(:last-child) {
  padding-bottom: 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .main section:not(:last-child) {
    padding-bottom: 3.90625vw;
  }
}

#wrapper .sec__inner {
  position: relative;
  padding-top: 16vw;
}
@media screen and (min-width: 1000px) {
  #wrapper .sec__inner {
    width: 375px;
    margin: 0 auto;
    padding-top: 4.6875vw;
  }
}

h2 {
  margin-bottom: 20px;
}
h2 .number {
  width: 27.4666666667vw;
  padding: 2.1333333333vw 6.6666666667vw;
  margin: 0 36.2666666667vw 0.8vw;
  text-align: center;
  border: solid 1px var(--c-sec_inamiki);
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  h2 .number {
    margin: 0 36.2666666667vw 2.1333333333vw;
  }
}
@media screen and (min-width: 1000px) {
  h2 .number {
    width: 103px;
    font-size: 13px;
    padding: 8px 26px;
    margin: 0 136px 1px;
    letter-spacing: 0.08em;
  }
}
h2 .triangle {
  margin: 0 auto;
  width: 2.4vw;
}
@media screen and (min-width: 1000px) {
  h2 .triangle {
    width: 9px;
  }
}

.sec_02__wrap h2 .number, .sec_04__wrap h2 .number, .sec_05__wrap h2 .number {
  border: solid 1px var(--c-sec_kumapro);
}

.name__warapper {
  font-family: "urw-din-condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4vw;
}
@media screen and (min-width: 1000px) {
  .name__warapper {
    margin-bottom: 14px;
  }
}
.name__warapper__title {
  font-size: 6.6666666667vw;
  display: flex;
  align-items: center;
  margin-right: 1.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .name__warapper__title {
    font-size: 28px;
    margin-right: 5px;
  }
}
.name__warapper__title small {
  display: block;
  color: var(--c-txt);
  font-size: 3.2vw;
  font-weight: 300;
  margin-left: 1.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .name__warapper__title small {
    margin-left: 5px;
    font-size: 12px;
  }
}
.name__warapper__item {
  font-size: 3.2vw;
  font-weight: 300;
}
@media screen and (min-width: 1000px) {
  .name__warapper__item {
    font-size: 12px;
  }
}
.name__warapper__item span {
  font-weight: 500 !important;
}

.inamiki {
  color: var(--c-sec_inamiki);
}

.kumapro {
  color: var(--c-sec_kumapro);
}

.sec_01__wrap, .sec_03__wrap, .sec_06__wrap {
  background: var(--c-bg-inamiki);
}

.sec_02__wrap, .sec_04__wrap, .sec_05__wrap {
  background: var(--c-bg-kumapro);
}

.img__sub {
  width: 100vw;
  margin: 0 auto 16vw;
}
@media screen and (min-width: 1000px) {
  .img__sub {
    width: 375px;
    margin: 0 auto 60px;
  }
}

.img_main {
  margin-bottom: 16vw;
}
@media screen and (min-width: 1000px) {
  .img_main {
    margin-bottom: 10px;
  }
}

#sec_01 .img_main {
  margin-bottom: 10.1333333333vw;
}
@media screen and (min-width: 1000px) {
  #sec_01 .img_main {
    margin-bottom: 38px;
  }
}
#sec_01 .position__box {
  margin: 0 0 16vw 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media screen and (min-width: 1000px) {
  #sec_01 .position__box {
    margin: 0 0 60px 0;
  }
}
#sec_01 .position__box div:nth-child(1) {
  width: 44vw;
  margin-top: 22.9333333333vw;
  z-index: 10;
}
@media screen and (min-width: 1000px) {
  #sec_01 .position__box div:nth-child(1) {
    width: 165px;
    margin-top: 86px;
  }
}
#sec_01 .position__box div:nth-child(2) {
  width: 44vw;
  margin-left: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  #sec_01 .position__box div:nth-child(2) {
    width: 165px;
    margin-left: 10px;
  }
}
#sec_01 .img__box {
  width: 76vw;
  margin: 0 auto;
  margin-bottom: 16vw;
}
@media screen and (min-width: 1000px) {
  #sec_01 .img__box {
    width: 285px;
    margin-bottom: 60px;
  }
}

#sec_02 .img__box {
  display: flex;
  justify-content: space-between;
  width: 100vw;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  #sec_02 .img__box {
    width: 375px;
  }
}

#sec_02 .img__box div {
  width: 49.3333333333vw;
}
@media screen and (min-width: 1000px) {
  #sec_02 .img__box div {
    width: 185px;
  }
}
#sec_02 .img__box div:first-child {
  margin-right: 1.3333333333vw;
}
@media screen and (min-width: 1000px) {
  #sec_02 .img__box div:first-child {
    margin-right: 5px;
  }
}
#sec_02 .img__box div:nth-of-type(2) {
  margin-top: 16vw;
}
@media screen and (min-width: 1000px) {
  #sec_02 .img__box div:nth-of-type(2) {
    margin-top: 60px;
  }
}

#sec_02 .img__sub {
  margin-bottom: 0;
}

#sec_03 .img_main {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  #sec_03 .img_main {
    margin-bottom: 50px;
  }
}

#sec_03 .img__box div:nth-child(1) {
  width: 69.6vw;
  margin-left: 5.3333333333vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 1000px) {
  #sec_03 .img__box div:nth-child(1) {
    width: 261px;
    margin-left: 20px;
    margin-bottom: 15px;
  }
}
#sec_03 .img__box div:nth-child(2) {
  width: 61.6vw;
  margin-left: 33.0666666667vw;
}
@media screen and (min-width: 1000px) {
  #sec_03 .img__box div:nth-child(2) {
    width: 231px;
    margin-left: 124px;
  }
}

#sec_04 .img__box {
  width: 66.6666666667vw;
  margin-left: 26.4vw;
}
@media screen and (min-width: 1000px) {
  #sec_04 .img__box {
    width: 250px;
    margin-left: 99px;
  }
}

#sec_05 .img_main {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  #sec_05 .img_main {
    margin-bottom: 10px;
  }
}

#sec_05 .img__sub {
  margin-bottom: 16vw;
}
@media screen and (min-width: 1000px) {
  #sec_05 .img__sub {
    margin-bottom: 60px;
  }
}

#sec_05 .img__box {
  width: 74.4vw;
  margin: 14.4vw 12.8vw 13.3333333333vw 12.8vw;
}
@media screen and (min-width: 1000px) {
  #sec_05 .img__box {
    width: 279px;
    margin: 0 auto;
  }
}

#sec_05 .position__box div {
  width: 32vw;
}
@media screen and (min-width: 1000px) {
  #sec_05 .position__box div {
    width: 120px;
  }
}
#sec_05 .position__box div:nth-of-type(2) {
  margin-right: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  #sec_05 .position__box div:nth-of-type(2) {
    margin-right: 20px;
  }
}

#sec_06 .img__box {
  width: 90.1333333333vw;
  margin: 0 auto 16vw;
}
@media screen and (min-width: 1000px) {
  #sec_06 .img__box {
    width: 338px;
    margin-bottom: 60px;
  }
}

#sec_06 .img__sub {
  position: relative;
}

#sec_06 .position__box {
  margin: 0 6.9333333333vw 16vw 17.8666666667vw;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media screen and (min-width: 1000px) {
  #sec_06 .position__box {
    margin: 0 0 60px 0;
  }
}

#sec_06 .position__box div:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 57.3333333333vw;
  z-index: 10;
}
@media screen and (min-width: 1000px) {
  #sec_06 .position__box div:nth-child(1) {
    width: 215px;
  }
}
#sec_06 .position__box div:nth-child(2) {
  width: 42.6666666667vw;
  margin-left: 47.4666666667vw;
  position: absolute;
  top: 27.4666666667vw;
  left: 0;
  z-index: 10;
}
@media screen and (min-width: 1000px) {
  #sec_06 .position__box div:nth-child(2) {
    width: 160px;
    margin-left: 178px;
    top: 103px;
  }
}

#sec_06 .product {
  margin-top: 106.6666666667vw;
}
@media screen and (min-width: 1000px) {
  #sec_06 .product {
    margin-top: 400px;
  }
}

.product {
  font-family: "urw-din-condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}
.product a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition-duration: 0.4s;
}
.product a.none {
  pointer-events: none;
}
.product a:hover {
  opacity: 0.6;
  transform: translateY(3px);
}
.product__title {
  margin: 0 auto 4vw;
  width: 68vw;
  font-size: 5.0666666667vw;
  font-weight: 400;
}
@media screen and (min-width: 1000px) {
  .product__title {
    margin: 0 auto 1.171875vw;
    width: min(300px, 19.921875vw);
    font-size: min(22px, 1.40625vw);
  }
}

.product ul {
  width: 68vw;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .product ul {
    width: min(300px, 19.921875vw);
  }
}
@media screen and (min-width: 1000px) {
  .product ul li {
    min-width: inherit;
  }
}
.product ul li:not(:last-of-type) {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .product ul li:not(:last-of-type) {
    margin-bottom: min(24px, 1.71875vw);
  }
}

#sec_02 .product ul {
  margin-bottom: 14.6666666667vw;
}
@media screen and (min-width: 1000px) {
  #sec_02 .product ul {
    margin-bottom: 55px;
  }
}

.product_name {
  display: block;
  margin-bottom: 2.1333333333vw;
  font-size: 4vw;
  font-weight: 400;
}
@media screen and (min-width: 1000px) {
  .product_name {
    margin-bottom: 0.625vw;
    font-size: min(18px, 1.171875vw);
    font-weight: 300;
  }
}

.price {
  font-family: "urw-din-condensed", sans-serif;
  font-size: 3.7333333333vw;
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 1;
  display: block;
}
@media screen and (min-width: 1000px) {
  .price {
    font-size: min(17px, 1.09375vw);
  }
}
.price::before {
  content: "¥";
}

.product .buy_btn {
  position: relative;
  width: 20vw;
  height: 8vw;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 3.4666666667vw;
  line-height: 1.9;
  font-weight: 400;
  background-color: var(--c-btn_inamiki);
  color: var(--c-txt);
  text-decoration: underline;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .product .buy_btn {
    position: relative;
    width: min(85px, 5.859375vw);
    height: min(34px, 2.34375vw);
    text-align: center;
    font-size: min(16px, 1.015625vw);
  }
}

#sec_02 .product .buy_btn, #sec_04 .product .buy_btn, #sec_05 .product .buy_btn {
  background-color: var(--c-btn_kumapro);
}

.sec-position {
  font-family: "urw-din-condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: min(20px, 3.7333333333vw);
  color: var(--c-txt);
  font-weight: 400;
  text-align: center;
  padding-bottom: 13.3333333333vw;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .sec-position {
    font-size: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .sec-position {
    font-size: min(13px, 1.015625vw);
    padding-bottom: 50px;
  }
}

#othercut {
  background-color: var(--c-white);
  padding-top: 21.3333333333vw 0;
}
@media screen and (min-width: 1000px) {
  #othercut {
    padding: 100px 0;
  }
}
#othercut .img_main {
  margin-bottom: 16vw;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  #othercut .img_main {
    margin: 0 auto;
    width: 375px;
  }
}
#othercut .img_sub {
  width: 81.3333333333vw;
  margin: 16vw auto 0vw;
  padding-bottom: 21.3333333333vw;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1000px) {
  #othercut .img_sub {
    width: 305px;
    margin: 70px auto 0;
    padding-bottom: 0;
  }
}
#othercut .img_sub img {
  width: 40vw;
}
@media screen and (min-width: 1000px) {
  #othercut .img_sub img {
    width: 150px;
  }
}
#othercut .img_sub img:nth-child(-n+2) {
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 1000px) {
  #othercut .img_sub img:nth-child(-n+2) {
    margin-bottom: 5px;
  }
}
#othercut .img_sub img:nth-child(odd) {
  margin-right: 1.3333333333vw;
}
@media screen and (min-width: 1000px) {
  #othercut .img_sub img:nth-child(odd) {
    margin-right: 5px;
  }
}

.profile {
  background-color: var(--c-bg-profile);
  padding: 21.3333333333vw 0 26.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .profile {
    padding: min(80px, 6.25vw) 0;
  }
}
.profile__inner {
  width: 74.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .profile__inner {
    width: 410px;
    margin: 0 auto;
  }
}
.profile__inner p {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .profile__inner p {
    font-size: 13px;
  }
}
.profile h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-size: 3.7333333333vw !important;
  line-height: 1;
  margin-bottom: 5.3333333333vw;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (min-width: 1000px) {
  .profile h3 {
    margin-bottom: 20px;
    font-size: 14px !important;
  }
}

aside {
  border-bottom: var(--c-txt);
}

.footer__wrapper {
  position: relative;
}
@media screen and (min-width: 1000px) {
  .footer__wrapper .footer__img {
    height: min(1950px, 120.546875vw);
  }
}
.footer__wrapper .footer__inner {
  position: absolute;
  top: 21.3333333333vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .footer__wrapper .footer__inner {
    margin-top: 2.34375vw;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
}
.footer__wrapper .credit p {
  margin-bottom: 14.6666666667vw;
  text-align: center;
  font-family: "urw-din-condensed", sans-serif;
  font-size: 3.4666666667vw;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (min-width: 1000px) {
  .footer__wrapper .credit p {
    font-size: min(15px, 1.171875vw);
    margin-bottom: 3.90625vw;
    text-align: center;
  }
}
.footer__wrapper .credit div {
  font-family: "urw-din-condensed", sans-serif;
  font-size: 3.4666666667vw;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
  text-align: center;
  margin-bottom: 160vw;
}
@media screen and (min-width: 1000px) {
  .footer__wrapper .credit div {
    font-size: min(15px, 1.171875vw);
    margin-bottom: max(600px, 60.15625vw);
  }
}
.footer__wrapper .btn {
  font-family: "urw-din-condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0;
}
@media screen and (min-width: 1000px) {
  .footer__wrapper .btn {
    margin: 0 auto;
    padding: 0;
    font-size: 16px;
    text-align: center;
  }
}
.footer__wrapper .btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5.3333333333vw 4.5333333333vw;
  background-color: var(--c-white);
  font-size: 4.2666666667vw;
  font-weight: 500 !important;
  width: 84vw;
  margin: 0 auto 10.6666666667vw;
  color: var(--c-txt);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1000px) {
  .footer__wrapper .btn a {
    margin: 0 auto min(60px, 4.6875vw);
    padding: 17px 0;
    width: min(375px, 29.296875vw);
    font-size: 16px;
    text-align: center;
  }
}
.footer__wrapper .btn a div {
  width: 89.3333333333vw;
  margin: 0;
  text-align: center !important;
}
@media screen and (min-width: 1000px) {
  .footer__wrapper .btn a div {
    width: 786px;
    font-size: min(16px, 1.25vw);
  }
}
.footer__wrapper .btn a div span {
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 1000px) {
  .footer__wrapper .btn a div span {
    font-size: min(11px, 0.859375vw);
    text-align: center;
  }
}
.footer__wrapper .btn .arrow {
  position: absolute;
  top: 1.8666666667vw;
  right: -4vw;
  transform: rotate(-45deg);
  width: 4.2666666667vw;
  margin-right: 6.9333333333vw;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1000px) {
  .footer__wrapper .btn .arrow {
    top: 8px;
    right: -15px;
    width: 17px;
    margin-right: 27px;
  }
}
@media screen and (min-width: 1000px) {
  .footer__wrapper .btn:hover a {
    transform: translateY(3px);
  }
  .footer__wrapper .btn:hover .arrow {
    top: 5px;
    right: -18px;
  }
}

#footer {
  font-family: "urw-din-condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 10.6666666667vw 0;
  border-top: solid 1px var(--c-txt);
  letter-spacing: 0.08em;
  font-weight: 400;
}
@media screen and (min-width: 1000px) {
  #footer {
    padding: min(60px, 4.6875vw) 0 0;
  }
}
#footer img {
  width: 100%;
  height: auto;
}
#footer .btn a {
  width: 84vw;
  height: 18.1333333333vw;
  border: solid 1px var(--c-txt);
  background-color: transparent;
  margin: 0 auto 9.3333333333vw;
}
@media screen and (min-width: 1000px) {
  #footer .btn a {
    width: min(375px, 29.296875vw);
    height: min(68px, 5.3125vw);
    margin-bottom: 30px;
  }
}
#footer p {
  padding-right: 0vw;
}
@media screen and (min-width: 1000px) {
  #footer p {
    padding-right: 0px;
    font-size: min(16px, 1.25vw);
  }
}
#footer__inner {
  display: flex;
  margin: 0 auto;
  border-left: solid 1px var(--c-txt);
}
#footer__inner a:first-child {
  width: 7.7333333333vw;
  margin-left: 7.4666666667vw;
  margin-right: 4.8vw;
}
@media screen and (min-width: 1000px) {
  #footer__inner a:first-child {
    width: 29px;
    margin-left: 28px;
    margin-right: 18px;
  }
}
@media screen and (min-width: 1000px) {
  #footer__inner a:first-child:hover {
    transform: translateY(3px);
  }
}
#footer__inner a:last-child {
  width: 11.2vw;
}
@media screen and (min-width: 1000px) {
  #footer__inner a:last-child {
    width: 42px;
  }
}
@media screen and (min-width: 1000px) {
  #footer__inner a:last-child:hover {
    transform: translateY(3px);
  }
}

.sns__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66.6666666667vw;
  margin: 0 auto 16vw;
}
@media screen and (min-width: 1000px) {
  .sns__flex {
    width: min(265px, 20.703125vw);
    margin: 0 auto min(60px, 2.34375vw);
  }
}
.sns__flex__follow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.7333333333vw;
  color: var(--c-txt);
}
.sns__flex__follow div {
  display: block;
  margin-left: 2.6666666667vw;
  color: var(--c-txt);
  opacity: 0.6;
  width: 2.4vw;
  transform: rotate(-90deg);
}
@media screen and (min-width: 1000px) {
  .sns__flex__follow div {
    margin-left: 0;
    width: 9px;
  }
}
.sns__flex__inner {
  display: flex;
  align-items: center;
  margin: 0;
}
@media screen and (min-width: 1000px) {
  .sns__flex__inner {
    margin: 0 auto 0 2.734375vw;
  }
}
.sns__flex__inner a:first-child {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 7.7333333333vw;
  margin-left: 4.8vw;
  margin-right: 4.8vw;
}
@media screen and (min-width: 1000px) {
  .sns__flex__inner a:first-child {
    width: 29px;
    margin-left: 0px;
    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: 32vw;
  margin: 0 auto 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: "urw-din-condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: var(--c-txt);
  letter-spacing: 0.08em;
  font-size: 3.2vw;
}
@media screen and (min-width: 1000px) {
  .footer__copyright {
    font-size: min(13px, 1.015625vw);
  }
}

.slider {
  width: 100vw;
  height: 51.7333333333vw;
  overflow: hidden;
  margin: 0 auto;
  background-color: var(--c-white);
}
@media screen and (min-width: 1000px) {
  .slider {
    width: 50vw;
    height: 26.171875vw;
  }
}

.slider-track {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
  will-change: transform;
}

.slide {
  width: 49.6vw;
  flex-shrink: 0;
}
@media screen and (min-width: 1000px) {
  .slide {
    width: 25vw;
  }
}
.slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#collab-cut_02 .othercut_03 {
  width: 32.2666666667vw;
  margin-left: 1.3333333333vw;
}
@media screen and (min-width: 1000px) {
  #collab-cut_02 .othercut_03 {
    width: 16.015625vw;
    margin-left: 9px;
  }
}

@-webkit-keyframes scroll {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

@keyframes scroll {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}
.swiper {
  margin-bottom: 14.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .swiper {
    margin-bottom: 38px;
  }
}
.swiper .swiper-wrapper {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .swiper .swiper-wrapper {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 1000px) {
  #sec_02 .swiper {
    margin-bottom: 3.125vw;
  }
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-pagination__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.swiper-pagination__wrapper .attention {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-size: 2.6666666667vw;
  margin-left: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .swiper-pagination__wrapper .attention {
    margin-left: 0;
    font-size: 10px;
  }
}
.swiper-pagination__wrapper .swiper-pagination {
  display: flex;
  position: static !important;
  margin-left: auto !important;
  margin-right: 2.6666666667vw;
  gap: 2.1333333333vw;
  width: 5.8666666667vw !important;
}
@media screen and (min-width: 1000px) {
  .swiper-pagination__wrapper .swiper-pagination {
    margin-left: auto !important;
    margin-right: 0;
    gap: 8px;
    width: 22px !important;
  }
}
.swiper-pagination__wrapper .swiper-pagination-bullet {
  width: 1.8666666667vw;
  height: 1.8666666667vw;
  margin: 0 !important;
  border: 0;
  background-color: #fff !important;
  border: 1px solid #C6CFD4;
  border-radius: 0 !important;
  opacity: 1;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1000px) {
  .swiper-pagination__wrapper .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}
.swiper-pagination__wrapper .swiper-pagination-bullet-active {
  background-color: #C6CFD4 !important;
  border: 1px solid #C6CFD4;
}

#sec_04 .swiper-pagination__wrapper {
  margin-bottom: 4vw;
}
@media screen and (min-width: 1000px) {
  #sec_04 .swiper-pagination__wrapper {
    margin-bottom: 15px;
  }
}

#sec_05 .swiper-pagination__wrapper {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  #sec_05 .swiper-pagination__wrapper {
    margin-bottom: 50px;
  }
}

.mask-bg {
  font-family: "urw-din-condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: transparent;
  display: inline-block;
  overflow: hidden;
  position: relative;
  transition: color 0ms 700ms;
}

.mask-bg::after {
  background: var(--c-sec_inamiki);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, 100%);
}

.mask-bg.is-animated {
  color: var(--c-txt);
}

.mask-bg.is-animated::after {
  -webkit-animation: mask-bg 1.6s cubic-bezier(0.8, 0, 0.17, 1);
          animation: mask-bg 1.6s cubic-bezier(0.8, 0, 0.17, 1);
}

@-webkit-keyframes mask-bg {
  0% {
    transform: translate(0, -101%);
  }
  40%, 60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, 100%);
  }
}

@keyframes mask-bg {
  0% {
    transform: translate(0, -101%);
  }
  40%, 60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, 100%);
  }
}
#sec_02 .mask-bg::after, #sec_04 .mask-bg::after, #sec_05 .mask-bg::after {
  background: var(--c-sec_kumapro);
}

/* スケール */
.img__scale {
  overflow: hidden;
}

.img__scale img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.03);
  transition: transform 3s ease-in-out;
}

.img__scale-active img {
  transform: scale(1);
}
/*# sourceMappingURL=260424_kbf_benishoga_style.css.map */