@charset "UTF-8";
/* ------------------------------
	設定
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Poppins:wght@400;500;700&family=Shippori+Mincho:wght@400;500;700;800&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: #333;
  --c-marker: #BB9E79;
  --c-bk: #E84133;
  --c-coul-bk: #f2f2f2;
  --c-white: #fff;
}

.fadein {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

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

.fadeinup {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(50px);
}

.fadeinup-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* スケール */
.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);
}

.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);
}

/* ------------------------------
	style
------------------------------ */
#contents {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.1;
  color: var(--c-txt);
  background-color: var(--c-white);
  overflow: hidden;
  z-index: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#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: "Poppins", 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;
    background-color: var(--c-bk);
  }
}
#wrapper .container {
  background-color: var(--c-bk);
  padding-top: 0;
}
@media screen and (min-width: 1000px) {
  #wrapper .container {
    padding-top: 40px;
  }
}

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: 100dvh;
}
@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/260704_cour_kamukura/common/img/top_image_sp.webp") right 20% bottom/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-bk);
}
@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%;
  top: 10% !important;
  transform: translateX(-50%);
  width: 72.5333333333vw;
  text-shadow: 2px 3px 64px rgba(67, 67, 67, 0.8);
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header-wrap h1 {
    width: 400px;
  }
}
.header-wrap h1 img {
  width: 100%;
  height: auto;
}

.logo_cour {
  width: 12.8vw;
  position: absolute;
  right: 4.2666666667vw;
  bottom: 4.2666666667vw;
  z-index: 10;
  color: var(--c-white);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .logo_cour {
    width: 80px;
    right: 80px;
    bottom: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .logo_cour {
    width: min(70px, 5.46875vw);
    right: 25px;
    bottom: 25px;
  }
}

.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/260704_cour_kamukura/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%;
    top: 10%;
    transform: translate(-50%, -50%);
    bottom: 7.03125vw;
    width: min(400px, 29.6875vw);
    transform: translateX(-50%);
    z-index: 2;
  }
}

#wrapper {
  width: 100%;
  position: relative;
  z-index: 100;
}
#wrapper .sec__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.1;
  position: relative;
  background-color: var(--c-white);
}
@media screen and (min-width: 1000px) {
  #wrapper .sec__lead {
    padding-top: 0;
    width: 43.75vw;
    max-width: 560px;
    margin: 0 auto;
  }
}
#wrapper .sec__lead__inner {
  width: 80vw;
  margin: 0 auto;
  padding: 16vw 0;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  #wrapper .sec__lead__inner {
    max-width: 550px;
  }
}
@media screen and (min-width: 1000px) {
  #wrapper .sec__lead__inner {
    width: 27.03125vw;
    max-width: 346px;
    padding: 5vw 0 5.625vw;
  }
}
#wrapper .sec__lead__inner .sec__lead__ttl {
  margin-bottom: 8.5333333333vw;
}
@media screen and (min-width: 1000px) {
  #wrapper .sec__lead__inner .sec__lead__ttl {
    width: 19.140625vw;
    max-width: 245px;
    margin: 0 auto 2.8125vw;
  }
}
#wrapper .sec__lead__inner .kamukira_img {
  margin: 0 auto 9.6vw;
  width: 27.7333333333vw;
}
@media screen and (min-width: 1000px) {
  #wrapper .sec__lead__inner .kamukira_img {
    width: min(104px, 8.125vw);
    margin: 0 auto 36px;
  }
}
#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: 2.1;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  #wrapper .sec__lead__inner .sec__lead__text {
    font-size: 13px;
  }
}
#wrapper .sec__lead__inner .scroll {
  text-align: center;
  font-family: "Poppins", 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;
  }
}
@media screen and (min-width: 1000px) {
  .main {
    background: var(--c-bk);
  }
}

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

h2 {
  width: 100vw;
  margin: 0 auto 10.6666666667vw;
}
@media screen and (min-width: 1000px) {
  h2 {
    width: 36.71875vw;
    max-width: 470px;
    margin-bottom: 48px;
  }
}

