/* =========================================================
   HELPER STATION SENJU NO MORI
   helper.css
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

.helper-page {
  --hp-ink: #26312b;
  --hp-text: #465149;
  --hp-muted: #6f7973;

  --hp-green: #465e50;
  --hp-green-soft: #6f8778;
  --hp-green-pale: #e7ebe5;

  --hp-cream: #f5f2eb;
  --hp-cream-deep: #ece8de;

  --hp-white: #fbfaf7;

  --hp-line: rgba(54, 70, 61, .17);

  position: relative;

  overflow: clip;

  background: var(--hp-white);

  color: var(--hp-text);

  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
}


/* =========================================================
   BASE
========================================================= */

.helper-page *,
.helper-page *::before,
.helper-page *::after {
  box-sizing: border-box;
}

.helper-page img {
  display: block;

  max-width: 100%;
}

.helper-page a {
  color: inherit;

  text-decoration: none;
}

.hp-inner {
  width: min(1180px, calc(100% - 80px));

  margin-inline: auto;
}

.hp-section {
  padding:
    clamp(135px, 13vw, 205px)
    0;
}


/* =========================================================
   COMMON TYPOGRAPHY
========================================================= */

.hp-eyebrow {
  margin:
    0 0 28px;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 12px;

  font-weight: 400;

  line-height: 1;

  letter-spacing: .23em;

  color: var(--hp-green-soft);
}

.hp-section-head {
  margin-bottom:
    clamp(70px, 8vw, 115px);
}

.hp-section-head h2,
.hp-philosophy-head h2,
.hp-life-head h2,
.hp-team-head h2,
.hp-target-head h2,
.hp-limits-head h2,
.hp-information-head h2,
.hp-contact-copy h2 {
  margin: 0;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size:
    clamp(40px, 4.7vw, 66px);

  font-weight: 300;

  line-height: 1.62;

  letter-spacing: .045em;

  color: var(--hp-ink);
}


/* =========================================================
   HERO
========================================================= */

.hp-hero {
  position: relative;

  height: 100svh;
  min-height: 720px;

  overflow: hidden;

  background: #202823;
}


/* PHOTO */

.hp-hero-photo {
  position: absolute;

  inset: 0;
}

.hp-hero-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}

.hp-hero-shade {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(20, 29, 24, .57) 0%,
      rgba(20, 29, 24, .28) 48%,
      rgba(20, 29, 24, .07) 100%
    );
}


/* COPY */

.hp-hero-copy {
  position: absolute;

  z-index: 5;

  left:
    max(
      40px,
      calc((100vw - 1180px) / 2)
    );

  top: 50%;

  width:
    min(850px, calc(100% - 100px));

  transform:
    translateY(-47%);

  color: #fff;
}

.hp-hero-label {
  margin:
    0 0 35px;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 12px;

  letter-spacing: .23em;

  color:
    rgba(255, 255, 255, .72);
}


/* HERO TITLE */

.hp-typing-title {
  min-height: 2.9em;

  margin: 0;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size:
    clamp(48px, 6.3vw, 88px);

  font-weight: 300;

  line-height: 1.55;

  letter-spacing: .055em;

  color: #fff;
}

.hp-typing-output {
  position: relative;
}


/* TYPE CURSOR */

.hp-typing-output.is-typing::after {
  content: "";

  display: inline-block;

  width: .85em;
  height: 1px;

  margin-left: .12em;

  vertical-align: .13em;

  background:
    rgba(255,255,255,.88);

  animation:
    hpCursor 1s ease-in-out infinite;
}

@keyframes hpCursor {

  0%,
  100% {
    opacity: .25;
  }

  50% {
    opacity: 1;
  }

}


/* NAME */

.hp-hero-name {
  margin:
    37px 0 0;

  font-size: 13px;

  line-height: 1.8;

  letter-spacing: .09em;

  color:
    rgba(255,255,255,.86);
}


/* SCROLL */

.hp-hero-scroll {
  position: absolute;

  z-index: 6;

  right: 43px;
  bottom: 40px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 13px;

  color: #fff;
}

.hp-hero-scroll span {
  writing-mode: vertical-rl;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;

  letter-spacing: .22em;

  color:
    rgba(255,255,255,.78);
}

.hp-hero-scroll i {
  position: relative;

  display: block;

  width: 1px;
  height: 62px;

  overflow: hidden;

  background:
    rgba(255,255,255,.28);
}

.hp-hero-scroll i::after {
  content: "";

  position: absolute;

  left: 0;
  top: -100%;

  width: 1px;
  height: 100%;

  background: #fff;

  animation:
    hpScrollLine 2.1s
    ease-in-out
    infinite;
}

@keyframes hpScrollLine {

  0% {
    transform:
      translateY(0);
  }

  65%,
  100% {
    transform:
      translateY(200%);
  }

}


/* =========================================================
   LOCAL NAV
========================================================= */

.hp-nav {
  position: relative;

  z-index: 20;

  background:
    rgba(251,250,247,.96);

  border-bottom:
    1px solid var(--hp-line);
}

