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

/*----------------
  common
----------------*/
body {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  background: #f2f2f2;
  color: #4d4d4d;
  overflow-x: hidden;
  letter-spacing: 0;
  font-feature-settings: "palt" 1;
}

.font-g {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
}

.font-en {
  font-family: "Libertinus Serif", serif;
  font-style: normal;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.common-inner {
  width: calc(100% - 4.25rem);
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .common-inner {
    width: calc(100% - 2.5rem);
  }
}

h2.common-tl {
  display: flex;
  flex-direction: column;
  font-size: 1.625em;
  font-weight: 500;
  letter-spacing: 0.13em;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  h2.common-tl {
    font-size: min(5.5vw,1.56em);
    margin-bottom: 30px;
  }
}

h2.common-tl span {
  font-style: italic;
  font-size: 0.46em;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #008042;
  margin-bottom: 0.7em;
}

@media (max-width: 768px) {
  h2.common-tl span {
    font-size: 0.4em;
  }
}

.common-linkbtn {
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.875em;
  border-radius: 7px;
  background-color: #006e42;
  letter-spacing: 0.05em;
  margin: 0 auto;
  height: 114px;
  position: relative;
  transition: opacity 0.2s;
}

@media (max-width: 768px) {
  .common-linkbtn {
    max-width: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: min(3.7vw, 0.9785em);
    border-radius: 3px;
    background-color: #006e42;
    letter-spacing: 0.05em;
    margin: 0 auto;
    height: 57px;
    position: relative;
    transition: opacity 0.2s;
  }
}

.common-linkbtn:hover {
  opacity: 0.8;
}

.common-linkbtn::after {
  content: "";
  width: 42px;
  height: 10px;
  background-image: url("/sanchoku-box/assets/images/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 25px;
  top: calc(50% - 5px);
}

@media (max-width: 768px) {
  .common-linkbtn::after {
    display: none;
  }
}

@media (min-width: 769px) {
  .pc_none{
    display: none !important;
  }
}

@media (max-width: 768px) {
  .sp_none{
    display: none !important;
  }
}

/*----------------
  header
----------------*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.35s ease;
}

.header.top-hidden {
  transform: translateY(-85px);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.15rem;
  height: 85px;
  background-color: #fff;
}

@media (max-width: 768px) {
  .header.top-hidden {
    transform: translateY(-45px);
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.6em 0 1.25rem;
    height: 45px;
    background-color: #fff;
  }
}

.logo {
  width: 228px;
  line-height: 0;
  margin-right: auto;
}

@media (max-width: 768px) {
  .logo {
    width: 114px;
  }
}

.header-top .contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 1em 1.25em;
  background: #008042;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: opacity 0.2s;
  flex-shrink: 0;
  margin-left: 11.5px;
}

@media (max-width: 768px) {
  .header-top .contact-btn {
    font-size: min(2vw,0.6em);
    margin-left: 8px;
  }
}

.header-top .contact-btn:hover {
  opacity: 0.8;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.25rem;
  height: 74px;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
}

header.is-active .header-nav {
  background-color:rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
}

@media (max-width: 768px) {
  .header-nav {
    height: 50px;
    padding: 0 1.25em;
  }

  .header-nav.open {
    background-color: #006e42;
  }

  header.is-active .header-nav.open {
    background-color: #006e42 !important;
  }
}

.nav-link {
  font-size: 0.875em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
  letter-spacing: 0.1em;
}

header.is-active .nav-link {
  color:#4d4d4d;
}

@media (max-width: 768px) {
  .nav-link {
    display: none;
  }
}

.header-nav .contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 1em 3.5em;
  background: #fff;
  color: #4d4d4d;
  font-size: 0.875em;
  font-weight: 500;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: opacity 0.2s;
  flex-shrink: 0;
  margin-left: auto;
  letter-spacing: 0.1em;
}

header.is-active .header-nav .contact-btn {
  background:#4d4d4d;
  color:#fff;
}

.header-nav.open .contact-btn{
  background-color:#fff !important;
  color:#4d4d4d !important;
}


@media (max-width: 768px) {
  .header-nav .contact-btn{
    font-size: 0.8125em;
    margin-left: 0;
    padding: 0.5em 2.25em;
  }
}

.header-nav .contact-btn:hover {
  opacity: 0.8;
}

.nav-link:hover {
  opacity: 0.8;
}

.hamburger-btn {
  display: none;
  align-items: center;
  gap: 7px;
  background: none;
  cursor: pointer;
  color: #1a1a18;
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
    flex-direction: column;
  }
}

.hamburger-btn .lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 35px;
}

.hamburger-btn .lines span {
  display: block;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}

header.is-active .hamburger-btn .lines span {
  background: #4d4d4d;
}

.hamburger-btn #menu-label {
  font-size: 0.75em;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.1em;
}

header.is-active .hamburger-btn #menu-label{
  color: #4d4d4d;
}

.header-nav.open .hamburger-btn #menu-label{
  color: #fff !important;
}

.hamburger-btn.open .lines span:nth-child(1) {
  transform: translateY(3.25px) rotate(15deg);
  background: #fff;
}

.hamburger-btn.open .lines span:nth-child(2) {
  transform: translateY(-3.25px) rotate(-15deg);
  background: #fff;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.overlay.open {
  display: block;
  pointer-events: auto;
}

.overlay.visible {
  opacity: 1;
}

.overlay-inner {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  overflow-y: auto;
  background: #006e42;
  display: flex;
  flex-direction: column;
}

.overlay-section-label {
  font-size: 0.875em;
  color: #fff;
  opacity: 0.6;
  padding: 2.5em 1.5em 0.7em;
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.overlay .nav-item {
  padding: 1em 1.5rem;
  font-size: 0.875em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.overlay .nav-item::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 0;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.overlay .nav-item[target="_blank"]::after {
  content: "";
  display: inline-block;
  background-image: url("/sanchoku-box/assets/images/blank_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 12px;
  border: none;
  transform: rotate(0);
}

/*----------------
  main visual
----------------*/
:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: auto;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 1;
}

.hero__video.video2 {
  opacity: 0;
}

.hero__video.video2.is-active {
  opacity: 1;
}

.hero__video-fallback {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 20% 50%, #1a1a2e 0%, transparent 60%),
    radial-gradient(ellipse 80% 100% at 80% 30%, #16213e 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 60% 80%, #0f3460 0%, transparent 50%),
    linear-gradient(135deg, #0a0a14 0%, #0d1117 40%, #0a0e1a 100%);
  animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  0% {
    filter: brightness(1);
  }

  100% {
    filter: brightness(1.15) hue-rotate(10deg);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

.hero__content {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 10;
  text-align: center;
  padding: 85px 2.15rem 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero__content {
    width: 100%;
    padding: 45px 1.25rem 0;
  }
}

.hero__title {
  overflow: hidden;
}

.hero__title-inner {
  display: block;
  opacity: 0;
  font-weight: 300;
  font-size: 3.125em;
  letter-spacing: 0.2em;
  color: #fff;
  line-height: 1.7;
  white-space: nowrap;
}

.hero__title-inner .line {
  display: inline;
}

@media (max-width: 768px) {
  .hero__title-inner {
    white-space: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1em;
    font-size: min(10vw, 3rem);
    margin-left: 0.5em;
  }

  .hero__title-inner .line {
    display: block;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.hero__scroll-text {
  font-size: 0.875rem;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
}

.hero__scroll-chevron-wrap {
  animation: chevronBounce 1.6s ease-in-out 1.2s infinite;
}

.hero__scroll-chevron {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 1);
  transform: rotate(45deg);
}

@keyframes chevronBounce {
  0% {
    transform: translateY(-3px);
  }

  50% {
    transform: translateY(3px);
  }

  100% {
    transform: translateY(-3px);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(110%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(110%);
  }
}

.hero__title-inner.is-enter {
  animation: slideUp 1.1s var(--ease-out-expo) 0.1s forwards;
}

.hero__title-inner.is-exit {
  animation: slideDown 0.8s var(--ease-out-expo) forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.content-section {
  position: relative;
  z-index: 2;
  padding: 110px 2.15rem 110px 42.5%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2.5em;
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .content-section {
    padding: 85px 1.25rem;
  }
}

.content-section p {
  color: #fff;
  font-size: 1.25em;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.8em;
}

@media (max-width: 768px) {
  .content-section p {
    font-size: 0.9375em;
  }
}

/*----------------
  vegetables
----------------*/
.vegetables {
  position: relative;
  z-index: 2;
  background-color: #fff;
  width: 100%;
  display: block;
  padding-top: 200px;
}

@media (max-width: 768px) {
  .vegetables {
    padding-top: 165px;
  }
}

.vegetables .parallax-block {
  position: relative;
  overflow: hidden;
  border-left: none;
  border-right: none;
  border-radius: 0;
  height: 480px;
  border-bottom: 1px solid #fff;
}

.vegetables .parallax-bg {
  position: absolute;
  top: -100px;
  bottom: -100px;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.vegetables .parallax-bg--bg1 {
  background-image: url("/sanchoku-box/assets/images/vegetables_bg01.webp");
}

.vegetables .parallax-bg--bg2 {
  background-image: url("/sanchoku-box/assets/images/vegetables_bg02.webp");
}

.vegetables .parallax-bg--bg3 {
  background-image: url("/sanchoku-box/assets/images/vegetables_bg03.webp");
}

.vegetables .parallax-bg--bg4 {
  background-image: url("/sanchoku-box/assets/images/vegetables_bg04.webp");
}

.vegetables .content {
  position: absolute;
  inset: 0;
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .vegetables .content {
    padding: 60px 2rem 2rem;
    justify-content: flex-start;
  }
}

.vegetables .content .common-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vegetables .content .common-inner h3 {
  display: flex;
  flex-direction: column;
  font-size: 2.5em;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .vegetables .content .common-inner h3 {
    font-size: 1.56em;
  }
}

.vegetables .content .common-inner h3 span {
  font-style: italic;
  font-size: 0.3em;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0.7em;
  opacity: 0.65;
}

@media (max-width: 768px) {
  .vegetables .content .common-inner h3 span {
    font-size: 0.4em;
  }
}

.vegetables .content .common-inner p.tx {
  font-size: 1.125em;
  line-height: 1.8em;
  letter-spacing: 0.15em;
  color: #fff;
  padding-top: 2.5em;
  margin-top: 0.5em;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .vegetables .content .common-inner p.tx {
    font-size: 0.9375em;
    line-height: 1.7em;
    padding-top: 1.5em;
    width: 100%;
  }
}

.vegetables .bottom-caption {
  text-align: right;
  padding: 1em 4.25em 0;
  font-size: 0.75em;
  color: #666;
  background-color: #f2f2f2;
}

@media (max-width: 768px) {
  .vegetables .bottom-caption {
    padding: 1em 1.25em 0;
    font-size: 0.625em;
  }
}

/*----------------
  set
----------------*/
.set {
  padding-top: 160px;
  padding-bottom: 80px;
  background-color: #f2f2f2;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .set {
    padding-top: 0;
    padding-bottom: 80px;
  }
}

.set.box2 {
  padding-top: 0;
}

.set .parallax-section {
  position: relative;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .set .parallax-section {
    margin-bottom: 20px;
  }
}

.set .parallax-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  position: relative
}

.set .text-col {
  width: 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .set .text-col {
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
  }
}

.set .text-col.box2 {
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: row;
  padding: 25px 0 25px 30px;
  background-color: #fff;
  position: relative;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .set .text-col.box2 {
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 30px 1.25em 20px;
  background-color: #fff;
  position: relative;
  margin-bottom: 0;
}
}

.set .text-col p.bubble {
  font-size: 1.25em;
  letter-spacing: 0em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
  margin-left: 0.5em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .set .text-col p.bubble {
    font-size: min(3vw, 0.9375em);
    margin: 0 auto;
    margin-bottom: 0.7em;
  }
}

.set .text-col p.bubble::before {
  content: "";
  border-left: 1px solid #4d4d4d;
  height: 1.3em;
  transform: rotate(-25deg);
  display: inline-block;
}

.set .text-col p.bubble::after {
  content: "";
  border-left: 1px solid #4d4d4d;
  height: 1.3em;
  transform: rotate(25deg);
  display: inline-block;
}

.set .text-col h3 {
  font-size: 2.5em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  white-space: nowrap;
  margin-bottom: 1em;
}

@media (max-width: 768px) {
  .set .text-col h3 {
    font-size: min(7vw, 1.875em);
    text-align: center;
    margin-bottom: 0.5em;
  }
}

@media (max-width: 768px) {
  .set .text-col.box2 h3 {
    font-size: min(6vw, 1.675em);
    text-align: center;
    margin-bottom: 0.5em;
  }
}

.set .text-col.box2 h3 {
  margin-bottom: 0.5em;
}

.set .text-col.box2 .tx {
  font-size: 1.125em;
  letter-spacing: 0.02em;
  line-height: 1.7;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .set .text-col.box2 .tx {
  font-size:min(3.5vw,0.875em);
  letter-spacing: 0.05em;
  line-height: 1.7;
  white-space: wrap;
  margin-bottom: 15px;
}
}

.set .text-col.box2 .tx span {
  font-size: 0.77em;
  margin: 0 -0.5em;
}

.set .text-col.box2 .tx em {
  font-style: normal;
  font-size: 1.5em;
  color: #c1272d;
  line-height: 1;
}

.set .text-col .infocont {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .set .text-col .infocont {
    align-items: center;
  }
}

.set .text-col.box2 .infocont {
  width: 100%;
  position: relative;
  z-index: 2;
}

.set .text-col .infocont .price-cont {
  display: flex;
  align-items: flex-end;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #b3b3b3;
}

.set .text-col.box2 .infocont .price-cont {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.set .text-col .infocont .price-cont .right {
  font-size: 1.625em;
  letter-spacing: 0.1em;
  font-feature-settings: "palt" 1;
  position: relative;
}

@media (max-width: 768px) {
  .set .text-col .infocont .price-cont .right {
    font-size: min(4.5vw, 1.25em);
  }
}

@media (max-width: 768px) {
  .set .text-col.box2 .infocont .price-cont .right {
    font-size: min(4vw, 1.15em);
  }
}

.set .text-col .infocont .price-cont .right span {
  font-size: 0.53em;
  letter-spacing: 0.05rem;
  position: relative;
  display: inline-block;
}

.set .text-col .infocont .price-cont .right span::after {
  content: "";
  width: 100%;
  border-bottom: 1px solid #4d4d4d;
  position: absolute;
  top: calc(50% + 0.2em);
  left: 0;
}

.set .text-col .infocont .price-cont .right span.bracket {
  margin: 0 -0.5em;
  font-size: 1em;
}

.set .text-col .infocont .price-cont .right span.bracket::after {
  display: none;
}

.set .text-col .infocont .price-cont .right span em {
  font-size: 1.64em;
  font-style: normal;
  color: #c1272d;
}

.set .text-col .infocont .price-cont .center {
  font-size: 1.625em;
  line-height: 1;
}

@media (max-width: 768px) {
  .set .text-col .infocont .price-cont .center {
    font-size: min(4.5vw, 1.25em);
  }
}

@media (max-width: 768px) {
  .set .text-col.box2 .infocont .price-cont .center {
    font-size: min(4vw, 1.15em);
  }
}

.set .text-col .infocont .price-cont .center span {
  font-size: 2.692em;
  color: #c1272d;
}

.set .text-col .infocont .price-cont .left {
  font-size: 1.1em;
  margin: 0 -0.2em;
}

@media (max-width: 768px) {
  .set .text-col .infocont .price-cont .left {
    font-size: min(3.5vw, 0.8125em);
  }
}

@media (max-width: 768px) {
  .set .text-col.box2 .infocont .price-cont .left {
    font-size: min(3vw, 0.7125em);
  }
}

.set .text-col .infocont .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.set .text-col .infocont .caption {
  font-size: 1.125em;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .set .text-col .infocont .caption {
    font-size: min(4vw, 0.875em);
  }
}

.set .text-col .infocont .arrow {
  width: 103px;
  margin: 1.2em auto;
}

@media (max-width: 768px) {
  .set .text-col .infocont .arrow {
    width: 80px;
  }
}

.set .text-col .infocont .img {
  width: 448px;
}

@media (max-width: 768px) {
  .set .text-col .infocont .img {
    width: 315px;
  }
}

.set .text-col.box2 .phcont {
  width: 505px;
  position: absolute;
  top: 30px;
  right: 0;
}

@media (max-width: 768px) {
  .set .text-col.box2 .phcont {
  width: 100%;
  position: relative;
  top: 0;
  right: 0;
  margin-top:15px;
}
}

.set .text-col.box2 .caption {
  text-align: right;
  font-size: 0.75em;
  color: #666;
  margin-top: 2.5em;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  position: absolute;
  right: 30px;
  bottom: 25px;
}

@media (max-width: 768px) {
  .set.box2 .caption {
  text-align: right;
  font-size: 0.75em;
  color: #666;
  margin-top: 2.5em;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  position: absolute;
  right: 30px;
  bottom: 25px;
}
}

/* ── Image column ── */
.set .image-col {
  width: 50%;
  display: flex;
  position: relative;
  z-index: 0;
  order: 1;
}

@media (max-width: 768px) {
  .set .image-col {
    width: 100%;
  }
}

.set .img-card {
  position: absolute;
  border-radius: 0;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.05s linear;
}

.set .img-card:nth-child(1) {
  width: 220px;
  top: 10%;
  right: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .set .img-card:nth-child(1) {
    width: 125px;
    top: 0%;
    right: 20%;
    z-index: 2;
  }
}

.set .img-card:nth-child(2) {
  width: 300px;
  top: 10%;
  left: 30px;
  z-index: 1;
}

@media (max-width: 768px) {
  .set .img-card:nth-child(2) {
    width: 170px;
    top: 10%;
    left: 0;
    z-index: 1;
  }
}

.set .img-card:nth-child(3) {
  width: 260px;
  bottom: 0;
  right: -140px;
  z-index: 0;
}

@media (max-width: 768px) {
  .set .img-card:nth-child(3) {
    width: 150px;
    bottom: 0;
    right: -1.25rem;
    z-index: 0;
  }
}

.set .img-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .set .parallax-section {
    padding: 4rem 0 0;
  }

  /* 1カラム・ブロック積み */
  .set .parallax-inner {
    display: block;
    padding: 0 0;
  }

  /* 画像エリア上・高さ確保 */
  .set .image-col {
    height: 370px;
    margin-bottom: 10rem;
    margin-top: 3rem
  }

  /* テキストは通常フロー・z-indexを有効にするためrelative */
  .set .text-col {
    position: relative;
    padding-right: 0;
    z-index: 10;
  }
}

.set .setlist {
  padding: 40px 20px 20px;
  background-color: #fff;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .set .setlist {
    padding: 20px 20px 20px;
    margin-bottom: 0;
  }
}

.set .setlist h4 {
  font-size: 1.625em;
  text-align: center;
  margin-bottom: 1em;
  font-weight: 500;
  letter-spacing: 0.13em;
}

@media (max-width: 768px) {
  .set .setlist h4 {
    font-size: 1.0625em;
  }
}

.set .setlist ul {
  display: flex;
  list-style: none;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .set .setlist ul {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 0;
    gap: 20px 0;
  }
}

.set .setlist ul li {
  width: 20%;
}

@media (max-width: 768px) {
  .set .setlist ul li {
    width: 33.3333%;
  }
}

.set .setlist ul li img {
  padding: 0 17px;
}

@media (max-width: 768px) {
  .set .setlist ul li img {
    padding: 0 10px;
  }
}

.set .setlist ul li figcaption {
  font-size: 1.125em;
  margin-top: 0.5em;
  text-align: center;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .set .setlist ul li figcaption {
    font-size: 0.6875em;
  }
}

.set .setlist .caption {
  text-align: right;
  font-size: 0.75em;
  color: #666;
  margin-top: 2.5em;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .set .setlist .caption {
    display: none;

  }
}

.set .spcaption {
  text-align: left;
  font-size: 0.625em;
  color: #666;
  margin-top: 2.5em;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  display: none;
}

@media (max-width: 768px) {
  .set .spcaption {
    display: block;
    margin-top: 1em;
    margin-bottom: 40px;
  }
}

.set .bottom-caption {
  text-align: left;
  font-size: 0.75em;
  color: #666;
  margin-top: 70px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .set .bottom-caption {
    font-size: 0.625em;
    margin-top: 40px;
  }
}

/*----------------
  reason
----------------*/
.reason {
  position: relative;
  z-index: 2;
  background-color: #fff;
  width: 100%;
  display: block;
  padding-top: 200px;
  padding-bottom: 200px;
}

@media (max-width: 768px) {
  .reason {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}

.reason .scroll-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 0 0;
  margin-bottom: 200px;
}

@media (max-width: 768px) {
  .reason .scroll-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 0 0;
    margin-bottom: 100px;
  }
}

.reason .scroll-wrapper .scroll-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.reason .scroll-wrapper .img-card {
  width: 494px;
  height: 494px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
}

@media (max-width: 768px) {
  .reason .scroll-wrapper .img-card {
    width: 280px;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2px;
  }
}

.reason .scroll-wrapper .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.reason #scroller {
  height: auto;
}


.reason #stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 57% 43%;
}


.reason #img-panel {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}


.reason .img-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}


.reason .img-bg {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  height: 130%;
  will-change: transform;
}

.reason .img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


.reason .img-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reason .img-layer-grid-placeholder {
  display: none;
}

.reason .img-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184, 149, 90, .15);
  pointer-events: none;
}