.sec-catchcopy {
  text-align: center;
  margin-bottom: 8.5333333333vw;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .sec-catchcopy {
    margin-bottom: 48px;
    font-size: min(1.3rem, 1.015625vw);
  }
}
.sec-catchcopy .marker {
  background-size: 0 100%;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgba(170, 134, 87, 0.6), rgba(170, 134, 87, 0.6) 100%);
}
.sec-catchcopy .marker.active {
  background-size: 100% 90%;
}
.sec-catchcopy .marker.--short {
  transition: 3s;
}

.sec-text {
  padding: 2.1333333333vw 10vw 0;
  margin-bottom: 10.6666666667vw;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .sec-text {
    padding: 0;
    margin: 0 auto 3.125vw;
    width: 33.75vw;
    max-width: 432px;
    font-size: min(1.3rem, 1.015625vw);
  }
}

.name__warapper {
  font-family: "Poppins", 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;
}

.background {
  width: 100%;
  margin: 0 auto;
  background: var(--c-white);
}
@media screen and (min-width: 1000px) {
  .background {
    width: 43.75vw;
    max-width: 560px;
  }
}

.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;
  }
}

.product {
  width: 88vw;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .product {
    width: 36.71875vw;
    max-width: 470px;
  }
}
.product a {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  border: 1px solid var(--c-marker);
  border-radius: 2.24vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition-duration: 0.4s;
}
@media screen and (min-width: 1000px) {
  .product a {
    border-radius: min(11px, 0.859375vw);
  }
}
.product a.none {
  pointer-events: none;
}
.product a:hover {
  opacity: 0.6;
  transform: translateY(3px);
}
.product a figure {
  width: 45.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .product a figure {
    width: 17.8125vw;
    max-width: 228px;
  }
}
.product__inner {
  width: 34.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .product__inner {
    width: 138px;
    max-width: 138px;
    margin: 0 auto;
  }
}
.product__top {
  border-bottom: solid 1px var(--c-marker);
  padding-bottom: 4.2666666667vw;
}
@media screen and (min-width: 1000px) {
  .product__top {
    padding-bottom: min(24px, 1.875vw);
  }
}
.product .product-name__tag {
  font-family: "Poppins", sans-serif;
  font-size: 2vw;
  font-weight: 500;
  letter-spacing: 0.06rem;
  line-height: -height;
  margin-bottom: 2.1333333333vw;
  color: var(--c-bk);
  font-weight: 600;
}
@media screen and (min-width: 1000px) {
  .product .product-name__tag {
    font-size: min(8px, 0.625vw);
    margin-bottom: 8px;
  }
}
.product .product-name__credit {
  font-size: 1.4rem;
}
.product .product-name__credit div {
  display: flex;
  align-items: center;
}
.product .product-name__credit span {
  font-weight: 500;
  display: block;
}
.product .product-name__credit .bold {
  margin-bottom: 2.1333333333vw;
  font-size: 3.2vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1000px) {
  .product .product-name__credit .bold {
    margin-bottom: 16px;
    font-size: min(1.4rem, 1.09375vw);
  }
}
.product .product-name__credit .price {
  font-size: 3.2vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1000px) {
  .product .product-name__credit .price {
    font-size: min(1.4rem, 1.09375vw);
  }
}
.product .product-name__credit .price::before {
  content: "¥";
}
.product .product-name__credit .small {
  font-size: 2vw;
}
@media screen and (min-width: 1000px) {
  .product .product-name__credit .small {
    font-size: min(0.9rem, 0.703125vw);
  }
}
.product__bottom {
  padding-top: 4.2666666667vw;
  font-size: 3.2vw;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1000px) {
  .product__bottom {
    padding-top: min(24px, 1.875vw);
    font-size: min(1.4rem, 1.09375vw);
  }
}
.product__bottom .size {
  margin-bottom: 2.1333333333vw;
}
@media screen and (min-width: 1000px) {
  .product__bottom .size {
    margin-bottom: min(16px, 1.25vw);
  }
}
.product__bottom .color {
  display: flex;
}
.product__bottom .color span {
  display: block;
}
.product__bottom .color .color-list {
  display: flex;
  gap: 1.6vw;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 1000px) {
  .product__bottom .color .color-list {
    gap: min(9px, 0.703125vw);
  }
}
.product__bottom .color .color-list__item {
  width: 3.2vw;
  height: 3.2vw;
  border-radius: 50%;
  background-color: var(--color);
  box-sizing: border-box;
}
@media screen and (min-width: 1000px) {
  .product__bottom .color .color-list__item {
    width: 12px;
    height: 12px;
  }
}
.product__bottom .color .color-list__item.is-white {
  border: 1px solid #8c8c8c;
}

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

