@charset "UTF-8";

/* コーディングメモ */
/* PCファーストでコーディング
ブレイクポイント：1024px、700px */

/*-------------------------------------------------------------------------

トップページ

-------------------------------------------------------------------------*/

/* ヒーローイメージ */
.hero-image-wrapper {
  text-align: right;
  position: relative;
}

.hero-image-wrapper .hero-image {
  width: 93%;
  height: 690px;
  object-fit: cover;
}

.hero-image-wrapper .catchcopy {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Sawarabi Mincho";
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .hero-image-wrapper .hero-image {
    width: 100%;
  }

  .hero-image-wrapper .catchcopy {
    font-size: clamp(3rem, 5.69230769vw, 5rem);
  }
}

/* お知らせ */

.subpage-title.news::after {
  content: "お知らせ";
}

.top-news-section {
  padding: 0 15% 0 7%;
}
.top-news-section-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.top-news-section-title {
  font-family: "Libre Franklin";
  letter-spacing: 0.2em;
}

.top-decoration-line {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-decoration-line span {
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #02461e;
}

.top-news-list {
  flex: 1;
}

.top-news-item {
  font-family: "Sawarabi Gothic";
  display: flex;
  gap: 30px;
}

.top-news-arrow-btn {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 3px solid #008537;
  transition: background-color 0.3s ease;
}

.top-news-arrow-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.top-news-arrow-btn a .arrow {
  width: 17px;
  height: 3px;
  margin: 6.4px 0;
  background-color: #008537;
}

.top-news-arrow-btn a .arrow::before,
.top-news-arrow-btn a .arrow::after {
  top: calc(50% - 1.5px);
  width: 12px;
  height: 3px;
  background-color: #008537;
  transform-origin: calc(100% - 1.5px) 50%;
}

.top-news-arrow-btn:hover {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .top-news-section {
    padding: 0 7%;
  }
}

@media (max-width: 1024px) {
  .top-news-section-inner {
    gap: 30px;
  }

  .top-decoration-line {
    display: none;
  }

  .top-news-item {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 700px) {
  .top-news-section {
    padding: 0 5%;
  }

  .top-news-section-title {
    font-size: clamp(1.4rem, 2.66666667vw, 1.6rem);
  }

  .top-news-item {
    flex-direction: column;
    gap: 0;
  }

  .top-news-date {
    font-size: clamp(1rem, 2.66666667vw, 1.6rem);
    line-height: 2;
  }

  .top-news-title {
    font-size: clamp(1rem, 2.66666667vw, 1.6rem);
    line-height: 2;
  }

  .top-news-arrow-btn {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }

  .top-news-arrow-btn a .arrow {
    width: 11px;
    height: 2px;
  }

  .top-news-arrow-btn a .arrow::before,
  .top-news-arrow-btn a .arrow::after {
    top: calc(50% - 1.5px);
    width: 8px;
    height: 2px;
    transform-origin: calc(100% - 0.5px) 50%;
  }
}

/* ガイドリンク */
.top-guide-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 70px;
}

.top-guide-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/aurora-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transform-origin: center;
  z-index: -1;
}

.top-guide-section-inner {
  padding: 200px 7%;
}

.top-guide-list {
  max-width: 1160px;
  margin: 0 auto 200px;
  padding: 160px min(7%, 100px) 70px;
  display: flex;
  gap: 40px;
  background-color: #fff;
  border-radius: 20px;
}

.top-guide-list:last-child {
  margin-bottom: 0;
}

.top-guide-item-title {
  font-family: "Libre Franklin";
  color: #02461e;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2em;
  margin-bottom: 17px;
}

.top-guide-item-title::after {
  display: block;
  font-family: "Sawarabi Gothic";
  color: #02461e;
  font-size: 3rem;
  line-height: 2.3;
  letter-spacing: 0.2em;
}

.top-guide-item-text-wrapper {
  flex: 1;
}

.top-guide-item-text {
  margin-bottom: 10px;
}

/* 1024から1200近辺のレスポンシブ対策 */
.top-guide-item-text.service-text {
  width: 100%;
  min-width: 430px;
}

.top-guide-item-title.foundation::after {
  content: "財団概要";
}

.top-guide-item-title.service::after {
  content: "事業内容";
}

.top-guide-item-image-wrapper {
  flex: 1;
  text-align: right;
}

.top-guide-item-image {
  margin-top: -270px;
  width: 400px;
  height: 560px;
  object-fit: cover;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.top-guide-arrow-btn-wrapper {
  text-align: right;
}

.top-guide-arrow-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  background-color: #008537;
  border-radius: 100%;
  transition: background-color 0.3s ease;
}

.top-guide-arrow-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.top-guide-arrow-btn a .arrow {
  width: 32px;
  height: 3px;
  margin: 11.1px 0;
  background-color: #ffffff;
}

.top-guide-arrow-btn a .arrow::before,
.top-guide-arrow-btn a .arrow::after {
  top: calc(50% - 1.5px);
  width: 19px;
  height: 3px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1.5px) 50%;
}