.reason #statusbar {
  position: absolute;
  bottom: 32px;
  left: 60px;
  right: 105px;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 10;
  gap: 0;
}

.reason #statusbar-track {
  display: none;
}

.reason .sb-seg {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  flex: 1;
}

.reason .sb-tick {
  width: 1px;
  height: 8px;
  background: rgba(28, 26, 22, .25);
  flex-shrink: 0;
  transition: background .3s;
}

.reason .sb-seg:first-child .sb-tick {
  background: transparent;
  width: 0;
}

.reason .sb-gap {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(28, 26, 22, .12);
  overflow: hidden;
}

.reason .sb-gap-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: #000;
  transition: width .08s linear;
}

.reason .sb-tick-bottom {
  width: 1px;
  height: 8px;
  background: rgba(28, 26, 22, .25);
  flex-shrink: 0;
}

.reason .sb-label {
  display: none;
}


.reason #txt-panel {
  position: relative;
  overflow: hidden;
}

.reason .txt-layer {
  position: absolute;
  inset: 0;
  padding: 0 120px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.reason p.tx {
  font-size: 1.125em;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.reason .sp-blocks {
  display: none;
}


@media (max-width: 768px) {

  .reason #scroller {
    display: none;
  }

  .reason .sp-blocks {
    display: block;
  }

  .reason .sp-block {
    display: flex;
    flex-direction: column;
  }

  .reason .sp-block-img {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .reason .sp-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .reason .sp-block-body {
    padding: 80px 3.15rem 40px;
    background: var(--cream);
  }

  .reason .sp-block-body h2 {
    font-size: 1.25em;
  }

  .reason .sp-block-body .tx {
    font-size: 0.875em;
  }

}

/*----------------
  movie-bg
----------------*/
.movie-bg {
  width: 100%;
  height: 100dvh;
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
}

.movie-bg .common-inner {
  height: 100dvh;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: #fff;
}

@media (max-width: 768px) {
  .movie-bg .common-inner {
    padding: 50px 0;
  }
}

.movie-bg .common-inner h2 {
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}

@media (max-width: 768px) {
  .movie-bg .common-inner h2 {
    font-size: 1.8125em;
  }
}

.movie-bg .common-inner p.tx {
  font-size: 1.125em;
  line-height: 1.7;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {

  .movie-bg .common-inner p.tx {
    font-size: 0.875em;
  }
}

/*----------------
  voice
----------------*/
.voice {
  padding-top: 200px;
  padding-bottom: 120px;
  background-color: #f2f2f2;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .voice {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}

.voice .track {
  padding-bottom: 50px;
  margin: 0 auto;
  width: 1000px;
}

@media (max-width: 768px) {
  .voice .track {
    padding-bottom: 0;
    margin: 0 auto;
    width: calc(100% - 2.5rem);
  }
}

.voice .inner {
  display: flex;
  gap: 2px;
  width: calc(494px * 3 + ((100vw - 1000px)/ 2));
}

@media (max-width: 768px) {
  .voice .inner {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }
}

.voice .card {
  width: 494px;
  box-sizing: border-box;
  background: #fff;
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

@media (max-width: 768px) {
  .voice .card {
    width: 100%;
    gap: 1.5em;
  }
}

.voice .card .tx {
  font-size: 1.125em;
  line-height: 1.7em;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .voice .card .tx {
    font-size: 0.875em;
  }
}

.voice .card .name {
  font-size: 0.875em;
  line-height: 1.7em;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .voice .card .name {
    font-size: 0.75em;
  }
}

.voice .simplebar-track {
  background-color: #ccc;
  height: 5px;
  width: 370px;
  margin: 0 auto;
}

.voice .simplebar-scrollbar {
  background-color: #4d4d4d;
  height: 5px;
}

#sb .simplebar-content-wrapper {
  cursor: grab;
}

/*----------------
  campaign
----------------*/
.campaign {
  padding-top: 200px;
  padding-bottom: 120px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .campaign {
  padding-top: 160px;
  padding-bottom: 70px;
}

}

.campaign .flexbox {
  display: flex;
  gap: 2px;
  padding-top: 50px;
}

@media (max-width: 768px) {
  .campaign .flexbox {
  flex-direction: column;
  gap: 60px;
  padding-top: 50px;
}
}

.campaign .flexbox .box {
  width: 100%;
  background-color: #f0ebe6;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 90px 20px 40px;
}

@media (max-width: 768px) {
  .campaign .flexbox .box {
  padding: 60px 20px 30px;
}
}

.campaign .flexbox .box::after {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  border: 1px solid #ded3c8;
}

@media (max-width: 768px) {
  .campaign .flexbox .box::after {
  content: "";
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 1;
  border: 1px solid #ded3c8;
}
}

.campaign .flexbox .box .icon {
  width: 124px;
  position: absolute;
  top: -50px;
  z-index: 2;
}

@media (max-width: 768px) {
  .campaign .flexbox .box .icon {
  width: 85px;
  position: absolute;
  top: -40px;
  z-index: 2;
}
}

.campaign .flexbox .box h3 {
  font-size: 2.375em;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .campaign .flexbox .box h3 {
  font-size: min(6.5vw,1.625em);
  margin-bottom: 10px;
}
}

.campaign .flexbox .box h3::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  border-top: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
}

@media (max-width: 768px) {
.campaign .flexbox .box h3::after {
  height: 4px;
}
}

.campaign .flexbox .box h3 span {
  font-size: 1.73em;
  color: #c1272d;
}

.campaign .flexbox .box h3 span em {
  font-size: 0.75em;
  font-style: normal;
}

.campaign .flexbox .box .subtl {
  font-size: 1.875em;
  letter-spacing: 0.05em;
  line-height: 1.7em;
  text-align: center;
  line-height: 1;
}

@media (max-width: 768px) {
  .campaign .flexbox .box .subtl {
  font-size: 1.25em;
}
}

.campaign .flexbox .box .tx {
  font-size: 1.125em;
  letter-spacing: 0.05em;
  line-height: 1.7em;
  text-align: center;
}

@media (max-width: 768px) {
  .campaign .flexbox .box .tx {
  font-size: 0.75em;
}
}


/*----------------
  area
----------------*/
.area {
  position: relative;
  z-index: 2;
  background-image: url("/sanchoku-box/assets/images/area_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .area {
  padding-bottom: 90px;
}
}

@media (max-width: 768px) {
  .area .map {
    width:100%;
    overflow: auto;
  }

  .area .map img{
    width:775px;
  }
}
.area .title-area {
  position: absolute;
  top: 100px;
  width: 100%;
  z-index: 2;
}

@media (max-width: 768px) {
  .area .title-area {
  top: 70px;
}
}

.area .title-area h2 {
  color: #fff;
}

.area .title-area h2 span {
  color: #fff;
  opacity: 0.65;
}

.area .tx-area {
  position: absolute;
  bottom: 70px;
  width: 100%;
  z-index: 2;
  text-align: center;
  font-size: 1.125em;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.7em;
}

@media (max-width: 768px) {
  .area .tx-area {
  bottom: 20px;
  font-size: 0.875em;
}
}

.area .simplebar-track {
  background-color: #4d4d4d;
  border-radius: 9999px;
  height: 5px;
  width: 230px;
  margin: 0 auto;
}

.area .simplebar-scrollbar {
  background-color: #fff;
  height: 5px;
  border-radius: 9999px;
}

.area .simplebar-scrollbar::before{
  display: none;
}

/*----------------
  contact
----------------*/
.contact {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding-top: 200px;
  padding-bottom: 140px;
}

@media (max-width: 768px) {
  .contact {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}

.contact .linkflex {
  display: flex;
  gap: 2px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .contact .linkflex {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }
}

.contact .linkflex a {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .contact .linkflex a {
    font-size: min(5vw, 1.25em);
  }

}

.contact .linkflex a::after {
  position: relative;
  top: auto;
  right: auto;
  left: 10px;
}

@media (max-width: 768px) {
  .contact .linkflex a::after {
    display: block;
    width: 30px;
    height: 10px;
  }
}

.contact .subtl {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.contact .subtl span {
  font-size: 1.625em;
  letter-spacing: 0.13em;
  display: inline-block;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #4d4d4d;
}

@media (max-width: 768px) {
  .contact .subtl span {
    font-size: 1em;
  }
}

.contact .telbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .contact .telbox {
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  width:83%;
  margin: 0 auto 10px;
}
}

.contact .tx {
  font-size: 1.25em;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (max-width: 768px) {
  .contact .tx {
  font-size: 0.75em;
}
}

.contact .caption {
  font-size: 1.25em;
  letter-spacing: 0.05em;
  border: 1px solid #4d4d4d;
  padding: 5px;
}

@media (max-width: 768px) {
  .contact .caption {
  font-size: 0.75em;
}
}

.contact .telbox .tel-link {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  font-size: 5em;
  color: #006e42;
  line-height: 1;
  top: -0.1em;
  position: relative;
}

@media (max-width: 768px) {
  .contact .telbox .tel-link {
    color: #006e42;
    pointer-events: auto;
    order: 1;
    font-size: min(11vw,3em);
    text-align: center;
    width: 100%;
  }
}

/*----------------
  footer
----------------*/

footer {
  position: relative;
  z-index: 2;
  display: flex;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
  }
}

footer .logoarea {
  padding: 60px 2.15rem 30px;
  background: #006e42;
  width: 40%;
  color: #fff;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  footer .logoarea {
    width: 100%;
    padding: 40px 1.25rem 30px;
  }
}

footer .logoarea p.caption {
  font-size: 0.875em;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  footer .logoarea p.caption {
    font-size: 0.685em;
  }
}

footer .logoarea p.name {
  font-size: 2em;
  letter-spacing: 0.2em;
  margin-top: 0.8em;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  footer .logoarea p.name {
    font-size: 1.25em;
    margin-top: 0.5em;
  }
}

footer .logoarea p.copy {
  font-size: 0.75em;
  letter-spacing: 0.05em;
  padding-top: 1em;
  margin-top: auto;
}

@media (max-width: 768px) {
  footer .logoarea p.copy {
    display: none;
  }
}

footer .infoarea {
  padding: 60px 2.15rem 30px;
  background: #20805a;
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 768px) {
  footer .infoarea {
    padding: 0 0 40px;
    background: #006e42;
    width: 100%;
    align-items: center;
  }
}

footer .infoarea ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

footer .infoarea ul li {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

@media (max-width: 768px) {
  footer .infoarea ul li {
    width: 100%;
    gap: 0;
  }

}

footer .infoarea ul li span {
  font-size: 0.875em;
  color: #fff;
  opacity: 0.6;
  padding: 0 0 0.7em;
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5em;
}

@media (max-width: 768px) {
  footer .infoarea ul li span {
    font-size: 0.75em;
    color: #fff;
    padding: 0 1.25rem 0.7em;
    margin-bottom: 0;
  }
}

footer .infoarea ul li a {
  font-size: 0.875em;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.2s;
}

@media (max-width: 768px) {
  footer .infoarea ul li a {
    font-size: 0.75em;
    letter-spacing: 0.05em;
    padding: 1.25em 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}

footer .infoarea ul li a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  footer .infoarea ul li a[target="_blank"]::after {
    content: "";
    display: inline-block;
    background-image: url("/sanchoku-box/assets/images/blank_icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 12px;
    border: none;
    transform: rotate(0);
  }
}

footer .infoarea .bottomarea {
  margin-top: 140px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  color: #fff;
}

@media (max-width: 768px) {
  footer .infoarea .bottomarea {
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #fff;
  }
}

footer .infoarea .bottomarea p.caption {
  font-size: 0.875em;
  letter-spacing: 0.05em;
  line-height: 1.7em;
}

@media (max-width: 768px) {
  footer .infoarea .bottomarea p.caption {
    font-size: 0.75em;
  }
}

footer .infoarea .bottomarea .tel-link {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  font-size: 2.6875em;
}

@media (max-width: 768px) {
  footer .infoarea .bottomarea .tel-link {
    color: #fff;
    pointer-events: auto;
  }
}

footer .infoarea .bottomarea p.time {
  font-size: 0.6875em;
  letter-spacing: 0.05em;
  line-height: 1.7em;
  margin-top: 1em;
}

footer .infoarea .bottomarea p.copy {
  display: none;
}

@media (max-width: 768px) {
  footer .infoarea .bottomarea p.copy {
    display: block;
    font-size: 0.6875em;
    margin-top: 30px;
    letter-spacing: 0.05em;
  }
}