@charset "utf-8";
/*==========================
 Article header
==========================*/
.article__header {
  width: 100%;
  background: var(--primary-softWhite);
}

.mainVisual {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.mainVisual img{
  width: 100%;
  height: auto;
  display: block;
}

/*==========================
About
==========================*/
.section--about {
  background: var(--primary-base-leafMint);
  position: relative;
  padding: 120px 0 0;
  overflow: hidden;
  margin-top: -1px;
}


/* 内側コンテナ */
.about__inner {
  max-width: 1160px;
  margin: 0 auto 80px;
  padding: 0 var(--contentPadding);
  position: relative;
  z-index: 2;
  text-align: center; 
}

.about__content {
  position: relative;
  z-index: 3;
  text-align: center; 
}

.mainCaption {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--primary-softWhite);
}

.about__bgImages {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.about__bgImg {
  position: absolute;
  height: 170px;
  width: auto;
  border-radius: 50%;
  opacity: 0.9;
}

/* PC：左右ランダム配置 */
.about__bgImg:nth-child(1) { top: 40px; left: 1%; }
.about__bgImg:nth-child(2) { top: 240px; left: 6%; }
.about__bgImg:nth-child(3) { top: 480px; left: -2%; }

.about__bgImg:nth-child(4) { top: 0; right: 3%; }
.about__bgImg:nth-child(5) { top: 260px; right: 2%; }
.about__bgImg:nth-child(6) { top: 480px; right: 10%; }

/* 本文（Noto Sans JP） */
.about__txtBold,
.about__txt {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--primary-softWhite);
}

.about__txtBold {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.6;
}

.about__txt {
  margin-bottom: 24px;
  font-size: 1.6rem;
  line-height: 2;
}

/* section区切りabout */
.wrap__about {
  width: 100%;
  background-color: var(--primary-base-milkBeige);
  margin-top: 0;
  padding: 0;
}

