@charset "utf-8";

/* privacy.html / sitemap.html 共通ページ CSS
   page_service.css の .page-title 共通スタイルを継承し、
   個別の main content セクションのみここで定義する。 */

/*=================================================================
  ページタイトル 個別調整
=================================================================*/
.page-title-others {
  height: 395px;
}
#privacy-page .page-title-others,
#sitemap-page .page-title-others {
  height: 445px;
}
#privacy-page .page-title-others .page-title-gradient,
#sitemap-page .page-title-others .page-title-gradient {
  background: none;
}
#privacy-page .page-title-others .page-title-copy .content,
#sitemap-page .page-title-others .page-title-copy .content {
  padding-left: 0;
}
#privacy-page .page-title-others h2,
#sitemap-page .page-title-others h2 {
  font-size: 4.0rem;
}

/*=================================================================
  プライバシー / クッキーポリシー 共通
=================================================================*/
.privacy {
  padding: 80px 0 90px;
  background: var(--color-white);
}
.privacy.privacy-cookies {
  padding: 0;
  background: var(--color-white);
  overflow: hidden;
}
.privacy.privacy-cookies > .wrap {
  padding: 200px 0 140px;
  background:
    url('../images/border_back.png') no-repeat top center / 100% auto,
    linear-gradient(180deg, #EFF7EC 0%, #EFF7EC 55%, #FFFFFF 100%) no-repeat 0 calc(100vw / 3 - var(--wave-fill-overlap)) / 100% calc(100% - 100vw / 3 + var(--wave-fill-overlap));
}
.privacy .h2-outer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
}
.privacy h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1C5E33;
  letter-spacing: 0.05em;
}
.privacy .h2-outer .eng {
  font-family: "Damion", cursive;
  font-weight: 400;
  display: inline-block;
  transform: rotate(-5deg);
  transform-origin: left center;
  font-size: 2.0rem;
  color: #FE8BA7;
}
.privacy .text {
  font-size: 1.5rem;
  line-height: 2;
  color: #231815;
}
.privacy .text .intro {
  margin-bottom: 30px;
}
.privacy .text h5 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1C5E33;
  margin: 35px 0 12px;
  padding-left: 18px;
  border-left: 4px solid #FE8BA7;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.privacy .text p {
  margin-bottom: 15px;
}
.privacy .text .note-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 15px;
}
.privacy .text .note-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: var(--section-body-font-size);
  line-height: 1.8;
}
.privacy .text .note-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #1C5E33;
  font-weight: 700;
}
.privacy .text .company-block {
  margin-top: 10px;
  padding: 20px 25px;
  background: #F7F7F7;
  border-radius: 6px;
  font-size: var(--section-body-font-size);
  line-height: 1.9;
}
.privacy.privacy-cookies .text .company-block {
  background: var(--color-white);
}
.privacy .text .company-block a {
  color: #1C5E33;
  text-decoration: none;
}
.privacy .text .company-block a:hover {
  text-decoration: underline;
}

