/*
Theme Name: HANGER NETWORK Blog
Theme URI: https://www.hanger.co.jp/blog/
Author: NAKATA KOGEI
Description: hanger.co.jpのデザイントーンに合わせた、レスポンシブ対応のブログテーマです。
Version: 1.0.0
Text Domain: hanger-network-blog
*/

:root {
	--brown: #6c563a;
	--brown-dark: #3f3426;
	--brown-soft: #a89870;
	--red: #8f3328;
	--ink: #2f2d2a;
	--muted: #77716a;
	--line: #e2ddd5;
	--warm: #f7f4ef;
	--warm-deep: #eee8de;
	--white: #fff;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	font-size: 15px;
	line-height: 1.9;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--brown);
	text-decoration: none;
	transition: color .2s ease, opacity .2s ease, background-color .2s ease, border-color .2s ease;
}

a:hover,
a:focus {
	color: var(--red);
}

.site-shell {
	width: min(1180px, calc(100% - 48px));
	margin-right: auto;
	margin-left: auto;
}

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 9999;
	padding: 10px 16px;
	background: var(--brown-dark);
	color: #fff;
	transform: translateY(-160%);
}

.skip-link:focus {
	color: #fff;
	transform: translateY(0);
}

.utility-bar {
	border-bottom: 1px solid #ebe7e0;
	background: #faf9f7;
	color: #6f6a63;
	font-size: 11px;
}

.utility-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 35px;
}

.utility-inner p {
	margin: 0;
}

.utility-inner nav {
	display: flex;
	gap: 22px;
}

.utility-inner a {
	color: #6f6a63;
}

.brand-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 105px;
}

.brand {
	display: inline-flex;
	align-items: center;
}

.brand img,
.footer-brand img {
	display: block;
	width: 280px;
	mix-blend-mode: multiply;
}

.header-contact {
	display: flex;
	flex-direction: column;
	min-width: 230px;
	padding: 13px 20px;
	border: 1px solid var(--brown);
	text-align: center;
}

.header-contact span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 11px;
	letter-spacing: .2em;
}

.header-contact strong {
	font-size: 13px;
	font-weight: 400;
}

.header-contact:hover,
.header-contact:focus {
	background: var(--brown);
	color: #fff;
}

.mobile-menu {
	display: none;
}

.global-nav {
	border-top: 1px solid var(--line);
	border-bottom: 3px solid var(--brown);
}

.global-nav-inner {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
}

.global-nav a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 8px 10px;
	border-left: 1px solid var(--line);
	color: #393632;
	font-size: 13px;
	text-align: center;
}

.global-nav a:last-child {
	border-right: 1px solid var(--line);
}

.global-nav a:hover,
.global-nav a:focus,
.global-nav a.is-current {
	background: var(--brown);
	color: #fff;
}

.blog-hero {
	position: relative;
	overflow: hidden;
	padding: 76px 0 70px;
	background:
		linear-gradient(90deg, rgba(63, 52, 38, .95), rgba(108, 86, 58, .82)),
		url("https://www.hanger.co.jp/img/js01.jpg") center 46% / cover no-repeat;
	color: #fff;
}

.blog-hero::after {
	position: absolute;
	right: -40px;
	bottom: -110px;
	width: 360px;
	height: 360px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 50%;
	content: "";
}

.blog-hero .site-shell {
	position: relative;
	z-index: 1;
}

.eyebrow {
	margin: 0 0 12px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 12px;
	letter-spacing: .24em;
}

.blog-hero h1,
.blog-hero .hero-title {
	margin: 0;
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 400;
	letter-spacing: .05em;
	line-height: 1.35;
}

.blog-hero h1 + p,
.blog-hero .hero-title + p {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, .8);
	font-size: 14px;
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 70px;
	padding-top: 72px;
	padding-bottom: 100px;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 42px 34px;
}

.post-card {
	overflow: hidden;
	border: 1px solid var(--line);
	background: #fff;
	box-shadow: 0 12px 30px rgba(56, 43, 27, .06);
}

.post-card-image {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--warm-deep);
}

.post-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.post-card-image:hover img {
	transform: scale(1.025);
}

.post-card-image.is-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(135deg, transparent 0 49%, rgba(108, 86, 58, .12) 49% 51%, transparent 51%),
		var(--warm-deep);
	color: rgba(108, 86, 58, .7);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 13px;
	letter-spacing: .2em;
}

.post-card-body {
	padding: 25px 26px 24px;
}

.post-meta {
	margin: 0 0 7px;
	color: var(--muted);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 12px;
	letter-spacing: .08em;
}

.post-card-title {
	margin: 0;
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	font-size: 21px;
	font-weight: 500;
	line-height: 1.55;
}

.post-card-title a {
	color: var(--ink);
}

