@charset "UTF-8";

/* ここから：お問い合わせページ 案内ブロック */
.fujiyama-contact-page {
  width: 100%;
  box-sizing: border-box;
}

.fujiyama-contact-page,
.fujiyama-contact-page * {
  box-sizing: border-box;
}

.fujiyama-contact-intro {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 72px;
}

.fujiyama-contact-intro__inner {
  width: 100%;
}

.fujiyama-contact-intro__title {
  position: relative;
  margin: 0 0 34px;
  padding: 0;
  color: #222;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}

.fujiyama-contact-intro__lead {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.04em;
  text-align: center;
}

.fujiyama-contact-intro__notes {
  width: 100%;
  margin: 34px 0 0;
  padding: 22px 26px;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  background: #f7f7f7;
}

.fujiyama-contact-intro__note {
  margin: 0;
  color: #9b3f3f;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.fujiyama-contact-intro__note + .fujiyama-contact-intro__note {
  margin-top: 2px;
}

.fujiyama-contact-page > .wpcf7 {
  width: 100%;
  margin: 0 auto;
}
/* ここまで：お問い合わせページ 案内ブロック */


/* ここから：お問い合わせページ 案内ブロック 950px以下 */
@media screen and (max-width: 950px) {
  .fujiyama-contact-intro {
    max-width: 820px;
    margin-bottom: 60px;
  }
}
/* ここまで：お問い合わせページ 案内ブロック 950px以下 */


/* ここから：お問い合わせページ 案内ブロック 750px以下 */
@media screen and (max-width: 750px) {
  .fujiyama-contact-intro {
    margin-bottom: 48px;
  }

  .fujiyama-contact-intro__title {
    margin-bottom: 26px;
    padding-bottom: 0;
    font-size: 24px;
  }

  .fujiyama-contact-intro__lead {
    font-size: 15px;
    line-height: 2;
    text-align: left;
  }

  .fujiyama-contact-intro__notes {
    margin-top: 26px;
    padding: 18px 16px;
  }

  .fujiyama-contact-intro__note {
    font-size: 12px;
    line-height: 1.55;
  }
}
/* ここまで：お問い合わせページ 案内ブロック 750px以下 */


/* ここから：お問い合わせページ 案内ブロック 480px以下 */
@media screen and (max-width: 480px) {
  .fujiyama-contact-intro__title {
    font-size: 22px;
  }
}
/* ここまで：お問い合わせページ 案内ブロック 480px以下 */


/* ここから：お問い合わせフォーム 全体 */
.fujiyama-contact-form {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  color: #222;
  box-sizing: border-box;
}

.fujiyama-contact-form,
.fujiyama-contact-form * {
  box-sizing: border-box;
}

.fujiyama-contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
/* ここまで：お問い合わせフォーム 全体 */


/* ここから：お問い合わせフォーム 各入力項目 */
.fujiyama-contact-form__item {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: stretch;
  margin: 0;
  border-bottom: 1px solid #d8d8d8;
}

.fujiyama-contact-form__item:first-child {
  border-top: 1px solid #d8d8d8;
}

.fujiyama-contact-form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  gap: 18px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 24px 24px;
  border-right: 1px solid #d8d8d8;
  background: #f3f3f3;
  color: #222;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.fujiyama-contact-form__label::after {
  content: "必須";
  flex: 0 0 auto;
  padding: 3px 7px 2px;
  background: #4f6f5a;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.fujiyama-contact-form__field {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0 20px 32px;
}

.fujiyama-contact-form input[type="text"],
.fujiyama-contact-form input[type="email"],
.fujiyama-contact-form textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 15px 16px;
  border: 0;
  border-bottom: 1px solid #aaa;
  border-radius: 0;
  background: #f7f7f7;
  color: #222;
  font-size: 16px;
  line-height: 1.7;
  font-family: inherit;
  box-shadow: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.fujiyama-contact-form input[type="text"],
.fujiyama-contact-form input[type="email"] {
  min-height: 54px;
}

.fujiyama-contact-form textarea {
  min-height: 220px;
  resize: vertical;
}

.fujiyama-contact-form input[type="text"]:focus,
.fujiyama-contact-form input[type="email"]:focus,
.fujiyama-contact-form textarea:focus {
  border-bottom-color: #222;
  background: #fff;
}
/* ここまで：お問い合わせフォーム 各入力項目 */


/* ここから：お問い合わせフォーム 送信ボタン */
.fujiyama-contact-form__submit {
  margin: 48px 0 0;
  text-align: center;
}