/* About sp */
@media screen and (max-width: 769px) {
  .section--about {
    padding-top: 50px;
  }

  .about__inner {
    margin-top: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

  /* 背景画像は横スクロール */
  .about__bgImages {
    position: static;
    width: 100%;
    order: 2;

    display: flex;
    flex-wrap: nowrap;
    transform: translateX(0);
    transition: transform 0.6s ease;
  }

    .about__bgImg {
    position: static;
    height: 80px;
    width: auto;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .about__content {
    order: 1;
  }

  .mainCaption {
    font-size: 2.4rem;
    margin-bottom: 38px;
  }

  .about__txtBold {
    font-size: 1.6rem;
  }

  .about__txt {
    font-size: 1.4rem;
  }
} /* sp 769px */

/*==========================
 Activities
==========================*/
.section--activities {
  background: var(--primary-base-milkBeige);
  position: relative;
  padding: 60px 0 0px;
  overflow: hidden;
}

.activities__inner {
  width: 100%;
  height: auto;
}


.activities__container {
  width: 100%;
  margin: 60px auto 20px;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

/*== PC：セル画のように重ねる ==*/

.activities__imgWrap {
  position: relative;
  width: 100%;
  display: block;
}

.activities__imgWrap picture{
  width: 90%;
  display: block;
}

.popup{
  position: absolute;
  transform: scale(0.8);
  opacity: 0;
  transform-origin: center center; /* 中央から */
  top: 0; 
  left:5%;
}

.popup.is-visible {
  animation: popIn 0.8s forwards;
}

@keyframes popIn {
  0%   { transform: scale(0.8);  opacity: 0; }
  100% { transform: scale(1);  opacity: 1; }
}

/* 時間差で浮き出る */
.activities__imgWrap picture:nth-child(1) { 
  position: relative;
  margin: 0 auto;
}
.activities__imgWrap picture:nth-child(3) { 
  animation-delay: 0.3s;
}
.activities__imgWrap picture:nth-child(4) { 
  animation-delay: 0.6s;
}
.activities__imgWrap picture:nth-child(5) { 
 animation-delay: 0.9s;
}


.togallery__btn {
  max-width: 900px;
  width: 100%;
  margin: 80px auto 80px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.btn--activities {
  display: block;
  width: 60%;             
  max-width: 928px;       
  margin: 0 auto;
  padding: 10px 60px;
  background:var(--primary-base-leafMint);
  color: var(--primary-base-milkBeige);
  font-size: 2.0rem;
  font-weight: 800;
  border-radius: 5px; 
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.2em;
}

.btn--activities:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.activities__btn {
  width: 100%;
  max-width: 1160px;       /* NEWS と同じ幅感に寄せる */
  margin: 40px auto 80px;  /* 上下の余白を整える */
  display: flex;
  justify-content: center; /* 中央揃え */
  gap: 80px;               /* ボタン間の余白 */
}

.activities__btn .btn img {
  width: 100%;              /* NEWS と同じ大きさ */
  height: auto;
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

.activities__btn .btn:hover img {
  opacity: 0.5;
}


/* Activities sp */
@media screen and (max-width: 769px) {
  .activities__imgWrap picture:nth-child(1) {
    width: 100%;
}
  .section--activities {
    padding-top: 30px;
  }

  .section--activities::after {
    height: 200px;
    bottom: -100px;
  }
  
  .activities__container {
    width: 100%;
    margin-bottom: 50px;
  }

  .activities__inner {
    padding: 0 20px 0;
  }

  


  .togallery__btn {
    width: 70%;
    margin: 0 auto 50px;
  }

  .btn--activities {
    width: 90%;
    max-width: none;
    padding: 10px 20px;
    font-size: 1.6rem;
  }

  .activities__btn {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px auto 60px;
  }


}/* sp 769px */

/*==========================
 News
==========================*/
.section--news {
  background: var(--primary-base-skyGray);
  width: 100%;
  padding: 60px 0 0;
  margin: 0 auto;
}

.activities__title {
  line-height: 1.5;
}

.activTitleSpace {
  display: none;
}

.news__container {
  max-width: 1160px;
  margin: 60px auto;
  padding: 0 var(--contentPadding);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/*== left Facebook == */
.section--news iframe {
  width: 100%;
  max-width: 400px; 
  height: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: var(--primary-softWhite);
}

/*== rigth inner == */
.news__inner {
  flex: 1;
  max-width: 480px;
  margin: 20px auto;
  position: relative;
  z-index: 1;
}

.newsParts {
  position: absolute;
  /* content: ""; */
  background-repeat: no-repeat; 
  background-size: contain;
  background-position: center;
  pointer-events: none;
  display: block;
  z-index: 0;
}

.newsParts--01 {
  background-image: url("../images/parts-suzuranz.svg");
  height: 120px;
  width: 120px;
  left: 50%;;
  top: 65%;
  transform: translate(-50%, -50%); 
  pointer-events: none;
  z-index: 0;
  translate: 0 -50%;
  filter: grayscale(1) sepia(1) hue-rotate(60deg) brightness(0.7) saturate(0.6);
  opacity: 0.5;
}

.news__txt {
  
  font-size: 1.7rem;
  line-height: 2;
  color: var(--primary-charcoalGray);
  margin-bottom: 250px;
}
.news__btn {
  margin: 0 auto;
}

.news__inner .btn {
  display: block;
  width: 100%;
  /* max-width: 360px; */
  margin-bottom: 20px;
  text-align: center;
}

.btn--contact img,
.btn--facebook img {
  width: 55%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

.btn--contact img:hover,
.btn--facebook img:hover {
  opacity: 0.5;
}

/* News sp */
@media screen and (max-width:769px) {
  .section--news {
    padding-top: 0;
  }

  .news__container {
    display: block;
    max-width: 400px;
    padding: 0 20px 30px;
    margin-bottom: 30px;
  }
  
  .news__fb {
    margin-bottom:30px;
  }


  
  .newsParts {
    display: none;
  }
  
  .news__txt {
    margin-bottom: 50px;
  }

  .news__btn img {
    width: 70%;
  }

}/* sp 769px */

/*==========================
 Access
==========================*/
.section--access {
  background: var(--primary-base-milkBeige); 
  width: 100%;
  padding: 60px 0 0;
}

.address__card {
  margin: 20px auto;
}

.address__img {
  display: none;
  width: 10px;
  height: 10px;
}

.address {
  font-style: normal;
  font-size: 1.6rem;
  color: var(--primary-charcoalGray);
  text-align: center;
}

.access__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--contentPadding);
}

.section--access iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: var(--primary-softWhite);
  margin-bottom: 40px; 
}

/*==  下段：2カラム ==*/
.access__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.access__card {
  flex: 1;
  padding: 32px;
  background-color: var(--primary-base-milkBeige);
}

.access__topic {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-darkBlueGreen);
  text-align: center;
}

.access__lead {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 32px;
  padding: 16px 16px;
  color: var(--primary-charcoalGray);
  background-color: var(--primary-base-skyGray);
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.access__drive,
.access__parking {
  margin: 0 auto 32px;
  padding: 0;
  /* line-height: 2.0; */
}

.access__drive {
  width: fit-content;
}

.access__parking {
  width: fit-content;
  margin: 0 auto 24px;
  padding: 0 ;
}

.access__txt {
  font-size: 1.6rem;
  line-height: 2.2;
  color: var(--primary-charcoalGray);
}

.access__link {
  display: block;
  width: fit-content;
  margin: 0 auto 32px;
  font-size: 1.5rem;
  text-align: center;
  color:  var(--primary-charcoalGray);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.access__link:hover {
  opacity: 0.5;
}

.access__img {
  flex: 1;
  width: 100%;
  max-width: 530px;
  display: block;
  margin: 60px auto 5px;
}

.access__warkTxt {
  text-align: center;
}

/* Access sp */
@media screen and (max-width:769px) {
  .address {
    margin: 30px auto 0;
  }

  .section--access {
    padding-top: 30px;
  }

  .address__card {
    margin-bottom: 0;
  }

  .access__container {
    padding: 20px 20px 0;
  }

  .section--access iframe {
    height: 300px;
  }

  .access__inner {
    width:fit-content;
    margin: 0 auto 60px;
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .access__topic {
    font-size: 1.6rem;
  }
  
  .access__card {
    margin-bottom: 0;
    padding: 24px 0 0;
  }

  .access__lead {
    font-size: 1.4rem; /* 本文は最低14px */
    font-weight: 600;
  }

  .access__img {
    margin: 0 auto 16px;
    padding: 0;
  }

}/* sp 769px */

/*==========================
 Staff
==========================*/
.section--staff {
  background: var(--primary-base-skyGray);
  width: 100%;
  padding: 60px 0 0;
}

.staff__container {
  max-width: 1160px;
  margin: 60px auto 40px;
  padding: 0 var(--contentPadding);
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.staff__card {
  flex: 1;
  border-radius: 20px;
  padding: 32px 24px;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
  text-align: center;
}

.staff__img {
  width: 100%;
  max-width: 260px;
  display: block;
  margin: 0 auto 24px;
  border-radius: 999px;
}

.staff__topic {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--primary-darkBlueGreen);
}

.staff__topic small {
  font-size: 1.4rem;
  color: var(--primary-charcoalGray);
}

.staff__topic span {
  margin-right: 0.5rem;
}

.staff__lead {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--primary-charcoalGray);
}

.staff__txt {
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.9;
  color: var(--primary-charcoalGray);
}

/* Staff sp */
@media screen and (max-width:769px) {
  .section--staff {
    margin: 0 auto;
    padding-top: 0;
  }

  .staff__container {
    margin-bottom: 60px;
    padding: 0;
    flex-direction: column;
    gap: 32px;
  }

  .staff__card {
    padding: 0 20px 20px;
    margin: 0 auto;
  }

  .staff__img {
    max-width: 200px;
    margin: 4px auto;
  }

  .staff__topic {
    font-size: 1.8rem;
  }

  .staff__topic small {
    font-size: 1.2rem;
    font-weight: 500;
  }



}/* sp 769px */

/*==========================
 Links
==========================*/
.section--links {
  background: var(--primary-base-milkBeige); 
  width: 100%;
  padding: 60px 0 0;
}

.links__container {
  max-width: 1160px;
  margin: 60px auto 40px;
  padding: 0 var(--contentPadding);
}

.links__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.links__card {
  flex: 1;
  padding: 0 20px 0;
  list-style: none;
  position: relative;
  color: var(--primary-accent-skyBlue);
  border-left: 14px double;  
}

.links__title {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-darkBlueGreen);
  margin-bottom: 16px;
  transition: opacity 0.3s ease;
}

.links__title:hover {
  opacity: 0.5;
}

.links__txt {
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--primary-charcoalGray);
  text-align: left;
}

/* section区切りlink */
.wrap__link {
  width: 100%;
  background-color: var(--primary-base-skyGray);
  margin-top: 0;
  padding: 0;
}

/* Links sp */
@media screen and (max-width:769px) {
  .section--links {
    margin-top: 0;
    padding-top: 1px;
  }
    
  .links__container {
    margin-bottom: 60px;
    padding: 5px 20px;
  }

  .links__inner {
    flex-direction: column;
    gap: 32px;
  }

  .links__card {
    padding: 0 20px;
  }


}/* sp 769px */