.post-card-title a:hover,
.post-card-title a:focus {
	color: var(--red);
}

.post-card-excerpt {
	margin-top: 15px;
	color: #625e58;
	font-size: 13px;
	line-height: 1.8;
}

.post-card-excerpt p {
	margin: 0;
}

.post-card-foot {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-top: 22px;
	padding-top: 17px;
	border-top: 1px solid var(--line);
	font-size: 11px;
}

.post-card-foot > span {
	color: var(--muted);
}

.read-more {
	flex: 0 0 auto;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 11px;
	letter-spacing: .12em;
}

.read-more::after {
	content: "  →";
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 56px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--line);
	color: var(--ink);
}

.pagination .current,
.pagination a:hover,
.pagination a:focus {
	border-color: var(--brown);
	background: var(--brown);
	color: #fff;
}

.sidebar {
	min-width: 0;
}

.widget {
	margin-bottom: 35px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--line);
}

.widget-title {
	margin: 0 0 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--brown);
	color: var(--brown-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .16em;
}

.widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget li {
	padding: 9px 0;
	border-bottom: 1px dotted #d9d3ca;
	font-size: 13px;
	line-height: 1.6;
}

.widget li:last-child {
	border-bottom: 0;
}

.widget a {
	color: #4d4944;
}

.search-form {
	display: flex;
}

.search-form label {
	flex: 1 1 auto;
}

.search-field {
	width: 100%;
	height: 44px;
	padding: 0 13px;
	border: 1px solid #cbc4b9;
	border-right: 0;
	border-radius: 0;
	background: #fff;
	font: inherit;
}

.search-submit {
	min-width: 64px;
	border: 1px solid var(--brown);
	border-radius: 0;
	background: var(--brown);
	color: #fff;
	cursor: pointer;
}

.single-article {
	padding: 48px 52px 58px;
	border: 1px solid var(--line);
	background: #fff;
	box-shadow: 0 12px 30px rgba(56, 43, 27, .05);
}

.article-header {
	margin-bottom: 36px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--line);
}

.article-header h1 {
	margin: 4px 0 14px;
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	font-size: clamp(28px, 3.3vw, 42px);
	font-weight: 500;
	letter-spacing: .03em;
	line-height: 1.5;
}

.article-taxonomy,
.article-taxonomy a {
	color: var(--muted);
	font-size: 12px;
}

.tag-list {
	margin-left: 15px;
}

.article-featured {
	margin-bottom: 38px;
}

.article-featured img {
	display: block;
	width: 100%;
}

.article-content {
	font-size: 15px;
	line-height: 2;
}

.article-content h2,
.article-content h3,
.article-content h4 {
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	font-weight: 500;
	line-height: 1.55;
}

.article-content h2 {
	margin: 2.2em 0 1em;
	padding: 13px 18px;
	border-left: 4px solid var(--red);
	background: var(--warm);
	font-size: 25px;
}

.article-content h3 {
	margin: 2em 0 .8em;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--brown-soft);
	font-size: 21px;
}

.article-content a {
	text-decoration: underline;
	text-decoration-color: rgba(108, 86, 58, .35);
	text-underline-offset: 3px;
}

.article-content blockquote {
	margin: 28px 0;
	padding: 20px 26px;
	border-left: 3px solid var(--brown-soft);
	background: var(--warm);
	color: #5e5851;
}

.article-content table {
	width: 100%;
	border-collapse: collapse;
}

.article-content th,
.article-content td {
	padding: 10px 12px;
	border: 1px solid var(--line);
}

.article-content th {
	background: var(--warm);
}

.article-footer {
	margin-top: 54px;
	padding: 28px;
	border-top: 3px solid var(--red);
	background: var(--warm);
	text-align: center;
}

.article-footer p {
	margin: 0 0 15px;
}

.article-footer a,
.button-link {
	display: inline-block;
	padding: 10px 24px;
	border: 1px solid var(--brown);
	background: #fff;
}

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 28px;
}

.post-navigation > div:last-child {
	text-align: right;
}

.post-navigation a {
	display: block;
	padding: 15px 0;
	color: var(--ink);
	font-size: 13px;
}

.post-navigation span {
	display: block;
	color: var(--muted);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 10px;
	letter-spacing: .14em;
}

.comments-area {
	margin-top: 42px;
	padding: 30px;
	border: 1px solid var(--line);
}

.empty-state {
	padding: 70px 30px;
	border: 1px solid var(--line);
	background: var(--warm);
	text-align: center;
}

.empty-state h1 {
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	font-size: 30px;
	font-weight: 500;
}

.contact-band {
	padding: 58px 0;
	background: var(--warm-deep);
}

.contact-band-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.contact-band h2 {
	margin: 0;
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	font-size: 25px;
	font-weight: 500;
}

