/*=======================================================
==========================================================
　　　　　　　　　共通ページ CSS
　（contact / privacy-policy / terms / sitemap）
==========================================================
========================================================*/

/* mainのz-indexを上書き */
main {
  z-index: 1 !important;
}

/* ヘッダーロゴ（左上） */
.header__inner h1 a {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  text-decoration: none;
  color: inherit;
}
.header__logo {
  display: block;
  width: auto;
  height: 40px;
}
.header__logo-text {
  font-family: 'en';
  letter-spacing: .1em;
}

/* 本文ブロック共通 */
.page-block {
  margin-top: 2rem;
  padding: 3rem 3.5rem;
  border: 1px solid rgba(255, 188, 30, 0.3);
  border-radius: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.page-block p,
.page-block li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  line-height: 2;
  letter-spacing: .04em;
}
.page-block p {
  margin: 0 0 1.4rem;
}
.page-block p:last-child {
  margin-bottom: 0;
}

/* 条項・項目タイトル */
.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #FFBC1E;
  margin: 2.4rem 0 .8rem;
  padding-bottom: .3em;
  border-bottom: 1px solid rgba(255, 188, 30, 0.3);
  letter-spacing: .05em;
}
.section-title:first-child {
  margin-top: 0;
}

/* リスト */
.page-list {
  list-style: disc;
  padding-left: 1.5em;
  margin: 0 0 1.4rem;
}
.page-list li {
  margin: 0 0 .4em;
}

/* 改定日・制定日 */
.page-meta {
  font-size: 1.3rem;
  color: #B5B5B5;
  text-align: right;
  margin-top: 3rem;
}

/*===== Contact ページ =====*/
.contact-intro {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 700px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.contact-form label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #FFBC1E;
  letter-spacing: .04em;
}
.contact-form label .required {
  display: inline-block;
  background: #B00020;
  color: #fff;
  font-size: 1.1rem;
  padding: .1em .5em;
  border-radius: 3px;
  margin-left: .5em;
  vertical-align: middle;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}
/* select にカスタム矢印を付与 */
.contact-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='%23FFBC1E'><path d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 10px 6px;
  padding-right: 3rem;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #FFBC1E;
  background: rgba(255, 255, 255, 0.12);
}
.contact-form textarea {
  resize: vertical;
  min-height: 180px;
}
/* プライバシーポリシー同意チェックボックス */
.contact-form .form-agree {
  text-align: center;
  padding: 1.5rem 0 .5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1rem;
}
.contact-form .agree-label {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  cursor: pointer;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
}
.contact-form .agree-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #FFBC1E;
  margin: 0;
}
.contact-form .agree-text a {
  color: #FFBC1E;
  text-decoration: underline;
  text-underline-offset: .2em;
}
.contact-form .agree-text a:hover {
  color: #FFD25A;
}
.contact-form .agree-text .required {
  margin-left: .5em;
}

.contact-form .submit-row {
  text-align: center;
  margin-top: 1rem;
}
/* 未同意時は送信ボタンを無効化された見た目に */
.contact-form .agree-label input[type="checkbox"]:not(:checked) ~ .agree-text {
  color: #fff;
}
.contact-submit {
  display: inline-block;
  background: #FFBC1E;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: .1em;
  padding: 1.2rem 4rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.contact-submit:hover {
  background: #FFD25A;
  transform: translateY(-1px);
}
.contact-note {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.3rem;
  color: #B5B5B5;
  line-height: 1.8;
}

/*===== Sitemap ページ =====*/
.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-list > li {
  margin: 0 0 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.sitemap-list > li:last-child {
  border-bottom: none;
}
.sitemap-list > li > a {
  font-family: 'en', 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  color: #FFBC1E;
  text-decoration: none;
  letter-spacing: .06em;
  transition: color 0.2s;
}
.sitemap-list > li > a:hover {
  color: #FFD25A;
  text-decoration: underline;
}
.sitemap-sub {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 1.8rem;
  border-left: 2px solid rgba(255, 188, 30, 0.3);
  padding-left: 1.5rem;
}
.sitemap-sub li {
  margin: .4em 0;
}
.sitemap-sub a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.sitemap-sub a:hover {
  color: #FFBC1E;
}


/*=======================================================
==========================================================
　　　　　　　　　　　　　PC only
==========================================================
========================================================*/
@media screen and (min-width:1023px) {

/* PC: ハンバーガー非表示 */
.drawer__button { display: none !important; }

}/*=======================================================
==========================================================
  　　　　　　　　　　　　SP only
==========================================================
========================================================*/
@media screen and (max-width:768px) {

/* SP: ヘッダーロゴ */
.header__logo {
  height: 38px;
}
.header__inner h1 {
  font-size: 18px;
}

.page-block {
  padding: 1.8rem 1.5rem;
}
.page-block p,
.page-block li {
  font-size: 1.3rem;
  line-height: 1.9;
}
.section-title {
  font-size: 1.5rem;
  margin: 2rem 0 .7rem;
}
.page-meta {
  font-size: 1.1rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font-size: 16px; /* 16px 未満だと iOS Safari が自動ズームするため */
  padding: 1.1rem 1rem;
  min-height: 44px;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form textarea {
  min-height: 160px;
}
.contact-form label {
  font-size: 1.3rem;
}
.contact-submit {
  padding: 1.3rem 2.5rem;
  font-size: 1.5rem;
  min-height: 46px;
  width: 100%;
  max-width: 280px;
}

.sitemap-list > li > a {
  font-size: 1.7rem;
}
.sitemap-sub a {
  font-size: 1.25rem;
}

}/*=======================================================
==========================================================
  　　　　　　　　　　　　Ipad only
==========================================================
========================================================*/
@media screen and (min-width:768px) and ( max-width:1023px) {

.page-block {
  padding: 2.4rem 2.5rem;
}

}