/*=================================================================
  サイトマップ
=================================================================*/
.sitemap {
  padding: 80px 0 100px;
  background: var(--color-white);
}
.sitemap .h2-outer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 20px;
  margin-bottom: 55px;
}
.sitemap h2 {
  font-size: 3.0rem;
  font-weight: 700;
  color: #1C5E33;
  letter-spacing: 0.05em;
}
.sitemap .h2-outer .eng {
  font-family: "Damion", cursive;
  font-weight: 400;
  display: inline-block;
  transform: rotate(-5deg);
  transform-origin: left center;
  font-size: 2.2rem;
  color: #FE8BA7;
}
.sitemap .box-nav {
  max-width: 1000px;
  margin: 0 auto;
}
/* --- 大項目リスト (カード型) --- */
.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.sitemap-list > li {
  background: var(--color-white);
  border: 1px solid #E5EEE7;
  border-radius: 12px;
  padding: 25px 25px 22px;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.sitemap-list > li:hover {
  box-shadow: 0 8px 20px rgba(28, 94, 51, 0.08);
  transform: translateY(-2px);
}
/* ピンクドット (左上コーナー) */
.sitemap-list > li::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 32px;
  width: 10px;
  height: 10px;
  background: #FE8BA7;
  border-radius: 50%;
}
.sitemap-list > li > a {
  display: block;
  padding-left: 22px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1C5E33;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.3s ease;
  margin-bottom: 8px;
}
.sitemap-list > li > a:hover {
  opacity: 0.7;
}
.sitemap-list > li > a > p {
  display: block;
  font-family: "Damion", cursive;
  font-weight: 400;
  transform: rotate(-5deg);
  transform-origin: left center;
  font-size: 1.3rem;
  color: #FE8BA7;
  margin-top: 5px;
  letter-spacing: 0.03em;
}
/* --- 小項目リスト (アンカーリンク) --- */
.sitemap-sub {
  list-style: none;
  padding: 12px 0 0 22px;
  margin: 0;
  border-top: 1px dotted #C0D5C4;
}
.sitemap-sub li {
  padding: 5px 0 5px 15px;
  position: relative;
}
.sitemap-sub li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 1px;
  background: #7BA588;
}
.sitemap-sub a {
  font-size: 1.3rem;
  color: #231815;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.sitemap-sub a:hover {
  color: #1C5E33;
}

/* 区切り線 */
.sitemap-border {
  width: 100%;
  height: 0;
  border-top: 1px dotted #C0D5C4;
  margin: 40px 0 25px;
}

/* --- サブ (プライバシー/サイトマップ) --- */
.sitemap-list-sub {
  grid-template-columns: repeat(3, 1fr);
}
.sitemap-list-sub > li {
  padding: 18px 25px;
  background: #F5F9F1;
  border: 1px solid #DCE8DE;
}
.sitemap-list-sub > li::before {
  top: 25px;
  background: #7BA588;
}
.sitemap-list-sub > li > a {
  font-size: 1.5rem;
  margin-bottom: 0;
}


/*=================================================================
  SP 対応（≤ 768px）
=================================================================*/
@media screen and (max-width: 768px) {

.page-title-others { height: 200px; }
#privacy-page .page-title-others,
#sitemap-page .page-title-others { height: 200px; }
#privacy-page .page-title-others .page-title-copy .content,
#sitemap-page .page-title-others .page-title-copy .content {
  padding-left: 15px;
}

#privacy-page .page-title-others h2,
#sitemap-page .page-title-others h2 {
  font-size: 2.6rem;
}

#privacy-page .page-title-others .page-title-copy .content {
  padding-left: 15px;
  padding-right: 15px;
}
#privacy-page .page-title-others h2 {
  font-size: clamp(27px, 7.2vw, 30px);
}
#privacy-page .page-title-others .h2-outer {
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 2px;
}
#privacy-page .page-title-others .eng {
  display: block;
  flex-basis: 100%;
  margin-top: 4px;
  font-size: 20px;
}

#sitemap-page .page-title-others .page-title-copy .content {
  padding-left: 15px;
  padding-right: 15px;
}
#sitemap-page .page-title-others h2 {
  font-size: 32px;
}

