/* ==========================================================================
//  Styles.css
// ========================================================================== */
/* ==========================================================================
//  グローバル設定 (Global Settings)
//  - サイト全体の基本的なHTML要素、フォント、リセットスタイルなど。
// ========================================================================== */
html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	/* スムーズスクロールを有効にする */
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	/* 基本フォント設定 */
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 16px;
	color: #313131;
	background: #fff;
	/* フォントのアンチエイリアスとレンダリングを最適化 */
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
body#childs {
	padding-top: 72px;
}
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}
img {
	border: 0;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}
/* Link Style  */
a,
a:link,
a:visited,
a:focus {
	color: #008EAA;
	text-decoration: none;
	outline: 0;
}
a:hover {
	color: #25bbd9;
}
p a,
p a:visited {
	line-height: inherit;
}
a,
input {
	transition: all 0.2s ease-in-out 0s;
}
button:focus,
:focus-visible {
	outline: none !important;
}
a {
	-webkit-tap-highlight-color: transparent;
	/* モバイル用 強調をなくす */
}
/* ==========================================================================
//  タイポグラフィ (Typography)
//  - 特定のフォントスタイルやテキストの表示に関する設定。
// ========================================================================== */
.karla {
	font-family: 'Karla', sans-serif;
	font-weight: 400;
}
.vollkorn {
	font-family: 'Vollkorn', serif;
	font-weight: 400;
}
.text-hide {
	/* テキストを視覚的に隠すためのテクニック（SEO目的などで要素は残したい場合） */
	font: 0 / 0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}