.hp-nav-inner {
  width:
    min(1180px, calc(100% - 80px));

  margin-inline: auto;

  display: flex;

  align-items: center;

  justify-content: center;

  gap:
    clamp(27px, 4vw, 60px);

  min-height: 72px;
}

.hp-nav a {
  position: relative;

  padding:
    28px 0;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;

  letter-spacing: .18em;

  color: var(--hp-muted);

  transition:
    color .35s ease;
}

.hp-nav a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 19px;

  width: 0;
  height: 1px;

  background:
    var(--hp-green);

  transform:
    translateX(-50%);

  transition:
    width .35s ease;
}

.hp-nav a:hover {
  color: var(--hp-green);
}

.hp-nav a:hover::after {
  width: 100%;
}


/* =========================================================
   PHILOSOPHY
========================================================= */

.hp-philosophy {
  background: var(--hp-white);
}

.hp-philosophy-head {
  margin-bottom:
    clamp(75px, 9vw, 125px);
}

.hp-philosophy-grid {
  display: grid;

  grid-template-columns:
    minmax(280px, .85fr)
    minmax(380px, 1.15fr);

  gap:
    clamp(70px, 10vw, 155px);

  align-items: start;
}

.hp-philosophy-lead p {
  margin: 0;

  font-family:
    "Noto Serif JP",
    serif;

  font-size:
    clamp(25px, 2.5vw, 36px);

  font-weight: 300;

  line-height: 1.95;

  letter-spacing: .045em;

  color: var(--hp-green);
}

.hp-philosophy-text {
  padding-left: 30px;

  border-left:
    1px solid var(--hp-line);
}

.hp-philosophy-text p {
  margin:
    0 0 28px;

  font-size: 16px;

  line-height: 2.25;

  letter-spacing: .035em;

  color: var(--hp-text);
}

.hp-philosophy-text p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   STATEMENT / TYPING
========================================================= */

.hp-statement {
  display: flex;
  align-items: center;
  min-height: 72vh;
  padding: clamp(120px, 12vw, 185px) 0;
  background: var(--hp-cream);
}

.hp-statement-typing {
  width: min(980px, 100%);
  min-height: 190px;
  margin: 0 auto;
  text-align: center;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 300;
}

.hp-statement-typing-line {
  margin: 0;
  font-size: clamp(31px, 3.6vw, 52px);
  line-height: 1.85;
  letter-spacing: .045em;
}

.hp-statement-typing-line-1 {
  color: var(--hp-ink);
}

.hp-statement-typing-line-2 {
  margin-top: 12px;
  color: var(--hp-green);
}

.hp-statement-output {
  position: relative;
}

.hp-statement-output.is-typing::after {
  content: "";
  display: inline-block;
  width: .72em;
  height: 1px;
  margin-left: .12em;
  vertical-align: .16em;
  background: currentColor;
  opacity: .8;
  animation: hpStatementCursor .9s ease-in-out infinite;
}

@keyframes hpStatementCursor {
  0%, 100% { opacity: .22; }
  50% { opacity: .9; }
}

@media (max-width: 700px) {
  .hp-statement {
    min-height: 62vh;
    padding: 100px 0;
  }

  .hp-statement-typing {
    min-height: 160px;
  }

  .hp-statement-typing-line {
    font-size: clamp(26px, 7.4vw, 36px);
    line-height: 1.8;
    letter-spacing: .03em;
  }

  .hp-statement-typing-line-2 {
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-statement-output.is-typing::after {
    animation: none;
  }
}

/* =========================================================
   ABOUT
========================================================= */

.hp-about {
  background: var(--hp-white);
}

.hp-about-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(350px, .92fr);

  gap:
    clamp(70px, 9vw, 135px);

  align-items: center;
}


/* PHOTO */

.hp-about-photo {
  position: relative;

  min-height:
    clamp(500px, 52vw, 710px);

  overflow: hidden;

  background: #dddcd6;
}

.hp-about-photo img {
  width: 100%;
  height: 100%;

  position: absolute;

  inset: 0;

  object-fit: cover;

  transition:
    transform 1.5s
    cubic-bezier(.2,.7,.2,1);
}

.hp-about-photo:hover img {
  transform:
    scale(1.025);
}


/* IMAGE CURTAIN */

.hp-photo-curtain {
  position: absolute;

  z-index: 5;

  inset: 0;

  background:
    var(--hp-cream);

  transform-origin:
    right center;

  transition:
    transform 1.15s
    cubic-bezier(.76,0,.24,1);
}

.hp-image-reveal.is-visible
.hp-photo-curtain {
  transform:
    scaleX(0);
}


/* COPY */

.hp-about-copy p {
  margin:
    0 0 29px;

  font-size: 16px;

  line-height: 2.25;

  letter-spacing: .035em;

  color: var(--hp-text);
}

.hp-about-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   ABOUT FACTS
========================================================= */

.hp-about-facts {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0,1fr));

  margin-top:
    clamp(95px, 10vw, 145px);

  border-top:
    1px solid var(--hp-line);

  border-bottom:
    1px solid var(--hp-line);
}

