@charset "UTF-8";
@font-face {
  font-family: "zen-kaku-gothic-new";
  src: url("path-to-font.woff2") format("woff2");
  unicode-range: U+0000-FFFF;
}
/* color
===================================================== */
/* 共通
===================================================== */
html,
body {
  font-family: YakuHanJPs, zen-kaku-gothic-new, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.04em;
  margin: 0 auto;
  transition: all 1s ease 1s;
  background-color: transparent;
  color: #664838;
  background-color: #f1e6d4;
  position: relative;
}

body {
  overflow-x: hidden;
  position: relative;
}

img,
video {
  width: 100%;
  display: block;
}

@media screen and (min-width: 800px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 799px) {
  .spNone {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 799px) {
  .pcNone {
    display: block;
  }
}
/* vw計算(pc用)
===================================================== */
/* vw変換(SP用)
===================================================== */
/* a
===================================================== */
a {
  display: block;
  text-decoration: none;
  transition: all 0.6s;
  color: #664838;
}

a:hover {
  opacity: 0.6;
  transition: all 0.6s;
  cursor: pointer;
}

a[href=""] {
  pointer-events: none;
}

/* font
===================================================== */
.en_1 {
  font-family: YakuHanJPs, itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.en_2 {
  font-family: itc-american-typewriter, serif;
  font-weight: 500;
  font-style: normal;
}

.ja_1 {
  font-family: YakuHanJPs, zen-kaku-gothic-new, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* noise
===================================================== */
/* loading（ティザー）
===================================================== */
#loading,
#t_loading {
  display: none;
}

#t_loading {
  background-color: #f1e6d4;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100svh;
  top: 0px;
  left: 0px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#t_loading .loader-container {
  text-align: center;
}
#t_loading .progress-per {
  font-size: 3.7333333333vw;
  color: #664838;
  display: flex;
  margin: 0 auto 13.3333333333vw;
  width: fit-content;
}
@media screen and (min-width: 800px) {
  #t_loading .progress-per {
    font-size: 1.0769230769vw;
    margin: 0 auto 3.8461538462vw;
  }
}
#t_loading .progress_wrap {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  font-size: 4.2666666667vw;
  color: #664838;
}
@media screen and (min-width: 800px) {
  #t_loading .progress_wrap {
    font-size: 1.2307692308vw;
  }
}
#t_loading .progress-line {
  width: 42.6666666667vw;
  margin: 0 5.3333333333vw;
  height: 1px;
  background: #CDBBA5;
  position: relative;
}
@media screen and (min-width: 800px) {
  #t_loading .progress-line {
    width: 23.0769230769vw;
    margin: 0 1.5384615385vw;
  }
}
#t_loading .progress-line span {
  background-color: #664838;
  width: 1.3333333333vw;
  height: 1.3333333333vw;
  border-radius: 100vw;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 800px) {
  #t_loading .progress-line span {
    width: 0.3846153846vw;
    height: 0.3846153846vw;
  }
}
#t_loading .progress-fill {
  height: 100%;
  background: #664838;
  opacity: 1;
  transition: width 0.1s linear;
  transform-origin: right center;
  /* 右を軸に */
  transform: scaleX(1);
}
#t_loading .loading_img > img:nth-child(1) {
  width: 70vw;
  margin: 0 auto 10.6666666667vw;
}
@media screen and (min-width: 800px) {
  #t_loading .loading_img > img:nth-child(1) {
    width: 29.5846153846vw;
    margin: 0 auto 3.8461538462vw;
  }
}
#t_loading .loading_img > img:nth-child(2) {
  width: 37.3333333333vw;
  margin: 0 auto 5.3333333333vw;
}
@media screen and (min-width: 800px) {
  #t_loading .loading_img > img:nth-child(2) {
    width: 15.3846153846vw;
    margin: 0 auto 1.5384615385vw;
  }
}

#t_loading.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* loading （本番）
===================================================== */
#loading {
  position: relative;
  background-color: #f1e6d4;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100svh;
  top: 0px;
  left: 0px;
  z-index: 999;
  display: grid;
  place-items: center;
}
@keyframes top_loading {
  0% {
    rotate: x 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    rotate: x 260deg;
    z-index: 8;
    opacity: 0;
  }
}
@keyframes up_loading {
  0% {
    z-index: 7;
  }
  100% {
    z-index: 11;
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#loading .calendar {
  width: 42.6666666667vw;
  height: 44vw;
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 48.5%;
  transform: translate(-50%, -30%);
  box-shadow: 0 0 10px rgba(169, 138, 89, 0.2);
}
@media screen and (min-width: 800px) {
  #loading .calendar {
    width: 15.3846153846vw;
    height: 15.8846153846vw;
    top: 46.5%;
  }
}
#loading .calendar .box {
  position: absolute;
  inset: 0;
}
#loading .calendar .box div {
  position: absolute;
  inset: 0;
  transform-origin: top;
}
#loading .calendar .box div:nth-child(1) {
  backface-visibility: hidden;
  z-index: 11;
}
#loading .calendar .box div .cal_no {
  backface-visibility: hidden;
  z-index: 11;
}
#loading .calendar .box:nth-child(1) {
  z-index: 10;
}
#loading .calendar .box:nth-child(2) {
  z-index: 9;
}
#loading .calendar .box:nth-child(3) {
  z-index: 8;
}
#loading .calendar .box:last-child {
  z-index: 7;
}
#loading .cal_no {
  width: 75%;
  position: absolute;
  top: 17%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 800px) {
  #loading .cal_no {
    top: 16%;
    border-radius: 0.3846153846vw;
  }
}
#loading .trigger {
  position: relative;
  z-index: 1;
}
#loading .trigger.active .calendar .box:nth-child(1) div {
  animation: top_loading 1.5s 0.5s forwards;
}
#loading .trigger.active .calendar .box:nth-child(2) div {
  animation: top_loading 1.5s 1.5s forwards;
}
#loading .trigger.active .calendar .box:nth-child(3) div {
  animation: top_loading 1.5s 2.5s forwards;
}
#loading .trigger.active .calendar .box:last-child {
  animation: up_loading 0.1s 3.5s forwards;
}
#loading .loading_img {
  position: absolute;
  z-index: 10;
}
@media screen and (min-width: 800px) {
  #loading .loading_img {
    margin-top: 7.6923076923vw;
    gap: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 800px) {
  #loading .loading_img .img_left,
  #loading .loading_img .img_right {
    width: 27.6923076923vw;
  }
}
#loading .loading_img .img_left img {
  position: relative;
  z-index: 50;
  width: 64vw;
  margin: 26.6666666667vw auto 74.6666666667vw;
}
@media screen and (min-width: 800px) {
  #loading .loading_img .img_left img {
    width: 18.4615384615vw;
    margin: 0 auto;
  }
}
#loading .loading_img .img_right img {
  position: relative;
  z-index: 50;
  width: 37.3333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  #loading .loading_img .img_right img {
    width: 10.7692307692vw;
    padding-top: 1.5384615385vw;
    padding-right: 3.0769230769vw;
  }
}

/* 共通
===================================================== */
.line1 {
  width: 100%;
  background-color: #664838;
  height: 1px;
}

.line2 {
  width: 100%;
  background-color: #a55a3b;
  height: 1px;
}

.line3 {
  width: 100%;
  background-color: #664838;
  height: 2px;
  position: relative;
}
.line3::after {
  content: "";
  display: block;
  background-color: #664838;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 150%;
}

.line4 {
  width: 100%;
  background-color: #a55a3b;
  height: 2px;
  position: relative;
}
.line4::after {
  content: "";
  display: block;
  background-color: #a55a3b;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 150%;
}

