@charset "UTF-8";
/*min関数*/
/*clamp関数*/
.splead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3.4666666667vw;
  line-height: 2.3076923077;
  letter-spacing: 0.1em;
  color: #9e7445;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  color: #60351e;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3.4666666667vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 1.25vw;
  }
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

.pcNone {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

.nowrap {
  white-space: nowrap;
}

.flex_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4vw;
}

.bg_wrapper {
  background-color: #eddeca;
  position: relative;
  z-index: 0;
}
.bg_wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg_sp.webp) repeat;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

.common_btn {
  width: 92vw;
  margin: 0 auto;
  font-size: 4.8vw;
  color: #f0db95;
  background-color: #022441;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 2.6666666667vw;
  align-items: center;
  line-height: 1.2;
  padding: 4.5333333333vw 0;
  border-radius: 50px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 769px) {
  .common_btn {
    margin: 0 auto 4.8611111111vw;
    padding: 1.1805555556vw 0;
    width: 23.9583333333vw;
    font-size: 1.3888888889vw;
    gap: 1.3888888889vw;
  }
}
.common_btn:hover {
  background: #fff5d3;
  color: #022441;
  transition: all 0.3s ease;
}
.common_btn img {
  width: 6.6666666667vw;
  height: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  .common_btn img {
    width: 2.0138888889vw;
    height: 2.0138888889vw;
  }
}
.common_btn .icon-swap {
  position: relative;
  display: inline-block;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  .common_btn .icon-swap {
    width: 2.0138888889vw;
    height: 2.0138888889vw;
  }
}
.common_btn .icon-swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.common_btn .icon-swap .icon-hover {
  opacity: 0;
}
.common_btn:hover .icon-swap .icon-default {
  opacity: 0;
}
.common_btn:hover .icon-swap .icon-hover {
  opacity: 1;
}