@media (max-width: 1024px) {
  .sp-br-none {
    display: none;
  }

  .top-guide-section-inner {
    padding: 150px 7%;
  }

  .top-guide-list {
    flex-direction: column-reverse;
    gap: 0;
    padding: 50px 5%;
    margin-bottom: 150px;
  }

  /* 1024から1200近辺のレスポンシブ対策 */
  .top-guide-item-text.service-text {
    min-width: initial;
  }

  .top-guide-item-image-wrapper {
    text-align: center;
    margin-bottom: 30px;
  }

  .top-guide-item-image {
    margin-top: -160px;
  }

  .top-guide-list {
    flex-direction: column-reverse;
    padding: 50px 5%;
  }

  .top-guide-item-image-wrapper {
    text-align: center;
    padding: 0 4%;
    margin-bottom: 60px;
  }

  .top-guide-item-image {
    margin-top: -140px;
  }
}

@media (max-width: 700px) {
  .top-guide-section-inner {
    padding: 150px 5%;
  }

  .top-guide-item-title {
    font-size: 2.5rem;
    line-height: 2.5;
    margin-bottom: 30px;
  }

  .top-guide-item-title::after {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .top-guide-item-image-wrapper {
    margin-bottom: 0;
  }

  .top-guide-item-image {
    height: 450px;
  }

  .top-guide-item-image-wrapper {
    margin-bottom: 30px;
  }

  .top-guide-item-image {
    height: 393px;
  }

  .top-guide-arrow-btn {
    width: 50px;
    height: 50px;
  }

  .top-guide-arrow-btn a .arrow {
    width: 23px;
    height: 4px;
  }

  .top-guide-arrow-btn a .arrow::before,
  .top-guide-arrow-btn a .arrow::after {
    width: 16px;
    height: 4px;
  }
}

/*-------------------------------------------------------------------------

財団概要

-------------------------------------------------------------------------*/
.subpage-title.foundation::after {
  content: "財団概要";
}

/* 代表挨拶 */

.owner-message-section {
  width: 100%;
  height: 370px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #eff9f7, #dbeefa);
}

.owner-message-text {
  font-family: "Sawarabi Mincho";
  color: #062d16;
  font-size: 3rem;
}

.owner-message-subtext {
  font-family: "Sawarabi Mincho";
  color: #062d16;
  font-size: 2rem;
}

/* 財団理念 */

.philosophy-section {
  padding: 70px 7%;
}

.philosophy-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.philosophy-title {
  font-family: "Libre Franklin";
  color: #02461e;
  font-size: clamp(2.5rem, 4.8828125vw, 5rem);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 70px;
}

.philosophy-title::after {
  content: "財団理念";
  display: block;
  font-family: "Sawarabi Gothic";
  color: #02461e;
  font-size: clamp(1.6rem, 2.9296875vw, 3rem);
  line-height: 2.3;
  letter-spacing: 0.2em;
}

.philosophy-text {
  color: #034c5c;
  letter-spacing: 0.1em;
}

.foundation-section {
  padding: 70px 7% 200px;
}

.foundation-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.foundation-title {
  font-family: "Libre Franklin";
  color: #02461e;
  font-size: clamp(2.5rem, 4.8828125vw, 5rem);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 70px;
}

.foundation-title::after {
  content: "財団情報";
  display: block;
  font-family: "Sawarabi Gothic";
  color: #02461e;
  font-size: clamp(1.6rem, 2.9296875vw, 3rem);
  line-height: 2.3;
  letter-spacing: 0.2em;
}

.foundation-list {
  padding: 10px 100px;
  border-bottom: 2px solid #e4e4e4;
  display: flex;
}

.foundation-list:first-of-type {
  border-top: 2px solid #e4e4e4;
}

.foundation-item-title {
  width: 30%;
}

.foundation-item-desc {
  width: 70%;
}

.foundation-item-desc .pc-br-none {
  display: none;
}

@media (max-width: 700px) {
  .owner-message-section {
    height: 300px;
  }

  .owner-message-text {
    font-size: 2.1rem;
  }

  .owner-message-subtext {
    font-size: 1.4rem;
  }

  .philosophy-section {
    padding: 50px 5% 100px;
  }

  .philosophy-title {
    margin-bottom: 50px;
  }

  .foundation-section {
    padding: 0 5% 100px;
  }

  .foundation-title {
    margin-bottom: 50px;
  }

  .foundation-list {
    padding: 10px 0;
    gap: 2%;
  }

  .foundation-list:first-of-type {
    border-top: 2px solid #e4e4e4;
  }

  .foundation-item-title {
    width: 28%;
    font-size: 1.3rem;
  }

  .foundation-item-desc {
    width: 72%;
    font-size: 1.3rem;
  }

  .foundation-item-desc .pc-br-none {
    display: block;
  }
}

/*-------------------------------------------------------------------------

事業内容ページ

-------------------------------------------------------------------------*/

.subpage-title.service::after {
  content: "事業内容";
}

/* 事業内容 */
.service-section {
  padding: 140px 7% 200px;
}

.service-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-item-title {
  text-indent: -1em;
  padding-left: 1em;
  font-family: noto sans;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 5px;
}

.service-item-text {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 20px;
}

@media (max-width: 1024px) {
  .service-section {
    padding: 100px 7% 200px;
  }
}

@media (max-width: 700px) {
  .service-section {
    padding: 50px 5% 100px;
  }

  .service-list {
    gap: 30px;
  }

  .service-item-title {
    font-size: 1.6rem;
  }

  .service-item-text {
    font-size: 1.4rem;
  }
}

/* 組織図 */

.org-chart-section {
  padding: 0 7% 200px;
}

.org-chart-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.org-chart-section-title {
  font-family: "Libre Franklin";
  color: #02461e;
  font-size: clamp(2.5rem, 4.8828125vw, 5rem);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.2em;
}

.org-chart-section-title::after {
  content: "組織図";
  display: block;
  font-family: "Sawarabi Gothic";
  color: #02461e;
  font-size: clamp(1.6rem, 2.9296875vw, 3rem);
  line-height: 2.3;
  letter-spacing: 0.2em;
}

.org-chart-image-wrapper {
  margin-bottom: 50px;
}

.org-chart-image-sp {
  display: none;
}

.org-chart-list-block:not(:last-child) {
  margin-bottom: 100px;
}

.org-chart-list-title {
  font-family: noto sans;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  border-bottom: 1px solid #008537;
  padding-bottom: 26px;
  margin-bottom: 40px;
}

.org-chart-list {
  display: grid;
  grid-template-columns: 300px 1fr;
}

.org-chart-item-title {
  font-size: 2rem;
  color: #fff;
  background-color: #008537;
  display: flex;
  align-items: center;
  padding-left: 48px;
  outline: 1px solid #fff;
}

.org-chart-list-block .org-chart-list:first-of-type dd {
  border-top: 1px solid #e4e4e4;
}

.org-chart-item-text {
  padding: 30px 0 30px 45px;
  border-bottom: 1px solid #e4e4e4;
}

.org-chart-role-detail {
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
}

.org-chart-role-detail:not(:last-child) {
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .org-chart-list {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .org-chart-list + .org-chart-list {
    margin-top: 50px;
  }

  .org-chart-item-title {
    padding: 10px 0 10px 36px;
    outline: none;
    margin-bottom: 30px;
  }

  .org-chart-list-block .org-chart-list:first-of-type dd {
    border-top: none;
  }

  .org-chart-item-text {
    padding: 0;
    border-bottom: none;
  }
}

@media (max-width: 700px) {
  .org-chart-section {
    padding: 0 5% 100px;
  }

  .org-chart-image-wrapper {
    margin-bottom: 30px;
  }

  .org-chart-image-pc {
    display: none;
  }

  .org-chart-image-sp {
    display: block;
  }

  .org-chart-list-block:not(:last-child) {
    margin-bottom: 80px;
  }

  .org-chart-list-title {
    font-size: 2rem;
    padding-bottom: 20px;
    margin-bottom: 34px;
  }

  .org-chart-item-title {
    font-size: 1.6rem;
    padding: 5px 0 5px 20px;
    margin-bottom: 20px;
  }
}

/* 商品情報 */

.service-products-section {
  padding: 200px 7%;
  margin-bottom: 70px;
  background: linear-gradient(to right, #eff9f7, #dbeefa);
}

.service-products-section-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
}

.service-products-text-wrapper {
  flex: 1;
}

.service-products-title {
  font-family: "Libre Franklin";
  color: #02461e;
  font-size: clamp(2.5rem, 4.8828125vw, 5rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2em;
  margin-bottom: 17px;
}

.service-products-title::after {
  content: "商品情報";
  display: block;
  font-family: "Sawarabi Gothic";
  color: #02461e;
  font-size: clamp(1.6rem, 2.9296875vw, 3rem);
  line-height: 2.3;
  letter-spacing: 0.2em;
}

.service-products-text {
  margin-bottom: 30px;
}

.service-products-image-wrapper {
  position: relative;
  flex: 1;
}

.service-products-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
  .service-products-section {
    padding: 100px 7% 200px;
  }

  .service-products-section-inner {
    flex-direction: column-reverse;
  }

  .service-products-image-wrapper {
    text-align: center;
  }

  .service-products-image {
    position: initial;
    transform: none;
    display: inline-block;
    width: 100%;
    max-width: 450px;
    object-fit: cover;
  }

  .service-products-link-btn-wrapper {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .service-products-section {
    padding: 50px 5% 100px;
    margin-bottom: 50px;
  }

  .service-products-title {
    font-size: 2.5rem;
    line-height: 2.5;
    margin-bottom: 30px;
  }

  .service-products-title::after {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}

/*-------------------------------------------------------------------------

商品情報ページ

-------------------------------------------------------------------------*/

.subpage-title.products::after {
  content: "商品情報";
}

/* 商品情報 */
.products-section {
  padding: 140px 7% 200px;
}

.products-section-inner {
  max-width: 1160px;
  margin: 0 auto 70px;
}

.products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 40px;
}

.products-item .products-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.products-content-wrapper {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 40px 0;
}

.products-content-wrapper .products-title {
  font-size: 2rem;
  color: #02461e;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.products-desc {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.products-btn-wrapper {
  text-align: center;
}

.products-btn-wrapper .link-btn-green {
  height: 55px;
}

.link-btn-green a .arrow::before,
.link-btn-green a .arrow::after {
  transform-origin: calc(100% - 2px) 50%;
}

@media (max-width: 1024px) {
  .products-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .products-section {
    padding: 50px 5% 100px;
  }

  .products-section-inner {
    margin-bottom: 50px;
  }

  .products-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }

  .products-content-wrapper {
    height: 180px;
    padding: 30px 35px 0;
  }

  .products-btn-wrapper .link-btn-green {
    height: 40px;
  }
}

/*-------------------------------------------------------------------------

商品情報個別ページ（共通）

-------------------------------------------------------------------------*/

.single-products-title-bg {
  background-image: url(img/abstract_green_bokeh_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.single-products-title-bg-inner {
  width: 100%;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-products-image {
  width: 620px;
  transform: translateX(100px);
  opacity: 0;
  animation: fadeInRight 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.single-products-title-wrapper {
  width: 100%;
  padding: 0 5%;
  margin-top: -60px;
  display: flex;
  justify-content: center;
}

.single-products-title-inner {
  background-color: #008537;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  padding: 25px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-products-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.single-products-title-ja {
  font-size: 3rem;
  color: #fff;
  letter-spacing: 0.2em;
  line-height: 1;
}

.single-products-title-en {
  display: inline-block;
  font-family: Libre Franklin;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
}

.sp-carousel-btn-section {
  display: none;
}

.single-products-related-inner {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .single-products-title-bg-inner {
    height: 390px;
  }

  .single-products-image {
    max-width: 350px;
    width: 100%;
    margin-top: 60px;
  }

  .single-products-title-wrapper {
    margin-top: -35px;
  }

  .single-products-title-inner {
    max-width: 350px;
    width: 100%;
    padding: 15px 30px;
  }

  .single-products-title {
    gap: 10px;
  }

  .single-products-title-ja {
    font-size: 2rem;
  }

  .single-products-title-en {
    font-size: 1rem;
  }
}

/* 商品説明セクション */

.single-products-desc-section {
  padding: 80px 7% 0;
  margin-bottom: 70px;
}

.single-products-desc-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.single-products-desc-card {
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  display: flex;
  gap: 40px;
  padding: 70px 7%;
}

.single-products-desc-card:nth-of-type(even) {
  flex-direction: row-reverse;
}

.single-products-desc-image {
  flex: 1;
}

.single-products-desc-wrapper {
  flex: 1;
}

.single-products-desc-heading {
  font-family: Noto Sans;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 15px;
}

.single-products-desc-heading.resveratrol {
  text-align: center;
}

.single-products-desc-text {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 20px;
}

.single-products-desc-text.resveratrol {
  text-align: center;
  margin-bottom: 60px;
}

.single-products-desc-text:last-child {
  margin-bottom: 0;
}

.single-products-desc-attention-text {
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .single-products-desc-card {
    flex-direction: column;
    gap: 0;
  }

  .single-products-desc-card:nth-of-type(even) {
    flex-direction: column;
  }

  .single-products-desc-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 700px) {
  .single-products-desc-section {
    padding: 50px 5% 0;
    margin-bottom: 100px;
  }

  .single-products-desc-inner {
    gap: 50px;
  }

  .single-products-desc-card {
    padding: 40px 5%;
  }

  .single-products-desc-image {
    margin-bottom: 20px;
  }

  .single-products-desc-image img {
    aspect-ratio: 3/2;
    object-fit: cover;
  }

  .single-products-desc-heading {
    margin-bottom: 10px;
  }

  .single-products-desc-heading.resveratrol {
    text-align: left;
  }

  .single-products-desc-text {
    font-size: 1.4rem;
  }

  .single-products-desc-text.resveratrol {
    text-align: left;
  }

  .single-products-desc-attention-text {
    font-size: 1.2rem;
  }
}

/* 商品仕様 */

.products-spec-section {
  padding: 0 7% 140px;
}

.products-spec-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.products-spec-title {
  font-family: Libre Franklin;
  font-size: 3rem;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

/* 仕様の項目が複数ある商品の場合 */
.products-spec-title.v2 {
  margin-bottom: 80px;
}

.products-spec-title::after {
  display: block;
  content: "商品情報";
  font-family: Sawarabi Gothic;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0;
}

.products-spec-content-wrapper {
  margin-bottom: 70px;
}

.products-spec-content {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

/* 仕様の項目が複数ある商品の場合 */
.products-spec-content.v2 {
  margin-bottom: 80px;
}

.products-spec-content.v2:last-of-type {
  margin-bottom: 30px;
}

.products-spec-content.hydrogen-bottle {
  gap: 15px;
}

/* 仕様の項目が複数ある商品の場合 */
.products-spec-list-wrapper {
  flex: 1;
}

.products-spec-list-wrapper.hydrogen-beauty-gel {
  flex: 0.48;
}

.products-spec-list-heading {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 40px;
}

.products-spec-list-small-heading {
  font-size: 1.6rem;
  color: #034c54;
  line-height: 1;
  margin-bottom: 16px;
}

.products-spec-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.products-spec-item {
  border: 1px solid #e4e4e4;
  border-radius: 30px;
  padding: 8px 30px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.products-spec-item-title-text {
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.products-spec-item-desc {
  flex: 1;
  border-left: 1px solid #e4e4e4;
  padding-left: 8px;
}

.products-spec-item-desc-text {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0;
  padding-top: 7px;
}

.products-spec-image {
  flex: 1;
}

.products-spec-image img {
  border-radius: 20px;
}

.products-spec-image-caption {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 10px;
}

.products-spec-attention-text {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  .products-spec-title {
    padding: 0 7%;
  }

  .products-spec-list-heading {
    padding: 0 7%;
  }

  .products-spec-image {
    padding: 0 7%;
  }

  .products-spec-content {
    flex-direction: column-reverse;
  }

  .products-spec-content.v2:nth-of-type(2) {
    flex-direction: column;
    gap: 80px;
  }

  .products-spec-content.v2:nth-of-type(3) {
    flex-direction: column;
  }

  .products-spec-list-small-heading {
    padding: 0 7%;
  }

  .products-spec-list {
    width: 100%;
  }
  /* 仕様の項目が複数ある商品の場合 */
  .products-spec-content.hydrogen-bottle {
    gap: 50px;
  }
}

@media (max-width: 700px) {
  .products-spec-section {
    padding: 0 5% 100px;
  }

  .products-spec-title {
    font-size: 2.5rem;
    padding: 0 5%;
    margin-bottom: 30px;
  }

  /* 仕様の項目が複数ある商品の場合 */
  .products-spec-title.v2 {
    margin-bottom: 30px;
  }

  .products-spec-title::after {
    letter-spacing: 0.2em;
  }

  .products-spec-list-heading {
    padding: 0 5%;
  }

  .products-spec-image {
    padding: 0 5%;
  }

  .products-spec-content-wrapper {
    margin-bottom: 50px;
  }

  .products-spec-content {
    gap: 50px;
  }

  /* 仕様の項目が複数ある商品の場合 */

  .products-spec-content.v2 {
    margin-bottom: 50px;
  }

  .products-spec-content.v2:nth-of-type(2) {
    gap: 50px;
  }

  .products-spec-list-heading {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .products-spec-list-small-heading {
    font-size: 1.4rem;
    padding: 0 5%;
    margin-bottom: 20px;
  }

  .products-spec-list {
    gap: 10px;
  }
}

/* 関連商品一覧 */

.related-products-section {
  padding: 0 7% 200px;
}

.slide-btn-wrapper {
  display: none;
}

.related-products-section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.related-products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 40px;
}

.related-products-item .related-products-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.related-products-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 40px 0;
}

.related-products-content-wrapper .related-products-title {
  font-size: 2rem;
  color: #02461e;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.related-products-desc {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.related-products-btn-wrapper {
  text-align: center;
}

.related-products-btn-wrapper .link-btn-green {
  height: 55px;
}

@media (max-width: 1024px) {
  .related-products-section {
    padding: 0 0 200px;
  }

  .slide-btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .slide-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slide-btn span {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 2px;
    margin: 2.1px 0;
    border-radius: 9999px;
    background-color: #008537;
  }

  .slide-btn span::before,
  .slide-btn span::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    width: 5px;
    height: 2px;
    border-radius: 9999px;
    background-color: #008537;
  }

  .slide-btn-prev span::before,
  .slide-btn-prev span::after {
    left: 0;
    transform-origin: 0 50%;
  }

  .slide-btn-next span::before,
  .slide-btn-next span::after {
    right: 0;
    transform-origin: calc(100% - 1px) 50%;
  }

  .slide-btn span::before {
    transform: rotate(45deg);
  }

  .slide-btn span::after {
    transform: rotate(-45deg);
  }

  .slide-btn span:hover::before,
  .slide-btn span:hover::after {
    background-color: #9ccb6c;
  }

  .slide-btn-prev,
  .slide-btn-next {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    border: 1px solid #e4e4e4;
  }

  .slide-btn:hover {
    color: #9ccb6c;
  }

  .slide-btn-prev:hover span,
  .slide-btn-prev:hover span::before,
  .slide-btn-prev:hover span::after,
  .slide-btn-next:hover span,
  .slide-btn-next:hover span::before,
  .slide-btn-next:hover span::after {
    background-color: #9ccb6c;
  }

  .slide-btn-prev:hover span,
  .slide-btn-next:hover span {
    background-color: #9ccb6c;
  }

  .related-products-list {
    display: flex;
    gap: 100px 0;
  }
}

@media (max-width: 700px) {
  .related-products-section {
    padding-bottom: 100px;
  }

  .related-products-section-inner {
    margin-bottom: 50px;
  }

  .related-products-image-wrapper img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }

  .related-products-content-wrapper {
    height: auto;
    padding: 30px 35px 0;
  }

  .related-products-content-wrapper .related-products-title {
    font-size: 1.6rem;
  }

  .related-products-btn-wrapper .link-btn-green {
    height: 40px;
  }
}

/*-------------------------------------------------------------------------

お問い合わせ案内ページ

-------------------------------------------------------------------------*/

.contact-guide-section {
  padding: 140px 7% 200px;
}

.contact-guide-section-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.faq-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #008537;
  border-radius: 10px;
  padding: 67px 5% 62px;
}

.faq-section-title,
.contact-section-title {
  font-family: Noto Sans;
  color: #fff;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1;
  text-align: center;
}

.faq-section-text,
.contact-section-text {
  color: #fff;
}

.contact-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #9ccb6c;
  border-radius: 10px;
  padding: 67px 5% 62px;
}

.faq-section-btn,
.contact-section-btn {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: auto;
  transition: opacity 0.3s ease;
}

.faq-section-btn a,
.contact-section-btn a {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.faq-icon {
  flex: 1;
  min-width: 100px;
  height: 100%;
  background-color: #9ccb6c;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-icon img {
  display: inline-block;
  width: 30px;
  height: auto;
}

.faq-section-btn-text {
  flex: 3.5;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-section-btn-text p {
  font-family: Noto Sans;
  font-weight: 600;
  font-size: 2.4rem;
  color: #007c97;
}

.contact-icon {
  flex: 1;
  min-width: 100px;
  height: 100%;
  background-color: #008537;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-icon img {
  display: inline-block;
  width: 50px;
  height: auto;
}

.contact-section-btn-text {
  flex: 3.5;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section-btn-text p {
  font-family: Noto Sans;
  font-weight: 600;
  font-size: 2.4rem;
  color: #007c97;
}

@media (max-width: 1024px) {
  .contact-guide-section-inner {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .contact-guide-section {
    padding: 50px 5% 100px;
  }

  .contact-guide-section-inner {
    gap: 50px;
  }

  .faq-section,
  .contact-section {
    padding: 40px 5%;
  }

  .faq-section-title,
  .contact-section-title {
    font-size: 2rem;
  }

  .faq-section-btn-text,
  .contact-section-btn-text {
    flex: 3.1;
  }

  .faq-section-btn-text p,
  .contact-section-btn-text p {
    font-size: 2rem;
  }
}

/*-------------------------------------------------------------------------

お問い合わせフォームページ

-------------------------------------------------------------------------*/
.subpage-title.contact::after {
  content: "お問い合わせ";
}

.contact-form-section {
  padding: 140px 7% 200px;
}

.contact-form-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.form-leadtext {
  text-align: center;
  margin-bottom: 100px;
}

.form-box {
  margin-bottom: 70px;
}

.form-item {
  margin-bottom: 22px;
}

.form-item:last-of-type {
  margin-bottom: 50px;
}

.form-item-title {
  font-size: 2rem;
  line-height: 2;
  font-weight: 400;
  margin-bottom: 10px;
}

.required-mark {
  color: #d30606;
}

.form-item-input {
  width: 100%;
  padding: 10px 45px;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 50px;
}

.form-textarea {
  width: 100%;
  height: 150px;
  padding: 10px 45px;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 50px;
  resize: vertical;
  overflow: auto;
}

.form-item-input:focus,
.form-textarea:focus {
  outline: none;
  border: 2px solid #62a17a;
}

.form-item-input::placeholder {
  color: #e4e4e4;
}

.confirm-checkbox-wrapper label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.confirm-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
}

.confirm-checkbox:checked {
  background-color: #007bff;
  box-shadow: none;
}

.confirm-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 22px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(40deg);
}

.form-btn-wrapper {
  text-align: center;
}

.submit-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.arrow-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  pointer-events: none;
}

span.wpcf7-spinner {
  display: none;
}

@media screen and (max-width: 700px) {
  .contact-form-section {
    padding: 50px 5% 100px;
  }

  .form-leadtext {
    text-align: left;
    margin-bottom: 50px;
  }

  .form-box {
    margin-bottom: 50px;
  }

  .form-item-title {
    font-size: 1.6rem;
    line-height: 2.5;
  }

  .form-item-input {
    font-size: 1.6rem;
    line-height: 2.5;
    padding: 10px 20px;
  }

  .form-textarea {
    height: 200px;
    padding: 10px 20px;
    border-radius: 20px;
  }

  .confirm-checkbox {
    margin: 2px 0 auto 0;
  }

  .confirm-checkbox-wrapper label {
    line-height: 1.8;
  }
}

/*-------------------------------------------------------------------------

お問い合わせサンクスページ

-------------------------------------------------------------------------*/
.subpage-title.contact-form-thanks::after {
  content: "お問い合わせありがとうございました";
}

.contact-form-thanks-section {
  padding: 140px 7% 200px;
}

.contact-form-thanks-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.contact-form-thanks-text {
  text-align: center;
  margin-bottom: 70px;
}

.contact-form-thanks-btn-wrapper {
  text-align: center;
}

@media (max-width: 700px) {
  .subpage-title.contact-form-thanks::after {
    white-space: normal;
  }

  .contact-form-thanks-section {
    padding: 50px 5% 100px;
  }

  .contact-form-thanks-text {
    text-align: left;
    margin-bottom: 50px;
  }
}

/*-------------------------------------------------------------------------

お知らせ一覧ページ（財団委員向けのお知らせページも含む）

-------------------------------------------------------------------------*/

/* 検索フォーム */

.search-form-section {
  padding: 140px 7% 0;
}

.search-form-section-inner {
  max-width: 960px;
  margin: 0 auto;
  background-color: #f6f6f6;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #e4e4e4;
}

.search-filters-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 45px;
}

.search-filter-item {
  display: flex;
  align-items: center;
}

.search-filter-label {
  width: 220px;
  font-size: 1.8rem;
  white-space: nowrap;
}

.search-filter-select-wrapper {
  position: relative;
}

.search-filter-select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: inline-block;
  width: 13px;
  height: 12px;
  background: #008537;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.search-filter-select {
  height: 60px;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 50px;
  padding: 0 24px;
}

.search-filter-select.year,
.search-filter-select.month {
  width: 130px;
}

.search-filter-select.category {
  width: 43.666667vw;
  max-width: 400px;
}

.search-filter-input {
  flex: 1;
  height: 60px;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 50px;
  padding: 0 24px;
}

.search-filter-input::placeholder {
  color: #e4e4e4;
}

.search-button-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.search-button-wrapper:last-of-type {
  margin-bottom: 0;
}

.search-submit-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.search-icon-image {
  display: inline-block;
  width: 22px;
  height: auto;
}

.search-reset-btn {
  color: #008537;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* 検索条件の表示 */
.search-results-info {
  margin-bottom: 50px;
}

.search-results-text {
  font-family: Noto Sans;
  font-size: 2.5rem;
  font-weight: 600;
  color: #034c54;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.search-filter-select:focus,
.search-filter-input:focus {
  border: 2px solid #62a17a;
}

/* 旧Edge/IEのデフォルト矢印を消す（保険） */
.search-filter-select::-ms-expand {
  display: none;
}

/* オプションの色味（ブラウザ依存のため効く範囲で） */
.search-filter-select option {
  font-size: 1.6rem;
  padding: 8px 0;
  color: #02461e;
  background-color: #fff;
}

/* オプション hover（対応ブラウザでのみ反映） */
.search-filter-select option:hover,
.search-filter-select option:checked {
  background-color: #f2fbf5;
}

/* ドロップダウンのスクロールバー装飾（WebKit系） */
.search-filter-select::-webkit-scrollbar {
  width: 10px;
}
.search-filter-select::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}
.search-filter-select::-webkit-scrollbar-thumb {
  background-color: #9ccb6c;
  border-radius: 10px;
  border: 2px solid #f5f5f5;
}

@media (max-width: 1024px) {
  .search-form-section {
    padding: 100px 5% 0;
  }
}

@media (max-width: 700px) {
  .search-form-section {
    padding: 0;
  }

  .search-form-section-inner {
    padding: 50px 5%;
    border: none;
    border-radius: 0;
  }

  .search-filter-list {
    gap: 40px;
    margin-bottom: 30px;
  }

  .search-filter-item {
    flex-direction: column;
    align-items: normal;
    gap: 4px;
  }

  .search-filter-label {
    font-size: 1.6rem;
    width: 100%;
  }

  .search-filter-select,
  .search-filter-input {
    height: 52px;
    padding: 0 20px;
  }

  .search-filter-input {
    flex: auto;
  }

  .search-filter-select.year,
  .search-filter-select.month,
  .search-filter-select.category {
    width: 100%;
  }

  .search-filter-select.category {
    max-width: none;
  }

  .search-button-wrapper {
    margin-bottom: 20px;
  }

  .search-submit-btn {
    height: 40px;
    padding: 0 18px 0 16px;
  }

  /* 検索条件の表示 */
  .search-results-info {
    margin-bottom: 30px;
  }

  .search-results-text {
    font-size: 2rem;
    color: #034c54;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

/* 財団委員向けのお知らせ */

.subpage-title.member-news::after {
  content: "財団委員向けのお知らせ";
}

.archive-news-section {
  padding: 140px 7% 200px;
}

.archive-news-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.archive-news-item {
  border-bottom: 1px solid #e4e4e4;
  transition: opacity 0.3s ease;
}

.archive-news-item.not-found-news-item {
  border-bottom: none;
}

.archive-news-item a {
  display: block;
  padding: 30px 0;
}

.archive-news-heading-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.archive-news-date-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.archive-news-date {
  font-size: 1.8rem;
  line-height: 1;
}

.archive-news-category-item {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.archive-news-category-list {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  background-color: #008537;
  padding: 5px 12px;
  border-radius: 50px;
}

.archive-news-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.archive-news-title {
  font-size: 1.8rem;
  line-height: 1.5;
}

.archive-news-arrow-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.archive-news-arrow-btn .arrow {
  width: 25px;
  height: 4px;
  margin: 7.8px 0;
  background-color: #008537;
}

.archive-news-arrow-btn .arrow::before,
.archive-news-arrow-btn .arrow::after {
  top: calc(50% - 2px);
  width: 15px;
  height: 4px;
  background-color: #008537;
  transform-origin: calc(100% - 1px) 50%;
}

@media (max-width: 1024px) {
  .archive-news-heading-wrapper {
    flex-direction: column;
  }

  .archive-news-section {
    scroll-margin-top: clamp(80px, 20.5128vw, 210px);
  }
}

@media (max-width: 700px) {
  .archive-news-section {
    padding: 50px 5% 100px;
  }

  .archive-news-item a {
    padding: 20px 0 20px;
  }

  .archive-news-heading-wrapper {
    gap: 15px;
  }

  .archive-news-date-wrapper {
    flex-direction: column;
    gap: 5px;
  }

  .archive-news-date {
    font-size: 1.4rem;
    line-height: 1;
    margin: 0 auto 5px 0;
  }

  .archive-news-category-item {
    width: 100%;
  }

  .archive-news-category-list {
    font-size: 1.3rem;
    padding: 4px 10px;
  }

  .archive-news-title {
    font-size: 1.6rem;
  }

  .archive-news-arrow-btn .arrow {
    width: 25px;
    height: 3px;
    margin: 7.8px 0;
    background-color: #008537;
  }

  .archive-news-arrow-btn .arrow::before,
  .archive-news-arrow-btn .arrow::after {
    top: calc(50% - 1px);
    width: 15px;
    height: 3px;
    background-color: #008537;
    transform-origin: calc(100% - 1px) 50%;
  }
}

/*-------------------------------------------------------------------------

お知らせ詳細ページ（財団委員向けのお知らせページも含む）

-------------------------------------------------------------------------*/
.single-news-section {
  padding: 140px 7% 200px;
}

.single-news-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.single-news-heading-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 30px;
}

.single-news-date-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.single-news-date {
  font-size: 2.5rem;
  line-height: 1.2;
}

.single-news-category-item {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.single-news-category-list {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  background-color: #008537;
  padding: 8px 18px;
  border-radius: 50px;
}

.single-news-title {
  font-size: 2.5rem;
  line-height: 1.5;
}

.single-news-text-wrapper {
  margin-bottom: 70px;
}

.single-news-btn-wrapper {
  text-align: center;
}

@media (max-width: 700px) {
  .single-news-section {
    padding: 50px 5% 100px;
  }

  .single-news-heading-wrapper {
    gap: 15px;
    padding-bottom: 25px;
    margin-bottom: 10px;
  }

  .single-news-date-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .single-news-date {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-right: auto;
  }

  .single-news-category-item {
    width: 100%;
  }

  .single-news-category-list {
    font-size: 1.3rem;
    padding: 4px 10px;
  }

  .single-news-title {
    font-size: 1.8rem;
  }

  .single-news-text-wrapper {
    margin-bottom: 50px;
  }
}

/*-------------------------------------------------------------------------

プライバシーポリシー

-------------------------------------------------------------------------*/
.subpage-title.privacy-policy::after {
  content: "プライバシーポリシー";
}

.privacy-policy-section {
  font-family: Noto Sans;
  padding: 140px 7% 200px;
}

.privacy-policy-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.privacy-policy-outline {
  margin-bottom: 70px;
}

.privacy-policy-outline-title,
.privacy-policy-about-title {
  color: #02461e;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.privacy-policy-about-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.privacy-policy-about-item-title {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 700px) {
  .privacy-policy-section {
    padding: 50px 5% 100px;
  }

  .privacy-policy-outline {
    margin-bottom: 40px;
  }

  .privacy-policy-outline-title,
  .privacy-policy-about-title {
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 20px;
  }
}

/*-------------------------------------------------------------------------

特定商取引に基づく表記

-------------------------------------------------------------------------*/
.subpage-title.legal-notices::after {
  content: "特定商取引に基づく表記";
}

.legal-notices-section {
  font-family: Noto Sans;
  padding: 140px 7% 200px;
}

.legal-notices-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.legal-notices-list:first-of-type {
  border-top: 1px solid #e4e4e4;
}

.legal-notices-list {
  padding: 30px 0;
  border-bottom: 1px solid #e4e4e4;
  display: flex;
}

.legal-notices-item-title {
  font-size: 1.8rem;
  font-weight: bold;
  width: 30%;
}

.legal-notices-item-desc {
  font-size: 1.8rem;
  width: 70%;
}

@media (max-width: 1024px) {
  .legal-notices-list {
    flex-direction: column;
  }

  .legal-notices-item-title {
    font-size: 1.6rem;
    width: 100%;
  }

  .legal-notices-item-desc {
    font-size: 1.6rem;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .legal-notices-section {
    padding: 50px 5% 100px;
  }
}

/*-------------------------------------------------------------------------

404エラーページ

-------------------------------------------------------------------------*/
.subpage-title.error404::after {
  content: "お探しのページは見つかりませんでした";
}

.error404-section {
  padding: 140px 7% 200px;
}

.error404-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.error404-text {
  text-align: center;
  margin-bottom: 70px;
}

.error404-btn-wrapper {
  text-align: center;
}

@media (max-width: 700px) {
  .subpage-title.error404::after {
    white-space: normal;
  }

  .error404-section {
    padding: 50px 5% 100px;
  }

  .error404-text {
    text-align: left;
    margin-bottom: 50px;
  }
}

/*-------------------------------------------------------------------------

メンテナンスページ

-------------------------------------------------------------------------*/
.subpage-title.maintenance::after {
  content: "現在準備中です";
}

.maintenance-section {
  padding: 140px 7% 200px;
}

.maintenance-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.maintenance-text {
  text-align: center;
  margin-bottom: 70px;
}

.maintenance-btn-wrapper {
  text-align: center;
}

@media (max-width: 700px) {
  .subpage-title.maintenance::after {
    white-space: normal;
  }

  .maintenance-section {
    padding: 50px 5% 100px;
  }

  .maintenance-text {
    text-align: left;
    margin-bottom: 50px;
  }
}
