/* =========================================================
   NEWS PAGE
========================================================= */

.news-page{
  position:relative;

  overflow:hidden;

  color:#454943;

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

  background:#f7f5f0;
}


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

.news-hero{
  position:relative;

  min-height:
    min(820px,88svh);

  display:flex;
  align-items:center;

  overflow:hidden;

  background:
    radial-gradient(
      circle at 76% 16%,
      rgba(183,194,181,.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 15% 82%,
      rgba(225,215,197,.23),
      transparent 33%
    ),
    #f7f5f0;
}

.news-hero::after{
  content:"";

  position:absolute;

  left:7vw;
  bottom:0;

  width:1px;
  height:22vh;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(85,103,92,.27)
    );
}

.news-hero-brand{
  position:absolute;

  top:32px;
  left:50%;

  z-index:3;

  transform:
    translateX(-50%);

  color:
    rgba(65,76,69,.72);
}

.news-hero-brand span{
  display:block;

  padding-left:.38em;

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

  font-size:12px;

  line-height:1;

  letter-spacing:.38em;

  white-space:nowrap;
}

.news-hero-inner{
  position:relative;

  z-index:2;

  padding-top:30px;
}

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

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

  font-size:12px;

  line-height:1;

  letter-spacing:.30em;

  color:#748078;
}

.news-title{
  margin:0;

  font-size:
    clamp(52px,7vw,100px);

  line-height:1.3;

  font-weight:300;

  letter-spacing:.10em;

  color:#40453f;
}

.news-lead{
  margin:
    clamp(46px,5vw,72px)
    0
    0;

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

  line-height:2.15;

  letter-spacing:.06em;

  color:#656b66;
}

.news-hero-number{
  position:absolute;

  right:
    clamp(40px,7vw,120px);

  bottom:
    clamp(20px,4vw,60px);

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

  font-size:
    clamp(100px,16vw,250px);

  line-height:.8;

  letter-spacing:-.06em;

  color:
    rgba(79,99,87,.055);

  pointer-events:none;
}


/* =========================================================
   LIST
========================================================= */

.news-list-section{
  position:relative;

  padding:
    clamp(130px,14vw,220px)
    0
    clamp(150px,16vw,250px);

  background:#fbfaf6;
}

.news-list-head{
  display:flex;

  justify-content:space-between;
  align-items:flex-end;

  margin-bottom:
    clamp(48px,6vw,80px);

  padding-bottom:20px;

  border-bottom:
    1px solid rgba(75,95,83,.28);
}

.news-list-head p,
.news-list-head span{
  margin:0;
}

.news-list-head p{
  font-family:
    "Times New Roman",
    serif;

  font-size:13px;

  letter-spacing:.26em;

  color:#4e6256;
}

.news-list-head span{
  font-size:13px;

  letter-spacing:.07em;

  color:#788078;
}

.news-list{
  border-top:
    1px solid rgba(75,95,83,.20);
}

.news-item{
  border-bottom:
    1px solid rgba(75,95,83,.22);
}

.news-item a{
  position:relative;

  display:grid;

  grid-template-columns:
    130px
    130px
    minmax(0,1fr)
    48px;

  gap:
    clamp(20px,3vw,44px);

  align-items:center;

  min-height:
    clamp(118px,9vw,145px);

  padding:
    12px 0;

  transition:
    padding .5s cubic-bezier(.22,.61,.36,1);
}

.news-date{
  font-family:
    "Times New Roman",
    serif;

  font-size:13px;

  line-height:1;

  letter-spacing:.12em;

  color:#64736a;
}

.news-category{
  width:max-content;

  padding:
    5px 10px;

  border:
    1px solid rgba(76,99,85,.22);

  font-size:11px;

  line-height:1.4;

  letter-spacing:.08em;

  color:#66746b;
}

.news-item-title{
  margin:0;

  font-size:
    clamp(18px,1.6vw,24px);

  line-height:1.8;

  font-weight:300;

  letter-spacing:.05em;

  color:#434a45;

  transition:
    color .35s ease,
    transform .48s cubic-bezier(.22,.61,.36,1);
}

.news-arrow{
  position:relative;

  justify-self:end;

  display:block;

  width:38px;
  height:18px;
}

.news-arrow::before{
  content:"";

  position:absolute;

  left:0;
  top:9px;

  width:34px;
  height:1px;

  background:#596d61;

  transition:
    transform .48s cubic-bezier(.22,.61,.36,1);
}

.news-arrow::after{
  content:"";

  position:absolute;

  right:0;
  top:6px;

  width:7px;
  height:7px;

  border-top:
    1px solid #596d61;

  border-right:
    1px solid #596d61;

  transform:
    rotate(45deg);
}


/* HOVER */