.title {
  position: relative;
  width: fit-content;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #60351e;
  margin: 4vw auto 13.3333333333vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 6.1333333333vw;
  line-height: 1.3913043478;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) {
  .title {
    font-size: 3.125vw;
    line-height: 1.3555555556;
    letter-spacing: 0.04em;
    gap: 1.3888888889vw;
    margin: 13.8888888889vw auto 4.8611111111vw;
  }
}
.title_line {
  height: 1px;
  background-color: #60351e;
  border-radius: 10px; /* 4つの角すべてを丸める */
}
@media screen and (min-width: 769px) {
  .title_line {
    height: 2px;
  }
}
.title_sub {
  font-size: 2.9333333333vw;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .title_sub {
    font-size: 1.5277777778vw;
  }
}
.title::before {
  content: "";
  display: block;
  background-image: url(../images/moon_left.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 19.7333333333vw;
  height: 15.7333333333vw;
  position: absolute;
  top: -3.7333333333vw;
  left: -14.4vw;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .title::before {
    width: 9.7222222222vw;
    height: 7.7083333333vw;
    top: -0.6944444444vw;
    left: -6.9444444444vw;
  }
}
.title_right::before {
  left: auto;
  right: -14.4vw;
  transform: scaleX(-1);
}
@media screen and (min-width: 769px) {
  .title_right::before {
    top: -1.0416666667vw;
    right: -6.9444444444vw;
  }
}

.itembox {
  width: calc(50% - 2vw);
}
@media screen and (min-width: 769px) {
  .itembox {
    width: calc(50% - 1.3888888889vw);
  }
}
.itembox img {
  margin-bottom: 10px;
}
.itembox_name, .itembox_price {
  font-size: 3.7333333333vw;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .itembox_name, .itembox_price {
    font-size: 1.25vw;
    line-height: 1.3888888889;
  }
}
.itembox_price {
  width: fit-content;
  margin: 0 auto;
  border-bottom: solid 1px #60351e;
}

.title_area {
  z-index: 10; /* 文字が画像の下に隠れないように前面へ */
}

.fade-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.fade-container .fade-item {
  position: absolute;
  inset: 0;
  opacity: 1;
}
.fade-container .fade-item img {
  width: 100%;
  object-fit: cover;
}
.fade-container .item1 {
  z-index: 2;
  animation: crossfade 8s ease-in-out infinite;
}
.fade-container .item2 {
  z-index: 1;
}

@keyframes crossfade {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-stagger img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
.fade-in-stagger img.icon-flip {
  transform: translateY(30px) scaleX(-1);
}

.fade-in-stagger.is-visible img {
  opacity: 1;
  transform: translateY(0);
}

.FV {
  position: relative;
  padding: 0;
}
.FV .fv_img {
  height: 116vw;
}
@media screen and (min-width: 769px) {
  .FV .fv_img {
    width: 100%;
    height: 66.6666666667vw;
  }
}
.FV .fv_img::after {
  content: "";
  display: block;
  background-image: url(../images/kumo1.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 32vw;
  height: 24.8vw;
  top: 99.2vw;
  right: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .FV .fv_img::after {
    width: 27.5694444444vw;
    top: 51.8055555556vw;
    height: 20.6944444444vw;
  }
}
.FV .fv_img .title_area {
  position: absolute;
  top: 14.6666666667vw;
  right: 5.3333333333vw;
  display: flex;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .FV .fv_img .title_area {
    top: 5.625vw;
  }
}
.FV .fv_img .title_area::before {
  content: "";
  position: absolute;
  background-image: url("../images/kumo_fv.webp");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 6.1333333333vw;
  height: 2.9333333333vw;
  top: 0;
  left: -3.2vw;
}
.FV .fv_img .title_area h1 {
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10.6666666667vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .FV .fv_img .title_area h1 {
    font-size: 8.3333333333vw;
  }
}
.FV .fv_img .title_area .reserve {
  color: #ffffff;
  font-size: 3.7333333333vw;
  position: absolute;
  bottom: -7.7333333333vw;
  left: 0.8vw;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 769px) {
  .FV .fv_img .title_area .reserve {
    font-size: 2.0833333333vw;
    letter-spacing: 0.05em;
    bottom: -1.25vw;
    left: 1.3888888889vw;
  }
}
.FV .fv_img .title_area img {
  width: 18.1333333333vw;
}
@media screen and (min-width: 769px) {
  .FV .fv_img .title_area img {
    width: 16.6666666667vw;
  }
}
.FV .lead_txt {
  position: relative;
  color: #9e7445;
  font-size: 3.4666666667vw;
  line-height: 2.3076923077;
  letter-spacing: 0.1em;
  margin: 17.3333333333vw auto 13.3333333333vw;
}
@media screen and (min-width: 769px) {
  .FV .lead_txt {
    margin: 6.9444444444vw auto 0;
    font-size: 1.25vw;
    line-height: 2.7777777778;
  }
}
.FV .lead_txt::after {
  content: "";
  display: block;
  background-image: url(../images/kumo2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 29.8666666667vw;
  height: 28.2666666667vw;
  position: absolute;
  bottom: -13.3333333333vw;
  left: -5.3333333333vw;
  z-index: -1;
}
.FV .solid_area {
  border: 1px solid #9e7445;
  border-radius: 15px;
  margin: 0 auto 26.6666666667vw;
  width: 89.3333333333vw;
  padding: 5.3333333333vw 4vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .FV .solid_area {
    border-radius: 30px;
    width: fit-content;
    padding: 3.4722222222vw 6.9444444444vw;
    margin: 6.9444444444vw auto 0;
  }
}
.FV .solid_area::after {
  content: "";
  position: absolute;
  background-image: url("../images/kumo2.webp");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 26.6666666667vw;
  height: 21.3333333333vw;
  bottom: -13.3333333333vw;
  right: -5.3333333333vw;
  transform: scaleX(-1);
}
@media screen and (min-width: 769px) {
  .FV .solid_area::after {
    width: 20.8333333333vw;
    height: 15.2777777778vw;
    right: -24.5833333333vw;
  }
}
.FV .solid_area .lead_reserv {
  width: fit-content;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.8666666667vw;
  column-gap: 5.3333333333vw;
  color: #9e7445;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .FV .solid_area .lead_reserv {
    grid-template-columns: auto 1fr;
    border-radius: 26.6666666667vw;
    font-size: 1.25vw;
    row-gap: 1.3888888889vw;
    column-gap: 2.7777777778vw;
  }
}
.FV .solid_area .lead_reserv dt {
  position: relative;
  padding-left: 6.6666666667vw;
  line-height: 2.7777777778vw;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .FV .solid_area .lead_reserv dt {
    padding-left: 3.4722222222vw;
  }
}
.FV .solid_area .lead_reserv dt::before {
  content: "";
  width: 5.3333333333vw;
  height: 5.3333333333vw;
  background-color: #f0c995;
  border-radius: 50%;
  position: absolute;
  top: 59%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .FV .solid_area .lead_reserv dt::before {
    top: 50%;
    width: 2.7777777778vw;
    height: 2.7777777778vw;
  }
}
.FV .solid_area .lead_reserv dd {
  width: fit-content;
  margin-left: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  .FV .solid_area .lead_reserv dd {
    gap: 1.3888888889vw;
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) {
  .FV .solid_area .lead_reserv dd .bold_data {
    font-size: 1.9444444444vw;
  }
}
.FV .solid_area .lead_reserv dd .bold_sub {
  font-size: 4vw;
}
@media screen and (min-width: 769px) {
  .FV .solid_area .lead_reserv dd .bold_sub {
    font-size: 1.6666666667vw;
  }
}
.FV .solid_area .lead_reserv .bold_data {
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .FV .solid_area .lead_reserv .bold_data {
    font-size: 2.7777777778vw;
  }
}
.FV .solid_area .caution {
  color: #9e7445;
  margin-top: 10px;
  font-size: 3.2vw;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .FV .solid_area .caution {
    font-size: 0.9722222222vw;
    margin: 1.3888888889vw auto 0;
  }
}

.category_list.fade-in-stagger .category_item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.category_list.fade-in-stagger.is-visible .category_item {
  opacity: 1;
  transform: translateY(0);
}
.category_list.fade-in-stagger.is-visible .category_item:nth-child(-n+3) {
  transition-delay: 0s;
}
.category_list.fade-in-stagger.is-visible .category_item:nth-child(n+4) {
  transition-delay: 0.25s;
}

.category_list {
  margin: 13.3333333333vw auto 21.3333333333vw;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  row-gap: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .category_list {
    margin: 3.4722222222vw auto 6.9444444444vw;
    row-gap: 2.0833333333vw;
    width: 63.8888888889vw;
    padding: 0;
  }
}
.category_list .category_item {
  width: 26.6666666667vw;
}
@media screen and (min-width: 769px) {
  .category_list .category_item {
    width: 13.8888888889vw;
  }
}
@media screen and (min-width: 769px) {
  .category_list .category_item p {
    font-size: 1.3888888889vw;
  }
}
.category_list .category_item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6vw;
}
@media screen and (min-width: 769px) {
  .category_list .category_item a {
    gap: 0.6944444444vw;
  }
}
.category .img_area_sp img,
.category .img_area_pc img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition-delay: var(--delay, 0s);
}
.category .img_area_sp.is-visible img,
.category .img_area_pc.is-visible img {
  opacity: 1;
  transform: translateY(0);
}
.category .img_area_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .category .img_area_sp {
    display: block;
  }
  .category .img_area_sp img {
    margin-bottom: 4vw;
  }
  .category .img_area_sp .img_9 {
    width: 42.6666666667vw;
  }
  .category .img_area_sp .img_12 {
    width: 53.3333333333vw;
  }
}
.category .img_area_pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .category .img_area_pc {
    margin-bottom: 13.8888888889vw;
    padding: 0 10.4166666667vw;
    display: flex;
    gap: 2.0833333333vw;
  }
  .category .img_area_pc .flex_wrapper {
    flex-direction: column;
    gap: 2.0833333333vw;
  }
}

#combination {
  padding: 0 5.3333333333vw;
  margin-top: 130px;
}
@media screen and (min-width: 769px) {
  #combination {
    margin-top: 13.8888888889vw;
    padding: 0 10.4166666667vw;
  }
}
#combination .splead {
  width: fit-content;
  margin: 16vw auto;
  border: solid 1px #9e7445;
  border-radius: 50px;
  padding: 0 4.5333333333vw;
}
@media screen and (min-width: 769px) {
  #combination .splead {
    font-size: 1.25vw;
    line-height: 2.7777777778;
    margin: 0 auto 6.9444444444vw;
  }
}
#combination .combi_area {
  margin-bottom: 100px;
}
@media screen and (min-width: 769px) {
  #combination .combi_area {
    margin-bottom: 8.3333333333vw;
  }
  #combination .combi_area .flex_row {
    display: flex;
    gap: 2.7777777778vw;
    margin-bottom: 4.1666666667vw;
  }
  #combination .combi_area .flex_row .txt_area {
    width: 41.6666666667vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
#combination .combi_area .combi_img {
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  #combination .combi_area .combi_img {
    width: 34.7222222222vw;
    margin-bottom: 0vw;
  }
}
@media screen and (min-width: 769px) {
  #combination .combi_area .flex_wrapper {
    gap: 2.7777777778vw;
  }
}
#combination .combi_area .recommend {
  position: relative;
  background-size: 6px 6px;
  background-image: linear-gradient(to right, rgba(196, 178, 153, 0.2) 0.5px, transparent 0.5px), linear-gradient(to bottom, rgba(196, 178, 153, 0.2) 0.5px, transparent 0.5px);
  background-color: #fff9ea;
  padding: 9.0666666667vw 0;
  margin: 16vw auto 26.6666666667vw;
  color: #9e7445;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  #combination .combi_area .recommend {
    padding: 3.1944444444vw 0;
    height: 15.625vw;
    margin: 0;
    background-size: 23px 23px;
    background-image: linear-gradient(to right, #f3ebda 1.5px, transparent 0.5px), linear-gradient(to bottom, #f3ebda 1.5px, transparent 0.5px);
  }
}
#combination .combi_area .recommend::before {
  content: "";
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -6.4vw;
}
@media screen and (min-width: 769px) {
  #combination .combi_area .recommend::before {
    top: -3.125vw;
  }
}
#combination .combi_area .recommend_yellow::before {
  background-image: url(../images/tape_yellow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 32.5333333333vw;
  height: 12.8vw;
}
@media screen and (min-width: 769px) {
  #combination .combi_area .recommend_yellow::before {
    width: 17.7083333333vw;
    height: 7.1527777778vw;
  }
}
#combination .combi_area .recommend_green::before {
  background-image: url(../images/tape_green.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 37.3333333333vw;
  height: 12.5333333333vw;
}
@media screen and (min-width: 769px) {
  #combination .combi_area .recommend_green::before {
    width: 17.7083333333vw;
    height: 6.1111111111vw;
  }
}
#combination .combi_area .recommend_title {
  width: fit-content;
  margin: 0 auto 4vw;
  font-size: 3.2vw;
  letter-spacing: 0.1em;
  border-bottom: solid 1px #9e7445;
  line-height: 1.4166666667;
}
@media screen and (min-width: 769px) {
  #combination .combi_area .recommend_title {
    margin: 0 auto 1.3888888889vw;
    font-size: 1.1111111111vw;
  }
}
#combination .combi_area .recommend_comment {
  letter-spacing: 0.1em;
  line-height: 1.5384615385;
}
@media screen and (min-width: 769px) {
  #combination .combi_area .recommend_comment {
    line-height: 1.6666666667;
  }
}
@media screen and (min-width: 769px) {
  #combination .combi_area .common_btn {
    width: 20.8333333333vw;
  }
}
#combination .combi_area .total {
  background-size: contain;
  background-repeat: no-repeat;
  color: #60351e;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 10.6666666667vw;
  font-size: 3.4666666667vw;
  width: 36vw;
  height: 10.6666666667vw;
  position: absolute;
  bottom: -3.2vw;
}
@media screen and (min-width: 769px) {
  #combination .combi_area .total {
    width: 14.6527777778vw;
    height: 4.4444444444vw;
    font-size: 1.25vw;
    line-height: 4.4444444444vw;
    bottom: -1.875vw;
  }
}
#combination .combi_area .total_right {
  background-image: url(../images/total_right.webp);
  right: -2.6666666667vw;
}
#combination .combi_area .total_left {
  background-image: url(../images/total_left.webp);
  left: -2.6666666667vw;
}
@media screen and (min-width: 769px) {
  #combination .combi_area .total_left {
    left: -0.8333333333vw;
  }
}
#combination .combi_area .total_left p {
  color: #ffffff;
  margin-right: 1.3333333333vw;
}
@media screen and (min-width: 769px) {
  #combination .combi2 .flex_row,
  #combination .combi4 .flex_row {
    flex-direction: row-reverse;
  }
  #combination .combi3 .flex_row .txt_area .flex_wrapper {
    justify-content: space-between;
    gap: 0;
    row-gap: 1.9444444444vw;
  }
  #combination .combi3 .flex_row .txt_area .flex_wrapper .itembox_price {
    margin: 0;
  }
  #combination .combi3 .recommend {
    width: 41.6666666667vw;
    margin: 4.1666666667vw auto;
    padding: 4.1666666667vw;
  }
}

#glass .flex_wrapper,
#woodcraft .flex_wrapper {
  flex-wrap: wrap;
  row-gap: 4vw;
  justify-content: flex-start;
}
@media screen and (min-width: 769px) {
  #glass .flex_wrapper,
  #woodcraft .flex_wrapper {
    justify-content: center;
    row-gap: 4.8611111111vw;
    gap: 2.7777777778vw;
  }
}
#glass .flex_wrapper .series_txt,
#woodcraft .flex_wrapper .series_txt {
  color: #9e7445;
  letter-spacing: 0.1em;
  font-size: 3.4666666667vw;
  line-height: 1.6923076923;
  margin: 13.3333333333vw auto;
}
@media screen and (min-width: 769px) {
  #glass .flex_wrapper .series_txt,
  #woodcraft .flex_wrapper .series_txt {
    font-size: 1.25vw;
    line-height: 2.7777777778;
    margin: 0 auto 4.8611111111vw;
  }
}
#glass .flex_wrapper .itembox,
#woodcraft .flex_wrapper .itembox {
  width: calc(50% - 2vw);
}
@media screen and (min-width: 769px) {
  #glass .flex_wrapper .itembox,
  #woodcraft .flex_wrapper .itembox {
    width: 19.4444444444vw;
  }
}

.series {
  padding: 0 5.3333333333vw;
  margin-bottom: 32vw;
}
@media screen and (min-width: 769px) {
  .series {
    margin-bottom: 8.3333333333vw;
    padding: 0 10.4166666667vw;
  }
}
.series .fade-container {
  height: 102.6666666667vw;
}
.series .fade-container .series_img {
  margin: 0 auto 13.3333333333vw;
}
@media screen and (min-width: 769px) {
  .series .fade-container .series_img {
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .series .flex_row {
    display: flex;
    gap: 2.7777777778vw;
  }
}
@media screen and (min-width: 769px) {
  .series .flex_row .fade-container {
    width: 34.7222222222vw;
    height: 48.6111111111vw;
  }
}
@media screen and (min-width: 769px) {
  .series .flex_row .product_area {
    display: flex;
    flex-direction: column-reverse;
    width: 41.6666666667vw;
    height: 48.6111111111vw;
    justify-content: flex-end;
    gap: 4.8611111111vw;
  }
}
.series .flex_row .product_area .series_txt {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3.4666666667vw;
  line-height: 1.6923076923;
  letter-spacing: 0.1em;
  color: #9e7445;
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 769px) {
  .series .flex_row .product_area .series_txt {
    font-size: 1.25vw;
    line-height: 1.6666666667;
    text-align: left;
    margin-bottom: 0vw;
  }
}
@media screen and (min-width: 769px) {
  .series .flex_row .product_area .flex_wrapper {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2.7777777778vw;
  }
  .series .flex_row .product_area .flex_wrapper .itembox {
    width: 19.4444444444vw;
  }
}

@media screen and (min-width: 769px) {
  #store .flex_row {
    flex-direction: row-reverse;
  }
}
.all {
  position: relative;
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 769px) {
  .all {
    margin: -3.4722222222vw auto 10.4166666667vw;
  }
}
.all::before {
  content: "";
  display: block;
  background-image: url(../images/rabbit_brown.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 8vw;
  height: 8vw;
  position: absolute;
  bottom: 100%;
  right: 10.6666666667vw;
}
@media screen and (min-width: 769px) {
  .all::before {
    width: 2.7777777778vw;
    height: 2.7777777778vw;
    right: 3.4722222222vw;
  }
}

.usagi_img {
  width: 80vw;
  margin: 2.6666666667vw auto;
  position: relative;
}
.usagi_img::before {
  content: "";
  display: block;
  background-image: url(../images/kumo_usa_sp.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 93.3333333333vw;
  height: 76vw;
  position: absolute;
  top: 0;
  left: -8vw;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .usagi_img::before {
    background-image: url(../images/kumo_usa_pc.webp);
    width: 70.0694444444vw;
    height: 18.1944444444vw;
    top: -2.2916666667vw;
    left: -8.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .usagi_img {
    width: 48.6111111111vw;
  }
}
.usagi_img .itembox {
  width: 42.6666666667vw;
}
@media screen and (min-width: 769px) {
  .usagi_img .itembox {
    width: 20.8333333333vw;
  }
}
.usagi_img .usa {
  width: 31.4666666667vw;
  margin-bottom: -10.4vw;
}
@media screen and (min-width: 769px) {
  .usagi_img .usa {
    width: 19.0972222222vw;
    margin-bottom: -6.3888888889vw;
  }
}

.reservation_title {
  position: relative;
  width: fit-content;
  margin: 32vw auto 8vw;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .reservation_title {
    font-size: 3.125vw;
    margin: 10.4166666667vw auto;
  }
}
.reservation_title .bubble {
  white-space: nowrap;
}
.reservation_title img {
  position: absolute;
  top: calc(100% + 1.3333333333vw);
  left: 0;
  width: 100%;
  height: auto;
}
.reservation .flex_wrapper {
  position: relative;
  margin-top: 13.3333333333vw;
  justify-content: center;
  gap: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .reservation .flex_wrapper {
    margin-top: 5.5555555556vw;
  }
}
.reservation .flex_wrapper .freeshipping,
.reservation .flex_wrapper .point {
  width: 61.3333333333vw;
  aspect-ratio: 1;
  background-color: #fff5d3;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .reservation .flex_wrapper .freeshipping,
  .reservation .flex_wrapper .point {
    width: 29.1666666667vw;
    height: 29.1666666667vw;
  }
}
.reservation .flex_wrapper .freeshipping img,
.reservation .flex_wrapper .point img {
  width: 21.3333333333vw;
}
@media screen and (min-width: 769px) {
  .reservation .flex_wrapper .freeshipping img,
  .reservation .flex_wrapper .point img {
    width: 8.3333333333vw;
  }
}
.reservation .flex_wrapper .freeshipping p,
.reservation .flex_wrapper .point p {
  font-size: 5.0666666667vw;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) {
  .reservation .flex_wrapper .freeshipping p,
  .reservation .flex_wrapper .point p {
    font-size: 2.0833333333vw;
  }
}
.reservation .flex_wrapper .freeshipping p .font_bold,
.reservation .flex_wrapper .point p .font_bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 6.6666666667vw;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 769px) {
  .reservation .flex_wrapper .freeshipping p .font_bold,
  .reservation .flex_wrapper .point p .font_bold {
    font-size: 2.7777777778vw;
  }
}
.reservation .flex_wrapper .freeshipping::before {
  content: "";
  display: block;
  background-image: url(../images/kumo_free.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 37.3333333333vw;
  height: 29.3333333333vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .reservation .flex_wrapper .freeshipping::before {
    width: 34.7222222222vw;
    height: 25vw;
    top: 60%;
    left: 0;
  }
}
.reservation .flex_wrapper .point::after {
  content: "";
  display: block;
  background-image: url(../images/kumo_point.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 42.6666666667vw;
  height: 33.3333333333vw;
  position: absolute;
  bottom: -21.3333333333vw;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .reservation .flex_wrapper .point::after {
    width: 31.1111111111vw;
    height: 17.3611111111vw;
    top: -50%;
    right: 0;
  }
}

footer {
  margin-top: 32vw;
  position: relative;
  padding: 0 15px 60px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  footer {
    margin-top: 20.8333333333vw;
  }
}
footer h2 {
  font-size: clamp(1.375rem, 1.239rem + 0.68vw, 1.75rem);
  padding: 15px 0;
  position: relative;
  background-color: #60351e;
  color: #fff5d3;
}
@media screen and (min-width: 769px) {
  footer h2 {
    padding: 19px 0;
  }
}
footer h2::before, footer h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #fff5d3;
}
footer h2::before {
  top: 4px;
}
footer h2::after {
  bottom: 4px;
}
footer h2 span {
  letter-spacing: 0.06em;
}
footer .foot_txt {
  text-align: center;
  line-height: 30px;
  font-size: clamp(0.938rem, 0.869rem + 0.34vw, 1.125rem);
  letter-spacing: 1px;
  padding: 45px 0;
}
@media screen and (min-width: 769px) {
  footer .foot_txt {
    padding: 65px 0;
    line-height: 40px;
  }
}
footer .common_btn {
  background-color: #60351e;
  color: #fff5d3;
  margin: 0 auto 16vw;
}
footer .common_btn:hover {
  background-color: #fff5d3;
  color: #60351e;
}
@media screen and (min-width: 769px) {
  footer .common_btn {
    width: 20.8333333333vw;
    margin: 0 auto 6.9444444444vw;
  }
}
footer .sns_wrap {
  width: fit-content;
  margin: 20px auto;
}

.sns_link {
  margin-top: 20px;
}
.sns_link li a {
  display: flex;
  align-items: center; /* アイコンと文字の上下中央を揃える */
  gap: 12px; /* アイコンと文字の間の隙間 */
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  color: #60351e;
}
.sns_link li a .sns_icon {
  width: 32px; /* アイコンのサイズ */
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #60351e;
}
.sns_link li a .sns_icon img {
  width: 20px;
  height: auto;
}
.sns_link li a i {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.sns_link li:first-child {
  margin-bottom: 10px; /* 上のアイコンと下のアイコンの間の隙間 */
}

/*========= ページトップのためのCSS ===============*/
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(150px);
  }
}
/*画像の切り替えと動き*/
#page-top a {
  /*aタグの形状*/
  display: block;
  width: 70px;
  height: 70px;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.7rem;
  white-space: nowrap;
  /*背景画像の指定*/
  background: url("../images/pagetop.webp") no-repeat center;
  background-size: 70%; /* ← 画像だけ要素の60%サイズに縮小 */
  background-position: center; /* ← 縮小した画像を中央に配置 */
  background-color: #f0c995;
  border-radius: 50%;
  padding: 10px;
}
@media screen and (min-width: 769px) {
  #page-top a {
    width: 100px;
    height: 100px;
  }
}

#page-top.floatAnime a {
  width: 70px;
  height: 100px;
  /*背景画像の指定*/
  background: url("../images/pagetop_up.webp") no-repeat center;
  background-size: contain;
  /*アニメーションの指定*/
  animation: floatAnime 2s linear infinite;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  #page-top.floatAnime a {
    width: 100px;
    height: 130px;
  }
}

@keyframes floatAnime {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  25% {
    transform: translateX(-6px);
    opacity: 1;
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(6px);
    opacity: 1;
  }
}
/*Page Topと書かれたテキストの位置*/
#page-top span {
  position: absolute;
  bottom: -20px;
  right: 9px;
  color: #60351e;
}
@media screen and (min-width: 769px) {
  #page-top span {
    bottom: -20px;
    right: 22px;
  }
}/*# sourceMappingURL=style.css.map */