.sec-position {
  font-family: "Poppins", 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;
  }
}

.rahmen {
  width: 100%;
  margin: 0;
  background: var(--c-white);
}
@media screen and (min-width: 1000px) {
  .rahmen {
    width: 43.75vw;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 3.515625vw;
  }
}

.other-cut_01 {
  background: var(--c-white);
}
@media screen and (min-width: 1000px) {
  .other-cut_01 {
    width: 43.75vw;
    max-width: 560px;
    margin: 0 auto;
  }
}

.other-cut_02 {
  display: flex;
  width: 100%;
  background: var(--c-white);
}
@media screen and (min-width: 1000px) {
  .other-cut_02 {
    width: 43.75vw;
    max-width: 560px;
    margin: 0 auto;
  }
}
.other-cut_02 li {
  background-color: var(--c-white);
}
.other-cut_02 li:first-child {
  margin-right: 2.1333333333vw;
}
@media screen and (min-width: 1000px) {
  .other-cut_02 li:first-child {
    margin-right: 8px;
  }
}

.other-cut_03 {
  width: 100%;
  display: flex;
  background: var(--c-white);
  margin: 0 auto;
  padding-bottom: 21.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .other-cut_03 {
    width: 43.75vw;
    max-width: 560px;
    padding-bottom: 0;
  }
}
.other-cut_03 li {
  background-color: var(--c-white);
}
.other-cut_03 li:nth-child(-n+2) {
  margin-right: 2.1333333333vw;
}
@media screen and (min-width: 1000px) {
  .other-cut_03 li:nth-child(-n+2) {
    margin-right: 8px;
  }
}

.label {
  background: var(--c-white);
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .label {
    width: 43.75vw;
    max-width: 560px;
    padding: 0;
  }
}
.label__inner {
  padding: 19.2vw 0;
  background: var(--c-coul-bk);
}
@media screen and (min-width: 1000px) {
  .label__inner {
    padding: 56px 0 72px;
  }
}
.label__logo {
  margin: 0 auto 12.8vw;
  width: 23.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .label__logo {
    margin: 0 auto 56px;
    width: min(110px, 8.59375vw);
  }
}
.label__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4vw;
  font-weight: 600;
  letter-spacing: -spacing;
  line-height: 1.5;
  margin-bottom: 10.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .label__ttl {
    margin-bottom: 40px;
    font-size: 1.6rem;
  }
}
.label__ttl span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.6666666667vw;
  font-weight: 500;
  letter-spacing: -spacing;
  line-height: -height;
}
@media screen and (min-width: 1000px) {
  .label__ttl span {
    font-size: 1rem;
  }
}
.label p {
  margin: 0 auto;
  width: 74.6666666667vw;
  font-size: 3.2vw;
}
@media screen and (min-width: 1000px) {
  .label p {
    width: 300px;
    font-size: min(1.2rem, 0.9375vw);
  }
}