.line5 {
  height: 1px;
  background-image: repeating-linear-gradient(to right, #664838 0 2px, transparent 2px 4px);
}

/* スクロール
========================================================= */
.scroll {
  font-size: 3.2vw;
  text-align: center;
  z-index: 1;
  color: #a55a3b;
  overflow: hidden;
  padding-bottom: 10.6666666667vw;
}
@media screen and (min-width: 800px) {
  .scroll {
    font-size: 0.7692307692vw;
    padding-bottom: 3.0769230769vw;
    margin-bottom: 7.6923076923vw;
  }
}
.scroll span:nth-child(1) {
  width: 0.2666666667vw;
  height: 8vw;
  background-color: #a55a3b;
  position: absolute;
  left: 50%;
  bottom: 10.6666666667vw;
  transform: translate(-50%, 10.6666666667vw);
  opacity: 0.2;
}
@media screen and (min-width: 800px) {
  .scroll span:nth-child(1) {
    width: 1px;
    height: 2.3076923077vw;
    bottom: 3.0769230769vw;
    transform: translate(0%, 3.0769230769vw);
  }
}
.scroll span:nth-child(2) {
  width: 0.1333333333vw;
  height: 1.3333333333vw;
  background-color: #a55a3b;
  position: absolute;
  left: 50%;
  bottom: 0vw;
  transform: translate(-50%, 10.6666666667vw);
  animation: down 3s ease infinite;
}
@media screen and (min-width: 800px) {
  .scroll span:nth-child(2) {
    width: 1px;
    height: 0.7692307692vw;
    bottom: 0vw;
    transform: translate(100%, 3.0769230769vw);
    animation: down 2s ease infinite;
  }
}

@keyframes down {
  0% {
    transform: translateY(-300%);
    opacity: 0;
  }
  80% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
/* fv
===================================================== */
/* lead
===================================================== */
/* main
===================================================== */
main {
  background-color: #f1e2ca;
  position: relative;
}
main::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/noise_pattern.webp);
  background-repeat: repeat;
  background-size: 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
main > * {
  position: relative;
  z-index: 10;
}
main .nav_wrap {
  text-align: center;
}
main .nav_wrap .ttl > img {
  width: 74.6666666667vw;
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 800px) {
  main .nav_wrap .ttl > img {
    width: 21.5384615385vw;
    margin: 0 auto 1.2307692308vw;
  }
}
main .nav_wrap .ttl > p {
  color: #a55a3b;
  font-size: 6.4vw;
  margin-bottom: 8.5333333333vw;
}
@media screen and (min-width: 800px) {
  main .nav_wrap .ttl > p {
    font-size: 1.8461538462vw;
    margin-bottom: 2.4615384615vw;
  }
}
main .nav_wrap .nav_menu ul {
  display: flex;
  justify-content: center;
  gap: 5.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .nav_wrap .nav_menu ul {
    gap: 2vw;
  }
}
main .nav_wrap .nav_menu ul li {
  width: 21.3333333333vw;
  font-size: 3.4666666667vw;
  line-height: 1.3076923077;
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .nav_wrap .nav_menu ul li {
    width: 6.9230769231vw;
    font-size: 0.8461538462vw;
    margin-bottom: 3.8461538462vw;
  }
}
main .nav_wrap .nav_menu ul li a p:nth-child(1) {
  color: #a55a3b;
  margin-left: 1.3333333333vw;
  margin-bottom: 2.1333333333vw;
}
@media screen and (min-width: 800px) {
  main .nav_wrap .nav_menu ul li a p:nth-child(1) {
    margin-left: 0.3846153846vw;
    margin-bottom: 0.6153846154vw;
  }
}
main .nav_wrap .nav_menu ul li a img:nth-child(2) {
  border-radius: 100vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .nav_wrap .nav_menu ul li a img:nth-child(2) {
    margin-bottom: 0.7692307692vw;
  }
}
main .nav_wrap .nav_menu ul li a img {
  opacity: 1;
  transition: all 0.6s;
}
main .nav_wrap .nav_menu ul li a:hover {
  opacity: 1;
}
main .nav_wrap .nav_menu ul li a:hover img {
  opacity: 1;
  transition: all 0.6s;
  transform: scale(1.1);
}
main .nav_wrap .arrow {
  width: 3.7333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  main .nav_wrap .arrow {
    width: 1.0769230769vw;
  }
}
@media screen and (min-width: 800px) {
  main .main_wrap {
    display: flex;
    justify-content: space-between;
  }
}
main .main_wrap #left_contents {
  display: none;
}
@media screen and (min-width: 800px) {
  main .main_wrap #left_contents {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 31.5384615385vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
main .main_wrap #left_contents .bottom_txt {
  font-size: 2.1333333333vw;
  text-align: center;
}
@media screen and (min-width: 800px) {
  main .main_wrap #left_contents .bottom_txt {
    font-size: 0.6153846154vw;
    position: absolute;
    bottom: 5vh;
  }
}
main .main_wrap #left_contents .bottom_txt span {
  margin: 0 2.1333333333vw;
  position: relative;
}
@media screen and (min-width: 800px) {
  main .main_wrap #left_contents .bottom_txt span {
    margin: 0 0.6153846154vw;
  }
}
main .main_wrap #left_contents .bottom_txt span::before {
  content: "";
  position: absolute;
  height: 2.1333333333vw;
  width: 1px;
  background-color: #664838;
}
@media screen and (min-width: 800px) {
  main .main_wrap #left_contents .bottom_txt span::before {
    height: 0.6153846154vw;
  }
}
main .main_wrap #right_contents {
  display: none;
}
@media screen and (min-width: 800px) {
  main .main_wrap #right_contents {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 31.5384615385vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
main .main_wrap #right_contents .lead_box {
  margin-top: 7.6923076923vw;
  margin-left: 0.6153846154vw;
}
main .main_wrap #right_contents .lead_box > img:nth-child(1) {
  width: 19.2307692308vw;
}
main .main_wrap #right_contents .lead_box > img:nth-child(2) {
  width: 9.2307692308vw;
  margin: 6.1538461538vw 5.3846153846vw 0 auto;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents {
    width: 36.9230769231vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .shadow {
    box-shadow: 0 0 10px rgba(169, 138, 89, 0.2);
    mix-blend-mode: multiply;
  }
}
main .main_wrap #main_contents .fv_wrap {
  width: 89.3333333333vw;
  margin: 0 auto;
  padding: 5.3333333333vw 0;
  position: relative;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .fv_wrap {
    width: 100%;
    margin: 0 auto;
    padding: 3.8461538462vw 0;
  }
}
main .main_wrap #main_contents .fv_wrap .fv_img img {
  border-radius: 5.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .fv_wrap .fv_img img {
    border-radius: 1.5384615385vw;
  }
}
main .main_wrap #main_contents .fv_wrap .fv_item {
  position: absolute;
}
main .main_wrap #main_contents .fv_wrap .fv_item.item1 {
  width: 19.4666666667vw;
  top: 37.3333333333vw;
  right: 10.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .fv_wrap .fv_item.item1 {
    width: 6.6153846154vw;
    top: 14.4615384615vw;
    right: 6.9230769231vw;
  }
}
main .main_wrap #main_contents .fv_wrap .fv_item.item2 {
  width: 24vw;
  top: 48vw;
  left: 2.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .fv_wrap .fv_item.item2 {
    width: 7.9230769231vw;
    top: 17.6923076923vw;
    left: 2.3076923077vw;
  }
}
main .main_wrap #main_contents .fv_wrap .fv_item.item3 {
  width: 24vw;
  top: 97.3333333333vw;
  right: 2.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .fv_wrap .fv_item.item3 {
    width: 7.9230769231vw;
    top: 36.1538461538vw;
    right: 2vw;
  }
}
main .main_wrap #main_contents .fv_wrap .fv_item.item4 {
  width: 22.4vw;
  top: 129.6vw;
  left: 9.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .fv_wrap .fv_item.item4 {
    width: 7.4615384615vw;
    top: 43.8461538462vw;
    left: 6.1538461538vw;
  }
}
main .main_wrap #main_contents .fv_wrap .ttl_img {
  position: absolute;
  width: 77.3333333333vw;
  left: 6.6666666667vw;
  top: 86.9333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .fv_wrap .ttl_img {
    width: 27.6923076923vw;
    left: 4.6923076923vw;
    top: 31.1538461538vw;
  }
}
main .main_wrap #main_contents .fv_wrap a:hover img {
  opacity: 1;
  transition: all 0.6s;
  cursor: pointer;
  transform: scale(1.1);
}
main .main_wrap #main_contents .fv_wrap a:hover {
  opacity: 1;
}
main .main_wrap #main_contents .fv_wrap a img {
  transition: all 0.6s;
}
main .main_wrap #main_contents .lead {
  text-align: center;
  padding: 18.6666666667vw 0 16vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .lead {
    padding: 5.3846153846vw 0 4.6153846154vw;
  }
}
main .main_wrap #main_contents .lead .lead_ttl {
  color: #a55a3b;
}
main .main_wrap #main_contents .lead .lead_ttl h1 {
  font-size: 6.4vw;
  padding-bottom: 5.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .lead .lead_ttl h1 {
    font-size: 1.8461538462vw;
    padding-bottom: 1.5384615385vw;
  }
}
main .main_wrap #main_contents .lead .lead_ttl p {
  font-size: 3.7333333333vw;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .lead .lead_ttl p {
    font-size: 1.0769230769vw;
    margin-bottom: 3.0769230769vw;
  }
}
main .main_wrap #main_contents .lead .lead_box p {
  font-size: 3.36vw;
  line-height: 2.2222222222;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .lead .lead_box p {
    font-size: 0.9692307692vw;
  }
}
main .main_wrap #main_contents .lead .lead_box p + p {
  margin-top: 6.4vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .lead .lead_box p + p {
    margin-top: 1.8461538462vw;
  }
}
main .main_wrap #main_contents .lead .lead_box p:last-of-type {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .lead .lead_box p:last-of-type {
    margin-bottom: 3.8461538462vw;
  }
}
main .main_wrap #main_contents .lead .lead_box img {
  width: 32.5333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .lead .lead_box img {
    width: 9.3846153846vw;
  }
}
main .main_wrap #main_contents .info {
  position: relative;
  background-image: url(../images/bg1.webp);
  background-size: 5.3333333333vw;
  background-repeat: repeat;
  z-index: 0;
  padding: 21.3333333333vw 0 16vw;
}
main .main_wrap #main_contents .info::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/noise_pattern.webp);
  background-repeat: repeat;
  background-size: 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