.fujiyama-contact-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(340px, 100%);
  min-height: 62px;
  margin: 0;
  padding: 16px 30px;
  border: 1px solid #222;
  border-radius: 0;
  background: #222;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  font-family: inherit;
  letter-spacing: 0.12em;
  text-align: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.fujiyama-contact-form input[type="submit"]:hover {
  background: #fff;
  color: #222;
}
/* ここまで：お問い合わせフォーム 送信ボタン */


/* ここから：お問い合わせフォーム Contact Form 7 メッセージ */
.fujiyama-contact-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #a40000;
  font-size: 13px;
  line-height: 1.6;
}

.wpcf7 form .wpcf7-response-output {
  max-width: 940px;
  margin: 30px auto 0;
  padding: 14px 18px;
  border: 0;
  border-left: 3px solid #222;
  border-radius: 0;
  background: #f5f5f5;
  font-size: 14px;
  line-height: 1.8;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #a40000;
}

.fujiyama-contact-form .wpcf7-spinner {
  display: block;
  margin: 16px auto 0;
}
/* ここまで：お問い合わせフォーム Contact Form 7 メッセージ */


/* ここから：お問い合わせフォーム 950px以下 */
@media screen and (max-width: 950px) {
  .fujiyama-contact-form {
    max-width: 820px;
  }

  .fujiyama-contact-form__item {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .fujiyama-contact-form__label {
    gap: 14px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .fujiyama-contact-form__field {
    padding-left: 24px;
  }
}
/* ここまで：お問い合わせフォーム 950px以下 */


/* ここから：お問い合わせフォーム 750px以下 */
@media screen and (max-width: 750px) {
  .fujiyama-contact-form__item {
    display: block;
    padding: 0 0 24px;
    border-bottom: 1px solid #ddd;
  }

  .fujiyama-contact-form__item + .fujiyama-contact-form__item {
    padding-top: 24px;
  }

  .fujiyama-contact-form__item:first-child {
    border-top: 0;
  }

  .fujiyama-contact-form__label {
    justify-content: flex-start;
    margin: 0 0 12px;
    padding: 0;
    border-right: 0;
    background: transparent;
    font-size: 15px;
  }

  .fujiyama-contact-form__field {
    display: block;
    padding: 0;
  }

  .fujiyama-contact-form input[type="text"],
  .fujiyama-contact-form input[type="email"],
  .fujiyama-contact-form textarea {
    padding: 13px 14px;
    font-size: 16px;
  }

  .fujiyama-contact-form input[type="text"],
  .fujiyama-contact-form input[type="email"] {
    min-height: 50px;
  }

  .fujiyama-contact-form textarea {
    min-height: 190px;
  }

  .fujiyama-contact-form__submit {
    margin-top: 38px;
  }

  .fujiyama-contact-form input[type="submit"] {
    min-height: 56px;
    font-size: 14px;
  }

  .wpcf7 form .wpcf7-response-output {
    margin-top: 24px;
    padding: 12px 14px;
    font-size: 13px;
  }
}
/* ここまで：お問い合わせフォーム 750px以下 */


/* ここから：お問い合わせフォーム 480px以下 */
@media screen and (max-width: 480px) {
  .fujiyama-contact-form__item {
    padding-bottom: 20px;
  }

  .fujiyama-contact-form__item + .fujiyama-contact-form__item {
    padding-top: 20px;
  }

  .fujiyama-contact-form textarea {
    min-height: 170px;
  }

  .fujiyama-contact-form input[type="submit"] {
    width: 100%;
  }
}
/* ここまで：お問い合わせフォーム 480px以下 */

/* ここから：サンクスページ */
.fujiyama-thanks-page {
  width: 100%;
  box-sizing: border-box;
}

.fujiyama-thanks-page,
.fujiyama-thanks-page * {
  box-sizing: border-box;
}

.fujiyama-thanks-page__inner {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 20px 0 30px;
}

.post_content h1.fujiyama-thanks-page__title {
  margin: 0 0 30px;
  padding: 0 0 16px;
  border-bottom: 1px solid #b8b8b8;
  color: #222222;
  font-family: "TsukuAntiqueLGoStd-B" !important;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: left;
}

.fujiyama-thanks-page__content {
  width: 100%;
  margin: 0;
  padding: 0;
}

.fujiyama-thanks-page__text {
  margin: 0;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
}

.fujiyama-thanks-page__text + .fujiyama-thanks-page__text {
  margin-top: 24px;
  color: #9b3f3f;
}

@media screen and (max-width: 950px) {
  .fujiyama-thanks-page__inner {
    max-width: 820px;
  }

  .post_content h1.fujiyama-thanks-page__title {
    font-size: 28px;
  }
}

@media screen and (max-width: 750px) {
  .fujiyama-thanks-page__inner {
    padding: 10px 0 20px;
  }

  .post_content h1.fujiyama-thanks-page__title {
    margin-bottom: 24px;
    padding-bottom: 14px;
    font-size: 24px;
    line-height: 1.55;
  }

  .fujiyama-thanks-page__text {
    font-size: 15px;
    line-height: 1.9;
  }

  .fujiyama-thanks-page__text + .fujiyama-thanks-page__text {
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  .post_content h1.fujiyama-thanks-page__title {
    font-size: 22px;
  }

  .fujiyama-thanks-page__text {
    font-size: 14px;
    line-height: 1.9;
  }
}
/* ここまで：サンクスページ */

/* ここから：プライバシーポリシー ページヘッダー非表示・パンくず位置調整 */
body:has(.fujiyama-privacy-page) #page_header,
body:has(.fujiyama-privacy-page) #page_header.small {
  display: none !important;
}

body:has(.fujiyama-privacy-page) #bread_crumb {
  margin-top: 112px !important;
}

@media screen and (max-width: 950px) {
  body:has(.fujiyama-privacy-page) #bread_crumb {
    margin-top: 102px !important;
  }
}