@media (hover:hover){

  .news-item a:hover{
    padding-left:12px;
    padding-right:8px;
  }

  .news-item a:hover
  .news-item-title{
    color:#315043;

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

  .news-item a:hover
  .news-arrow::before{
    transform:
      translate3d(6px,0,0);
  }

}


/* =========================================================
   EMPTY
========================================================= */

.news-empty{
  padding:
    60px 0;

  border-bottom:
    1px solid rgba(75,95,83,.22);

  color:#737a74;
}

.news-empty p{
  margin:0;

  font-size:15px;

  line-height:2;
}


/* =========================================================
   PAGINATION
========================================================= */

.news-pagination{
  display:flex;

  justify-content:center;
  align-items:center;

  gap:8px;

  margin-top:
    clamp(70px,8vw,110px);
}

.news-pagination .page-numbers{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  min-width:42px;
  height:42px;

  padding:0 10px;

  border:
    1px solid transparent;

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

  font-size:13px;

  color:#68766e;

  transition:
    border-color .35s ease,
    color .35s ease;
}

.news-pagination
.page-numbers.current{
  border-color:
    rgba(71,95,81,.32);

  color:#354f42;
}

@media (hover:hover){

  .news-pagination
  a.page-numbers:hover{
    border-color:
      rgba(71,95,81,.22);

    color:#354f42;
  }

}


/* =========================================================
   END
========================================================= */

.news-end{
  position:relative;

  padding:
    clamp(140px,15vw,230px)
    0;

  overflow:hidden;

  color:#f6f2e8;

  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(149,173,156,.18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #465c50,
      #30443a
    );
}

.news-end::before{
  content:"";

  position:absolute;

  width:46vw;
  height:46vw;

  right:-20vw;
  bottom:-25vw;

  border:
    1px solid rgba(246,242,232,.09);

  border-radius:50%;
}

.news-end-inner{
  position:relative;
  z-index:2;
}

.news-end-en{
  margin:0 0 38px;

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

  font-size:11px;

  letter-spacing:.28em;

  color:
    rgba(246,242,232,.60);
}

.news-end h2{
  margin:0;

  font-size:
    clamp(34px,4.5vw,64px);

  line-height:1.75;

  font-weight:300;

  letter-spacing:.09em;

  color:#f6f2e8;
}

.news-home-link{
  display:inline-flex;

  align-items:center;

  gap:20px;

  margin-top:
    clamp(50px,6vw,78px);

  font-size:14px;

  letter-spacing:.07em;

  color:
    rgba(246,242,232,.82);
}

.news-home-link i{
  position:relative;

  display:block;

  width:38px;
  height:12px;
}

.news-home-link i::before{
  content:"";

  position:absolute;

  left:0;
  top:6px;

  width:35px;
  height:1px;

  background:
    rgba(246,242,232,.70);
}

.news-home-link i::after{
  content:"";

  position:absolute;

  right:0;
  top:3px;

  width:6px;
  height:6px;

  border-top:
    1px solid rgba(246,242,232,.70);

  border-right:
    1px solid rgba(246,242,232,.70);

  transform:
    rotate(45deg);
}


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

.news-reveal{
  opacity:0;

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

  filter:
    blur(3px);

  transition:
    opacity 1.1s cubic-bezier(.22,.61,.36,1),
    transform 1.35s cubic-bezier(.22,.61,.36,1),
    filter 1.05s cubic-bezier(.22,.61,.36,1);
}

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

  transform:
    translate3d(0,0,0);

  filter:
    blur(0);
}


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

@media (max-width:700px){

  .news-hero{
    min-height:72svh;
  }

  .news-hero-brand{
    top:24px;
  }

  .news-hero-brand span{
    font-size:10px;

    letter-spacing:.30em;

    padding-left:.30em;
  }

  .news-hero::after{
    left:20px;

    height:16vh;
  }

  .news-title{
    font-size:
      clamp(44px,14vw,62px);
  }

  .news-lead{
    margin-top:36px;

    font-size:15px;
  }

  .news-hero-number{
    right:18px;
    bottom:18px;

    font-size:110px;
  }

  .news-list-section{
    padding:
      100px
      0
      130px;
  }

  .news-list-head{
    align-items:flex-start;

    margin-bottom:36px;
  }

  .news-list-head span{
    font-size:12px;
  }

  .news-item a{
    grid-template-columns:
      1fr
      28px;

    gap:
      8px 12px;

    min-height:0;

    padding:
      28px
      0;
  }

  .news-date{
    grid-column:1;

    font-size:11px;
  }

  .news-category{
    grid-column:1;

    margin:
      4px 0
      2px;

    font-size:10px;
  }

  .news-item-title{
    grid-column:1;

    font-size:17px;

    line-height:1.75;
  }

  .news-arrow{
    grid-column:2;
    grid-row:1 / 4;

    align-self:center;

    width:26px;
  }

  .news-arrow::before{
    width:24px;
  }

  .news-end{
    padding:
      110px
      0;
  }

  .news-end h2{
    font-size:
      clamp(30px,9vw,42px);
  }

}


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

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

  .news-reveal{
    opacity:1 !important;

    transform:none !important;

    filter:none !important;

    transition:none !important;
  }

}