.hp-fact {
  position: relative;

  min-height: 235px;

  padding:
    38px 27px;

  border-right:
    1px solid var(--hp-line);
}

.hp-fact:last-child {
  border-right: 0;
}

.hp-fact-main {
  display: block;

  margin-bottom: 8px;

  font-family:
    "Times New Roman",
    serif;

  font-size:
    clamp(28px, 3vw, 42px);

  line-height: 1;

  color: var(--hp-green);
}

.hp-fact-sub {
  display: block;

  min-height: 34px;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 9px;

  line-height: 1.5;

  letter-spacing: .17em;

  color: var(--hp-muted);
}

.hp-fact p {
  position: absolute;

  left: 27px;
  bottom: 31px;

  margin: 0;

  font-size: 14px;

  line-height: 1.9;

  color: var(--hp-text);
}


/* =========================================================
   SUPPORT
========================================================= */

.hp-support-section {
  padding:
    clamp(140px, 14vw, 215px)
    0;

  background:
    #e8ebe5;
}

.hp-support-main {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0,1fr));

  gap: 1px;

  background:
    rgba(60,78,67,.16);

  border:
    1px solid rgba(60,78,67,.16);
}

.hp-support-card {
  min-height: 590px;

  padding:
    clamp(40px, 5vw, 70px);

  background:
    #f8f7f3;
}

.hp-support-head {
  display: flex;

  align-items: baseline;

  justify-content: space-between;

  padding-bottom: 25px;

  border-bottom:
    1px solid var(--hp-line);
}

.hp-support-head span {
  font-family:
    "Times New Roman",
    serif;

  font-size: 20px;

  color:
    var(--hp-green-soft);
}

.hp-support-head p {
  margin: 0;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;

  letter-spacing: .19em;

  color: var(--hp-muted);
}

.hp-support-card h3 {
  margin:
    48px 0 22px;

  font-family:
    "Noto Serif JP",
    serif;

  font-size:
    clamp(29px, 3vw, 42px);

  font-weight: 300;

  color: var(--hp-ink);
}

.hp-support-lead {
  max-width: 420px;

  margin:
    0 0 48px;

  font-size: 16px;

  line-height: 2;

  color: var(--hp-text);
}

.hp-support-list {
  display: flex;

  flex-wrap: wrap;

  gap:
    10px 8px;
}

.hp-support-list span {
  display: inline-flex;

  align-items: center;

  min-height: 38px;

  padding:
    8px 14px;

  border:
    1px solid var(--hp-line);

  font-size: 13px;

  line-height: 1.5;

  color: var(--hp-green);
}


/* =========================================================
   DAILY LIFE
========================================================= */

.hp-life-section {
  padding:
    clamp(145px, 14vw, 220px)
    0;

  background:
    var(--hp-white);
}

.hp-life-head {
  margin-bottom:
    clamp(80px, 9vw, 125px);
}

.hp-day-list {
  border-top:
    1px solid var(--hp-line);
}

.hp-day-item {
  display: grid;

  grid-template-columns:
    150px
    minmax(230px, .7fr)
    minmax(300px, 1fr);

  gap:
    clamp(30px, 5vw, 75px);

  align-items: center;

  min-height: 150px;

  padding:
    35px 0;

  border-bottom:
    1px solid var(--hp-line);

  transition:
    padding-left .4s ease,
    background .4s ease;
}

.hp-day-item:hover {
  padding-left: 18px;

  background:
    rgba(231,235,229,.36);
}

.hp-day-time {
  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;

  letter-spacing: .2em;

  color: var(--hp-green-soft);
}

.hp-day-item h3 {
  margin: 0;

  font-family:
    "Noto Serif JP",
    serif;

  font-size:
    clamp(23px, 2.3vw, 31px);

  font-weight: 300;

  color: var(--hp-ink);
}

.hp-day-item p {
  margin: 0;

  font-size: 15px;

  line-height: 2;

  color: var(--hp-text);
}


/* =========================================================
   TEAM CARE
========================================================= */

.hp-team-section {
  padding:
    clamp(145px, 14vw, 220px)
    0;

  background:
    var(--hp-green);

  color: #fff;
}

.hp-team-section .hp-eyebrow {
  color:
    rgba(255,255,255,.55);
}

.hp-team-head {
  margin-bottom:
    clamp(85px, 9vw, 130px);
}

.hp-team-head h2 {
  color: #fff;
}

.hp-team-grid {
  display: grid;

  grid-template-columns:
    minmax(320px, .8fr)
    minmax(450px, 1.2fr);

  gap:
    clamp(70px, 10vw, 150px);

  align-items: start;
}


/* TEAM COPY */

.hp-team-copy {
  padding-left: 28px;

  border-left:
    1px solid rgba(255,255,255,.22);
}

.hp-team-copy p {
  margin:
    0 0 27px;

  font-size: 16px;

  line-height: 2.2;

  letter-spacing: .035em;

  color:
    rgba(255,255,255,.78);
}

.hp-team-copy p:last-child {
  margin-bottom: 0;
}


/* SERVICES */