@media screen and (max-width: 750px) {
  body:has(.fujiyama-privacy-page) #bread_crumb {
    margin-top: 94px !important;
  }
}

@media screen and (max-width: 480px) {
  body:has(.fujiyama-privacy-page) #bread_crumb {
    margin-top: 90px !important;
  }
}
/* ここまで：プライバシーポリシー ページヘッダー非表示・パンくず位置調整 */


/* ここから：プライバシーポリシー 本文 */
.fujiyama-privacy-page {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  color: #333333;
  box-sizing: border-box;
}

.fujiyama-privacy-page,
.fujiyama-privacy-page * {
  box-sizing: border-box;
}

.fujiyama-privacy-page__intro {
  margin: 0 0 40px;
}

.fujiyama-privacy-page__lead {
  margin: 0;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
}

.fujiyama-privacy-page__section {
  margin: 0;
  padding: 30px 0;
  border-top: 1px solid #d8d8d8;
}

.fujiyama-privacy-page__section:last-child {
  border-bottom: 1px solid #d8d8d8;
}

.post_content h2.fujiyama-privacy-page__title {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: none;
  color: #111111;
  font-family: "TsukuAntiqueLGoStd-B" !important;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: left;
}

.post_content h2.fujiyama-privacy-page__title::before,
.post_content h2.fujiyama-privacy-page__title::after {
  display: none;
}

.fujiyama-privacy-page__text {
  margin: 0;
  padding: 0;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.025em;
}

.fujiyama-privacy-page__list {
  margin: 14px 0 0;
  padding: 0 0 0 1.4em;
  list-style: disc;
}

.fujiyama-privacy-page__list li {
  margin: 4px 0;
  padding: 0;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.025em;
}

.fujiyama-privacy-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 16px 0 0;
  padding: 0;
}

.fujiyama-privacy-page__links a,
.fujiyama-privacy-page__links a:visited,
.fujiyama-privacy-page__links a:focus {
  display: inline-block;
  margin: 0;
  padding: 0 0 2px;
  border-bottom: 1px solid #777777;
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.fujiyama-privacy-page__links a:hover {
  color: #333333;
  opacity: 0.55;
}

@media screen and (max-width: 950px) {
  .fujiyama-privacy-page {
    max-width: 820px;
  }

  .post_content h2.fujiyama-privacy-page__title {
    font-size: 21px;
  }
}

@media screen and (max-width: 750px) {
  .fujiyama-privacy-page__intro {
    margin-bottom: 32px;
  }

  .fujiyama-privacy-page__lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .fujiyama-privacy-page__section {
    padding: 24px 0;
  }

  .post_content h2.fujiyama-privacy-page__title {
    margin-bottom: 12px;
    font-size: 19px;
    line-height: 1.55;
  }

  .fujiyama-privacy-page__text,
  .fujiyama-privacy-page__list li {
    font-size: 14px;
    line-height: 1.9;
  }

  .fujiyama-privacy-page__list {
    margin-top: 12px;
  }

  .fujiyama-privacy-page__links {
    display: block;
    margin-top: 14px;
  }

  .fujiyama-privacy-page__links a,
  .fujiyama-privacy-page__links a:visited,
  .fujiyama-privacy-page__links a:focus {
    margin: 0 20px 8px 0;
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .fujiyama-privacy-page__section {
    padding: 22px 0;
  }

  .post_content h2.fujiyama-privacy-page__title {
    font-size: 18px;
  }
}
/* ここまで：プライバシーポリシー 本文 */

/* ここから：特定商取引法に基づく表示 ページヘッダー非表示・パンくず位置調整 */
body:has(.fujiyama-tokushoho-page) #page_header,
body:has(.fujiyama-tokushoho-page) #page_header.small {
  display: none !important;
}

body:has(.fujiyama-tokushoho-page) #bread_crumb {
  margin-top: 112px !important;
}

