/* ========================================
   Arkhe default page header
======================================== */

/* グレー背景を含むArkhe標準タイトル領域 */
#top_title_area,
.l-content__top.p-topArea {
  display: none !important;
}

/* Arkhe標準のページタイトル */
.c-pageTitle,
.p-pageTitle {
  display: none !important;
}

/* Arkhe標準のパンくずリスト */
.p-breadcrumb {
  display: none !important;
}

/* ========================================
   Simple page header
   NEWS / CONTACT
======================================== */

.kaze-simple-header {
  padding:
  background-color: var(--color-paper);
}

.kaze-simple-header__inner {
  width: min(1200px, 100%);
  margin-inline: auto;
}

.kaze-simple-header__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.kaze-simple-header__text {
  margin: 28px 0 0;
  color: var(--color-smoke);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 999px) {
  .kaze-simple-header__title {
    font-size: 34px;
  }

  .kaze-simple-header__text {
    margin-top: 22px;
  }
}

/* ========================================
   Text
======================================== */

:root {
  /* Brand colors */
  --color-paper: #f2f1ee;
  --color-charcoal: #20201e;
  --color-mist: #e8e7e3;
  --color-smoke: #777773;

  /* Fonts */
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Cormorant Garamond", "Shippori Mincho", serif;

  /* Arkheの基本フォントを上書き */
  --ark-font_family: var(--font-sans);
}

body {
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-weight: 400;
}

/* 大見出し */
body h1,
body h2 {
  font-family: var(--font-serif);
  font-weight: 400;
}

/* 任意の日本語・英字をセリフ体にする */
body .kaze-serif {
  font-family: var(--font-serif);
  font-weight: 400;
}

/* 英字専用 */
body .kaze-serif-en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

/* 日付や補足文 */
body .kaze-smoke-text {
  color: var(--color-smoke);
}

/* PCのみ有効にする改行 */
@media screen and (max-width: 599px) {
  br.pc-only {
    display: none;
  }
}


/* ========================================
   Header
======================================== */

/* Header online store button */
.kaze-header-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 42px;
  padding: 0.65em 1.5em;
  border: 1px solid var(--color-charcoal);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.kaze-header-store:hover,
.kaze-header-store:focus-visible {
  color: var(--color-paper);
  background-color: var(--color-charcoal);
}

.kaze-header-store__icon {
  font-size: 1.15em;
  line-height: 1;
}

/* SP・タブレットでは非表示 */
@media screen and (max-width: 999px) {
  .kaze-header-store {
    display: none;
  }
}

/* ONLINE STOREはPCのドロワーメニュー内では非表示 */
.menu-item-store-sp {
  display: none !important;
}

/* SP・タブレットのドロワーメニュー内では表示 */
@media screen and (max-width: 999px) {
  .menu-item-store-sp {
    display: block !important;
    margin-top: 2em;
  }

  .menu-item-store-sp > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2em 1.4em !important;
    border: 1px solid var(--color-charcoal);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
  }

  .menu-item-store-sp > a::after {
    content: "↗";
    font-size: 1.15em;
    line-height: 1;
  }
}

/* ========================================
   Drawer menu
======================================== */

/* 全体背景 */
.p-drawer,
.p-drawer__inner,
.p-drawer__body {
  color: var(--color-charcoal);
  background-color: var(--color-paper);
}

/* メニュー全体の幅と余白 */
.p-drawer__body {
  width: min(900px, calc(100% - 80px));
  margin-inline: auto;
  padding-top: clamp(100px, 13vh, 160px);
}

/* メニューリスト */
.c-drawerNav {
  border-top: 1px solid rgba(32, 32, 30, 0.22);
}

/* 第1階層 */
.c-drawerNav > .menu-item {
  border-bottom: 1px solid rgba(32, 32, 30, 0.22);
}

.c-drawerNav > .menu-item > a {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 0 12px;
  color: var(--color-charcoal);
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.4vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    padding-left 0.35s ease,
    background-color 0.35s ease;
}

.c-drawerNav > .menu-item > a:hover,
.c-drawerNav > .menu-item > a:focus-visible {
  padding-left: 22px;
  color: var(--color-charcoal);
  background-color: var(--color-mist);
}

/* 子メニュー開閉ボタン */
.c-drawerNav button {
  color: var(--color-charcoal);
  border-color: rgba(32, 32, 30, 0.28);
  background: transparent;
}

/* ABOUT・PROJECTSの子メニュー */
.c-drawerNav .sub-menu {
  padding: 10px 12px 24px;
  background-color: var(--color-mist);
}