.hp-team-services {
  border-top:
    1px solid rgba(255,255,255,.22);
}

.hp-team-service {
  display: grid;

  grid-template-columns:
    55px 1fr 150px;

  gap: 25px;

  align-items: center;

  padding:
    29px 0;

  border-bottom:
    1px solid rgba(255,255,255,.22);
}

.hp-team-service > span {
  font-family:
    "Times New Roman",
    serif;

  font-size: 16px;

  color:
    rgba(255,255,255,.48);
}

.hp-team-service > p {
  margin: 0;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;

  letter-spacing: .19em;

  color:
    rgba(255,255,255,.52);
}

.hp-team-service h3 {
  margin: 0;

  font-family:
    "Noto Serif JP",
    serif;

  font-size: 22px;

  font-weight: 300;

  text-align: right;

  color: #fff;
}


/* =========================================================
   LIMITS
========================================================= */

.hp-limits-section {
  padding:
    clamp(120px, 12vw, 180px)
    0;

  background:
    var(--hp-cream);
}

.hp-limits-grid {
  display: grid;

  grid-template-columns:
    minmax(350px, 1fr)
    minmax(350px, .8fr);

  gap:
    clamp(70px, 10vw, 150px);

  align-items: start;
}

.hp-limits-head h2 {
  font-size:
    clamp(34px, 3.7vw, 51px);
}

.hp-limits-copy {
  padding-left: 28px;

  border-left:
    1px solid var(--hp-line);
}

.hp-limits-copy p {
  margin:
    0 0 27px;

  font-size: 16px;

  line-height: 2.15;

  color: var(--hp-text);
}

.hp-limits-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   TARGET
========================================================= */

.hp-target-section {
  padding:
    clamp(135px, 13vw, 200px)
    0;

  background:
    var(--hp-white);
}

.hp-target-head {
  margin-bottom:
    clamp(70px, 8vw, 105px);
}

.hp-target-layout {
  display: grid;

  grid-template-columns:
    minmax(320px, .9fr)
    minmax(420px, 1.1fr);

  gap:
    clamp(70px, 10vw, 150px);

  align-items: center;
}

.hp-target-lead {
  margin: 0;

  font-family:
    "Noto Serif JP",
    serif;

  font-size:
    clamp(22px, 2.2vw, 31px);

  font-weight: 300;

  line-height: 1.95;

  color: var(--hp-green);
}

.hp-target-types {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0,1fr));

  border-top:
    1px solid var(--hp-line);

  border-bottom:
    1px solid var(--hp-line);
}

.hp-target-types > div {
  padding:
    38px 30px;

  border-right:
    1px solid var(--hp-line);
}

.hp-target-types > div:last-child {
  border-right: 0;
}

.hp-target-types span {
  display: block;

  margin-bottom: 12px;

  font-size: 12px;

  color: var(--hp-muted);
}

.hp-target-types strong {
  font-family:
    "Times New Roman",
    "Noto Serif JP",
    serif;

  font-size:
    clamp(36px, 4vw, 54px);

  font-weight: 300;

  color: var(--hp-green);
}

.hp-target-note {
  margin:
    42px 0 0;

  font-size: 12px;

  line-height: 1.9;

  color: var(--hp-muted);
}


/* =========================================================
   FLOW
========================================================= */

.hp-flow-section {
  padding:
    clamp(145px, 14vw, 215px)
    0;

  background:
    #e9ece6;
}

.hp-flow-list {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0,1fr));

  border-top:
    1px solid var(--hp-line);

  border-bottom:
    1px solid var(--hp-line);
}

.hp-flow-item {
  min-height: 360px;

  padding:
    35px 28px;

  border-right:
    1px solid var(--hp-line);
}

.hp-flow-item:last-child {
  border-right: 0;
}

.hp-flow-item > span {
  display: block;

  margin-bottom: 68px;

  font-family:
    "Times New Roman",
    serif;

  font-size: 19px;

  color: var(--hp-green-soft);
}

.hp-flow-en {
  margin:
    0 0 15px;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;

  letter-spacing: .18em;

  color: var(--hp-muted);
}

.hp-flow-item h3 {
  margin:
    0 0 23px;

  font-family:
    "Noto Serif JP",
    serif;

  font-size: 22px;

  font-weight: 300;

  line-height: 1.6;

  color: var(--hp-ink);
}

.hp-flow-item div > p:last-child {
  margin: 0;

  font-size: 14px;

  line-height: 2;

  color: var(--hp-text);
}


/* =========================================================
   FAQ
========================================================= */

.hp-faq-section {
  padding:
    clamp(145px, 14vw, 215px)
    0;

  background:
    var(--hp-white);
}

.hp-faq-list {
  max-width: 930px;

  margin-left: auto;

  border-top:
    1px solid var(--hp-line);
}

.hp-faq-item {
  border-bottom:
    1px solid var(--hp-line);
}

.hp-faq-item summary {
  position: relative;

  padding:
    31px 65px
    31px 48px;

  cursor: pointer;

  list-style: none;

  font-family:
    "Noto Serif JP",
    serif;

  font-size:
    clamp(16px, 1.5vw, 20px);

  font-weight: 300;

  line-height: 1.8;

  color: var(--hp-ink);
}