.contact-band p:not(.eyebrow) {
	margin: 6px 0 0;
	color: #67615a;
}

.contact-band a {
	flex: 0 0 auto;
	padding: 15px 28px;
	border: 1px solid var(--brown);
	background: var(--brown);
	color: #fff;
}

.contact-band a:hover,
.contact-band a:focus {
	background: var(--red);
	border-color: var(--red);
}

.site-footer {
	border-top: 1px solid #e5e1da;
	background: #fff;
	color: #6f6a63;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 80px;
	padding-top: 60px;
	padding-bottom: 55px;
}

.footer-brand img {
	margin-bottom: 20px;
	filter: none;
	mix-blend-mode: multiply;
}

.footer-brand p {
	max-width: 450px;
	font-size: 12px;
}

.footer-grid h2 {
	margin: 0 0 16px;
	color: #312b24;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .18em;
}

.footer-grid a {
	display: block;
	padding: 4px 0;
	color: #6f6a63;
	font-size: 12px;
}

.footer-grid a:hover,
.footer-grid a:focus {
	color: var(--red);
}

.copyright {
	padding: 18px 0;
	border-top: 1px solid #e5e1da;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 10px;
	letter-spacing: .1em;
}

.alignleft {
	float: left;
	margin: 6px 25px 15px 0;
}