.c-drawerNav .sub-menu a {
  display: block;
  padding: 11px 12px;
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.c-drawerNav .sub-menu a:hover,
.c-drawerNav .sub-menu a:focus-visible {
  color: var(--color-smoke);
}

/* 外部リンク */
.menu-item-external > a {
  justify-content: space-between;
}

.menu-item-external > a::after {
  content: "↗";
  font-family: var(--font-sans);
  font-size: 0.5em;
}

/* 閉じるボタン */
.p-drawer__close {
  margin-top: 40px;
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ドロワー表示中のヘッダー周辺 */
.p-drawer .c-modalClose,
.p-drawer svg {
  color: var(--color-charcoal);
  fill: currentColor;
}

/* ========================================
   Mobile drawer
======================================== */

@media screen and (max-width: 999px) {
  .p-drawer__body {
    width: calc(100% - 40px);
    padding-top: 88px;
  }

  .c-drawerNav > .menu-item > a {
    min-height: 64px;
    padding-inline: 8px;
    font-size: clamp(23px, 7vw, 30px);
  }

  .c-drawerNav > .menu-item > a:hover,
  .c-drawerNav > .menu-item > a:focus-visible {
    padding-left: 16px;
  }

  .c-drawerNav .sub-menu {
    padding: 8px 8px 18px;
  }

  .c-drawerNav .sub-menu a {
    padding: 10px 8px;
    font-size: 12px;
  }

  .p-drawer__close {
    margin-top: 28px;
  }
}

/* Arkheのメニュー・閉じるアイコン */
.c-iconBtn,
.c-iconBtn svg,
[data-onclick="toggleMenu"],
[data-onclick="toggleMenu"] svg {
  color: var(--color-charcoal) !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* ========================================
   Footer
======================================== */

.l-footer {
  color: var(--color-paper);
  background-color: var(--color-charcoal);
}

.l-footer__foot {
  padding: 0;
  color: var(--color-paper);
  background-color: var(--color-charcoal);
}

/* リンクを左、コピーライトを右 */
.l-footer__foot > .l-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 52px;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Footer Menu */
.l-footer__nav {
  justify-content: flex-start;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.l-footer__nav > li {
  margin: 0;
  padding: 0;
}

.l-footer__nav > li + li::before {
  display: none !important;
  content: none !important;
}

.l-footer__nav a {
  display: inline-flex;
  align-items: center;
  color: rgba(242, 241, 238, 0.72);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.l-footer__nav a:hover,
.l-footer__nav a:focus-visible {
  color: var(--color-paper);
}

/* Instagram icon */
.l-footer__nav .footer-instagram > a::before {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  margin-right: 6px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background:
    radial-gradient(
      circle at 50% 50%,
      transparent 0 2px,
      currentColor 2.2px 3px,
      transparent 3.2px
    ),
    radial-gradient(
      circle at 76% 24%,
      currentColor 0 1px,
      transparent 1.2px
    );
  content: "";
}

/* Copyright */
.c-copyright {
  margin: 0;
  padding: 0;
  color: rgba(242, 241, 238, 0.62);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ========================================
   Mobile footer
======================================== */

@media screen and (max-width: 599px) {
  .l-footer__foot > .l-container {
    gap: 16px;
    min-height: 52px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .l-footer__nav {
    gap: 14px;
  }

  .l-footer__nav a {
    font-size: 11px;
  }

  .c-copyright {
    font-size: 8px;
  }
}

/* ========================================
   Scroll Reveal Animation
======================================== */

/* 見出し */
.kaze-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 1.6s ease,
    transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* 画像 */
.kaze-reveal-image {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 2s ease,
    transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* 表示後 */
.kaze-reveal.is-visible,
.kaze-reveal-image.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 時間差 */
.kaze-reveal-delay--01 {
  transition-delay: 0.18s;
}

.kaze-reveal-delay--02 {
  transition-delay: 0.36s;
}

.kaze-reveal-delay--03 {
  transition-delay: 0.54s;
}

/* アニメーション完了後 */
.kaze-reveal.is-animation-complete,
.kaze-reveal-image.is-animation-complete {
  will-change: auto;
}

/* 動きを抑える設定の端末 */
@media (prefers-reduced-motion: reduce) {
  .kaze-reveal,
  .kaze-reveal-image {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}


/**
 * kaze labo CONTACT
 */

/* ---------------------------------
 * フォーム全体
 * --------------------------------- */

.kaze-contact-form {
	width: 100%;
	max-width: 760px;
	margin-inline: auto;
	color: var(--kaze-charcoal, #20201e);
	font-family: var(--kaze-font-sans, "Noto Sans JP", sans-serif);
}

.kaze-contact-form__item {
	margin-bottom: clamp(32px, 5vw, 48px);
}

.kaze-contact-form label {
	display: block;
	margin: 0;
}

/* ---------------------------------
 * ラベル
 * --------------------------------- */

.kaze-contact-form__label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.08em;
}

.kaze-contact-form__label em {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	padding: 2px 7px;
	border: 1px solid var(--kaze-smoke, #777773);
	border-radius: 100px;
	color: var(--kaze-smoke, #777773);
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.08em;
}

/* ---------------------------------
 * 入力欄
 * --------------------------------- */

.kaze-contact-form input[type="text"],
.kaze-contact-form input[type="email"],
.kaze-contact-form input[type="tel"],
.kaze-contact-form select,
.kaze-contact-form textarea {
	width: 100%;
	margin: 0;
	padding: 15px 16px;
	border: 1px solid #cecdc8;
	border-radius: 0;
	outline: none;
	background-color: rgba(255, 255, 255, 0.55);
	color: var(--kaze-charcoal, #20201e);
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.04em;
	box-shadow: none;
	transition:
		border-color 0.3s ease,
		background-color 0.3s ease;
}

.kaze-contact-form input[type="text"],
.kaze-contact-form input[type="email"],
.kaze-contact-form input[type="tel"],
.kaze-contact-form select {
	min-height: 56px;
}

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

.kaze-contact-form input:focus,
.kaze-contact-form select:focus,
.kaze-contact-form textarea:focus {
	border-color: var(--kaze-charcoal, #20201e);
	background-color: #fff;
}

.kaze-contact-form input::placeholder,
.kaze-contact-form textarea::placeholder {
	color: #aaa9a5;
	opacity: 1;
}

/* ---------------------------------
 * セレクトボックス
 * --------------------------------- */

.kaze-contact-form select {
	padding-right: 48px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #777773 50%),
		linear-gradient(135deg, #777773 50%, transparent 50%);
	background-position:
		calc(100% - 20px) 50%,
		calc(100% - 14px) 50%;
	background-size:
		6px 6px,
		6px 6px;
	background-repeat: no-repeat;
}

/* ---------------------------------
 * プライバシーポリシー
 * --------------------------------- */

.kaze-contact-form__privacy {
	margin-top: clamp(40px, 6vw, 56px);
	text-align: center;
}

.kaze-contact-form__privacy .wpcf7-list-item {
	margin: 0;
}

.kaze-contact-form__privacy label {
	display: inline-flex;
	align-items: flex-start;
	gap: 10px;
	width: auto;
	cursor: pointer;
	font-size: 13px;
	line-height: 1.8;
	letter-spacing: 0.04em;
	text-align: left;
}

.kaze-contact-form__privacy input[type="checkbox"] {
	flex-shrink: 0;
	width: 17px;
	height: 17px;
	margin: 4px 0 0;
	accent-color: var(--kaze-charcoal, #20201e);
	cursor: pointer;
}

.kaze-contact-form__privacy a {
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition: opacity 0.3s ease;
}

.kaze-contact-form__privacy a:hover {
	opacity: 0.55;
}

/* ---------------------------------
 * 送信ボタン
 * --------------------------------- */

.kaze-contact-form__submit {
	position: relative;
	margin-top: clamp(28px, 5vw, 40px);
	text-align: center;
}

.kaze-contact-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 360px;
	min-height: 60px;
	margin: 0;
	padding: 15px 30px;
	border: 1px solid var(--kaze-charcoal, #20201e);
	border-radius: 0;
	background-color: var(--kaze-charcoal, #20201e);
	color: #fff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.14em;
	cursor: pointer;
	box-shadow: none;
	transition:
		background-color 0.35s ease,
		color 0.35s ease;
}

.kaze-contact-form input[type="submit"]:hover {
	background-color: transparent;
	color: var(--kaze-charcoal, #20201e);
}

.kaze-contact-form input[type="submit"]:disabled {
	cursor: not-allowed;
	opacity: 0.45;
}

/* ---------------------------------
 * エラー表示
 * --------------------------------- */

.kaze-contact-form .wpcf7-not-valid {
	border-color: #a66b62;
}

.kaze-contact-form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 8px;
	color: #95625a;
	font-size: 12px;
	line-height: 1.6;
	letter-spacing: 0.04em;
}

.kaze-contact-form .wpcf7-response-output {
	margin: 32px 0 0;
	padding: 16px 18px;
	border: 1px solid var(--kaze-smoke, #777773);
	color: var(--kaze-charcoal, #20201e);
	font-size: 13px;
	line-height: 1.8;
	letter-spacing: 0.04em;
	text-align: center;
}

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

.kaze-contact-form form.sent .wpcf7-response-output {
	border-color: #71806f;
}

/* ---------------------------------
 * 送信中スピナー
 * --------------------------------- */

.kaze-contact-form .wpcf7-spinner {
	display: block;
	margin: 16px auto 0;
	background-color: var(--kaze-smoke, #777773);
}

/* ---------------------------------
 * 注意書き
 * --------------------------------- */
.kaze-contact-form__note {
	color: var(--kaze-smoke, #777773);
	font-size: 12px;
	line-height: 1.8;
	letter-spacing: 0.04em;
	text-align: center;
}

@media (max-width: 767px) {
	.kaze-contact-form__note {
		font-size: 11px;
		text-align: left;
	}
}

/* ---------------------------------
 * スマートフォン
 * --------------------------------- */

@media (max-width: 767px) {
	.kaze-contact-form__item {
		margin-bottom: 28px;
	}

	.kaze-contact-form__label {
		margin-bottom: 10px;
		font-size: 13px;
	}

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

	.kaze-contact-form input[type="text"],
	.kaze-contact-form input[type="email"],
	.kaze-contact-form input[type="tel"],
	.kaze-contact-form select {
		min-height: 52px;
	}

	.kaze-contact-form textarea {
		min-height: 180px;
	}

	.kaze-contact-form__privacy {
		text-align: left;
	}

	.kaze-contact-form input[type="submit"] {
		max-width: none;
		min-height: 58px;
	}
}