main .main_wrap #main_contents .info > * {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info {
    padding: 7.6923076923vw 0 6.1538461538vw;
    background-size: 1.5384615385vw;
    margin-top: 2.3076923077vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .ttl {
  width: 84vw;
  margin: 0 auto 8vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .ttl {
    width: 28.4615384615vw;
    margin: 0 auto 3.0769230769vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .ttl .ttl_box {
  display: flex;
  justify-content: space-between;
  font-size: 2.4vw;
  margin-bottom: 1.6vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .ttl .ttl_box {
    font-size: 0.6923076923vw;
    margin-bottom: 0.4615384615vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .ttl .line3 {
  margin-bottom: 4.8vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .ttl .line3 {
    margin-bottom: 1.3846153846vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .ttl h2 {
  font-size: 6.4vw;
  padding-bottom: 1.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .ttl h2 {
    font-size: 1.8461538462vw;
    padding-bottom: 0.3846153846vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .prof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7.4666666667vw;
  margin-bottom: 8vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .prof {
    gap: 2.1538461538vw;
    margin-bottom: 2.3076923077vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .prof > a img {
  width: 38.1333333333vw;
  border-radius: 100vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .prof > a img {
    width: 12.3076923077vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail {
  width: 26.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail {
    width: 9.2307692308vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail .detail p:nth-child(1) {
  color: #a55a3b;
  font-size: 2.6666666667vw;
  margin-bottom: 2.1333333333vw;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail .detail p:nth-child(1) {
    font-size: 0.7692307692vw;
    margin-bottom: 0.6153846154vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail .detail a:nth-child(2) {
  font-size: 4.8vw;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail .detail a:nth-child(2) {
    font-size: 1.3846153846vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail .detail a:nth-child(2)::after {
  content: "";
  display: block;
  background-color: #a55a3b;
  width: 100%;
  height: 1px;
  margin-top: 1.6vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail .detail a:nth-child(2)::after {
    margin-top: 0.4615384615vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail .detail:nth-child(2) {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail .detail:nth-child(2) {
    margin-top: 1.5384615385vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail .detail:nth-child(2) a:nth-child(2) {
  font-size: 2.9333333333vw;
  line-height: 4.6666666667vw;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail .detail:nth-child(2) a:nth-child(2) {
    font-size: 0.8461538462vw;
    line-height: 1.3461538462vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail .detail:nth-child(2) a:nth-child(2) img {
  width: 4.6666666667vw;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 1.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .prof .prof_detail .detail:nth-child(2) a:nth-child(2) img {
    width: 1.3461538462vw;
    margin-right: 0.3846153846vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .prof_txt {
  width: 81.3333333333vw;
  margin: 0 auto 11.7333333333vw;
  font-size: 3.2vw;
  line-height: 2;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .prof_txt {
    width: 27.6923076923vw;
    font-size: 0.9230769231vw;
    margin: 0 auto 3.3846153846vw;
  }
}
main .main_wrap #main_contents .info .prof_wrap .prof_txt p + p {
  margin-top: 1.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .prof_wrap .prof_txt p + p {
    margin-top: 0.3846153846vw;
  }
}
main .main_wrap #main_contents .info .sche_wrap {
  width: 91.8666666667vw;
  height: 123.4666666667vw;
  margin: 0 auto 24vw;
  background-image: url(../images/sche_bg.svg);
  padding: 12vw 0 8vw;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap {
    width: 30.7692307692vw;
    height: 36.9230769231vw;
    padding: 3.4615384615vw 0 0;
    margin: 0 auto;
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_nakami {
  width: 73.3333333333vw;
  margin: 0 auto;
  transform: translateX(2.1333333333vw);
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .sche_nakami {
    width: 22.3076923077vw;
    transform: translateX(0.6153846154vw);
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_ttl {
  color: #a55a3b;
  font-size: 5.8666666667vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .sche_ttl {
    font-size: 1.6923076923vw;
    margin-bottom: 1.5384615385vw;
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_ttl h2 {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .sche_ttl h2 {
    margin-bottom: 0.7692307692vw;
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_box {
  padding: 0 1.3333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .sche_box {
    padding: 0 0.3846153846vw;
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_box > p:nth-child(1) {
  color: #a55a3b;
  font-size: 4.2666666667vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .sche_box > p:nth-child(1) {
    font-size: 1.2307692308vw;
    margin-bottom: 1.1538461538vw;
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_box > p:nth-child(1) span {
  margin: 0 1.0666666667vw;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .sche_box > p:nth-child(1) span {
    margin: 0 0.3076923077vw;
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_box > p:nth-child(2) {
  font-size: 3.7333333333vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .sche_box > p:nth-child(2) {
    font-size: 1.0769230769vw;
    margin-bottom: 0.9230769231vw;
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_box > p:nth-child(3) {
  font-size: 4.8vw;
  margin-bottom: 2.6666666667vw;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .sche_box > p:nth-child(3) {
    font-size: 1.3846153846vw;
    margin-bottom: 0.7692307692vw;
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_box .sche_store dl {
  display: flex;
  align-items: center;
  gap: 2.6666666667vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .sche_box .sche_store dl {
    gap: 0.7692307692vw;
    margin-bottom: 0.7692307692vw;
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_box .sche_store dt {
  font-size: 3.2vw;
  width: 14.9333333333vw;
  line-height: 14.9333333333vw;
  border-radius: 100vw;
  background-color: #E8E1D4;
  text-align: center;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .sche_box .sche_store dt {
    font-size: 0.9230769231vw;
    width: 4.3076923077vw;
    line-height: 4.3076923077vw;
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_box .sche_store dd {
  font-size: 2.9333333333vw;
  line-height: 1.5;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .sche_box .sche_store dd {
    font-size: 0.8461538462vw;
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_box .sche_store dd .date {
  font-size: 4vw;
  margin-bottom: 0.5333333333vw;
  margin-left: 0.8vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .sche_box .sche_store dd .date {
    font-size: 1.1538461538vw;
    margin-bottom: 0.1538461538vw;
    margin-left: 0.2307692308vw;
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_box .notice {
  font-size: 2.9333333333vw;
  line-height: 1.8181818182;
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .sche_box .notice {
    font-size: 0.8461538462vw;
    margin-bottom: 1.2307692308vw;
  }
}
main .main_wrap #main_contents .info .sche_wrap .sche_box .notice a {
  display: inline;
  text-decoration: underline;
}
main .main_wrap #main_contents .info .sche_wrap .line2 {
  margin: 4vw auto 5.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .sche_wrap .line2 {
    margin: 1.5384615385vw auto 1.5384615385vw;
  }
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .info .ring {
    width: 29.2307692308vw;
    position: absolute;
    top: -0.4461538462vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
main .main_wrap #main_contents .item_block {
  background-color: #e6d4b7;
  position: relative;
}
main .main_wrap #main_contents .item_block::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/noise_pattern.webp);
  background-repeat: repeat;
  background-size: 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
main .main_wrap #main_contents .item_block > * {
  position: relative;
  z-index: 10;
}
main .main_wrap #main_contents .item_block .section_wrap {
  width: 89.3333333333vw;
  margin: 0 auto;
  padding: 21.3333333333vw 0 17.0666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .section_wrap {
    width: 28.4615384615vw;
    margin: 0 auto;
    padding: 6.1538461538vw 0 4.9230769231vw;
  }
}
main .main_wrap #main_contents .item_block .ttl {
  position: relative;
  margin-bottom: 9.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .ttl {
    margin-bottom: 2.6923076923vw;
  }
}
main .main_wrap #main_contents .item_block .ttl p:nth-child(1) {
  font-size: 2.4vw;
  letter-spacing: 0.08em;
  margin-bottom: 1.3333333333vw;
  margin-left: 0.5333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .ttl p:nth-child(1) {
    font-size: 0.6923076923vw;
    margin-bottom: 0.3846153846vw;
    margin-left: 0.1538461538vw;
  }
}
main .main_wrap #main_contents .item_block .ttl div:nth-child(2) {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .ttl div:nth-child(2) {
    margin-bottom: 1.9230769231vw;
  }
}
main .main_wrap #main_contents .item_block .ttl h2:nth-child(3) {
  font-size: 8vw;
  line-height: 1.2;
  margin-bottom: 2.6666666667vw;
  margin-left: 0.5333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .ttl h2:nth-child(3) {
    font-size: 2.3076923077vw;
    margin-bottom: 0.7692307692vw;
    margin-left: 0.1538461538vw;
  }
}
main .main_wrap #main_contents .item_block .ttl p:nth-child(4) {
  font-size: 2.6666666667vw;
  margin-bottom: 6.6666666667vw;
  margin-left: 0.5333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .ttl p:nth-child(4) {
    font-size: 0.7692307692vw;
    margin-bottom: 1.9230769231vw;
    margin-left: 0.1538461538vw;
  }
}
main .main_wrap #main_contents .item_block .ttl img:nth-child(6) {
  width: 26.6666666667vw;
  position: absolute;
  top: -1.0666666667vw;
  right: -1.7333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .ttl img:nth-child(6) {
    width: 7.6923076923vw;
    top: -0.3076923077vw;
    right: -0.5vw;
  }
}
main .main_wrap #main_contents .item_block .slide1 img {
  border-radius: 1.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .slide1 img {
    border-radius: 0.3846153846vw;
  }
}
main .main_wrap #main_contents .item_block .price a {
  width: 81.3333333333vw;
  padding: 5.3333333333vw 0 4.8vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 4vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .price a {
    width: 26.9230769231vw;
    font-size: 1.1538461538vw;
    padding: 1.5384615385vw 0 1.3846153846vw;
  }
}
main .main_wrap #main_contents .item_block .txt_box {
  width: 84vw;
  margin: 0 auto;
  font-size: 3.2vw;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .txt_box {
    width: 28.4615384615vw;
    font-size: 0.9230769231vw;
  }
}
main .main_wrap #main_contents .item_block .txt_box .line1 {
  margin-bottom: 6.4vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .txt_box .line1 {
    margin-bottom: 1.8461538462vw;
  }
}
main .main_wrap #main_contents .item_block .buy_btn {
  width: 40.32vw;
  margin: 14.9333333333vw auto 22.4vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .buy_btn {
    width: 11.6307692308vw;
    margin: 4.3076923077vw auto 6.4615384615vw;
  }
}
main .main_wrap #main_contents .item_block .buy_btn:hover {
  opacity: 0.6 !important;
}
main .main_wrap #main_contents .item_block #sec1 .img_block {
  position: relative;
  padding-top: 192.8vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec1 .img_block {
    padding-top: 61.0769230769vw;
  }
}
main .main_wrap #main_contents .item_block #sec1 .img_block img {
  position: absolute;
  border-radius: 1.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec1 .img_block img {
    border-radius: 0.3846153846vw;
  }
}
main .main_wrap #main_contents .item_block #sec1 .img_block img:nth-child(1) {
  width: 69.3333333333vw;
  top: 0;
  left: 0;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec1 .img_block img:nth-child(1) {
    width: 22vw;
    top: 0;
    left: 0;
  }
}
main .main_wrap #main_contents .item_block #sec1 .img_block img:nth-child(2) {
  width: 42.6666666667vw;
  top: 73.8666666667vw;
  right: 0;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec1 .img_block img:nth-child(2) {
    width: 13.5384615385vw;
    top: 23.4615384615vw;
    right: 0;
  }
}
main .main_wrap #main_contents .item_block #sec1 .img_block img:nth-child(3) {
  width: 69.3333333333vw;
  top: 134.1333333333vw;
  left: 5.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec1 .img_block img:nth-child(3) {
    width: 22vw;
    top: 42.5384615385vw;
    left: 1.5384615385vw;
  }
}
main .main_wrap #main_contents .item_block #sec1 .img_block img:nth-child(4) {
  width: 7.2vw;
  top: 32vw;
  right: 4.5333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec1 .img_block img:nth-child(4) {
    width: 2.3076923077vw;
    top: 9vw;
    right: 1.3846153846vw;
  }
}
main .main_wrap #main_contents .item_block #sec1 .img_block img:nth-child(5) {
  width: 29.3333333333vw;
  top: 105.6vw;
  left: 4.2666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec1 .img_block img:nth-child(5) {
    width: 9.3076923077vw;
    top: 33.5384615385vw;
    left: 1.3846153846vw;
  }
}
main .main_wrap #main_contents .item_block #sec2 .ttl h2 span {
  font-size: 0.5em;
  vertical-align: middle;
}
main .main_wrap #main_contents .item_block #sec2 .img_block {
  position: relative;
  padding-top: 167.2vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec2 .img_block {
    padding-top: 52.0769230769vw;
  }
}
main .main_wrap #main_contents .item_block #sec2 .img_block img {
  position: absolute;
  border-radius: 1.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec2 .img_block img {
    border-radius: 0.3846153846vw;
  }
}
main .main_wrap #main_contents .item_block #sec2 .img_block img:nth-child(1) {
  width: 63.4666666667vw;
  top: 0;
  right: 0;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec2 .img_block img:nth-child(1) {
    width: 19.8461538462vw;
    top: 0;
    right: 0;
  }
}
main .main_wrap #main_contents .item_block #sec2 .img_block img:nth-child(2) {
  width: 42.6666666667vw;
  top: 62.4vw;
  left: 0;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec2 .img_block img:nth-child(2) {
    width: 13.4615384615vw;
    top: 19.4615384615vw;
    left: 0;
  }
}
main .main_wrap #main_contents .item_block #sec2 .img_block img:nth-child(3) {
  width: 60vw;
  top: 115.7333333333vw;
  left: 24.8vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec2 .img_block img:nth-child(3) {
    width: 18.8461538462vw;
    top: 36.1538461538vw;
    left: 7.6923076923vw;
  }
}
main .main_wrap #main_contents .item_block #sec2 .img_block img:nth-child(4) {
  width: 5.8666666667vw;
  top: 12.4533333333vw;
  left: 9.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec2 .img_block img:nth-child(4) {
    width: 1.6923076923vw;
    top: 4.6153846154vw;
    left: 3.4615384615vw;
  }
}
main .main_wrap #main_contents .item_block #sec2 .img_block img:nth-child(5) {
  width: 18.6666666667vw;
  top: 89.6vw;
  right: -1.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec2 .img_block img:nth-child(5) {
    width: 5.3846153846vw;
    top: 28.9230769231vw;
    right: -0.3846153846vw;
  }
}
main .main_wrap #main_contents .item_block #sec3 .img_block {
  position: relative;
  padding-top: 165.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec3 .img_block {
    padding-top: 51.5384615385vw;
  }
}
main .main_wrap #main_contents .item_block #sec3 .img_block img {
  position: absolute;
  border-radius: 1.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec3 .img_block img {
    border-radius: 0.3846153846vw;
  }
}
main .main_wrap #main_contents .item_block #sec3 .img_block img:nth-child(1) {
  width: 69.3333333333vw;
  top: 0;
  left: 0;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec3 .img_block img:nth-child(1) {
    width: 21.5384615385vw;
    top: 0;
    left: 0;
  }
}
main .main_wrap #main_contents .item_block #sec3 .img_block img:nth-child(2) {
  width: 45.3333333333vw;
  top: 90.1333333333vw;
  left: 44vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec3 .img_block img:nth-child(2) {
    width: 14.1538461538vw;
    top: 28.0769230769vw;
    left: 13.7307692308vw;
  }
}
main .main_wrap #main_contents .item_block #sec3 .img_block img:nth-child(3) {
  width: 40vw;
  top: 114.4vw;
  left: 0vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec3 .img_block img:nth-child(3) {
    width: 12.4615384615vw;
    top: 35.6923076923vw;
    left: 0vw;
  }
}
main .main_wrap #main_contents .item_block #sec3 .img_block img:nth-child(4) {
  width: 4.5333333333vw;
  top: 2.6666666667vw;
  right: 5.3333333333vw;
  border-radius: 0;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec3 .img_block img:nth-child(4) {
    width: 1.3076923077vw;
    top: 0.7692307692vw;
    right: 2.3076923077vw;
  }
}
main .main_wrap #main_contents .item_block #sec3 .img_block img:nth-child(5) {
  width: 30.6666666667vw;
  top: 144.9333333333vw;
  right: 7.2vw;
  border-radius: 0;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec3 .img_block img:nth-child(5) {
    width: 9.6923076923vw;
    top: 45.0769230769vw;
    right: 2.7692307692vw;
  }
}
main .main_wrap #main_contents .item_block #sec3 .img_block img:nth-child(6) {
  width: 26.6666666667vw;
  top: 66.6666666667vw;
  right: -4vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block #sec3 .img_block img:nth-child(6) {
    width: 8.4615384615vw;
    top: 20.7692307692vw;
    right: -0.3846153846vw;
  }
}
main .main_wrap #main_contents .item_block .select_item {
  position: relative;
  background-image: url(../images/bg1.webp);
  background-size: 5.3333333333vw;
  background-repeat: repeat;
  z-index: 0;
  padding: 17.3333333333vw 0 13.3333333333vw;
}
main .main_wrap #main_contents .item_block .select_item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/noise_pattern.webp);
  background-repeat: repeat;
  background-size: 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
main .main_wrap #main_contents .item_block .select_item > * {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .select_item {
    padding: 5.3846153846vw 0 4.6153846154vw;
    background-size: 1.5384615385vw;
  }
}
main .main_wrap #main_contents .item_block .select_item > h3 {
  font-size: 6.4vw;
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .select_item > h3 {
    font-size: 1.8461538462vw;
  }
}
main .main_wrap #main_contents .item_block .select_item .list_wrap {
  padding: 9.3333333333vw 0 8vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .select_item .list_wrap {
    padding: 3.4615384615vw 0 3.4615384615vw;
  }
}
main .main_wrap #main_contents .item_block .select_item .list_wrap a > img {
  margin-bottom: 2.1333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .select_item .list_wrap a > img {
    margin-bottom: 0.6153846154vw;
  }
}
main .main_wrap #main_contents .item_block .select_item .list_wrap a > div {
  padding: 0 0.8vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .select_item .list_wrap a > div {
    padding: 0 0.2307692308vw;
  }
}
main .main_wrap #main_contents .item_block .select_item .list_wrap a .item_info {
  font-size: 2.6666666667vw;
  line-height: 1.4;
  word-break: break-all;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .select_item .list_wrap a .item_info {
    font-size: 0.7692307692vw;
  }
}
main .main_wrap #main_contents .item_block .select_item .list_wrap a .item_info p:nth-child(1) {
  margin-bottom: 1.0666666667vw;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .select_item .list_wrap a .item_info p:nth-child(1) {
    margin-bottom: 0.3076923077vw;
    letter-spacing: 0.08em;
  }
}
main .main_wrap #main_contents .item_block .select_item .list_wrap a .item_info .price_box {
  display: flex;
  justify-content: space-between;
}
main .main_wrap #main_contents .item_block .select_item .bottom_txt {
  font-size: 2.1333333333vw;
  text-align: center;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .select_item .bottom_txt {
    font-size: 0.6153846154vw;
  }
}
main .main_wrap #main_contents .item_block .select_item .bottom_txt span {
  margin: 0 2.1333333333vw;
  position: relative;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .select_item .bottom_txt span {
    margin: 0 0.6153846154vw;
  }
}
main .main_wrap #main_contents .item_block .select_item .bottom_txt span::before {
  content: "";
  position: absolute;
  height: 2.1333333333vw;
  width: 1px;
  background-color: #664838;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .select_item .bottom_txt span::before {
    height: 0.6153846154vw;
  }
}
main .main_wrap #main_contents .item_block .select_item .clip {
  position: absolute;
  width: 44.2666666667vw;
  top: -4.8vw;
  left: -6.4vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .item_block .select_item .clip {
    width: 12.7692307692vw;
    top: -1.3846153846vw;
    left: 2.1538461538vw;
  }
}
main .main_wrap #main_contents .cam_block {
  background-color: #e6ceb7;
  position: relative;
  padding: 45.3333333333vw 0 21.3333333333vw;
  overflow: hidden;
}
main .main_wrap #main_contents .cam_block::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/noise_pattern.webp);
  background-repeat: repeat;
  background-size: 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