.kamukura {
  background: var(--c-white);
  margin: 0 auto;
  padding: 4.6666666667vw 0;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .kamukura {
    padding: 30px 0;
    width: 43.75vw;
    max-width: 560px;
  }
}
.kamukura__inner {
  width: 90.6666666667vw;
  margin: 0 auto;
  padding: 17.0666666667vw 0 6.4vw;
  border: solid 2px var(--c-bk);
}
@media screen and (min-width: 1000px) {
  .kamukura__inner {
    width: 39.0625vw;
    max-width: 500px;
    padding: 64px 0 48px;
  }
}
.kamukura__logo {
  width: 61.3333333333vw;
  margin: 0 auto 8.5333333333vw;
}
@media screen and (min-width: 1000px) {
  .kamukura__logo {
    width: 254px;
    margin: 0 auto 48px;
  }
}
.kamukura__top {
  width: 74.6666666667vw;
  margin: 0 auto;
  padding-bottom: 12.8vw;
  border-bottom: solid 2px var(--c-bk);
}
@media screen and (min-width: 1000px) {
  .kamukura__top {
    width: 34.375vw;
    max-width: 440px;
    margin: 0 auto;
    padding-bottom: 48px;
  }
}
.kamukura p {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  width: 74.6666666667vw;
  margin: 0 auto 8.5333333333vw;
  font-size: 3.2vw;
  line-height: 2.2 !important;
}
@media screen and (min-width: 1000px) {
  .kamukura p {
    width: 23.4375vw;
    max-width: 300px;
    margin: 0 auto 56px;
    font-size: min(1.2rem, 0.9375vw);
  }
}
.kamukura__img {
  width: 74.6666666667vw;
  margin: 0 auto 8.5333333333vw;
}
@media screen and (min-width: 1000px) {
  .kamukura__img {
    width: 34.375vw;
    max-width: 440px;
    margin: 0 auto 40px;
  }
}
.kamukura__sns {
  color: var(--c-bk);
  width: 48vw;
  margin: 0 auto;
  font-size: 3.2vw;
}
@media screen and (min-width: 1000px) {
  .kamukura__sns {
    font-size: min(1.2rem, 0.9375vw);
    width: 180px;
  }
}
.kamukura__sns li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: solid 1px var(--c-bk);
  line-height: 11.2vw;
  transition-duration: 0.4s;
}
@media screen and (min-width: 1000px) {
  .kamukura__sns li a {
    line-height: 42px;
  }
}
@media screen and (min-width: 1000px) {
  .kamukura__sns li a:hover {
    opacity: 0.5;
  }
}
.kamukura__sns li a span {
  display: block;
  text-align: center;
}
.kamukura__sns li:last-child {
  display: block;
  border-bottom: none;
  text-align: center;
  line-height: 11.2vw;
}
@media screen and (min-width: 1000px) {
  .kamukura__sns li:last-child {
    line-height: 42px;
  }
}
.kamukura__sns .link {
  width: 2.6666666667vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .kamukura__sns .link {
    width: 10px;
  }
}
.kamukura__sns .icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.kamukura__sns .icon-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4.2666666667vw;
  border-bottom: none;
  transition-duration: 0.4s;
}
@media screen and (min-width: 1000px) {
  .kamukura__sns .icon-box a {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .kamukura__sns .icon-box a:hover {
    opacity: 0.5;
  }
}
.kamukura__sns .icon-box .instagram {
  width: 7.2vw;
  margin-right: 6.4vw;
}
@media screen and (min-width: 1000px) {
  .kamukura__sns .icon-box .instagram {
    width: 27px;
    margin-right: 24px;
  }
}
.kamukura__sns .icon-box .x {
  width: 5.8666666667vw;
  margin-right: 6.4vw;
}
@media screen and (min-width: 1000px) {
  .kamukura__sns .icon-box .x {
    width: 22px;
    margin-right: 24px;
  }
}
.kamukura__sns .icon-box .youtube {
  width: 8.5333333333vw;
  margin-right: 6.4vw;
}
@media screen and (min-width: 1000px) {
  .kamukura__sns .icon-box .youtube {
    width: 32px;
    margin-right: 24px;
  }
}
.kamukura__sns .icon-box .tiktok {
  width: 6.1333333333vw;
}
@media screen and (min-width: 1000px) {
  .kamukura__sns .icon-box .tiktok {
    width: 23px;
  }
}
.kamukura .campaign {
  padding-top: 12.8vw;
  margin: 0 auto 6.4vw;
  width: 74.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .kamukura .campaign {
    padding-top: 48px;
    margin: 0 auto 24px;
    width: 300px;
  }
}
.kamukura .campaign__top {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: 6.4vw;
  text-align: center;
  font-weight: 800;
  font-size: 3.4666666667vw;
  line-height: 7.7333333333vw;
  border-top: solid 1px var(--c-txt);
  border-bottom: solid 1px var(--c-txt);
}
@media screen and (min-width: 1000px) {
  .kamukura .campaign__top {
    margin-bottom: 24px;
    line-height: 29px;
    font-size: 1.3rem;
  }
}
.kamukura .campaign__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.kamukura .campaign__bottom .draw {
  margin-right: 2.6666666667vw;
  width: 6.1333333333vw;
  font-size: 2.9333333333vw;
  height: 16vw;
  text-align: center;
  writing-mode: vertical-rl;
  color: var(--c-white);
  background-color: var(--c-txt);
}
@media screen and (min-width: 1000px) {
  .kamukura .campaign__bottom .draw {
    margin-right: 10px;
    width: 23px;
    font-size: 1.1rem;
    height: 60px;
  }
}
.kamukura .campaign__bottom .coupon {
  font-family: "Shippori Mincho", serif;
  font-size: 5.0666666667vw;
  font-weight: 800;
  letter-spacing: 0em;
  line-height: 1.3;
}
@media screen and (min-width: 1000px) {
  .kamukura .campaign__bottom .coupon {
    font-family: "Shippori Mincho", serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0em;
    line-height: 1.3;
  }
}
.kamukura .day {
  margin: 0 auto;
  width: 74.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .kamukura .day {
    width: 300px;
  }
}
.kamukura .day .day__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2vw;
  font-weight: 600;
  letter-spacing: -spacing;
  line-height: 1;
  margin-bottom: 6.4vw !important;
  line-height: 9.3333333333vw !important;
  text-align: center;
  font-weight: 600 !important;
  background-color: var(--c-marker);
  color: var(--c-white);
}
@media screen and (min-width: 1000px) {
  .kamukura .day .day__ttl {
    font-size: 1.2rem;
    margin-bottom: 24px !important;
    line-height: 35px !important;
  }
}
.kamukura .day__top {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.2666666667vw;
  font-weight: 500;
  letter-spacing: -spacing;
  line-height: 1;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .kamukura .day__top {
    margin-bottom: 24px;
    font-size: 1.6rem;
  }
}
.kamukura .day__top span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.9333333333vw;
  font-weight: 600;
  letter-spacing: -spacing;
  line-height: 1;
}
@media screen and (min-width: 1000px) {
  .kamukura .day__top span {
    font-size: 1.1rem;
  }
}
.kamukura .day .attention {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.6666666667vw;
  font-weight: 500;
  letter-spacing: -spacing;
  line-height: 1.8;
  color: var(--c-marker);
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 1000px) {
  .kamukura .day .attention {
    width: 240px;
    margin: 0 auto 16px;
    font-size: 1rem;
  }
}
.kamukura .day__bottom {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.9333333333vw;
  font-weight: 500;
  letter-spacing: -spacing;
  line-height: -height;
  padding: 6.4vw 0 8.5333333333vw;
  background-color: var(--c-coul-bk);
}
@media screen and (min-width: 1000px) {
  .kamukura .day__bottom {
    padding: 0 32px;
  }
}
.kamukura .day__bottom section {
  border-bottom: solid 1px var(--c-white);
  margin: 0 auto 6.4vw;
  width: 64vw;
}
@media screen and (min-width: 1000px) {
  .kamukura .day__bottom section {
    margin-bottom: 0;
    width: 240px;
  }
}
.kamukura .day__bottom p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2vw;
  font-weight: 500;
  letter-spacing: -spacing;
  line-height: 1.8;
  width: 64vw;
  margin-bottom: 8.5333333333vw;
}
@media screen and (min-width: 1000px) {
  .kamukura .day__bottom p {
    width: 240px;
    margin-bottom: 24px;
    font-size: 1.2rem;
  }
}
.kamukura .day__bottom h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2vw;
  font-weight: 600;
  letter-spacing: -spacing;
  line-height: 2;
  text-align: center;
  padding-top: 4.2666666667vw;
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 1000px) {
  .kamukura .day__bottom h4 {
    padding-top: 32px;
    margin-bottom: 16px;
    font-size: 1.2rem;
  }
}
.kamukura .day__bottom h4 small {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .kamukura .day__bottom h4 small {
    font-size: 1rem;
  }
}
.kamukura .day__bottom__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2vw;
  font-weight: 500;
  letter-spacing: -spacing;
  line-height: 2;
  padding-bottom: 6.4vw;
}
@media screen and (min-width: 1000px) {
  .kamukura .day__bottom__text {
    padding-bottom: 24px;
    margin-bottom: 0;
    font-size: 1.2rem;
  }
}
.kamukura .day__bottom__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2vw;
  font-weight: 500;
  letter-spacing: -spacing;
  line-height: 1;
  text-align: center;
  padding-top: 2.1333333333vw;
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 1000px) {
  .kamukura .day__bottom__ttl {
    padding-top: 32px;
    margin-bottom: 16px;
    font-size: 1.2rem;
  }
}
.kamukura .day__bottom .menu p {
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 1000px) {
  .kamukura .day__bottom .menu p {
    margin: 0 auto;
  }
}
.kamukura .day__bottom .menu figure {
  width: 64vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.1333333333vw 0;
}
@media screen and (min-width: 1000px) {
  .kamukura .day__bottom .menu figure {
    width: 240px;
    margin: 8px 0;
  }
}
.kamukura .day__bottom small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2vw;
  font-weight: 500;
  letter-spacing: -spacing;
  line-height: 1.8;
  display: block;
  margin-bottom: 6.4vw;
}
@media screen and (min-width: 1000px) {
  .kamukura .day__bottom small {
    margin-bottom: 32px;
    font-size: 1.2rem;
  }
}
.kamukura .day__bottom .app-attention {
  background-color: var(--c-marker);
  border-radius: 2.6666666667vw;
  color: var(--c-txt);
  font-weight: 600;
  margin: 0 auto 8.5333333333vw;
  padding: 5.0666666667vw 3.7333333333vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .kamukura .day__bottom .app-attention {
    margin: 0 auto 32px;
    padding: 19px 14px;
    border-radius: 10px;
    font-size: 1rem;
  }
}
.kamukura .day__bottom .download__qr {
  width: 26.6666666667vw;
  margin: 0 auto 6.4vw;
}
@media screen and (min-width: 1000px) {
  .kamukura .day__bottom .download__qr {
    width: 100px;
    margin: 0 auto 24px;
  }
}
.kamukura .day__bottom .download .app__btn {
  display: block;
  width: 100%;
  margin: 7vw auto 0;
  padding: 4.8vw 0;
  font-size: 3.7333333333vw;
  color: var(--c-white);
  text-align: center;
  background-color: var(--c-txt);
  border-radius: 0.8vw;
  box-shadow: inset -0.53vw -0.53vw 0.8vw rgba(88, 77, 62, 0.3);
}
.kamukura .day .marker {
  background-size: 0 100%;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgba(170, 134, 87, 0.6), rgba(170, 134, 87, 0.6) 100%);
}
.kamukura .day .marker.active {
  background-size: 100% 90%;
}
.kamukura .day .marker.--short {
  transition: 3s;
}