.title {
	margin: 0 0 20px;
	text-align: center;
	font-family: 'Vollkorn', serif;
	font-weight: 400;
	font-size: 36px;
}
small,
.small {
	font-size: smaller;
}
.justify {
	text-align: justify;
}
/* ==========================================================================
//  ヘッダーセクション (Header Section)
//  - サイトのナビゲーションバー、ロゴ、ハンバーガーメニューなど。
// ========================================================================== */
header {
	position: fixed;
	/* ページ上部に固定表示 */
	top: 0;
	left: 0;
	width: 100%;
	height: 72px;
	background: rgba(0, 0, 0, 0.8);
	z-index: 100;
	/* 他の要素より手前に表示 */
}
.header-container {
	display: flex;
	height: 72px;
	justify-content: space-between;
	/* 要素を両端に配置 */
	align-items: center;
	/* 垂直方向の中央揃え */
	padding: 0;
	max-width: none;
	/* 最大幅の制限をなくす */
	margin: 0;
	/* マージンをリセット */
}
.navbar-brand {
	margin-left: 2rem;
	/* 左側に余白 */
}
/* H1要素（ロゴのコンテナ）のスタイル */
.navbar-brand .brand {
	position: relative;
	/* 子要素の絶対配置の基準 */
	width: 48px;
	/* 通常時のロゴの幅 */
	height: 48px;
	/* 通常時のロゴの高さ */
	margin: 0;
	padding: 0;
	display: block;
	/* ブロック要素として表示 */
	transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	/* ロゴコンテナのサイズ変化をスムーズに */
	overflow: hidden;
	/* ロゴがはみ出さないように */
}
/* スクリーンリーダーのみに表示されるテキストのスタイル */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
/* ロゴ表示要素共通のスタイル */
.logo-display {
	position: absolute;
	/* H1要素を基準に絶対配置 */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	/* 画像の繰り返しなし */
	background-position: left;
	/* 画像を中央に配置 */
	background-size: contain;
	/* 要素内に画像を収める */
	/* 不透明度と拡大縮小の変化をスムーズに */
	transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
/* 通常時の小さなアイコンスタイル */
.full-logo {
	background-image: url('https://ayumi-katayanagi.com/wp-content/themes/Ayumi_Katayanagi/assets/img/Ayumi-Katayanagi_Monogram_White.svg');
	background-position: left;
	/* 画像配置場所設定 */
	opacity: 1;
	/* 最初は完全に表示 */
	transform: scale(1);
	/* 最初は元のサイズ */
}
/* スクロール時に表示されるロゴスタイル */
.icon-logo {
	background-image: url('https://ayumi-katayanagi.com/wp-content/themes/Ayumi_Katayanagi/assets/img/Ayumi-Katayanagi_Eng_White.svg');
	opacity: 0;
	/* 最初は非表示 */
	transform: scale(0.25);
	/* 最初は小さくしておく */
}
/* スクロール時のロゴコンテナのスタイル */
.fixed-top.scrolled .navbar-brand .brand {
	width: 180px;
	/* スクロール時にアイコンの幅に縮小 */
	height: 24px;
	/* スクロール時にアイコンの高さに縮小 */
}
/* スクロール時に大きなロゴを非表示にする */
.fixed-top.scrolled .full-logo {
	opacity: 0;
	/* 不透明度を0に */
	transform: scale(0.5);
	/* 縮小 */
}
/* スクロール時にアイコンを表示する */
.fixed-top.scrolled .icon-logo {
	opacity: 1;
	/* 不透明度を1に */
	transform: scale(1);
	/* 元のサイズに拡大 */
}
/* NAVIGATION SWITCH */
.navswitch {
	margin-right: 20px;
	/* 右側に余白 */
	padding: .5rem 0;
	line-height: 0;
	/* 余分なスペースを削除 */
}
.navswitch a {
	cursor: pointer;
	/* クリック可能なことを示すカーソル */
}
/* ハンバーガーメニューアイコン */
.hamburger {
	display: inline-block;
	cursor: pointer;
}
.hamburger span {
	display: block;
	width: 35px;
	height: 5px;
	background-color: white;
	margin: 6px 0;
	transition: 0.4s;
	/* ホバー時のアニメーション */
}
:target {
	/* 固定ヘッダー回避用マージン */
	scroll-margin-top: 88px;
}
/* ==========================================================================
//  ナビゲーションモーダル (Navigation Modal)
//  - ハンバーガーメニューをクリックした際に表示されるオーバーレイ。
// ========================================================================== */
.modal {
	/* 全画面を覆うオーバーレイ */
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(254, 254, 254, 0.95);
	/* 半透明の背景 */
	opacity: 0;
	transition: opacity 0.5s, scale 0s 0.5s;
	/* 表示・非表示のアニメーション */
	scale: 0;
	/* 初期状態では非表示 */
}
.modal:target {
	opacity: 1;
	/* 表示状態 */
	transition: opacity 0.5s;
	scale: 1;
}
/* JavaScriptで付加されたクラスを使ったbodyの制御 */
body.modal-open {
	overflow: hidden;
	/* 背景のスクロールを止める */
}
.close {
	position: absolute;
	top: 3rem;
	right: 3rem;
	font-size: 4rem;
	color: black !important;
	text-decoration: none;
	cursor: pointer;
	/* アイコンの位置調整 */
	transform: translate(50%, -50%);
	transition: opacity 0.5s;
}
.close:hover {
	opacity: .5;
}
.modal-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 4rem;
	margin: auto;
	overflow: scroll;
	/* コンテンツがはみ出たらスクロール */
	transition: transform 0.5s;
	/* 表示時のアニメーション */
	transform: translateY(-200%);
	/* 初期状態では画面外に配置 */
}
.modal:target .modal-wrapper {
	transform: translateY(0%);
	/* 表示時に画面内に移動 */
}
.modal-body {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.modal-body .logo {
	width: 200px;
	text-align: center;
}
.navItem {
	margin: 0 auto;
	padding-top: 2rem;
}
.btn {
	display: block;
	margin: 1.5rem auto;
	padding: .5rem 1rem .4rem;
	font-size: 1.5rem;
	font-family: 'Vollkorn', serif;
	font-style: normal;
	color: #000 !important;
	text-align: center;
}
.btn:hover,
.btn:active {
	background: #c5c5c5;
}
.modal-footer {
	padding-top: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.modal-footer .icon {
	width: 3rem;
}
/* ==========================================================================
//  ヒーローセクション (Hero Section)
//  - トップページのメインビジュアルエリア（動画や画像）。
// ========================================================================== */
#hero {
	position: relative;
	height: 100vh;
	/* ビューポートの高さに合わせる */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	overflow: hidden;
	/* はみ出るコンテンツを隠す */
}
#hero video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* 要素全体を覆うように拡大縮小 */
	z-index: 1;
	/* コンテンツの下に配置 */
}
#hero img {
	height: 90vw;
	/* ビューポート幅90%の高さ */
	animation: fadeIn 3s ease;
	/* フェードインアニメーション */
	opacity: 1.0;
	z-index: 2;
	/* 他の要素より手前に表示 */
	position: relative;
}
#hero p {
	z-index: 2;
	font-size: 20px;
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/* ==========================================================================
//  スクロールダウンインジケーター (Scroll Down Indicator)
//  - ページを下にスクロールすることを促すアニメーション。
// ========================================================================== */
.scrolldown {
	position: absolute;
	right: 50%;
	/* 中央に配置 */
	bottom: 20px;
	height: 50px;
	z-index: 80;
}
.scrolldown span {
	position: absolute;
	left: -30px;
	top: -15px;
	color: #eee;
	font-size: 1rem;
	letter-spacing: 0.05em;
}
.scrolldown::after {
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #eee;
	animation: pathmove 1.4s ease-in-out infinite;
	/* 線の動きのアニメーション */
	opacity: 0;
}
@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}
	30% {
		height: 30px;
		opacity: 1;
	}
	100% {
		height: 0;
		top: 50px;
		opacity: 0;
	}
}
/* ==========================================================================
//  スライドイン
// ========================================================================== */
/* 共通：初期状態 */
.animate-slide-left,
.animate-slide-right {
	opacity: 0;
	transition: all 1.0s ease-out;
}
/* 左から登場 */
.animate-slide-left {
	transform: translateX(-50px);
}
/* 右から登場 */
.animate-slide-right {
	transform: translateX(50px);
}
/* 表示時にtransformなし（元の位置に戻す） */
.animate-slide-left.show,
.animate-slide-right.show {
	opacity: 1;
	transform: translateX(0);
}
/* ==========================================================================
//  コンテンツ
//  - コンテンツレイアウト設定。
// ========================================================================== */
#intro .container {
	margin-top: 1rem;
}
.imagePhoto {
	z-index: -10;
}
.textArea {
	display: flex;
	h1 {
		font-family: serif;
		writing-mode: vertical-rl;
		margin-top: -6rem;
		background: #fff;
		padding: 1rem .5rem;
	}
	p {
		margin-left: 3rem;
		line-height: 1.7;
	}
}
#profile {
	margin-top: 3rem;
	padding: 6rem 0;
	background-image: image-set(url("https://ayumi-katayanagi.com/wp-content/themes/Ayumi_Katayanagi/assets/img/Profile_Bg.webp") type("image/webp"),
			url("https://ayumi-katayanagi.com/wp-content/themes/Ayumi_Katayanagi/assets/img/Profile_Bg.jpg") type("image/jpeg"));
	background-position: 30% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.profile {
	display: flex;
	flex-direction: row-reverse;
}
.card {
	margin-left: 2rem;
	padding: 2rem;
	color: #212121;
	background-color: rgba(255, 255, 255, 0.85);
	h2 {
		margin-top: -58px;
		margin-bottom: 2rem;
		font-family: 'Vollkorn', serif;
		font-weight: 400;
		text-align: center;
		font-size: 3rem;
		letter-spacing: .25rem;
		color: #555;
	}
	h3 {
		font-size: 1rem;
		margin: 2rem 0 .5rem;
	}
	p {
		font-size: .85rem;
		margin: 0 0 .5rem;
	}
}
#gallery {
	margin: 3rem 0;
}
/* INSTAGRAM FEED */
#sb_instagram #sbi_load .sbi_load_btn {
	display: none !important;
}
#ticket {
	padding: 3rem 0;
	background: #e4e4e4;
	h2 {
		margin-top: 0;
		text-align: center;
		color: #fff;
		padding: 1rem 2rem;
		border-top: 4px solid #8c8c8c;
		border-radius: 0 0 8px 8px;
		background: #000;
	}
}
#contact {
	padding: 3rem 0;
	h2 {
		margin-top: 0;
		text-align: center;
		color: #fff;
		padding: 1rem 2rem;
		border-top: 4px solid #8c8c8c;
		border-radius: 0 0 8px 8px;
		background: #000;
	}
}
#store {
	padding: 3rem 0;
	h2 {
		margin-top: 0;
		text-align: center;
		color: #fff;
		padding: 1rem 2rem;
		border-top: 4px solid #8c8c8c;
		border-radius: 0 0 8px 8px;
		background: #000;
	}
}
#sponsors {
	padding: 3rem 0;
	background: #e4e4e4;
	h2 {
		margin-top: 0;
		text-align: center;
		color: #fff;
		padding: 1rem 2rem;
		border-top: 4px solid #8c8c8c;
		border-radius: 0 0 8px 8px;
		background: #000;
	}
	.logos {
		margin-top: 3rem;
	}
	.logos div {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 1rem;
	}
}
/* contact form*/
#wpforms-confirmation-8 {
	background: #eaeaea;
	border: 1px solid #000;
	border-radius: 3px;
	text-align: justify;
}
/* ==========================================================================
//  BUTTON
// ========================================================================== */
#wpforms-submit-8,
.button a {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 1.25rem auto;
	max-width: 320px;
	padding: 14px 25px 10px;
	font-family: 'Vollkorn', serif;
	font-weight: 400;
	font-size: 20px;
	text-decoration: none;
	color: #fff;
	line-height: 1.8;
	transition: 0.3s ease-in-out;
	background: #008EAA;
	border-radius: 3px;
}
#wpforms-submit-8 {
	width: 150px;
	padding: 14px 1rem 10px;
}
#wpforms-submit-8:after,
.button a:after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 1.5rem;
	font-size: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: right 0.3s;
	width: 6px;
	height: 6px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	transform: translateY(-50%) rotate(45deg);
}
#wpforms-submit-8:hover,
.button a:hover {
	background: #25bbd9;
	color: #fff;
}
#wpforms-submit-8:hover:after,
.button a:hover:after {
	right: 1rem;
}
/* ==========================================================================
//  フッター (Footer)
//  - サイトの最下部に表示される情報。
// ========================================================================== */
footer {
	padding: 2rem 0;
	background: #222;
	p {
		margin: 0 auto;
		color: #fff;
		font-family: 'Vollkorn', serif;
		font-weight: 400;
		font-size: 1rem;
		text-align: center;
	}
}
/* ==========================================================================
//  レスポンシブ対応 (Responsive Design)
//  - 異なるデバイスサイズに応じたスタイル調整。
// ========================================================================== */
/* タブレット向け (768px以上) */
@media (min-width: 768px) {
	br.desktop-only {
		display: none;
	}
	:target {
		scroll-margin-top: 120px;
	}
	#hero p {
		font-size: 2rem;
	}
	#intro .container {
		margin-top: 3rem;
	}
	.imagePhoto {
		z-index: auto;
	}
	.textArea {
		display: flex;
		flex-direction: column;
		h1 {
			font-size: 22px;
			writing-mode: unset;
			margin-top: 0;
			background: none;
			padding: 0;
			margin: 0 0 0 .5rem;
		}
		p {
			margin-left: .5rem;
			line-height: 1.7;
		}
	}
	#profile {
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
	.button a {
		margin: 1.25rem 0;
	}
}
/* PC向け (1024px以上) */
@media (min-width: 1024px) {
	br.desktop-only {
		display: initial;
	}
	br.mobile-only {
		display: none;
	}
	#hero img {
		height: 60vh;
	}
	.imagePhoto {
		z-index: auto;
	}
	.textArea {
		display: flex;
		flex-direction: row;
		h1 {
			font-family: serif;
			font-size: 28px;
			writing-mode: vertical-rl;
			margin-top: 0;
			background: none;
			padding: 0;
			margin: 0 1rem;
		}
		p {
			margin: 0 0 0 1rem;
			line-height: 1.7;
		}
	}
	#profile {
		padding: 10rem 0;
	}
}
/* 小さなデバイス向け (768px以下) */
@media (max-width: 768px) {
	br.desktop-only {
		display: none;
	}
}
/* さらに小さなデバイス向け (480px以下) */
@media (max-width: 480px) {}