@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital@0;1&display=swap');

/* ============================
       基本設定
    ============================ */

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

html{
font-size: 62.5%;
}

body.pntsc-10th {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.8;
  background: #fff;
  font-size: 1.6rem;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.--en{
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
}

.only-SP{
  display: none;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}

body.pntsc-10th h3 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  /*letter-spacing: 0.05em;*/
  letter-spacing: 0;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.fade-in.loaded {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .only-SP{
  display: block;
}
  .only-PC{
  display: none;
}
.container {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.pntsc-10th h3 {
  font-size: 1.8rem;
  line-height: 1.6;
}
}

@media screen and (min-width: 768px) {
  a:hover{
    opacity: 0.9;
    transition: all 0.3s ease;
  }
}

/* ============================
       Header
============================ */
header.pntsc-10th-header{
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  max-width: 1080px;
}

.pntsc-10th-header-list{
  width: 100%;
  background: rgba(128, 128, 128, 0.8);
  display: grid;
  align-items: center;
  justify-content:center;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 18px 20px;
  border-radius: 13px;
}

@media screen and (max-width: 767px) {
  header.pntsc-10th-header{
    width: 100%;
    position: fixed;
    left: 0;
    bottom:0;
    transform: none;
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.pntsc-10th-header-list{
  width: 100%;
  gap: 5px;
  padding: 10px;
  border-radius: 5px;
}
}



/* ============================
       MainVisual
============================ */
.pntsc-10th-mv {
  width: 100%;
  height: 100vh;
}

/* 最初の画像は表示されるが、2枚目が出てくると消える */
.pntsc-10th-mv-image img.first {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation: fadeOut 1s ease forwards;
  animation-delay: 1.5s; /* 1.5秒後に消える */
  max-width: 365px;
  max-height: 415px;
  height: auto; 
}
/* 2枚目は1.5秒後にフェードイン */
.pntsc-10th-mv-image img.last {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.5s;
  max-width: 335px;
  max-height: 415px;
  height: auto; 
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

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

.pntsc-10th-mv-scroll {
  width: 123px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 767px) {
.pntsc-10th-mv-image img.first {
  width: 100%;
  max-width: 316px;
  max-height: 358px;
}
.pntsc-10th-mv-image img.last {
  width: 100%;
  max-width: 316px;
  max-height: 358px;
}
.pntsc-10th-mv-scroll{
  width: 23%;
  max-width: 86px;
}
}

/* ============================
       Anniversary Section
============================ */
.pntsc-10th-anniversery {
  background: #fae263;
  padding: 80px 0;
  text-align: center;
}
.pntsc-10th-anniversery  h2 {
  max-width: 985px;
  margin: 0 auto;
  text-align: center;
}
.pntsc-10th-anniv-contents {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  grid-template-columns:260px 680px;
  gap: 47px;
  margin-top: 40px;
}
.pntsc-10th-anniv-text h3 {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}
.pntsc-10th-anniv-text p {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
}
.pntsc-10th-anniv-text p:last-child {
  margin-top: 38px;
}

.pntsc-10th-anniversery-slider-wrap{
  padding-bottom: 78px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.pntsc-10th-anniversery-slider-wrap02{
  padding-top: 78px;
}

.pntsc-10th-anniversery-slider .slide{
  margin: 0 9px;
}

.slick-slider div { 
  transition: none; 
}

@media screen and (max-width: 767px) {
.pntsc-10th-anniversery {
  padding: 60px 0;
}
.pntsc-10th-anniversery  h2 {
  width: 100%;
}
.pntsc-10th-anniv-contents {
  width: 100%;
  display: block;
  margin-top: 40px;
}
body.pntsc-10th  .pntsc-10th-anniv-text h3 {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 18px;
}
.pntsc-10th-anniv-text p {
  font-size: 1.4rem;
  line-height: 2.28;
  text-align: left;
}
.pntsc-10th-anniversery-slider-wrap{
  padding-bottom: 42px;
}
.pntsc-10th-anniversery-slider-wrap02{
  padding-top: 42px;
}
}


/* ============================
       SUPERTIME Section
============================ */
.pntsc-10th-sptime{
  position: relative;
  overflow: hidden;
}
.pntsc-10th-sptime-content-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.pntsc-10th-sptime-content {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  gap: 40px;
  transition: all 0.3s ease;
}
.peanuts-image-carousel {
  position: relative;
  width: 540px;
  height: 484px; 
  overflow: hidden;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.carousel-image.active {
  opacity: 1;
}

.peanuts-text-content {
  max-width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 20px;
}
.carousel-image.active {
  opacity: 1;
}

.peanuts-text-content p {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 40px;
}

.peanuts-text-content p:last-child {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {

  .pntsc-10th-sptime-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    top: 0;
  }
  .peanuts-image-carousel {
    width: 345px;
    height: 300px; 
  }
  .peanuts-text-content {
    width: 100%;
    padding-top: 0;
  }
  .peanuts-text-content p {
    font-size: 1.4rem;
    margin-top: 30px;
  }
  .peanuts-text-content p:last-child {
    margin-top: 40px;
  }
}

/* ============================
       News Section
============================ */
.pntsc-10th-news {
  background: #fae263;
  padding: 95px 0 99px;
}

.pntsc-10th-news-wrap {
  max-width: 850px;
  margin: 0 auto;
}

.pntsc-10th-news h2 {
  max-width: 257px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 35px;
}

.pntsc-10th-news p {
  font-size: 1.8rem;
  letter-spacing: 0;
  text-align: center;
}

.news-items {
  display: grid;
  grid-template-columns: 304px 304px;
  align-items: center;
  justify-content: space-between;
  margin-top: 33px;
}

.news-item {
  text-align: center;
}
.news-item-head {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-bottom: 16px;
}

.news-item p {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .pntsc-10th-news {
  padding: 74px 0 99px;
}

  .pntsc-10th-news-wrap {
    width: 100%;
  }
  .pntsc-10th-news h2 {
    width: 96px;
    margin-bottom: 14px;
  }
  .news-items {
    display: block;
    width: 210px;
    margin: 34px auto 0;
  }
  .news-item:last-child {
    margin-top: 25px;
  }
  .news-item-head {
    font-size: 2.0rem;
    letter-spacing: 0.05em;
    margin: 0 0 11px;
  }
  .news-item p {
    margin-bottom: 16px;
  }
}

/* ============================
       History Section
============================ */
.pntsc-10th-history {
  padding: 152px 20px 40px;
}
.pntsc-10th-history h2 {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 140px;
}
.history-item {
  display: flex;
  align-items: center;
  margin-bottom: 63px;
  gap: 40px;
  padding: 0 0 0 50px;
}
.history-item.-sb {
  justify-content: space-between;
}
.history-item:nth-child(even) {
  flex-direction: row-reverse;
  padding: 0 50px 0 80px;
}
.history-item > img {
  max-width: 450px;
  height: 300px;
  object-fit: contain;
}
.history-item h3{
  margin: 23px 0 20px;
}
.history-text p {
  font-size: 1.6rem;
  line-height: 1.2;
}



@media screen and (max-width: 767px) {
.pntsc-10th-history {
  padding: 66px 0;
}
.pntsc-10th-history h2 {
  width: 151px;
  margin: 0 auto 50px;
}
.history-item {
  display: block;
  align-items: center;
  margin-bottom: 65px;
  padding: 0;
}
.history-item:last-child {
  margin-bottom: 0;
}
.history-item:nth-child(even) {
  flex-direction: row-reverse;
  padding: 0;
}
.history-item > img {
  width: 100%;
  height: 250px;
}
.history-item-date{
  margin-top: 10px;
}
.history-item h3{
  margin: 25px 0 20px;
}
.history-text p {
  font-size: 1.4rem;
  line-height: 1.57;
}

.history-item04 .history-item-date{
  margin-top: 45px;
}
.history-item05 .history-item-date{
  margin-top: 0;
}
}
@media screen and (min-width: 1024px) {
.pntsc-10th-history .history-item06{
  align-items: flex-end;
}

.pntsc-10th-history .history-item07{
  margin-bottom: 0;
  padding-left: 72px;
}
.history-item07 .history-item-date{
  margin-top: 14px;
}
.pntsc-10th-history .history-item08{
  align-items: flex-end;
}
.pntsc-10th-history .history-item08 .history-text img{
  margin-bottom: 0;
}
body.pntsc-10th .history-item08 h3{
  font-size: 2.3rem;
  margin: 39px 0 23px;
}
.history-item08 .history-item-date{
  margin-top: 20px;
}

}

/* ============================
       ShopList
============================ */

.shoplist-btn{
  padding: 0 50px;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
.shoplist-btn{
  padding: 0;
  margin-bottom: 60px;
}
}

/* ============================
       SNS
============================ */
.pntsc-10th-sns-list{
  width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 88px 68px;
  padding: 0 50px;
}
.pntsc-10th-sns-list li:nth-child(4) {
  grid-column: 2; /* 2列目に配置 */
  border: 0.9px solid #030000;
}

.copyright{
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: .05em;
  padding:47px 0 145px;
  text-align: center;
}
@media screen and (max-width: 767px) {
.pntsc-10th-sns-list{
  grid-template-columns: repeat(2, 1fr);
  gap: 19px 16px;
  padding: 0;
}
.pntsc-10th-sns-list li:nth-child(4) {
  grid-column: auto;
  order: 3;
}
.pntsc-10th-sns-list li:nth-child(3) {
  order: 1;
}
.pntsc-10th-sns-list li:nth-child(2) {
  order: 2;
}

.copyright{
  font-size: 1rem;
  padding:120px 0;
}

}