.footer__wrapper {
  position: relative;
}
@media screen and (min-width: 1000px) {
  .footer__wrapper {
    width: 43.75vw;
    max-width: 560px;
    margin: 0 auto;
  }
}
.footer__wrapper .footer__inner {
  position: absolute;
  bottom: 13.3333333333vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .footer__wrapper .footer__inner {
    margin-top: 2.34375vw;
    bottom: 50px;
    left: 50%;
  }
}
.footer__wrapper .credit p {
  margin-bottom: 14.6666666667vw;
  text-align: center;
  font-family: "Poppins", 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: "Poppins", 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);
  }
}

.btn__wrapper {
  background-color: var(--c-white);
  width: 100%;
  margin: 0 auto;
  padding: 0 0 21.3333333333vw 9.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .btn__wrapper {
    width: 43.75vw;
    max-width: 560px;
    padding: 0 0 104px 0;
  }
}
.btn__wrapper div:first-child {
  margin-bottom: 6.4vw;
}
@media screen and (min-width: 1000px) {
  .btn__wrapper div:first-child {
    margin-bottom: 32px;
  }
}
.btn__wrapper .btn-fixed-line {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 80vw;
  height: 18.6666666667vw;
  margin: 0 auto;
  padding-left: min(56px, 5.8666666667vw);
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: 2.9333333333vw;
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  .btn__wrapper .btn-fixed-line {
    justify-content: center;
    width: 29.296875vw;
    max-width: 375px;
    height: 5.46875vw;
    max-height: 70px;
    margin: 0 min(92.5px, 7.2265625vw);
    padding-left: 0;
    font-size: min(1.2rem, 0.9375vw);
  }
}
.btn__wrapper .btn-fixed-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 19.2vw;
  height: 2px;
  background-color: #fff;
  mix-blend-mode: difference;
  transform: translate(28vw, -50%);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 1000px) {
  .btn__wrapper .btn-fixed-line::after {
    width: 7.8125vw;
    max-width: 100px;
    height: 2px;
    transform: translate(min(135px, 10.546875vw), -50%);
  }
}
.btn__wrapper .btn-fixed-line:hover::after {
  transform: translate(-50%, -50%);
}