main .main_wrap #main_contents .cam_block > * {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block {
    padding: 15.3846153846vw 0 6.1538461538vw;
  }
}
main .main_wrap #main_contents .cam_block .rotate-wrap {
  position: absolute;
  left: 50%;
  top: 16vw;
  transform: translateX(-50%);
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .rotate-wrap {
    top: 5.7692307692vw;
  }
}
main .main_wrap #main_contents .cam_block .rotate-circle {
  width: 148.5333333333vw;
  animation: rotateCircle 40s linear infinite;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .rotate-circle {
    width: 51.1538461538vw;
  }
}
main .main_wrap #main_contents .cam_block > .ttl {
  text-align: center;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block > .ttl {
    margin-bottom: 3.0769230769vw;
  }
}
main .main_wrap #main_contents .cam_block > .ttl h2 {
  font-size: 8vw;
  margin-bottom: 5.3333333333vw;
  padding-bottom: 1.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block > .ttl h2 {
    font-size: 2.3076923077vw;
    margin-bottom: 1.5384615385vw;
    padding-bottom: 0.3846153846vw;
  }
}
main .main_wrap #main_contents .cam_block > .ttl .ttl_line {
  width: 5.3333333333vw;
  height: 0.5333333333vw;
  background-color: #664838;
  margin: 0 auto 8vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block > .ttl .ttl_line {
    width: 1.5384615385vw;
    height: 0.1538461538vw;
    margin: 0 auto 2.3076923077vw;
  }
}
main .main_wrap #main_contents .cam_block > .ttl > p:nth-child(3) {
  font-size: 5.3333333333vw;
  color: #a55a3b;
  margin-bottom: 4vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block > .ttl > p:nth-child(3) {
    font-size: 1.5384615385vw;
    margin-bottom: 1.1538461538vw;
  }
}
main .main_wrap #main_contents .cam_block > .ttl > p:nth-child(4) {
  font-size: 3.2vw;
  line-height: 2;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block > .ttl > p:nth-child(4) {
    font-size: 0.9230769231vw;
  }
}
main .main_wrap #main_contents .cam_block .detail {
  width: 84vw;
  margin: 0 auto 10.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .detail {
    width: 29.2307692308vw;
    margin: 0 auto 4.3076923077vw;
  }
}
main .main_wrap #main_contents .cam_block .detail .slide1 {
  margin-bottom: 8vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .detail .slide1 {
    margin-bottom: 2.3076923077vw;
  }
}
main .main_wrap #main_contents .cam_block .detail .slide1 img {
  border-radius: 1.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .detail .slide1 img {
    border-radius: 0.3846153846vw;
  }
}
main .main_wrap #main_contents .cam_block .detail .txt_box {
  font-size: 3.2vw;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .detail .txt_box {
    font-size: 0.9230769231vw;
  }
}
main .main_wrap #main_contents .cam_block .detail .txt_box p + p {
  margin-top: 4vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .detail .txt_box p + p {
    margin-top: 1.1538461538vw;
  }
}
main .main_wrap #main_contents .cam_block .detail .img_box {
  position: relative;
  padding-top: 61.8666666667vw;
  margin: 9.0666666667vw auto 5.8666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .detail .img_box {
    padding-top: 21.6923076923vw;
    margin: 3.0769230769vw auto 2vw;
  }
}
main .main_wrap #main_contents .cam_block .detail .img_box > * {
  position: absolute;
}
main .main_wrap #main_contents .cam_block .detail .img_box > *:nth-child(1) {
  border-radius: 1.3333333333vw;
  width: 36vw;
  top: 0;
  right: 0;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .detail .img_box > *:nth-child(1) {
    border-radius: 0.3846153846vw;
    width: 12.6153846154vw;
  }
}
main .main_wrap #main_contents .cam_block .detail .img_box > *:nth-child(2) {
  border-radius: 1.3333333333vw;
  width: 42.6666666667vw;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .detail .img_box > *:nth-child(2) {
    border-radius: 0.3846153846vw;
    width: 15vw;
  }
}
main .main_wrap #main_contents .cam_block .detail .img_box > *:nth-child(3) {
  width: 32vw;
  top: 46.9333333333vw;
  right: 1.0666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .detail .img_box > *:nth-child(3) {
    width: 9.2307692308vw;
    top: 16.4230769231vw;
    right: 2.4615384615vw;
  }
}
main .main_wrap #main_contents .cam_block .howto {
  /* アコーディオン*/
}
main .main_wrap #main_contents .cam_block .howto .accordion {
  width: 89.3333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion {
    width: 31.5384615385vw;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-header {
  position: relative;
  display: block;
  font-size: 3.2vw;
  color: #ffffff;
  background-color: #664838;
  width: 53.3333333333vw;
  height: 11.7333333333vw;
  line-height: 11.7333333333vw;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 100vw;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .accordion-header {
    font-size: 0.9230769231vw;
    width: 15.3846153846vw;
    height: 3.3846153846vw;
    line-height: 3.3846153846vw;
    margin: 0 auto;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 4.2666666667vw;
  width: 4.2666666667vw;
  line-height: 4.2666666667vw;
  border-radius: 100vw;
  letter-spacing: 0;
  margin-right: -4vw;
  margin-left: 2.6666666667vw;
  vertical-align: text-top;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .accordion-icon {
    font-size: 1.2307692308vw;
    width: 1.2307692308vw;
    line-height: 1.2307692308vw;
    margin-right: -1.1538461538vw;
    margin-left: 0.7692307692vw;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-icon.rotate {
  transform: rotate(45deg);
}
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  font-size: 2.9333333333vw;
  line-height: 1.6363636364;
  letter-spacing: 0.04em;
  margin: 6.4vw auto 0;
  box-sizing: border-box;
  border-radius: 1.3333333333vw;
  background-color: #fffbf5;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel {
    font-size: 0.9230769231vw;
    margin: 1.8461538462vw auto;
    border-radius: 0.3846153846vw;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel > p {
  font-size: 4.2666666667vw;
  color: #a55a3b;
  text-align: center;
  margin-top: 10.6666666667vw;
  margin-bottom: 8vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel > p {
    font-size: 1.2307692308vw;
    margin-top: 3.0769230769vw;
    margin-bottom: 2.3076923077vw;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel .step {
  position: relative;
}
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel .step > img {
  width: 9.0666666667vw;
  position: absolute;
  top: -2.9333333333vw;
  left: 5.6vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel .step > img {
    width: 3.1923076923vw;
    position: absolute;
    top: -1.0384615385vw;
    left: 2vw;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel .step .step_box {
  width: 73.3333333333vw;
  border: solid 0.4vw #664838;
  border-radius: 1.8666666667vw;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel .step .step_box {
    width: 25.7692307692vw;
    border: solid 0.1153846154vw #664838;
    border-radius: 0.5384615385vw;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel .step .step_box img {
  width: 34.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel .step .step_box img {
    width: 12.3076923077vw;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel .step .step_box p {
  width: 38.6666666667vw;
  font-size: 3.4666666667vw;
  line-height: 1.5384615385;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel .step .step_box p {
    width: 13.4615384615vw;
    font-size: 1vw;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel .step .step_box p .notice {
  font-size: 2.6666666667vw;
  display: inline-block;
  line-height: 1.4;
  margin-top: 1.6vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel .step .step_box p .notice {
    font-size: 0.7692307692vw;
    margin-top: 0.4615384615vw;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel .arrow {
  width: 5.3333333333vw;
  margin: 3.2vw auto;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel .arrow {
    width: 1.5384615385vw;
    margin: 0.9230769231vw auto;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel.opening,
main .main_wrap #main_contents .cam_block .howto .accordion .accordion-panel.closing {
  transition: max-height 0.6s ease;
}
main .main_wrap #main_contents .cam_block .howto .accordion .txt_box {
  width: 73.3333333333vw;
  margin: 4vw auto;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .txt_box {
    width: 25.7692307692vw;
    margin: 1.1538461538vw auto;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .txt_box .box_ttl {
  color: #a55a3b;
  font-size: 3.2vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .txt_box .box_ttl {
    font-size: 0.9230769231vw;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .txt_box p + p {
  margin-top: 0.8vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .txt_box p + p {
    margin-top: 0.2307692308vw;
  }
}
main .main_wrap #main_contents .cam_block .howto .accordion .txt_box:last-child {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howto .accordion .txt_box:last-child {
    margin-bottom: 3.0769230769vw;
  }
}
main .main_wrap #main_contents .cam_block .howtoget {
  width: 84vw;
  margin: 10.6666666667vw auto 0;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howtoget {
    width: 29.2307692308vw;
    margin: 3.0769230769vw auto 0;
  }
}
main .main_wrap #main_contents .cam_block .howtoget .ttl > p {
  font-size: 4.2666666667vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howtoget .ttl > p {
    font-size: 1.2307692308vw;
    margin-bottom: 0.7692307692vw;
  }
}
main .main_wrap #main_contents .cam_block .howtoget .line3 {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howtoget .line3 {
    margin-bottom: 1.5384615385vw;
  }
}
main .main_wrap #main_contents .cam_block .howtoget .txt_box {
  width: 82.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howtoget .txt_box {
    width: 28.4615384615vw;
  }
}
main .main_wrap #main_contents .cam_block .howtoget .txt_box > *:nth-child(1) {
  font-size: 3.7333333333vw;
  color: #a55a3b;
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howtoget .txt_box > *:nth-child(1) {
    font-size: 1.0769230769vw;
    margin-bottom: 0.3846153846vw;
  }
}
main .main_wrap #main_contents .cam_block .howtoget .txt_box p {
  font-size: 3.2vw;
  line-height: 1.6666666667;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howtoget .txt_box p {
    font-size: 0.9230769231vw;
  }
}
main .main_wrap #main_contents .cam_block .howtoget .txt_box p span {
  color: #a55a3b;
}
main .main_wrap #main_contents .cam_block .howtoget .line1 {
  margin: 5.3333333333vw auto;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .cam_block .howtoget .line1 {
    margin: 1.5384615385vw auto;
  }
}
main .main_wrap #main_contents .information {
  background-color: #f6eee1;
  position: relative;
}
main .main_wrap #main_contents .information::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/noise_pattern.webp);
  background-repeat: repeat;
  background-size: 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
main .main_wrap #main_contents .information > * {
  position: relative;
  z-index: 10;
}
main .main_wrap #main_contents .information .ttl {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .ttl {
    margin-bottom: 3.0769230769vw;
  }
}
main .main_wrap #main_contents .information .ttl .ttl_flex {
  font-size: 2.4vw;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.6vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .ttl .ttl_flex {
    font-size: 0.6923076923vw;
    margin-bottom: 0.4615384615vw;
  }
}
main .main_wrap #main_contents .information .ttl .line3 {
  margin-bottom: 9.0666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .ttl .line3 {
    margin-bottom: 2.6153846154vw;
  }
}
main .main_wrap #main_contents .information .ttl h2 {
  font-size: 8vw;
  margin-bottom: 4.8vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .ttl h2 {
    font-size: 2.3076923077vw;
    margin-bottom: 1.3846153846vw;
  }
}
main .main_wrap #main_contents .information .ttl > p:nth-of-type(1) {
  font-size: 3.7333333333vw;
  color: #a55a3b;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .ttl > p:nth-of-type(1) {
    font-size: 1.0769230769vw;
    margin-bottom: 1.9230769231vw;
  }
}
main .main_wrap #main_contents .information .ttl > p:nth-of-type(2) {
  font-size: 3.2vw;
  line-height: 1.8;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .ttl > p:nth-of-type(2) {
    font-size: 0.9230769231vw;
  }
}
main .main_wrap #main_contents .information .ttl > p:nth-of-type(2) a {
  display: inline;
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #a55a3b;
}
main .main_wrap #main_contents .information .ttl .instore_txt {
  font-size: 3.2vw;
  line-height: 1.8;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .ttl .instore_txt {
    font-size: 0.9230769231vw;
  }
}
main .main_wrap #main_contents .information .ttl .instore_txt a {
  display: inline;
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #a55a3b;
}
main .main_wrap #main_contents .information .ttl .instore_txt p + p {
  margin-top: 2.1333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .ttl .instore_txt p + p {
    margin-top: 0.6153846154vw;
  }
}
main .main_wrap #main_contents .information .info_wrap {
  width: 84vw;
  margin: 0 auto;
  padding: 18.6666666667vw 0 13.3333333333vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .info_wrap {
    width: 28.4615384615vw;
    padding: 6.1538461538vw 0 4.2307692308vw;
  }
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap > p {
  color: #a55a3b;
  font-size: 5.8666666667vw;
  margin-bottom: 3.2vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .info_wrap .sche_wrap > p {
    font-size: 1.6923076923vw;
    margin-bottom: 0.9230769231vw;
  }
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap div.nobi .sche_ttl > p::after {
  height: 200%;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .info_wrap .sche_wrap div.nobi .sche_ttl > p::after {
    height: 140%;
  }
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_ttl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.6666666667vw 0;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_ttl {
    padding: 0.7692307692vw 0;
  }
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_ttl > p {
  width: 14.6666666667vw;
  font-size: 6.9333333333vw;
  color: #a55a3b;
  position: relative;
  letter-spacing: 0;
  padding-left: 4vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_ttl > p {
    width: 3.4615384615vw;
    font-size: 2vw;
    padding-left: 0.3846153846vw;
    padding-right: 0.3846153846vw;
  }
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_ttl > p::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #664838;
  width: 1px;
  height: 140%;
  transform: translateY(-50%);
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_ttl .sche_day {
  width: 60.2666666667vw;
  font-size: 3.4666666667vw;
  line-height: 1.5384615385;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_ttl .sche_day {
    width: 23.0769230769vw;
    font-size: 1vw;
  }
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_ttl .sche_day > p:nth-child(1) {
  color: #a55a3b;
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_ttl .ttl_gray {
  position: absolute;
  inset: 0;
  background-color: rgba(102, 72, 56, 0.7);
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_ttl .ttl_gray p {
  font-size: 3.2vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_ttl .ttl_gray p {
    font-size: 0.9230769231vw;
  }
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_detail p {
  padding: 3.2vw 1.3333333333vw 4vw;
  font-size: 2.9333333333vw;
  line-height: 1.8181818182;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_detail p {
    padding: 0.9230769231vw 0.3846153846vw 1.1538461538vw;
    font-size: 0.8461538462vw;
  }
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_day2 {
  padding: 5.3333333333vw 0;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_day2 {
    padding: 1.5384615385vw 0;
  }
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_day2 > p:nth-child(1) {
  color: #a55a3b;
  font-size: 4vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_day2 > p:nth-child(1) {
    font-size: 1.1538461538vw;
    margin-bottom: 0.7692307692vw;
  }
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_day2 > p:nth-child(1) span {
  font-size: 0.9em;
}
main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_day2 > p:nth-child(2) {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .info_wrap .sche_wrap .sche_box .sche_day2 > p:nth-child(2) {
    font-size: 1vw;
  }
}
main .main_wrap #main_contents .information .add_comm p {
  padding: 3.2vw 1.3333333333vw 4vw;
  font-size: 2.9333333333vw;
  line-height: 1.8181818182;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .add_comm p {
    padding: 0.9230769231vw 0.3846153846vw 1.1538461538vw;
    font-size: 0.8461538462vw;
  }
}
main .main_wrap #main_contents .information .insta_live {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .insta_live {
    margin-bottom: 3.0769230769vw;
  }
}
main .main_wrap #main_contents .information .insta_btn {
  width: 64vw;
  height: 14.9333333333vw;
  box-sizing: border-box;
  background-color: #a55a3b;
  color: #ffffff;
  font-size: 3.4666666667vw;
  line-height: 14.9333333333vw;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
  border-radius: 100vw;
  padding-right: 2.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .insta_btn {
    width: 20vw;
    height: 4.3076923077vw;
    font-size: 1.1vw;
    line-height: 4.3076923077vw;
    padding-right: 1.5384615385vw;
  }
}
main .main_wrap #main_contents .information .insta_btn img {
  width: 4.2666666667vw;
  position: absolute;
  right: 8vw;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .insta_btn img {
    width: 1.3538461538vw;
    right: 2.5384615385vw;
  }
}
main .main_wrap #main_contents .information .instore {
  padding-bottom: 10.6666666667vw;
}
@media screen and (min-width: 800px) {
  main .main_wrap #main_contents .information .instore {
    padding-bottom: 3.0769230769vw;
  }
}
main #teaser_view .fv_wrap {
  width: 89.3333333333vw;
  margin: 0 auto;
  padding: 10.6666666667vw 0 0;
  position: relative;
}
@media screen and (min-width: 800px) {
  main #teaser_view .fv_wrap {
    width: 84.6153846154vw;
    margin: 0 auto;
    padding: 3.8461538462vw 0 0;
  }
}
main #teaser_view .fv_wrap .ttl {
  margin-bottom: 0;
}
@media screen and (min-width: 800px) {
  main #teaser_view .fv_wrap .ttl {
    margin-bottom: 0;
  }
}
main #teaser_view .fv_wrap .ttl .ttl_flex {
  font-size: 2.4vw;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.6vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .fv_wrap .ttl .ttl_flex {
    font-size: 0.6923076923vw;
    margin-bottom: 0.4615384615vw;
  }
}
main #teaser_view .fv_wrap .ttl .line3 {
  margin-bottom: 0;
}
@media screen and (min-width: 800px) {
  main #teaser_view .fv_wrap .ttl .line3 {
    margin-bottom: 0;
  }
}
main #teaser_view .lead {
  text-align: center;
  padding: 19.7333333333vw 0 5.3333333333vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .lead {
    padding: 8.4615384615vw 0 1.5384615385vw;
  }
}
main #teaser_view .lead .lead_ttl {
  color: #a55a3b;
}
main #teaser_view .lead .lead_ttl > h1 img {
  width: 70vw;
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .lead .lead_ttl > h1 img {
    width: 29.5846153846vw;
    margin: 0 auto 1.9230769231vw;
  }
}
main #teaser_view .lead .lead_ttl p {
  font-size: 3.7333333333vw;
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .lead .lead_ttl p {
    font-size: 1.2307692308vw;
    margin-bottom: 5.3846153846vw;
  }
}
main #teaser_view .lead .lead_img {
  width: 45.3333333333vw;
  margin: 0 auto 13.3333333333vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .lead .lead_img {
    width: 15.3846153846vw;
    margin: 0 auto 3.2307692308vw;
  }
}
main #teaser_view .lead .lead_box p {
  font-size: 3.36vw;
  line-height: 2.2222222222;
}
@media screen and (min-width: 800px) {
  main #teaser_view .lead .lead_box p {
    font-size: 0.9692307692vw;
  }
}
main #teaser_view .lead .lead_box p + p {
  margin-top: 6.4vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .lead .lead_box p + p {
    margin-top: 1.8461538462vw;
  }
}
main #teaser_view .lead .lead_box p:last-of-type {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .lead .lead_box p:last-of-type {
    margin-bottom: 3.8461538462vw;
  }
}
main #teaser_view .lead .lead_box img {
  width: 32.5333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  main #teaser_view .lead .lead_box img {
    width: 9.3846153846vw;
  }
}
main #teaser_view .sche_cd {
  position: relative;
  width: 92vw;
  background-color: #fffbf5;
  padding: 13.3333333333vw 2.6666666667vw 6.4vw 0;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width: 800px) {
  main #teaser_view .sche_cd {
    width: 24.6153846154vw;
    padding: 3.8461538462vw 0.3846153846vw 2.3076923077vw 0;
  }
}
main #teaser_view .sche_cd .sche_cd_ttl img {
  width: 41.6vw;
  position: absolute;
  top: -10.6666666667vw;
  left: -6.6666666667vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .sche_cd .sche_cd_ttl img {
    width: 13.0769230769vw;
    top: -3.0769230769vw;
    left: -1.9230769231vw;
  }
}
main #teaser_view .sche_cd_txt {
  text-align: center;
  font-size: 8.5333333333vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .sche_cd_txt {
    font-size: 2.1538461538vw;
  }
}
main #teaser_view .sche_cd_txt span {
  display: inline-block;
  vertical-align: middle;
  padding: 0 1.3333333333vw 0.8vw 2.1333333333vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .sche_cd_txt span {
    padding: 0 0.7692307692vw 0 0.6153846154vw;
  }
}
main #teaser_view .sche_cd_txt .days {
  position: relative;
}
main #teaser_view .sche_cd_txt .days::before {
  content: "Days";
  display: block;
  position: absolute;
  top: -4.8vw;
  left: 5.3333333333vw;
  font-size: 0.3em;
}
@media screen and (min-width: 800px) {
  main #teaser_view .sche_cd_txt .days::before {
    top: -1.2307692308vw;
    left: 1.3846153846vw;
  }
}
main #teaser_view .sche_cd_txt .hours {
  position: relative;
}
main #teaser_view .sche_cd_txt .hours::before {
  content: "Hours";
  display: block;
  position: absolute;
  top: -4.8vw;
  left: 4.2666666667vw;
  font-size: 0.3em;
}
@media screen and (min-width: 800px) {
  main #teaser_view .sche_cd_txt .hours::before {
    top: -1.2307692308vw;
    left: 0.9230769231vw;
  }
}
main #teaser_view .sche_cd_txt .minutes {
  position: relative;
}
main #teaser_view .sche_cd_txt .minutes::before {
  content: "Minutes";
  display: block;
  position: absolute;
  top: -4.8vw;
  left: 2.1333333333vw;
  font-size: 0.3em;
}
@media screen and (min-width: 800px) {
  main #teaser_view .sche_cd_txt .minutes::before {
    top: -1.2307692308vw;
    left: 0.6153846154vw;
  }
}
main #teaser_view .sche_cd_txt .seconds {
  position: relative;
}
main #teaser_view .sche_cd_txt .seconds::before {
  content: "Seconds";
  display: block;
  position: absolute;
  top: -4.8vw;
  left: 2.1333333333vw;
  font-size: 0.3em;
}
@media screen and (min-width: 800px) {
  main #teaser_view .sche_cd_txt .seconds::before {
    top: -1.2307692308vw;
    left: 0.6153846154vw;
  }
}
@media screen and (min-width: 800px) {
  main #teaser_view .main_wrap {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
  }
}
main #teaser_view .main_wrap #left_contents_t {
  display: none;
}
@media screen and (min-width: 800px) {
  main #teaser_view .main_wrap #left_contents_t {
    display: block;
    width: 50vw;
    height: 100vh;
    position: relative;
  }
}
@media screen and (min-width: 800px) {
  main #teaser_view .main_wrap #left_contents_t .left_fixed {
    position: fixed;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
  }
}
main #teaser_view .main_wrap #left_contents_t .left_img > img:nth-child(1) {
  width: 24.0769230769vw;
  margin: 0 auto 2.7692307692vw;
}
main #teaser_view .main_wrap #left_contents_t .left_img > img:nth-child(2) {
  width: 12.1538461538vw;
  margin: 0 auto 6.1538461538vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .main_wrap #main_contents {
    width: 36.9230769231vw;
    margin: 0 auto 0 0;
  }
}
main #teaser_view .main_wrap #main_contents .info {
  padding-bottom: 26.6666666667vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .main_wrap #main_contents .info {
    padding-bottom: 5.3846153846vw;
  }
}
main #teaser_view .main_wrap #main_contents .sche_nakami {
  margin-bottom: 16vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .main_wrap #main_contents .sche_nakami {
    margin-bottom: 4.6153846154vw;
  }
}
main #teaser_view .main_wrap #main_contents .item_block .buy_btn {
  margin: 10.6666666667vw auto 0vw;
}
@media screen and (min-width: 800px) {
  main #teaser_view .main_wrap #main_contents .item_block .buy_btn {
    margin: 3.0769230769vw auto 0vw;
  }
}
main #teaser_view .main_wrap #main_contents .cam_block {
  background-color: #E1C3A9;
}
main #teaser_view .bottom_txt {
  display: none;
}
@media screen and (min-width: 800px) {
  main #teaser_view .bottom_txt {
    display: block;
    font-size: 0.6153846154vw;
    position: fixed;
    right: -3%;
    top: 50%;
    transform: rotate(-90deg);
  }
}
main #teaser_view .bottom_txt span {
  margin: 0 2.1333333333vw;
  position: relative;
}
@media screen and (min-width: 800px) {
  main #teaser_view .bottom_txt span {
    margin: 0 0.6153846154vw;
  }
}
main #teaser_view .bottom_txt span::before {
  content: "";
  position: absolute;
  height: 2.1333333333vw;
  width: 1px;
  background-color: #664838;
}
@media screen and (min-width: 800px) {
  main #teaser_view .bottom_txt span::before {
    height: 0.6153846154vw;
  }
}