.privacy {
  padding: 50px 15px 65px;
}
.privacy > .wrap > .content {
  padding-left: 0;
  padding-right: 0;
}
.privacy.privacy-cookies {
  padding: 0;
}
.privacy.privacy-cookies > .wrap {
  padding: 110px 15px 75px;
  background:
    url('../images/border_back.png') no-repeat top center / 100% auto,
    linear-gradient(180deg, #EFF7EC 0%, #EFF7EC 48%, rgba(239,247,236,.72) 62%, #FFFFFF 100%) no-repeat 0 calc(100vw / 3 - var(--wave-fill-overlap)) / 100% calc(100% - 100vw / 3 + var(--wave-fill-overlap));
}
.privacy .h2-outer {
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.privacy h2 {
  font-size: 26px;
  display: inline-block;
  margin-right: 8px;
}
.privacy .h2-outer .eng {
  font-size: 19px;
  display: inline-block;
}
#privacy .h2-outer {
  margin-left: auto;
  margin-right: auto;
}
#privacy-page .privacy .h2-outer h2 {
  display: block;
  margin: 0;
  line-height: 1.3;
}
#privacy-page .privacy .h2-outer .eng {
  display: block;
  width: max-content;
  margin: 5px auto 0;
  line-height: 1;
  transform-origin: center;
}
.privacy .text {
  font-size: 15px;
  line-height: 1.85;
}
.privacy .text h5 {
  font-size: 17px;
  margin: 30px 0 10px;
  padding-left: 13px;
  border-left-width: 3px;
}
.privacy .text .intro {
  margin-bottom: 25px;
}
.privacy .text p {
  margin-bottom: 12px;
}
.privacy .text .company-block {
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.8;
}
.privacy .text .note-list li {
  font-size: 15px;
  line-height: 1.75;
}

.sitemap {
  padding: 50px 15px 70px;
}
.sitemap > .wrap > .content {
  padding-left: 0;
  padding-right: 0;
}
.sitemap .h2-outer {
  display: block;
  text-align: center;
  margin-bottom: 35px;
}
.sitemap h2 {
  font-size: 26px;
  display: inline-block;
  margin-right: 8px;
}
.sitemap .h2-outer .eng {
  font-size: 19px;
  display: inline-block;
}
.sitemap-list {
  grid-template-columns: 1fr;
  gap: 15px;
}
.sitemap-list > li {
  padding: 20px 20px 18px;
  border-radius: 10px;
}
.sitemap-list > li::before {
  left: 20px;
  top: 28px;
  width: 8px;
  height: 8px;
}
.sitemap-list > li > a {
  padding-left: 18px;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 10px;
}
.sitemap-list > li > a > p {
  font-size: 15px;
  margin-top: 6px;
}
.sitemap-sub {
  padding-top: 12px;
  padding-left: 18px;
}
.sitemap-sub li {
  padding-top: 6px;
  padding-bottom: 6px;
}
.sitemap-sub a {
  font-size: 14px;
  line-height: 1.6;
}
.sitemap-sub li::before {
  top: 17px;
}
.sitemap-list-sub {
  grid-template-columns: 1fr;
  gap: 10px;
}
.sitemap-list-sub > li {
  padding: 18px 20px;
}
.sitemap-list-sub > li > a {
  font-size: 16px;
  margin-bottom: 0;
}

}

/* 1200px基準の各コンテンツ寸法を中間幅で比例縮小する。 */
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .page-title-others { height: 32.9167vw; }
  #privacy-page .page-title-others,
  #sitemap-page .page-title-others { height: 37.0833vw; }
  #privacy-page .page-title-others h2,
  #sitemap-page .page-title-others h2 { font-size: 3.3333vw; }
  .privacy { padding: 6.6667vw 0 7.5vw; }
  .cookie { padding: 16.6667vw 0 11.6667vw; }
  .sitemap { padding: 6.6667vw 0 8.3333vw; }
  .privacy .h2-outer, .cookie .h2-outer, .sitemap .h2-outer { gap: 1.6667vw; }
  .privacy h2, .cookie h2, .sitemap h2 { font-size: 2.6667vw; }
  .privacy .lead, .cookie .lead, .sitemap .lead { font-size: calc(12px + 0.1667vw); }
  .privacy-box, .cookie-box, .sitemap-list { max-width: 83.3333vw; }
  .sitemap-list { gap: 2.0833vw; }
  .sitemap-list a { padding: 2.0833vw; }
}