.sns__flex {
  width: 38.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .sns__flex {
    width: 185px;
  }
}
.sns__flex__follow {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: -weight;
  letter-spacing: -spacing;
  line-height: -height;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6.4vw;
  color: var(--c-txt);
}
@media screen and (min-width: 1000px) {
  .sns__flex__follow {
    margin-bottom: 32px;
    font-size: 1.4rem;
  }
}
.sns__flex__follow p {
  line-height: 1 !important;
  border-left: solid 1px var(--c-white);
  border-right: solid 1px var(--c-white);
  color: var(--c-white);
  padding: 0 4.2666666667vw;
  font-weight: 500;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .sns__flex__follow p {
    padding: 0 24px;
    font-size: 1.3rem;
  }
}
.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;
  justify-content: space-around;
  margin: 0 auto;
}
.sns__flex__inner a:first-child {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 6.9333333333vw;
}
@media screen and (min-width: 1000px) {
  .sns__flex__inner a:first-child {
    width: 31px;
  }
}
@media screen and (min-width: 1000px) {
  .sns__flex__inner a:first-child:hover {
    opacity: 0.5;
  }
}
.sns__flex__inner a:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.4vw;
}
@media screen and (min-width: 1000px) {
  .sns__flex__inner a:nth-child(2) {
    width: 29px;
  }
}
@media screen and (min-width: 1000px) {
  .sns__flex__inner a:nth-child(2):hover {
    opacity: 0.5;
  }
}
.sns__flex__inner a:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8.5333333333vw;
}
@media screen and (min-width: 1000px) {
  .sns__flex__inner a:last-child {
    width: 35px;
  }
}
@media screen and (min-width: 1000px) {
  .sns__flex__inner a:last-child:hover {
    opacity: 0.5;
  }
}