.hp-faq-item summary::-webkit-details-marker {
  display: none;
}


/* Q */

.hp-faq-item summary::before {
  content: "Q";

  position: absolute;

  left: 4px;
  top: 32px;

  font-family:
    "Times New Roman",
    serif;

  font-size: 17px;

  color: var(--hp-green-soft);
}


/* PLUS */

.hp-faq-item summary::after {
  content: "+";

  position: absolute;

  right: 8px;
  top: 50%;

  font-family:
    "Times New Roman",
    serif;

  font-size: 25px;

  font-weight: 300;

  color: var(--hp-green);

  transform:
    translateY(-50%);

  transition:
    transform .35s ease;
}

.hp-faq-item[open] summary::after {
  transform:
    translateY(-50%)
    rotate(45deg);
}

.hp-faq-item > div {
  padding:
    0 60px
    32px 48px;
}

.hp-faq-item > div p {
  margin: 0;

  font-size: 13px;

  line-height: 2.1;

  color: var(--hp-text);
}


/* =========================================================
   INFORMATION
========================================================= */

.hp-information {
  padding:
    clamp(120px, 12vw, 180px)
    0;

  background:
    var(--hp-cream);
}

.hp-information-grid {
  display: grid;

  grid-template-columns:
    minmax(250px, .45fr)
    minmax(500px, 1fr);

  gap:
    clamp(70px, 10vw, 150px);
}

.hp-information-head h2 {
  font-size:
    clamp(34px, 3.6vw, 50px);
}

.hp-information-list {
  border-top:
    1px solid var(--hp-line);
}

.hp-information-list > div {
  display: grid;

  grid-template-columns:
    145px 1fr;

  gap: 30px;

  padding:
    21px 5px;

  border-bottom:
    1px solid var(--hp-line);
}

.hp-information-list span {
  font-size: 13px;

  color: var(--hp-muted);
}

.hp-information-list p {
  margin: 0;

  font-size: 13px;

  line-height: 1.8;

  color: var(--hp-ink);
}


/* =========================================================
   CONTACT
========================================================= */

.hp-contact {
  padding:
    clamp(125px, 13vw, 190px)
    0;

  background:
    #314239;

  color: #fff;
}

.hp-contact .hp-eyebrow {
  color:
    rgba(255,255,255,.52);
}

.hp-contact-grid {
  display: grid;

  grid-template-columns:
    minmax(380px, 1fr)
    minmax(380px, .85fr);

  gap:
    clamp(70px, 10vw, 150px);

  align-items: end;
}

.hp-contact-copy h2 {
  color: #fff;
}

.hp-contact-text {
  max-width: 520px;

  margin:
    40px 0 0;

  font-size: 13px;

  line-height: 2.1;

  color:
    rgba(255,255,255,.68);
}


/* ACTIONS */

.hp-contact-actions {
  border-top:
    1px solid rgba(255,255,255,.22);
}

.hp-contact-tel,
.hp-contact-link {
  display: flex;

  position: relative;

  border-bottom:
    1px solid rgba(255,255,255,.22);
}

.hp-contact-tel {
  flex-direction: column;

  gap: 12px;

  padding:
    31px 5px;
}

.hp-contact-tel small {
  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 9px;

  letter-spacing: .2em;

  color:
    rgba(255,255,255,.48);
}

.hp-contact-tel span {
  font-family:
    "Times New Roman",
    serif;

  font-size:
    clamp(32px, 3.5vw, 48px);

  letter-spacing: .035em;

  color: #fff;
}

.hp-contact-link {
  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding:
    29px 5px;

  font-size: 12px;

  letter-spacing: .04em;

  color:
    rgba(255,255,255,.85);
}

.hp-contact-link i {
  position: relative;

  flex: 0 0 auto;

  width: 44px;
  height: 44px;

  border:
    1px solid rgba(255,255,255,.35);

  border-radius: 50%;

  transition:
    background .35s ease;
}

.hp-contact-link i::before {
  content: "";

  position: absolute;

  left: 15px;
  top: 21px;

  width: 12px;
  height: 1px;

  background: #fff;
}

.hp-contact-link i::after {
  content: "";

  position: absolute;

  right: 14px;
  top: 18px;

  width: 6px;
  height: 6px;

  border-top:
    1px solid #fff;

  border-right:
    1px solid #fff;

  transform:
    rotate(45deg);
}