/* footer
===================================================== */
footer {
  background-color: #f1e2ca;
  position: relative;
  padding: 20.2666666667vw 0 13.3333333333vw;
}
footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/noise_pattern.webp);
  background-repeat: repeat;
  background-size: 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
footer > * {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 800px) {
  footer {
    padding: 9.0769230769vw 0 5vw;
  }
}
footer .brand_info {
  position: relative;
  z-index: 10;
}
footer .footer_sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6.6666666667vw;
  margin: 0 auto 14.9333333333vw;
}
@media screen and (min-width: 800px) {
  footer .footer_sns {
    gap: 40px;
    margin: 0 auto 60px;
  }
}
footer .footer_sns li:nth-child(1) {
  width: 6.1333333333vw;
}
@media screen and (min-width: 800px) {
  footer .footer_sns li:nth-child(1) {
    width: 28px;
  }
}
footer .footer_sns li:nth-child(2) {
  width: 5.3333333333vw;
}
@media screen and (min-width: 800px) {
  footer .footer_sns li:nth-child(2) {
    width: 24px;
  }
}
footer .footer_sns li:nth-child(3) {
  width: 7.4666666667vw;
}
@media screen and (min-width: 800px) {
  footer .footer_sns li:nth-child(3) {
    width: 36px;
  }
}
footer .footer_logo {
  width: 49.8666666667vw;
  margin: 0 auto 10.6666666667vw;
}
@media screen and (min-width: 800px) {
  footer .footer_logo {
    width: 210px;
    margin: 0 auto 50px;
  }
}
footer .copyright {
  color: #664838;
  font-size: 2.1333333333vw;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  footer .copyright {
    font-size: 10px;
    margin: 0 auto;
  }
}

/* 共通
===================================================== */
.slide1 .swiper-wrapper {
  overflow: hidden;
}

.slide2 .swiper-wrapper {
  overflow: hidden;
}

.fade_scale {
  overflow: hidden;
}

.skewAnim {
  transform-origin: center;
  will-change: transform;
}

.txt_tate {
  overflow: hidden;
}

.txt_yoko {
  overflow: hidden;
}

.swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.swiper-slide a:hover {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* totop
===================================================== */
.totop1,
.totop2 {
  width: 28vw;
  position: fixed;
  bottom: 2.6666666667vw;
  right: -9.3333333333vw;
  z-index: 100;
  opacity: 1;
  transition: all 0.6s;
}
@media screen and (min-width: 800px) {
  .totop1,
  .totop2 {
    width: 8.0769230769vw;
    bottom: 0.7692307692vw;
    right: -2.6923076923vw;
  }
}

/* 下矢印
===================================================== */
/* animation
===================================================== */
.swiper-slide .credit1 {
  opacity: 0;
  transition: 0.5s;
}

.swiper-slide-visible .credit1 {
  opacity: 1;
  transition: 0.5s;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */