:root {
  --color-green: #005e32;
  --color-light-green: #00935d;
  --color-beige: #f7f2e6;
}
.mv {
  /* position: fixed; */
  position: relative;
  width: 100%;
  min-width: 1360px;
  overflow: hidden;
  height: 454px;
  background-color: var(--color-beige);

  z-index: 99;
}
.page_upcycle_202604 .upcycle_mv_rel {
  position: relative;
  width: 100%;
  padding-top: 454px;
  overflow: hidden;
  background-color: #f0ecd9;
  background-image: url(../img_upcycle_20260325/mv_base.png);
  background-size: 100% 50%;
  background-repeat: repeat-y;
}

.mv .mv_bg {
  position: absolute;
  width: 1920px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.page_upcycle_202604 .mv .back_pre {
  position: absolute;
  top: 77px;
  left: calc(350 / 1920 * 100%);
}
.mv .mv_copy {
  position: absolute;
  width: 674px;
  top: 132px;
  left: calc(260 / 1920 * 100%);
}
.mv .mv_copy_caption {
  position: absolute;
  bottom: 30px;
  left: calc(280 / 1920 * 100%);
  font-size: 25px;
  color: var(--color-green);
}
.mv .menu_box {
  /* position: absolute; */
  position: fixed;
  top: 75px;
  right: calc(70 / 1920 * 100%);
}
.mv .menu_box .menu_lists {
  list-style-type: none;
  padding: 0;
  text-align: center;
  margin-bottom: 0;
}
.mv .menu_box .menu_lists .menu_list {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 27px;
}
.mv .menu_box .menu_lists .menu_list:last-child {
  margin-bottom: 37px;
}
.mv .menu_box .menu_lists .menu_list > a {
  color: var(--color-green);
}
.mv .menu_box .upcycle_box {
  width: 100%;
}
.mv .menu_box .upcycle_box .icon_upcycle {
  width: 73px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}
.mv .menu_box .upcycle_box .icon_upcycle_copy {
  font-size: 17px;
  line-height: 1.4;
  text-align: center;
  color: var(--color-green);
}
.product_lists_block {
  /* padding-top: 454px; */
  background-color: var(--color-beige);
  width: 100%;
  min-width: 1360px;
  padding-bottom: 100px;
}

.product_lists {
  list-style-type: none;
  padding: 0;
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
.product_lists .product_list {
  width: calc(100% / 4);
  border: solid 1px #231815;
  border-right: none;
  position: relative;
  padding-top: calc(100% / 4);
}
.product_lists .product_list:last-child {
  border-right: solid 1px #231815;
}
.product_lists .product_list .product_list_pic {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.product_lists .product_list .product_list_pic::before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 0;
}
.product_lists .product_list .product_list_pic > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.product_lists .product_list .product_list_pic > img.close {
  /* display: block; */
  opacity: 1;
  transition: opacity 0.25s;
}
.product_lists .product_list:hover .product_list_pic > img.close {
  /* display: none; */
  opacity: 0;
  transition: opacity 0.25s;
}
.product_lists .product_list .product_list_pic > img.open {
  /* display: none; */
  opacity: 0;
  transition: opacity 0.25s;
}
.product_lists .product_list:hover .product_list_pic > img.open {
  /* display: block; */
  opacity: 1;
  transition: opacity 0.25s;
}
.product_lists .product_list .product_list_ttl {
  position: absolute;
  top: 22px;
  left: 36px;
  /* font-size: 27px; */
  font-size: clamp(1rem, -0.67rem + 1.96vw, 1.688rem);
  color: #231815;
}
.product_lists .product_list .product_list_num {
  position: absolute;
  width: 95px;
  height: 24px;
  top: 28px;
  right: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-light-green);
  border-radius: 15px;
  color: #fff;
  font-size: 16px;
}
.product_lists .product_list .product_list_miru {
  position: absolute;
  bottom: 18px;
  width: 100%;
  text-align: center;
  /* font-size: 24px; */
  font-size: clamp(1rem, -0.214rem + 1.43vw, 1.5rem);
  color: var(--color-light-green);
  display: none;
}

.product_lists .product_list:hover .product_list_miru {
  display: block;
}

.product_lists_block .product_lists_caption {
  font-size: 19px;
  color: var(--color-green);
  text-align: center;
  margin-bottom: 48px;
}

/* オーバーレイ（背景の暗幕） */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1; /* 非表示時は背面 */
  opacity: 0;
  transition: opacity 0.25s; /* opacityだけトランジション */
}

.modal-overlay.is-open {
  z-index: 9999; /* 表示時は前面 */
  opacity: 1;
}

.modal-content {
  transform: translateY(-16px);
  transition: transform 0.25s;
}

.modal-overlay.is-open .modal-content {
  transform: translateY(0);
}

/* モーダルのウィンドウ部分 */
.modal-content {
  position: relative;
  background: #fff;
  border-radius: 25px;
  border: solid 1px #000;
  /* padding: 104px 141px 80px 141px; */
  padding: 50px 60px 50px 67px;
  width: 612px;
  max-width: 612px;
  /* max-height: 80vh; */
  max-height: 446px;
  overflow-y: auto;

  transform: translateY(-16px);
  transition: transform 0.25s;
}
.modal-content.yoko_pic {
  padding-right: 35px;
}

/* 閉じるボタン */
.modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  /* font-size: 24px; */
  cursor: pointer;
  padding: 0;
  width: 31px;
  height: 31px;
}
.modal-close .close_line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: #000;
}
.modal-close .close_line:first-child {
  transform: translateY(-50%) rotate(45deg);
}
.modal-close .close_line:last-child {
  transform: translateY(-50%) rotate(-45deg);
}
.modal-content .product_pic_rel {
  position: relative;
  width: 100%;
  height: 0;
}
.modal-content .product_pic_rel .product_pic {
  width: 280px;
  position: absolute;
  /* left: 10px; */
  left: 0;
}

.modal-content .ttl_product {
  font-size: 19px;
  margin-bottom: 30px;
}
.modal-content .product_items {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 215px;
  margin-bottom: 40px;
}
.modal-content .product_items .product_item_left {
  display: flex;
  justify-content: space-between;
}
.modal-content .product_items .product_item_left .spec_box_items {
  width: 160px;
  display: flex;
  justify-content: end;
  align-items: start;
  flex-direction: column;
}
.modal-content .product_items .product_item_left .spec_box_items .spec_box {
  margin-bottom: 12px;
  text-align: center;
  /* width: 85px; */
  width: 55px;
}
.modal-content
  .product_items
  .product_item_left
  .spec_box_items
  .spec_box:last-child {
  margin-bottom: 0;
}
.modal-content
  .product_items
  .product_item_left
  .spec_box_items
  .spec_box
  .spec_ttl {
  font-size: 14px;
  text-align: center;
  margin-bottom: 4px;
  text-wrap-mode: nowrap;
}
.modal-content
  .product_items
  .product_item_left
  .spec_box_items
  .spec_box
  .spec_ttl.txt_indent_-10px {
  text-indent: -10px;
}
.modal-content
  .product_items
  .product_item_left
  .spec_box_items
  .spec_box
  .spec_pic {
  width: 55px;
  margin-left: auto;
  margin-right: auto;
  height: 55px;
  border-radius: 30px;
  overflow: hidden;
  border: solid 1px #000;
}
.modal-content .product_items .product_item_pic {
  width: 327px;
  height: 431px;
}
.modal-content .product_items .product_item_right {
  /* width: 210px; */
  width: 195px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.modal-content .product_items .product_item_right.w_210px {
  width: 210px;
}
.modal-content
  .product_items
  .product_item_right
  .product_con_upper
  .product_num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 78px;
  height: 20px;
  background-color: var(--color-light-green);
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 13px;
}
.modal-content
  .product_items
  .product_item_right
  .product_con_upper
  .product_num.center {
  margin-left: auto;
  margin-right: auto;
}
.modal-content .product_items .product_item_right .product_con_upper > h5 {
  font-size: 16px;
  line-height: 1.45;
  text-wrap-mode: nowrap;
}
.modal-content
  .product_items
  .product_item_right
  .product_con_upper
  > h5.center {
  text-align: center;
}
.modal-content .product_items .product_item_right .product_con_mid {
  font-size: 14px;
  margin-left: 20px;
}
.modal-content .product_items .product_item_right .product_con_mid.center {
  text-align: center;
}
.modal-content .product_items .product_item_right .product_con_mid .fs_l {
  font-size: 18px;
  margin-right: 7px;
}
.modal-content .product_items .product_item_right .product_con_lower .meyasu {
  font-size: 10px;
  margin-left: 34px;
  margin-bottom: 5px;
}
.modal-content
  .product_items
  .product_item_right
  .product_con_lower
  .meyasu.center {
  margin-left: 128px;
}
.modal-content .product_items .product_item_right .product_con_lower .meyasu {
  font-size: 11px;
  margin-left: 34px;
  margin-bottom: 2px;
}
.modal-content
  .product_items
  .product_item_right
  .product_con_lower
  .ryokin_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
  width: 118px;
}
.modal-content
  .product_items
  .product_item_right
  .product_con_lower
  .ryokin_box.center {
  margin-left: 70px;
}
.modal-content
  .product_items
  .product_item_right
  .product_con_lower
  .ryokin_box:last-child {
  margin-bottom: 0;
}
.modal-content
  .product_items
  .product_item_right
  .product_con_lower
  .ryokin_box
  .satsu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 20px;
  border: solid 1px #000;
  border-radius: 8px;
  margin-right: 10px;
  font-size: 10px;
}
.modal-content
  .product_items
  .product_item_right
  .product_con_lower
  .ryokin_box
  .price {
  font-size: 16px;
  line-height: 1;
}
.modal-content .btn_to_order {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-light-green);
  width: 154px;
  height: 41px;
  border-radius: 24px;
  font-size: 16px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}

.otoiawase_btn_block {
  width: 498px;
  margin-left: auto;
  margin-right: auto;
}
.otoiawase_btn_block .btn_otoiawase {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 68px;
  border: solid 2px #005e32;
  border-radius: 34px;
  margin-bottom: 28px;
}
.otoiawase_btn_block .btn_otoiawase .btn_otoiawase_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.otoiawase_btn_block .btn_otoiawase .btn_otoiawase_items .icon_mail {
  width: 52px;
  margin-right: 18px;
}
.otoiawase_btn_block .btn_otoiawase .btn_otoiawase_items .kuwashiku {
  font-size: 1.6rem;
  color: #005e32;
  font-weight: bold;
}
.otoiawase_btn_block .product_check {
  display: flex;
  justify-content: center;
  align-items: center;
}
.otoiawase_btn_block .product_check .product_all {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--color-green);
  margin-right: 10px;
}
.otoiawase_btn_block .product_check .btn_to_product {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 94px;
  height: 34px;
  border-radius: 25px;
  background-color: #005e32;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}
.otoiawase_btn_block .product_check .btn_to_product {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 94px;
  height: 34px;
  border-radius: 25px;
  background-color: #005e32;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

/* .bg_01_block {
  width: 100%;
  min-width: 1360px;
  height: 550px;
  overflow: hidden;
  background-image: url(../img_upcycle_20260325/bg_01_bg.webp);
}
.bg_01_block .bg_01 {
  width: 100%;
  height: 100%;
  padding: 100%;
  background-image: url(../img_upcycle_20260325/bg_01.webp);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg_01_rel {
  position: relative;
  height: 0;
} */
 .bg_01_block {
  position: relative; /* 追加 */
  width: 100%;
  min-width: 1360px;
  height: 550px;
  overflow: hidden;
  background-image: url(../img_upcycle_20260325/bg_01_bg.webp);
}

.bg_01_block .bg_01_rel {
  position: relative; /* 追加：白box を前面に */
  z-index: 2;
}

.bg_01_block .bg_01 {
  position: absolute;            /* 変更 */
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;                  /* コンテナより縦長にして移動余地を作る */
  background-image: url(../img_upcycle_20260325/bg_01.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;        /* GPUレイヤー化のヒント */
  transform: translate3d(0, 0, 0);
  z-index: 1;
  /* 削除：padding: 100%; */
  /* 削除：background-attachment: fixed; */
}

/* アクセシビリティ：モーション低減設定への配慮 */
@media (prefers-reduced-motion: reduce) {
  .bg_01_block .bg_01 {
    transform: none !important;
  }
}

.upcycle_box_white {
  position: absolute;
  width: 200px;
  top: 172px;
  left: 50%;
  transform: translateX(-50%);
}
.upcycle_box_white .icon_upcycle {
  width: 107px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}
.upcycle_box_white .icon_upcycle_copy {
  font-size: 25px;
  line-height: 1.4;
  text-align: center;
  color: #fff;
}
.attempt_block {
  width: 100%;
  min-width: 1360px;
  height: 1400px;
  padding-top: 120px;
  padding-bottom: 177px;
  background-image: url(../img_upcycle_20260325/attempt_2x.webp);
  background-size: 100% 100%;
  background-color: var(--color-beige);
}
.attempt_block .attempt {
  width: 1360px;
  margin-left: auto;
  margin-right: auto;
}
.attempt_block .attempt .ttl_attempt {
  width: 716px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 133px;
}
.attempt_block .attempt .attempt_items {
  display: flex;
  justify-content: space-between;
}
.attempt_block .attempt .attempt_items .attempt_pic {
  width: 640px;
  display: flex;
  justify-content: center;
  align-items: start;
}
.attempt_block .attempt .attempt_items .attempt_pic .attempt_pic_01 {
  width: 330px;
}
.attempt_block .attempt .attempt_items .attempt_con {
  width: calc(100% - 640px);
  color: var(--color-green);
}
.attempt_block .attempt .attempt_items .attempt_con > h4 {
  font-size: 35px;
  margin-bottom: 28px;
}
.attempt_block .attempt .attempt_items .attempt_con > p {
  font-size: 25px;
  line-height: 2;
  margin-bottom: 54px;
}
.attempt_block .attempt .attempt_items .attempt_con > p.lh_s {
  line-height: 1.5;
}
.attempt_block .attempt .attempt_items .attempt_con > p .attempt_copy_01 {
  width: 339px;
  display: inline-block;
  padding-bottom: 10px;
}
.attempt_block .attempt .attempt_items .attempt_con > p .attempt_copy_02 {
  width: 650px;
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
}
.attempt_block_02 {
  width: 100%;
  min-width: 1360px;
  background-color: var(--color-beige);
  padding-top: 130px;
  padding-bottom: 120px;
}
.attempt_block_02 .direction_items {
  display: flex;
  justify-content: space-between;
  width: 1360px;
  margin-left: auto;
  margin-right: auto;
}
.attempt_block_02 .direction_items .direction_con {
  width: calc(100% - 590px);
  color: var(--color-green);
}
.attempt_block_02 .direction_items .direction_con > h4 {
  font-size: 52px;
  line-height: 1.52;
  margin-bottom: 40px;
}
.attempt_block_02 .direction_items .direction_con > p {
  font-size: 25px;
  line-height: 2.16;
}
.attempt_block_02 .direction_items .direction_pic {
  display: flex;
  justify-content: center;
  align-items: start;
  margin-top: 20px;
}
.attempt_block_02 .direction_items .direction_pic .attempt_pic_02 {
  width: 590px;
}

/* .bg_02_block {
  width: 100%;
  min-width: 1360px;
  height: 398px;
  overflow: hidden;
}
.bg_02_block .bg_02 {
  width: 100%;
  height: 100%;
  padding: 100%;
  background-image: url(../img_upcycle_20260325/bg_02.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg_02_rel {
  position: relative;
  height: 0;
} */
  .bg_02_block {
  position: relative; /* 追加 */
  width: 100%;
  min-width: 1360px;
  height: 398px;
  overflow: hidden;
}

.bg_02_block .bg_02_rel {
  position: relative; /* 追加：白box を前面に */
  z-index: 2;
}

.bg_02_block .bg_02 {
  position: absolute;            /* 変更 */
  top: 0;
  left: 0;
  width: 100%;
  height: 250%;                  /* コンテナより縦長にして移動余地を作る */
  background-image: url(../img_upcycle_20260325/bg_02.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;        /* GPUレイヤー化のヒント */
  transform: translate3d(0, 0, 0);
  z-index: 1;
  /* 削除：padding: 100%; */
  /* 削除：background-attachment: fixed; */
}
.bg_02_rel .upcycle_box_white {
  top: 96px;
}

.about_upcycle_block {
  position: relative;
  width: 100%;
  min-width: 1360px;
  overflow: hidden;
  height: 1096px;
  background-color: var(--color-light-green);
}
.about_upcycle_block .about_upcycle_pic_01 {
  position: absolute;
  width: calc(693px / 1920px * 100%);
  height: 524px;
  overflow: hidden;
  top: 0;
  right: 0;
}
.about_upcycle_block .about_upcycle_pic_01::before {
  content: "";
  display: block;
  position: relative;
  width: 693px;
}
.about_upcycle_block .about_upcycle_pic_01 > img {
  display: block;
  width: 693px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.about_upcycle_block .about_upcycle_pic_02 {
  position: absolute;
  width: calc(693px / 1920px * 100%);
  height: 578px;
  overflow: hidden;
  top: 522px;
  right: 0;
}
.about_upcycle_block .about_upcycle_pic_02::before {
  content: "";
  display: block;
  position: relative;
  width: 693px;
}
.about_upcycle_block .about_upcycle_pic_02 > img {
  display: block;
  width: 693px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.about_upcycle_block .about_upcycle {
  width: calc(1226px - 280px);
  height: 100%;
  position: absolute;
  left: calc(280 / 1920 * 100%);
  top: 0;
  padding-top: 118px;
  background-color: var(--color-light-green);
}
.about_upcycle_block .about_upcycle .about_upcycle_copy_01 {
  width: 714px;
  margin-bottom: 36px;
}
.about_upcycle_block .about_upcycle > p {
  font-size: 25px;
  line-height: 2;
  margin-bottom: 36px;
  color: #fff;
}
.about_upcycle_block .about_upcycle > p.mb_18px {
  margin-bottom: 18px;
}
.about_upcycle_block .about_upcycle .about_upcycle_copy_02 {
  width: 675px;
  margin-bottom: 46px;
}

.about_shisaku_block {
  width: 100%;
  min-width: 1360px;
  padding-top: 132px;
  padding-bottom: 112px;
  background-color: var(--color-beige);
}
.about_shisaku_block .about_shisaku_items {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.about_shisaku_block .about_shisaku_items .about_shisaku_pic_01 {
  width: calc(710 / 1920 * 100%);
  height: 482px;
  overflow: hidden;
}
.about_shisaku_block .about_shisaku_items .about_shisaku_pic_01::before {
  content: "";
  display: block;
  position: relative;
  width: 710px;
}
.about_shisaku_block .about_shisaku_items .about_shisaku_pic_01 > img {
  display: block;
  width: 710px;
}
.about_shisaku_block .about_shisaku_items .about_shisaku_con {
  width: calc(810px + 100px);
  padding-left: 100px;
  margin-right: calc(280 / 1920 * 100%);
}
.about_shisaku_block
  .about_shisaku_items
  .about_shisaku_con
  .ttl_about_shisaku {
  width: 398px;
  margin-top: 14px;
  margin-bottom: 26px;
}
.about_shisaku_block .about_shisaku_items .about_shisaku_con > h4 {
  font-size: 30px;
  margin-bottom: 52px;
}
.about_shisaku_block .about_shisaku_items .about_shisaku_con > p {
  font-size: 22px;
  line-height: 2.25;
  text-wrap-mode: nowrap;
}
.about_shisaku_block .case_check_block {
  width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 28px;
}

.case_check {
  padding-right: 40px;
  display: flex;
  justify-content: end;
  align-items: center;
}
.case_all {
  font-size: 1.3rem;
  font-weight: bold;
  color: #005e32;
  margin-right: 20px;
}
.case_check .btn_to_case {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 137px;
  height: 50px;
  border-radius: 25px;
  background-color: #005e32;
  color: #fff;
}
.case_check .btn_to_case .buy {
  font-size: 2rem;
  font-weight: bold;
}
