/* =============================================
   TOPページ専用スタイル
   （hero / about / activities / faq / news / access）
============================================= */

/* ----- Hero ----- */
.hero {
  margin-top: 0;
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 500px;
  max-height: 800px;
}
@media (max-width: 430px) {
  .hero {
    height: 600px;
    min-height: unset;
    max-height: unset;
  }
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
}
.hero__logo-wrap {
  position: absolute;
  top: 35.16%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
@media (max-width: 430px) {
  .hero__logo-wrap {
    top: 259px;
    left: 28px;
    transform: none;
    text-align: left;
  }
}
.hero__logo img {
  width: 203px;
  height: 157px;
}
@media (max-width: 900px) {
  .hero__logo img {
    width: 140px;
    height: 108px;
  }
}
@media (max-width: 430px) {
  .hero__logo img {
    width: 73px;
    height: 56px;
  }
}
.hero__content {
  position: absolute;
  top: calc(35.16% + 157px + 2.4rem + 20px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
}
@media (max-width: 430px) {
  .hero__content {
    top: 250px;
    left: auto;
    right: 14px;
    bottom: auto;
    transform: none;
    width: 260px;
    text-align: center;
  }
}
.hero__title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #87b16c;
  letter-spacing: 7.5px;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.30);
}
@media (max-width: 900px) {
  .hero__title {
    font-size: 3.4rem;
    letter-spacing: 4px;
  }
}
@media (max-width: 430px) {
  .hero__title {
    font-size: 2.5rem;
    line-height: 37px;
    letter-spacing: 3.75px;
    text-shadow: none;
  }
}
.hero__scroll {
  position: absolute;
  top: 84.9%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
@media (max-width: 430px) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll-text {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 18px;
  color: #ffffff;
  letter-spacing: 1.4px;
}
.hero__scroll-arrow {
  display: block;
  width: 20px;
  height: 70px;
  position: relative;
  animation: scrollBounce 1.6s ease-in-out infinite;
}
.hero__scroll-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 56px;
  background-color: #ffffff;
}
.hero__scroll-arrow::after {
  content: "";
  position: absolute;
  top: 54px;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 18px;
  background-color: #ffffff;
  transform-origin: top center;
  transform: rotate(-140deg);
}
.hero__news {
  position: fixed;
  bottom: 48px;
  right: 45px;
  width: 337px;
  min-height: 109px;
  background: #f7b560;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  color: #ffffff;
  padding: 15px 24px 20px 15px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 998;
}
.hero__news.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 900px) {
  .hero__news {
    width: 280px;
    right: 20px;
    bottom: 20px;
  }
}
@media (max-width: 430px) {
  .hero__news {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: auto;
    width: 180px;
    height: 76px;
    border-radius: 10px;
    padding: 10px 10px 0;
    min-height: unset;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
  }
  .hero__news-label {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.7px;
    margin: 0 10px 0 0;
    flex: 0 0 auto;
    align-self: center;
  }
  .hero__news-date {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    flex: 1;
    align-self: center;
  }
  .hero__news-text {
    flex: 0 0 100%;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: "YuGothic", "游ゴシック体", sans-serif;
    line-height: 18px;
    letter-spacing: 0.6px;
    white-space: normal;
    margin-top: 8px;
  }
}
.hero__news-label {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 10px;
}
.hero__news-date {
  display: block;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.6px;
  color: #ffffff;
  margin-bottom: 5px;
}
.hero__news-text {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  margin: 0;
}
@media (max-width: 430px) {
  .hero__news-label {
    margin: 0 10px 0 0;
    flex: 0 0 auto;
  }
  .hero__news-date {
    margin: 0;
    flex: 1;
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeInCenter {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ----- About ----- */
.about {
  padding: 0 0 53px;
  background-color: #f9f9f9;
}
@media (max-width: 600px) {
  .about {
    padding: 56px 0;
  }
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.about__image-left,
.about__image-right,
.about__image-staff,
.about__image-cow {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.about__image-left.is-animated,
.about__image-right.is-animated,
.about__image-staff.is-animated,
.about__image-cow.is-animated {
  opacity: 1;
  transform: translateY(0);
}
.about__image-left {
  display: flex;
  justify-content: flex-end;
  padding-top: 45px;
}
.about__image-left img {
  width: 200px;
  height: 252px;
}
@media (max-width: 900px) {
  .about__image-left img {
    width: 150px;
    height: 189px;
  }
  .about__image-left {
    justify-content: center;
  }
}
.about__image-right {
  display: flex;
  justify-content: flex-start;
  padding-top: 93px;
}
.about__image-right img {
  width: 181px;
  height: 217px;
}
@media (max-width: 900px) {
  .about__image-right img {
    width: 136px;
    height: 163px;
  }
  .about__image-right {
    justify-content: center;
  }
}
.about__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding-top: 160px;
}
@media (max-width: 900px) {
  .about__center {
    order: 1;
  }
}
.about__logo-group {
  margin: 0 auto 60px;
  text-align: center;
}
.about__logo-group img {
  width: 314px;
  height: 54px;
}
@media (max-width: 600px) {
  .about__logo-group img {
    width: 200px;
    height: auto;
  }
}
.about__name {
  font-size: 2.4rem;
  font-weight: 700;
  color: #93c572;
  margin-bottom: 0;
  letter-spacing: 0.05em;
}
.about__desc {
  font-size: 1.6rem;
  font-weight: 700;
  color: #555555;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  max-width: 640px;
}
.about__desc--second {
  margin-top: 30px;
}
.about__images-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 827px;
  margin: 21px auto 0;
}
@media (max-width: 900px) {
  .about__images-bottom {
    justify-content: center;
    gap: 48px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .about__images-bottom {
    gap: 24px;
    margin-top: 32px;
  }
}
.about__image-staff img {
  width: 200px;
  height: 200px;
}
@media (max-width: 600px) {
  .about__image-staff img {
    width: 120px;
    height: 120px;
  }
}
.about__image-cow img {
  width: 235px;
  height: 269px;
}
@media (max-width: 600px) {
  .about__image-cow img {
    width: 141px;
    height: 161px;
  }
}
@media (max-width: 430px) {
  .about {
    padding: 0 0 40px;
  }
  .about__inner {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: 0;
  }
  .about__image-left {
    order: 1;
    flex: 0 0 50%;
    justify-content: flex-start;
    padding: 40px 0 0 34px;
  }
  .about__image-left img {
    width: 63px;
    height: 79px;
  }
  .about__image-right {
    order: 2;
    flex: 0 0 50%;
    justify-content: flex-end;
    padding: 51px 42px 0 0;
  }
  .about__image-right img {
    width: 57px;
    height: 68px;
  }
  .about__center {
    order: 3;
    flex: 0 0 100%;
    padding: 10px 20px 0;
  }
  .about__logo-group {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .about__logo-group img {
    width: 232px;
    height: 40px;
  }
  .about__desc {
    font-size: 1.6rem;
    font-weight: bold;
    font-family: "YuGothic", "游ゴシック体", sans-serif;
    line-height: 32px;
    letter-spacing: 0;
    color: #555555;
    text-align: center;
    width: 345px;
    max-width: 100%;
    margin: 0 auto;
  }
  .about__desc--second {
    margin-top: 40px;
  }
  .about__images-bottom {
    margin-top: 29px;
    justify-content: flex-start;
    padding: 0;
    gap: 0;
    align-items: flex-start;
  }
  .about__image-staff {
    padding-left: 46px;
  }
  .about__image-staff img {
    width: 86px;
    height: 86px;
  }
  .about__image-cow {
    margin-left: 87px;
  }
  .about__image-cow img {
    width: 92px;
    height: 113px;
  }
}

/* ----- Activities ----- */
.activities {
  background-color: #f9f9f9;
  padding: 0;
}
.activities__card {
  background: #ffffff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
  border-radius: 0 100px 100px 0;
  width: 85.1%;
  max-width: 1163px;
  padding: 80px 80px 80px 203px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .activities__card {
    width: 100%;
    border-radius: 0 40px 40px 0;
    padding: 48px 40px;
  }
}
@media (max-width: 600px) {
  .activities__card {
    border-radius: 0 24px 24px 0;
    padding: 40px 24px;
  }
}
@media (max-width: 430px) {
  .activities {
    background-color: #ffffff;
  }
  .activities__card {
    width: 100%;
    border-radius: 0;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
    padding: 50px 14px 50px;
  }
  .activities__text {
    margin-bottom: 40px;
  }
  .activities__title {
    font-size: 3rem;
    font-family: "YuGothic", "游ゴシック体", sans-serif;
    font-weight: bold;
    line-height: 51px;
    letter-spacing: 3px;
    color: #555555;
  }
}
.activities__title {
  font-size: 4rem;
  font-weight: 700;
  color: #555555;
  letter-spacing: 4px;
  line-height: 68px;
  margin-bottom: 0;
  width: fit-content;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .activities__title {
    font-size: 2.8rem;
    line-height: 1.4;
  }
}
.activities__title-wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 32px;
}
.activities__title-line {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 172px;
  z-index: 0;
}
@media (max-width: 430px) {
  .activities__title-line {
    bottom: 0px;
  }
}
.activities__tabs {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 50px;
}
.activities__tab {
  width: 190px;
  height: 65px;
  font-size: 2rem;
  font-weight: 700;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 34px;
  letter-spacing: 0;
  cursor: pointer;
  background-color: #ffffff;
  color: #f7b560;
  border: none;
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.activities__tab.is-active {
  background-color: #93c572;
  color: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.activities__tab:hover:not(.is-active) {
  opacity: 0.85;
}
@media (max-width: 600px) {
  .activities__tab {
    padding: 8px 20px;
    font-size: 1.3rem;
  }
}
@media (max-width: 430px) {
  .activities__tabs {
    margin-top: 30px;
    gap: 8px;
    margin-bottom: 40px;
  }
  .activities__tab {
    width: 110px;
    height: 50px;
    font-size: 1.6rem;
    border-radius: 10px;
    padding: 0;
    line-height: 1;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .activities__tab:nth-child(3) {
    font-size: 1.4rem;
  }
  .activities__text {
    font-size: 1.6rem;
    font-weight: 500;
    font-family: "YuGothic", "游ゴシック体", sans-serif;
    line-height: 24px;
    letter-spacing: 0;
    color: #555555;
    width: 345px;
    max-width: 100%;
    margin-bottom: 40px;
  }
}
.activities__body {
  display: none;
}
.activities__body.is-active {
  display: block;
}
.activities__text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #555555;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  max-width: 750px;
  margin-bottom: 69px;
}
/* デスクトップ：カード左端を突き破って延長（元デザイン通り） */
.activities__images {
  margin-left: -338px;
  width: calc(100% + 338px - 50px);
  overflow: hidden;
}
@media (max-width: 900px) {
  .activities__images {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 430px) {
  .activities__images {
    margin-top: 80px;
  }
}

/* Slick：画像サイズを元デザイン通り固定 */
.activities__slider-track .slick-slide {
  margin-right: 24px; /* スライド間のギャップ */
}
.activities__slider-track .slick-slide > div {
  width: 300px;
}
.activities__slider-track .slick-slide img {
  width: 300px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
@media (max-width: 430px) {
  .activities__slider-track .slick-slide > div {
    width: 250px;
  }
  .activities__slider-track .slick-slide img {
    width: 250px;
    height: 209px;
  }
}

/* Slick のデフォルト矢印・ドットを非表示 */
.activities__slider-track .slick-prev,
.activities__slider-track .slick-next,
.activities__slider-track .slick-dots {
  display: none !important;
}
/* Slick が付与する overflow を解除（上位で制御済み） */
.activities__slider-track .slick-list {
  overflow: visible;
}
.activities__images .slick-list {
  overflow: hidden;
}

/* ----- FAQ ----- */
.faq {
  padding: 80px 0 120px;
  background-color: #f9f9f9;
}
@media (max-width: 600px) {
  .faq {
    padding: 56px 0;
  }
}
@media (max-width: 430px) {
  .faq {
    padding: 80px 0 60px;
  }
  .faq__title {
    font-size: 3rem;
    font-family: "YuGothic", "游ゴシック体", sans-serif;
    font-weight: bold;
    line-height: 51px;
    letter-spacing: 3px;
    color: #555555;
    text-align: center;
  }
  .faq__title-wrap {
    text-align: center;
  }
}
.faq__title-wrap {
  display: block;
  text-align: center;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.faq__title-line {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 304px;
  z-index: 0;
}
@media (max-width: 430px) {
  .faq__title-line {
    width: 228px;
    bottom: -5px;
  }
}
.faq__title {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 4px;
  line-height: 68px;
  color: #555555;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .faq__title {
    font-size: 2.8rem;
    line-height: 1.4;
  }
}
.faq__list {
  max-width: 960px;
  margin: 49px auto 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.faq__item {
  background: #ffffff;
  border: 3px solid #93c572;
  border-radius: 50px;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: gap 0.25s ease;
}
.faq__item.is-open {
  gap: 0;
}
.faq__item.is-open .faq__question {
  border-radius: 50px 50px 0 0;
  transition: border-radius 0.4s ease;
}
.faq__item.is-open .faq__answer {
  max-height: 400px;
  opacity: 1;
  padding: 8px 20px 40px 40px;
  border: none;
  border-radius: 0 0 50px 50px;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}
.faq__item.is-open .faq__toggle::after {
  content: "−";
}
.faq__item.is-open::before {
  content: '';
  position: absolute;
  left: -3px;
  width: 3px;
  top: calc(50% - 20px);
  height: 40px;
  background: #f9f9f9;
  z-index: 10;
}
.faq__item.is-open::after {
  content: '';
  position: absolute;
  right: -3px;
  width: 3px;
  top: calc(50% - 20px);
  height: 40px;
  background: #f9f9f9;
  z-index: 10;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 22px 40px;
  cursor: pointer;
  background-color: #ffffff;
  border: none;
  border-radius: 50px;
  transition: border-radius 0s;
}
.faq__q-label {
  flex-shrink: 0;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: 0;
  color: #93c572;
  width: 22px;
  text-align: left;
}
.faq__a-label {
  flex-shrink: 0;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0;
  align-self: flex-start;
  color: #f7b560;
  width: 19px;
  text-align: left;
  margin-right: 23px;
}
.faq__q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__q-icon img {
  width: 24px;
  height: 24px;
}
.faq__q-text {
  flex: 1;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0;
  color: #555555;
  text-align: left;
}
@media (max-width: 430px) {
  .faq__q-text {
    font-size: 1.6rem;
    line-height: 24px;
  }
  .faq__item.is-open .faq__question {
    border-radius: 0;
    border-bottom: none;
  }
}
.faq__toggle {
  flex-shrink: 0;
  font-size: 2.8rem;
  font-weight: 700;
  color: #93c572;
  line-height: 1;
  -webkit-text-stroke: 1.5px #93c572;
}
.faq__toggle::after {
  content: "+";
}
@media (max-width: 430px) {
  .faq__toggle {
    font-size: 1.5rem;
    line-height: 15px;
    width: 15px;
    overflow: hidden;
  }
  .faq__list {
    margin: 30px -9px 0;
    gap: 20px;
    max-width: calc(100% + 18px);
  }
  .faq__item {
    border: 3px solid #93c572;
    border-radius: 30px;
    overflow: visible;
    position: relative;
  }
  .faq__question {
    padding: 17px 20px 17px 19px;
    border: none;
    border-radius: 30px;
    align-items: center;
    gap: 13px;
  }
  .faq__item.is-open .faq__question {
    padding: 17px 20px 17px 19px;
    align-items: center;
  }
  .faq__q-label {
    font-size: 2.5rem;
    line-height: 34px;
  }
}
.faq__answer {
  display: flex;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px 0 40px;
  flex-direction: row;
  align-items: center;
  gap: 0;
  border: 3px solid transparent;
  border-top: none;
  border-radius: 0 0 50px 50px;
  background-color: #ffffff;
  transition: max-height 0.25s ease, opacity 0.05s ease, padding 0.25s ease, border-color 0s;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0;
  color: #555555;
  text-align: left;
}
@media (max-width: 600px) {
  .faq__answer {
    padding-left: 20px;
  }
}
@media (max-width: 430px) {
  .faq__answer {
    transition: max-height 0.8s ease, opacity 0.2s ease, padding 0.8s ease;
  }
  .faq__item {
    transition: gap 0.5s ease;
  }
  .faq__item.is-open .faq__answer {
    border: none;
    padding: 10px 21px 30px 19px;
    font-size: 1.6rem;
    line-height: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .faq__a-label {
    font-size: 2.5rem;
    line-height: 35px;
    margin-right: 0;
  }
  .faq__item.is-open .faq__question {
    border-radius: 30px 30px 0 0;
    border-bottom: none;
  }
  .faq__item.is-open {
    gap: 0;
  }
  .faq__item.is-open::before {
    content: '';
    position: absolute;
    left: -3px;
    width: 3px;
    top: calc(50% - 20px);
    height: 40px;
    background: #ffffff;
    z-index: 10;
  }
  .faq__item.is-open::after {
    content: '';
    position: absolute;
    right: -3px;
    width: 3px;
    top: calc(50% - 20px);
    height: 40px;
    background: #ffffff;
    z-index: 10;
  }
}

/* ----- News (TOP版) ----- */
.news {
  padding: 0;
  background-color: #f9f9f9;
}
@media (max-width: 600px) {
  .news {
    padding: 56px 0;
  }
}
@media (max-width: 430px) {
  .news {
    padding: 80px 0 60px;
  }
  .news__title {
    font-size: 3rem;
    font-family: "YuGothic", "游ゴシック体", sans-serif;
    font-weight: bold;
    line-height: 51px;
    letter-spacing: 3px;
    color: #555555;
  }
  .news__desc {
    font-size: 1.6rem;
    line-height: 27px;
    margin: 30px 15px 30px;
    width: auto;
  }
}
.news__inner {
  display: flex;
  align-items: center;
  gap: 56px;
}
.news__left {
  flex-shrink: 0;
  width: 627px;
  padding-left: calc((100vw - 1100px) / 2 + 24px);
}
@media (max-width: 430px) {
  .news__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .news__left {
    width: 100%;
    padding-left: 0;
  }
  .news__right {
    overflow: hidden;
  }
  .news__list {
    gap: 25px;
  }
  .news__item {
    gap: 10px;
  }
  .news__meta {
    gap: 27px;
  }
  .news__date {
    font-size: 1.4rem;
    line-height: 18px;
    letter-spacing: 0.7px;
  }
  .news__tag {
    font-family: "YuGothic", "游ゴシック体", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 24px;
    padding: 6px 20px;
    width: auto;
    height: auto;
  }
  .news__item-title {
    font-family: "YuGothic", "游ゴシック体", sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 27px;
    letter-spacing: 0;
    color: #555555;
  }
}
.news__title-wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 430px) {
  .news__title-wrap {
    margin-left: 14px;
    margin-bottom: 0;
  }
}
.news__title-line {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 172px;
  z-index: 0;
}
.news__title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 68px;
  color: #555555;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  width: fit-content;
}
.news__desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0;
  color: #555555;
  max-width: 400px;
  margin-bottom: 30px;
}
.news__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 301px;
  margin: 0 auto;
  height: 70px;
  background-color: #ffffff;
  border: 2px solid #93c572;
  border-radius: 50px;
  color: #93c572;
  font-size: 1.6rem;
  font-weight: 500;
}
.news__more--sp {
  display: none;
}
@media (max-width: 430px) {
  .news__more:not(.news__more--sp) {
    display: none;
  }
  .news__more--sp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 301px;
    height: 70px;
    margin: 30px auto 0;
    background-color: #ffffff;
    border: 2px solid #93c572;
    border-radius: 50px;
    color: #93c572;
    font-family: "Archivo Narrow", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 2px;
    text-align: center;
  }
}
.news__right {
  flex: 1;
  background-color: #ffffff;
  border-radius: 100px 0 0 100px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
  padding: 80px 50px;
  align-self: stretch;
  display: flex;
  align-items: center;
}
@media (max-width: 430px) {
  .news__right {
    margin-left: 15px;
    flex: none;
    width: 361px;
    min-height: 381px;
    background: #ffffff;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
    border-radius: 50px 0 0 50px;
    padding: 30px 22px 30px 21px;
    overflow: hidden;
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
}
.news__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 430px) {
  .news__list {
    gap: 30px;
  }
}
.news__item {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
@media (max-width: 430px) {
  .news__item {
    gap: 10px;
  }
}
.news__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 23px;
}
.news__date {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.8px;
  color: #555555;
}
.news__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #93c572;
  color: #ffffff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  width: 96px;
  height: 26px;
  border-radius: 5px;
}
.news__item-title {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0;
  color: #555555;
}

/* ----- Access ----- */
.access {
  padding: 120px 0;
  background-color: #f9f9f9;
}
@media (max-width: 600px) {
  .access {
    padding: 56px 0;
  }
}
@media (max-width: 430px) {
  .access {
    padding: 80px 0 60px;
  }
  .access__title {
    font-size: 3rem;
    font-family: "YuGothic", "游ゴシック体", sans-serif;
    font-weight: bold;
    line-height: 51px;
    letter-spacing: 3px;
    color: #555555;
    text-align: center;
  }
  .access__title-wrap {
    text-align: center;
    margin-bottom: 30px;
  }
}
.access__title-wrap {
  display: block;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
.access__title-line {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 172px;
  z-index: 0;
}
.access__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 4px;
  color: #555555;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.access__card {
  display: flex;
  min-height: 600px;
}
.access__left {
  width: 250px;
  flex-shrink: 0;
  background-color: #93c572;
  border-radius: 100px 0 0 100px;
  padding: 80px 50px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 73px;
}
.access__labels {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.access__labels li {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0;
  color: #555555;
}
.access__map-labels p {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0;
  color: #555555;
  margin-bottom: 27px;
}
.access__map-labels a {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0;
  color: #555555;
  text-decoration: underline;
}
.access__right {
  flex: 1;
  background-color: #ffffff;
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-direction: column;
}
.access__values {
  list-style: none;
  padding: 82px 40px 52px 50px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.access__values li {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0;
  color: #555555;
}
.access__map {
  flex: 1;
}
.access__map iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: none;
  border-radius: 0 0 100px 0;
}
@media (max-width: 430px) {
  .access__card {
    margin: 0 -9px;
    width: calc(100% + 18px);
    background: #ffffff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    padding-bottom: 249px;
  }
  .access__left {
    width: 139px;
    border-radius: 50px 0 0 0;
    padding: 33px 10px 20px 20px;
    padding-bottom: 33px;
    gap: 52px;
  }
  .access__labels {
    gap: 0;
  }
  .access__labels li {
    font-size: 1.6rem;
    line-height: 27px;
    font-weight: bold;
  }
  .access__labels li:nth-child(1) { margin-bottom: 28px; }
  .access__labels li:nth-child(2) { margin-bottom: 67px; }
  .access__labels li:nth-child(3) { margin-bottom: 28px; }
  .access__map-labels p {
    font-size: 1.6rem;
    line-height: 27px;
    font-weight: bold;
    margin-bottom: 11px;
  }
  .access__map-labels a {
    font-size: 1.2rem;
    line-height: 20px;
    font-weight: bold;
  }
  .access__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
  }
  .access__values {
    padding: 33px 32px 31px 20px;
    gap: 31px;
  }
  .access__values li {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 24px;
  }
  .access__values li:nth-child(1) {
    white-space: nowrap;
  }
  .access__values li:nth-child(2) {
    white-space: normal;
    max-width: 126px;
    line-height: 21px;
  }
  .access__map {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 249px;
  }
  .access__map iframe {
    width: 100%;
    height: 249px;
    display: block;
  }
}