footer {
  padding-bottom: 0;
}
@media screen and (min-width: 1000px) {
  footer {
    padding-bottom: 40px;
  }
}

.footer_inner {
  padding: 21.3333333333vw 8%;
  margin: 0 auto;
  background-color: #000;
  color: var(--c-white);
}
@media screen and (min-width: 1000px) {
  .footer_inner {
    padding: 64px 8% 56px;
    width: 43.75vw;
    max-width: 560px;
  }
}
.footer_inner li {
  margin-top: 60px;
}
.footer_inner a {
  display: block;
  margin: 0 auto;
}
.footer_inner a.btn {
  border-color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16vw;
}
@media screen and (min-width: 1000px) {
  .footer_inner a.btn {
    margin-bottom: 60px;
  }
}
.footer_inner a.logo_online {
  width: 120px;
}
.footer_inner a.logo_media {
  width: 200px;
}

.footer__logo {
  width: min(120px, 32vw);
  margin: 0 auto min(16px, 4.2666666667vw);
}
@media screen and (min-width: 1000px) {
  .footer__logo {
    width: min(130px, 10.15625vw);
    margin: 0 auto 1.25vw;
  }
}

.footer__copyright {
  text-align: center;
  color: #fff;
  font-size: min(12px, 3.2vw);
}
@media screen and (min-width: 1000px) {
  .footer__copyright {
    font-size: min(13px, 1.015625vw);
  }
}