.hp-contact-link:hover i {
  background:
    rgba(255,255,255,.12);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.hp-reveal {
  opacity: 0;

  transform:
    translate3d(0, 55px, 0);

  filter:
    blur(3px);

  transition:
    opacity 1.05s
      cubic-bezier(.2,.7,.2,1),

    transform 1.15s
      cubic-bezier(.2,.7,.2,1),

    filter 1s ease;
}

.hp-reveal.is-visible {
  opacity: 1;

  transform:
    translate3d(0,0,0);

  filter:
    blur(0);
}


/* IMAGE REVEAL */

.hp-image-reveal {
  opacity: 0;

  transform:
    translate3d(0,35px,0);

  transition:
    opacity .8s ease,
    transform 1.1s
      cubic-bezier(.2,.7,.2,1);
}

.hp-image-reveal.is-visible {
  opacity: 1;

  transform:
    translate3d(0,0,0);
}


/* =========================================================
   TABLET
========================================================= */


/* =========================================================
   READABILITY / DESKTOP
========================================================= */

@media(min-width:1051px){
  .hp-philosophy-text p,
  .hp-about-copy p,
  .hp-team-copy p,
  .hp-limits-copy p{
    font-size:16px;
  }

  .hp-support-lead{
    font-size:16px;
  }

  .hp-day-item p{
    font-size:15px;
  }

  .hp-flow-item div > p:last-child{
    font-size:14px;
  }

  .hp-fact p{
    font-size:14px;
  }
}

@media (max-width: 1000px) {

  .hp-inner {
    width:
      min(100% - 60px, 1180px);
  }

  .hp-nav-inner {
    width:
      min(100% - 60px, 1180px);

    gap: 25px;
  }

  .hp-philosophy-grid,
  .hp-about-layout,
  .hp-team-grid,
  .hp-limits-grid,
  .hp-target-layout,
  .hp-contact-grid {
    gap: 60px;
  }

  .hp-about-facts {
    grid-template-columns:
      repeat(2, minmax(0,1fr));
  }

  .hp-fact:nth-child(2) {
    border-right: 0;
  }

  .hp-fact:nth-child(-n+2) {
    border-bottom:
      1px solid var(--hp-line);
  }

  .hp-flow-list {
    grid-template-columns:
      repeat(2, minmax(0,1fr));
  }

  .hp-flow-item:nth-child(2) {
    border-right: 0;
  }

  .hp-flow-item:nth-child(-n+2) {
    border-bottom:
      1px solid var(--hp-line);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .hp-inner {
    width:
      calc(100% - 42px);
  }


  /* COMMON */

  .hp-section {
    padding:
      105px 0;
  }

  .hp-section-head,
  .hp-philosophy-head,
  .hp-life-head,
  .hp-team-head,
  .hp-target-head {
    margin-bottom: 60px;
  }

  .hp-section-head h2,
  .hp-philosophy-head h2,
  .hp-life-head h2,
  .hp-team-head h2,
  .hp-target-head h2,
  .hp-limits-head h2,
  .hp-information-head h2,
  .hp-contact-copy h2 {
    font-size:
      clamp(33px, 9.2vw, 42px);

    line-height: 1.6;
  }


  /* HERO */

  .hp-hero {
    min-height: 680px;
  }

  .hp-hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(20,29,24,.58),
        rgba(20,29,24,.16)
      );
  }

  .hp-hero-copy {
    left: 25px;

    width:
      calc(100% - 50px);

    transform:
      translateY(-45%);
  }

  .hp-hero-label {
    margin-bottom: 26px;

    font-size: 9px;
  }

  .hp-typing-title {
    min-height: 3.2em;

    font-size:
      clamp(41px, 12vw, 58px);

    line-height: 1.55;
  }

  .hp-hero-name {
    margin-top: 28px;

    font-size: 12px;
  }

  .hp-hero-scroll {
    right: 20px;
    bottom: 26px;
  }


  /* NAV */

  .hp-nav {
    overflow-x: auto;

    -webkit-overflow-scrolling:
      touch;

    scrollbar-width: none;
  }

  .hp-nav::-webkit-scrollbar {
    display: none;
  }

  .hp-nav-inner {
    width: max-content;

    min-width: 100%;

    justify-content: flex-start;

    gap: 28px;

    padding:
      0 22px;
  }


  /* PHILOSOPHY */

  .hp-philosophy-grid {
    grid-template-columns: 1fr;

    gap: 48px;
  }

  .hp-philosophy-lead p {
    font-size: 25px;
  }

  .hp-philosophy-text {
    padding-left: 20px;
  }

  .hp-philosophy-text p {
    font-size: 14px;

    line-height: 2.15;
  }


  /* STATEMENT */

  .hp-statement {
    min-height: 68vh;

    padding:
      105px 0;
  }

  .hp-statement-text {
    font-size:
      clamp(28px, 8.4vw, 37px);

    line-height: 1.95;
  }


  /* ABOUT */

  .hp-about-layout {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .hp-about-photo {
    min-height:
      min(125vw, 590px);
  }

  .hp-about-copy p {
    font-size: 14px;

    line-height: 2.15;
  }


  /* FACTS */

  .hp-about-facts {
    grid-template-columns: 1fr;

    margin-top: 75px;
  }

  .hp-fact {
    min-height: 185px;

    border-right: 0;

    border-bottom:
      1px solid var(--hp-line);
  }

  .hp-fact:last-child {
    border-bottom: 0;
  }


  /* SUPPORT */

  .hp-support-section {
    padding:
      105px 0;
  }

  .hp-support-main {
    grid-template-columns: 1fr;
  }

  .hp-support-card {
    min-height: auto;

    padding:
      42px 27px
      52px;
  }

  .hp-support-card h3 {
    margin-top: 38px;
  }


  /* DAY */

  .hp-life-section {
    padding:
      105px 0;
  }

  .hp-day-item {
    grid-template-columns: 1fr;

    gap: 13px;

    min-height: auto;

    padding:
      32px 0;
  }

  .hp-day-item:hover {
    padding-left: 0;

    background: transparent;
  }

  .hp-day-time {
    margin-bottom: 8px;
  }


  /* TEAM */

  .hp-team-section {
    padding:
      105px 0;
  }

  .hp-team-grid {
    grid-template-columns: 1fr;

    gap: 65px;
  }

  .hp-team-copy {
    padding-left: 20px;
  }

  .hp-team-service {
    grid-template-columns:
      42px 1fr 90px;

    gap: 15px;
  }

  .hp-team-service h3 {
    font-size: 18px;
  }


  /* LIMITS */

  .hp-limits-section {
    padding:
      100px 0;
  }

  .hp-limits-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .hp-limits-copy {
    padding-left: 20px;
  }


  /* TARGET */

  .hp-target-section {
    padding:
      105px 0;
  }

  .hp-target-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .hp-target-lead {
    font-size: 23px;
  }

  .hp-target-types > div {
    padding:
      30px 20px;
  }


  /* FLOW */

  .hp-flow-section {
    padding:
      105px 0;
  }

  .hp-flow-list {
    grid-template-columns: 1fr;
  }

  .hp-flow-item {
    min-height: auto;

    padding:
      34px 5px
      42px;

    border-right: 0;

    border-bottom:
      1px solid var(--hp-line);
  }

  .hp-flow-item:last-child {
    border-bottom: 0;
  }

  .hp-flow-item > span {
    margin-bottom: 38px;
  }


  /* FAQ */

  .hp-faq-section {
    padding:
      105px 0;
  }

  .hp-faq-item summary {
    padding:
      27px 42px
      27px 35px;

    font-size: 16px;
  }

  .hp-faq-item summary::before {
    left: 0;
    top: 28px;
  }

  .hp-faq-item summary::after {
    right: 3px;
  }

  .hp-faq-item > div {
    padding:
      0 40px
      28px 35px;
  }


  /* INFORMATION */

  .hp-information {
    padding:
      100px 0;
  }

  .hp-information-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .hp-information-list > div {
    grid-template-columns:
      100px 1fr;

    gap: 20px;
  }


  /* CONTACT */

  .hp-contact {
    padding:
      105px 0;
  }

  .hp-contact-grid {
    grid-template-columns: 1fr;

    gap: 70px;
  }

  .hp-contact-tel span {
    font-size: 36px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

  .hp-inner {
    width:
      calc(100% - 34px);
  }

  .hp-typing-title {
    font-size: 40px;
  }

  .hp-statement-text {
    font-size: 27px;
  }

  .hp-target-types {
    grid-template-columns: 1fr;
  }

  .hp-target-types > div {
    border-right: 0;

    border-bottom:
      1px solid var(--hp-line);
  }

  .hp-target-types > div:last-child {
    border-bottom: 0;
  }

  .hp-team-service {
    grid-template-columns:
      35px 1fr;

    gap: 13px;
  }

  .hp-team-service h3 {
    grid-column: 2;

    text-align: left;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {


  .hp-reveal,
  .hp-image-reveal {
    opacity: 1 !important;

    transform: none !important;

    filter: none !important;

    transition: none !important;
  }

  .hp-photo-curtain {
    display: none;
  }

  .hp-typing-output::after,
  .hp-hero-scroll i::after {
    animation: none !important;
  }

}

/* ========================================
   HERO COPY 改行調整
======================================== */

.hp-typing-output {
  white-space: pre;
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (max-width: 767px) {

  .hp-typing-output {
    font-size: clamp(32px, 9vw, 48px);
    line-height: 1.55;
    white-space: pre;
  }

}

/* ========================================
   DAILY SCENES
======================================== */

.hp-scenes {
  padding:
    150px 0 170px;

  background:
    #f3f1ea;
}

.hp-scenes-inner {
  width:
    min(1180px, calc(100% - 80px));

  margin:
    0 auto;
}


/* ----------------------------------------
   HEADING
---------------------------------------- */

.hp-scenes-heading {
  display:
    grid;

  grid-template-columns:
    1fr 1.25fr;

  column-gap:
    80px;

  align-items:
    end;

  margin-bottom:
    100px;
}

.hp-scenes-heading .hp-section-en {
  grid-column:
    1 / -1;

  margin:
    0 0 25px;

  font-family:
    "Times New Roman",
    serif;

  font-size:
    10px;

  letter-spacing:
    .24em;

  color:
    rgba(55, 72, 61, .55);
}

.hp-scenes-heading h2 {
  margin:
    0;

  font-family:
    "Noto Serif JP",
    serif;

  font-size:
    clamp(36px, 4vw, 60px);

  font-weight:
    300;

  line-height:
    1.55;

  letter-spacing:
    .05em;

  color:
    #34463c;
}

.hp-scenes-lead {
  max-width:
    520px;

  margin:
    0 0 7px;

  font-size:
    14px;

  line-height:
    2.25;

  letter-spacing:
    .04em;

  color:
    #777970;
}


/* ========================================
   GALLERY
======================================== */

.hp-scenes-gallery {
  display:
    grid;

  grid-template-columns:
    1.35fr .8fr .8fr;

  grid-template-rows:
    auto auto;

  gap:
    70px 34px;

  align-items:
    start;
}


/* PHOTO 01 */

.hp-scene-01 {
  grid-column:
    1 / 3;

  grid-row:
    1;
}


/* PHOTO 02 */

.hp-scene-02 {
  grid-column:
    3;

  grid-row:
    1;

  margin-top:
    120px;
}


/* PHOTO 03 */

.hp-scene-03 {
  grid-column:
    1;

  grid-row:
    2;

  margin-top:
    20px;
}


/* PHOTO 04 */

.hp-scene-04 {
  grid-column:
    2 / 4;

  grid-row:
    2;

  margin-top:
    95px;
}


/* ========================================
   PHOTO
======================================== */

.hp-scene {
  margin:
    0;
}

.hp-scene-photo {
  position:
    relative;

  overflow:
    hidden;

  background:
    #e4e5df;
}

.hp-scene-photo img {
  display:
    block;

  width:
    100%;

  height:
    100%;

  object-fit:
    cover;

  transition:
    transform 1.4s cubic-bezier(.2,.7,.2,1);
}


/* 写真比率 */

.hp-scene-01 .hp-scene-photo {
  aspect-ratio:
    16 / 9;
}

.hp-scene-02 .hp-scene-photo {
  aspect-ratio:
    3 / 4;
}

.hp-scene-03 .hp-scene-photo {
  aspect-ratio:
    4 / 5;
}

.hp-scene-04 .hp-scene-photo {
  aspect-ratio:
    16 / 10;
}


/* hover */

@media (hover: hover) {

  .hp-scene:hover
  .hp-scene-photo img {

    transform:
      scale(1.025);
  }

}


/* ========================================
   CAPTION
======================================== */

.hp-scene figcaption {
  display:
    flex;

  gap:
    16px;

  margin-top:
    13px;

  font-family:
    "Times New Roman",
    serif;

  font-size:
    10px;

  letter-spacing:
    .18em;

  color:
    rgba(53, 69, 59, .55);
}

.hp-scene figcaption span {
  color:
    #34463c;
}


/* ========================================
   BOTTOM MESSAGE
======================================== */

.hp-scenes-message {
  display:
    grid;

  grid-template-columns:
    1fr 1fr;

  column-gap:
    100px;

  align-items:
    start;

  margin-top:
    160px;

  padding-top:
    60px;

  border-top:
    1px solid rgba(54, 71, 61, .18);
}

.hp-scenes-message > p {
  margin:
    0;

  font-family:
    "Noto Serif JP",
    serif;

  font-size:
    clamp(28px, 3vw, 43px);

  font-weight:
    300;

  line-height:
    1.75;

  letter-spacing:
    .05em;

  color:
    #34463c;
}

.hp-scenes-message-body > p {
  margin:
    3px 0 30px;

  font-family:
    "Noto Serif JP",
    serif;

  font-size:
    21px;

  font-weight:
    300;

  line-height:
    2;

  color:
    #34463c;
}

.hp-scenes-message-body span {
  display:
    block;

  font-size:
    12px;

  line-height:
    2;

  letter-spacing:
    .04em;

  color:
    #888a82;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

  .hp-scenes {
    padding:
      95px 0 110px;
  }

  .hp-scenes-inner {
    width:
      calc(100% - 40px);
  }


  /* heading */

  .hp-scenes-heading {
    display:
      block;

    margin-bottom:
      65px;
  }

  .hp-scenes-heading h2 {
    font-size:
      36px;

    line-height:
      1.55;

    margin-bottom:
      30px;
  }

  .hp-scenes-lead {
    font-size:
      13px;

    line-height:
      2.1;
  }


  /* gallery */

  .hp-scenes-gallery {
    display:
      grid;

    grid-template-columns:
      1fr 1fr;

    gap:
      48px 16px;
  }

  .hp-scene-01 {
    grid-column:
      1 / -1;

    grid-row:
      auto;
  }

  .hp-scene-02,
  .hp-scene-03 {
    grid-column:
      auto;

    grid-row:
      auto;

    margin-top:
      0;
  }

  .hp-scene-04 {
    grid-column:
      1 / -1;

    grid-row:
      auto;

    margin-top:
      5px;
  }


  .hp-scene figcaption {
    gap:
      9px;

    margin-top:
      9px;

    font-size:
      8px;
  }


  /* bottom message */

  .hp-scenes-message {
    display:
      block;

    margin-top:
      95px;

    padding-top:
      40px;
  }

  .hp-scenes-message > p {
    margin-bottom:
      45px;

    font-size:
      30px;
  }

  .hp-scenes-message-body > p {
    font-size:
      18px;
  }

}