.alignright {
	float: right;
	margin: 6px 0 15px 25px;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.screen-reader-text {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}

@media (max-width: 980px) {
	.global-nav-inner {
		grid-template-columns: repeat(4, 1fr);
	}

	.global-nav a:nth-child(4) {
		border-right: 1px solid var(--line);
	}

	.content-layout {
		grid-template-columns: minmax(0, 1fr) 240px;
		gap: 38px;
	}

	.post-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	html,
	body {
		overflow-x: hidden;
	}

	body {
		font-size: 14px;
	}

	.site-shell {
		width: min(100% - 30px, 1180px);
	}

	.utility-bar {
		display: none;
	}

	.brand-row {
		min-height: 78px;
	}

	.brand img {
		width: 210px;
	}

	.header-contact {
		display: none;
	}

	.mobile-menu {
		position: relative;
		display: block;
	}

	.mobile-menu summary {
		padding: 9px 12px;
		border: 1px solid var(--brown);
		color: var(--brown);
		font-family: Georgia, "Times New Roman", serif;
		font-size: 11px;
		letter-spacing: .12em;
		cursor: pointer;
		list-style: none;
	}

	.mobile-menu summary::-webkit-details-marker {
		display: none;
	}

	.mobile-menu nav {
		position: absolute;
		top: calc(100% + 9px);
		right: 0;
		z-index: 50;
		display: grid;
		width: min(310px, calc(100vw - 30px));
		padding: 8px 18px;
		border-top: 3px solid var(--brown);
		background: #fff;
		box-shadow: 0 14px 35px rgba(45, 37, 27, .2);
	}

	.mobile-menu nav a {
		padding: 10px 3px;
		border-bottom: 1px solid var(--line);
		color: var(--ink);
		font-size: 13px;
	}

	.mobile-menu nav a:last-child {
		border-bottom: 0;
		color: var(--red);
	}

	.global-nav {
		display: none;
	}

	.blog-hero {
		padding: 52px 0 48px;
	}

	.content-layout {
		display: block;
		padding-top: 44px;
		padding-bottom: 65px;
	}

	.post-grid {
		gap: 28px;
	}

	.post-card-body {
		padding: 22px 20px;
	}

	.post-card,
	.post-card-body,
	.post-card-title,
	.post-card-excerpt {
		min-width: 0;
		overflow-wrap: anywhere;
	}

	.post-card-foot {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.post-card-title {
		font-size: 19px;
	}

	.sidebar {
		margin-top: 55px;
	}

	.single-article {
		padding: 32px 20px 40px;
	}

	.article-content {
		font-size: 14px;
	}

	.article-content h2 {
		font-size: 21px;
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

	.post-navigation > div:last-child {
		text-align: left;
	}

	.contact-band-inner {
		display: block;
	}

	.contact-band h2 {
		font-size: 21px;
	}

	.contact-band a {
		display: block;
		margin-top: 22px;
		text-align: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		padding-top: 45px;
		padding-bottom: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

/* HANGER NETWORK site-aligned presentation. */
body {
	color: #333;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 13px;
	line-height: 1.8;
	-webkit-font-smoothing: auto;
}
.site-shell { width: min(1025px, calc(100% - 32px)); }
.utility-bar { border-bottom: 0; background: #f5f4ea; font-size: 10px; }
.utility-inner { min-height: 20px; }
.utility-inner nav { gap: 12px; }
.brand-row { min-height: 105px; }
.brand img { width: 280px; mix-blend-mode: normal; }
.header-banner { display: block; }
.header-banner img { display: block; max-width: 300px; border: 1px solid #111; }
.global-nav { border-top: 1px solid #ddd; border-bottom: 1px solid #6c563a; }
.global-nav a { min-height: 49px; padding: 7px 6px; font-size: 12px; }
.global-nav a:hover,
.global-nav a:focus,
.global-nav a.is-current { background: #6c563a; }
.blog-hero {
	width: min(1025px, calc(100% - 32px));
	margin: 38px auto 0;
	padding: 28px 40px;
	background: #faf8f5;
	border-top: 3px solid #8f3328;
	color: #333;
	text-align: center;
}
.blog-hero::after,
.blog-hero .eyebrow { display: none; }
.blog-hero h1,
.blog-hero .hero-title {
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 22px;
	font-weight: normal;
	letter-spacing: .08em;
	line-height: 1.5;
}
.blog-hero h1 + p,
.blog-hero .hero-title + p { margin-top: 10px; color: #555; font-size: 13px; }
.content-layout {
	grid-template-columns: minmax(0, 1fr) 250px;
	gap: 45px;
	padding-top: 45px;
	padding-bottom: 70px;
}
.post-grid { grid-template-columns: 1fr; gap: 0; }
.post-card {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 24px;
	padding: 0 0 28px;
	margin: 0 0 30px;
	border: 0;
	border-bottom: 1px solid #bfbfbf;
	box-shadow: none;
}
.post-card-image { aspect-ratio: 5 / 3; background: #f5f4ea; }
.post-card-image img { transition: none; }
.post-card-image:hover img { transform: none; }
.post-card-body { padding: 0; }
.post-meta,
.read-more {
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	letter-spacing: 0;
}
.post-meta { margin-bottom: 5px; font-size: 11px; }
.post-card-title {
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.55;
}
.post-card-excerpt { margin-top: 10px; font-size: 13px; line-height: 1.8; }
.post-card-foot { margin-top: 14px; padding-top: 10px; font-size: 11px; }
.read-more::after { content: " ＞"; }
.widget { margin-bottom: 28px; padding-bottom: 22px; }
.widget-title {
	margin-bottom: 12px;
	padding: 0 0 7px;
	border-bottom: 2px solid #6c563a;
	color: #333;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 13px;
	font-weight: normal;
	letter-spacing: .08em;
}
.widget li { padding: 7px 0; font-size: 12px; }
.search-field { height: 34px; font-size: 12px; }
.search-submit { min-width: 55px; background: #6c563a; font-family: inherit; font-size: 12px; }
.archive-selector select,
.category-selector select {
	width: 100%;
	height: 36px;
	padding: 0 30px 0 10px;
	border: 1px solid #cbc4b9;
	border-radius: 0;
	background: #fff;
	color: #333;
	font-family: inherit;
	font-size: 12px;
}
.single-article { padding: 0; border: 0; box-shadow: none; }
.article-header { margin-bottom: 28px; padding-bottom: 18px; }
.article-header h1,
.article-content h2,
.article-content h3,
.article-content h4 {
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.article-header h1 { font-size: 24px; font-weight: normal; }
.article-content h2 { padding: 10px 13px; font-size: 19px; }
.article-content h3 { font-size: 17px; }
.site-footer { border-top: 1px solid #d5cba0; background: #fff; color: #6c563a; }
.footer-links { padding-top: 18px; padding-bottom: 18px; text-align: left; }
.footer-links a { color: #6c563a; }
.footer-links a:hover,
.footer-links a:focus { color: #cb2b00; }
.copyright {
	padding: 6px 0 7px;
	border-top: 1px solid #d5cba0;
	background: #fff;
	color: #6c563a;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 11px;
	letter-spacing: 0;
	text-align: center;
}
@media (max-width: 760px) {
	body { font-size: 13px; }
	.site-shell,
	.blog-hero { width: calc(100% - 30px); }
	.brand-row { min-height: 70px; }
	.brand img { width: 205px; }
	.header-banner { display: none; }
	.mobile-menu summary { font-family: "メイリオ", Meiryo, sans-serif; letter-spacing: 0; }
	.blog-hero { margin-top: 22px; padding: 22px 15px; }
	.blog-hero h1,
	.blog-hero .hero-title { font-size: 18px; }
	.content-layout { padding-top: 32px; }
	.post-card { display: block; padding-bottom: 24px; margin-bottom: 26px; }
	.post-card-image { margin-bottom: 16px; }
	.post-card-body { padding: 0; }
	.post-card-title { font-size: 17px; }
	.article-header h1 { font-size: 21px; }
	.footer-links { line-height: 2.2; text-align: center; }
}