/* スライダー全体のコンテナ */
.slider {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .slider {
    width: 43.75vw;
    max-width: 560px;
  }
}

/* スライダーのトラック（中の横長の帯） */
.slider-track {
  display: flex;
  width: 200%;
  transform: translateX(-50%);
  -webkit-animation: scroll-reverse 10s linear infinite;
          animation: scroll-reverse 10s linear infinite;
}

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

@keyframes scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
/* 各スライド（画像1枚の枠） */
.slide {
  width: 50%;
  aspect-ratio: 560/321;
}

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

.swiper {
  width: 88vw;
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 1000px) {
  .swiper {
    width: 36.71875vw;
    max-width: 470px;
    margin: 0 auto 1.875vw;
  }
}

.swiper:last-child {
  margin-bottom: 40px;
}

.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 .swiper-pagination {
  display: flex;
  position: static !important;
  margin: -5.3333333333vw 2.6666666667vw 0 auto !important;
  gap: 2.6666666667vw;
  width: 6.4vw !important;
}
@media screen and (min-width: 1000px) {
  .swiper-pagination__wrapper .swiper-pagination {
    margin: -20px 14px 0 auto !important;
    gap: 10px;
    width: 24px !important;
  }
}
.swiper-pagination__wrapper .swiper-pagination-bullet {
  width: 1.8666666667vw;
  height: 1.8666666667vw;
  margin: 0 !important;
  border: 0;
  background: none !important;
  border: 1px solid var(--c-white);
  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: var(--c-white) !important;
  border: 1px solid var(--c-white);
}

.mask-bg {
  font-family: "Poppins", 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);
}

.sec-movie {
  background: var(--c-white);
  width: 100%;
  padding-bottom: 21.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .sec-movie {
    width: 43.75vw;
    max-width: 560px;
    margin: 0 auto;
    padding: 96px 0 104px;
  }
}
.sec-movie .sec__ttl {
  margin: 0 auto 8.5333333333vw;
}
@media screen and (min-width: 1000px) {
  .sec-movie .sec__ttl {
    width: 39.0625vw;
    max-width: 500px;
    margin-bottom: 32px;
  }
}

.c-video {
  position: relative;
  background: var(--c-white);
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .c-video {
    max-width: 500px;
  }
}
.c-video__frame {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
.c-video__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
}
/*# sourceMappingURL=260704_cour_kamukura_style.css.map */