@media screen and (max-width: 950px) {
  body:has(.fujiyama-tokushoho-page) #bread_crumb {
    margin-top: 102px !important;
  }
}

@media screen and (max-width: 750px) {
  body:has(.fujiyama-tokushoho-page) #bread_crumb {
    margin-top: 94px !important;
  }
}

@media screen and (max-width: 480px) {
  body:has(.fujiyama-tokushoho-page) #bread_crumb {
    margin-top: 90px !important;
  }
}
/* ここまで：特定商取引法に基づく表示 ページヘッダー非表示・パンくず位置調整 */


/* ここから：特定商取引法に基づく表示 */
.fujiyama-tokushoho-page {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  color: #333333;
  box-sizing: border-box;
}

.fujiyama-tokushoho-page,
.fujiyama-tokushoho-page * {
  box-sizing: border-box;
}

.post_content h1.fujiyama-tokushoho-page__title {
  margin: 0 0 30px;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid #b8b8b8;
  background: none;
  color: #222222;
  font-family: "TsukuAntiqueLGoStd-B" !important;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: left;
}

.post_content h1.fujiyama-tokushoho-page__title::before,
.post_content h1.fujiyama-tokushoho-page__title::after {
  display: none;
}

.fujiyama-tokushoho-page__intro {
  margin: 0 0 28px;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.025em;
}

.fujiyama-tokushoho-page__notice {
  margin: 0 0 28px;
  padding: 16px 18px;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  background: #f7f7f7;
  color: #555555;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.fujiyama-tokushoho-page__list {
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #d8d8d8;
}

.fujiyama-tokushoho-page__row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid #d8d8d8;
}

.post_content dt.fujiyama-tokushoho-page__term,
.post_content dd.fujiyama-tokushoho-page__description {
  display: flex;
  align-items: center;
  margin: 0;
}

.fujiyama-tokushoho-page__term {
  padding: 18px 22px;
  background: #f3f3f3;
  color: #222222;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.035em;
}

.fujiyama-tokushoho-page__description {
  padding: 18px 24px;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.025em;
}

.fujiyama-tokushoho-page__placeholder {
  color: inherit;
}

@media screen and (max-width: 950px) {
  .fujiyama-tokushoho-page {
    max-width: 820px;
  }

  .post_content h1.fujiyama-tokushoho-page__title {
    font-size: 28px;
  }

  .fujiyama-tokushoho-page__row {
    grid-template-columns: 210px minmax(0, 1fr);
  }
}

@media screen and (max-width: 750px) {
  .post_content h1.fujiyama-tokushoho-page__title {
    margin-bottom: 24px;
    padding-bottom: 14px;
    font-size: 24px;
    line-height: 1.55;
  }

  .fujiyama-tokushoho-page__intro {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .fujiyama-tokushoho-page__notice {
    margin-bottom: 22px;
    padding: 14px 15px;
    font-size: 12px;
  }

  .fujiyama-tokushoho-page__row {
    display: block;
  }

  .fujiyama-tokushoho-page__term {
    padding: 12px 14px;
    font-size: 14px;
  }

  .fujiyama-tokushoho-page__description {
    padding: 14px 14px 18px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .post_content h1.fujiyama-tokushoho-page__title {
    font-size: 22px;
  }

  .fujiyama-tokushoho-page__term {
    padding: 11px 12px;
  }

  .fujiyama-tokushoho-page__description {
    padding: 13px 12px 17px;
  }
}
/* ここまで：特定商取引法に基づく表示 */

